@charset "UTF-8";
/*
Theme Name: 酒田舞娘・酒田小鈴合同会社
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html,
html *,
body,
header,
footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  /*サイト全体の基準となるフォントサイズ*/
  font-size: 62.5%;
}

body {
  position: relative;
  color: #C30606;
  font-size: 1.4rem;
  font-family: var(--base_font_family_setting);
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 1.8rem;
  }
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ************************************************
 *	共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  position: relative;
  overflow: hidden;
}

.inner {
  max-width: 1264px;
  padding: 0 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .inner {
    padding: 0 32px;
  }
}
.inner.short {
  max-width: 1088px;
}

/* アンカーずれ補正
---------------------------------------------------*/
.anchor {
  display: block;
  padding-top: 56px;
  margin-top: -56px;
}
@media print, screen and (min-width: 960px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/* flexクラス
---------------------------------------------------*/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/*	PC／SP切り替え
---------------------------------------------------*/
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* リンクボタン
---------------------------------------------------*/
.link-btn {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #C30606;
  padding: 24px;
}
@media print, screen and (min-width: 768px) {
  .link-btn {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 960px) {
  .link-btn {
    font-size: 2.4rem;
    padding: 40px;
    transition: 0.4s;
  }
}
.link-btn.--red {
  background-color: #C30606;
  color: #fff;
}
.link-btn.--small {
  font-size: 1.4rem;
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  .link-btn.--small {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 960px) {
  .link-btn.--small {
    font-size: 1.8rem;
    padding: 24px;
  }
}
.link-btn span {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-btn span::after {
  position: absolute;
  right: 0;
  content: "→";
}
@media print, screen and (min-width: 960px) {
  .link-btn span::after {
    transition: right 0.4s;
  }
}
@media print, screen and (min-width: 960px) {
  .link-btn:hover {
    background-color: #C30606;
    color: #fff;
  }
}
@media print, screen and (min-width: 960px) {
  .link-btn:hover.--red {
    background-color: #fff;
    color: #C30606;
  }
}
@media print, screen and (min-width: 960px) {
  .link-btn:hover span:after {
    right: -0.5em;
  }
}

/* 見出し
---------------------------------------------------*/
.section-ttl {
  line-height: 1;
  text-align: center;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .section-ttl {
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl {
    margin-bottom: 40px;
  }
}
.section-ttl h2 {
  display: inline-block;
}
.section-ttl .sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 48px;
}
@media print, screen and (min-width: 768px) {
  .section-ttl .sub {
    font-size: 1.4rem;
    padding-left: 60px;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl .sub {
    font-size: 2.4rem;
    padding-left: 88px;
  }
}
.section-ttl .main {
  display: block;
  background: url(images/sec-ttl-icon-white.svg) no-repeat;
  background-position: left center;
  background-size: 36px auto;
  padding: 8px 0 8px 48px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media print, screen and (min-width: 768px) {
  .section-ttl .main {
    background-size: 46px auto;
    font-size: 3.2rem;
    padding: 10px 0 10px 60px;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl .main {
    background-size: 63px auto;
    font-size: 4rem;
    padding: 12px 0 12px 80px;
  }
}
.section-ttl .main.--red {
  background: url(images/sec-ttl-icon-red.svg) no-repeat;
  background-position: left center;
  background-size: 36px auto;
}
@media print, screen and (min-width: 768px) {
  .section-ttl .main.--red {
    background-size: 46px auto;
    padding: 10px 0 10px 60px;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl .main.--red {
    background-size: 63px auto;
    padding: 12px 0 12px 80px;
  }
}

.page_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  text-align: center;
  padding-top: 80px;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .page_ttl {
    font-size: 3rem;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    padding-top: 104px;
    margin-bottom: 64px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_ttl {
    font-size: 4rem;
    padding-top: 224px;
    margin-bottom: 92px;
  }
}
.page_ttl span {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 768px) {
  .page_ttl span {
    font-size: 2.6rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page_ttl span {
    font-size: 3.2rem;
  }
}

/* ************************************************
 *	ヘッダー
 * *************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  transition: background-color 0.8s;
  z-index: 9999;
}
@media print, screen and (min-width: 960px) {
  header {
    position: absolute;
    display: block;
    height: 100px;
  }
}
header .header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 10px;
}
@media print, screen and (min-width: 960px) {
  header .header_inner {
    max-width: 1656px;
    padding: 0 64px;
    margin: 0 auto;
  }
}
header .header_inner.page {
  align-items: center;
}
@media print, screen and (min-width: 960px) {
  header .header_inner.page {
    align-items: flex-start;
  }
}

header.is-show .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (min-width: 960px) {
  header.is-show .header_inner {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
  }
}

/* スクロール後表示時 is-show
----------------------------------------------*/
header.is-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
@media print, screen and (min-width: 960px) {
  header.is-show {
    height: 100px;
  }
}

/* ロゴ
----------------------------------------------*/
.logo {
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .logo a {
    transition: opacity 0.4s;
  }
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo .top__logo--white {
  position: absolute;
  top: 3vw;
  left: 3vw;
  width: 27vw;
  max-width: 410px;
  z-index: 1;
}
@media print, screen and (min-width: 960px) {
  .logo .top__logo--white {
    top: 40px;
    left: 3.5%;
    width: 25vw;
    margin-top: 0;
    margin-left: 0;
  }
}
.logo .top__logo--red {
  display: none;
  width: 72px;
}
@media print, screen and (min-width: 960px) {
  .logo .top__logo--red {
    width: 128px;
  }
}
.logo .page__logo {
  width: 72px;
}
@media print, screen and (min-width: 960px) {
  .logo .page__logo {
    width: 240px;
  }
}

header.is-show .top__logo--white,
header.open .top__logo--white {
  display: none;
}
header.is-show .top__logo--red,
header.open .top__logo--red {
  display: block;
}

@media print, screen and (min-width: 960px) {
  .header_inner.page .page__logo {
    position: absolute;
    top: 40px;
    left: 48px;
  }
}

@media print, screen and (min-width: 960px) {
  header.is-show .header_inner.page .page__logo {
    position: unset;
    width: 128px;
  }
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
  }
}

@media print, screen and (min-width: 960px) {
  header.is-show .g_nav {
    align-items: center;
    width: auto;
  }
}

.header_nav .content_nav {
  line-height: 1;
  padding: 0 5%;
  margin-top: 10px;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 2em;
    margin-top: 0;
    padding: 0;
  }
}
.header_nav .content_nav li {
  border-bottom: 1px solid rgba(195, 6, 6, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav li {
    border-bottom: none;
  }
}
.header_nav .content_nav a {
  display: block;
  font-size: 1.6rem;
  color: #C30606;
  text-align: center;
  padding: 20px 0;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a {
    color: #fff;
    font-size: min(1.6vw, 18px);
    text-align: left;
    padding: 0;
    transition: opacity 0.4s;
  }
  .header_nav .content_nav a:hover {
    opacity: 0.6;
  }
}
.header_nav .content_nav.page a {
  color: #C30606;
}

header.is-show .header_nav .content_nav a {
  color: #C30606;
}

/* ************************************************
 *	翻訳ボタン
 * ************************************************ */
#gt_float_wrapper {
  left: 10px !important;
  bottom: 10px !important;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  #gt_float_wrapper {
    left: unset !important;
    bottom: unset !important;
    top: 0;
    right: 0;
  }
}

.gt_float_switcher {
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1 !important;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 8px !important;
}

.gt_float_switcher img {
  display: none !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
  color: #000 !important;
  padding: 4px 12px 4px 16px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
  margin-right: 12px;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  height: 18px !important;
}

/* ************************************************
 *	ハンバーガーメニュー関連
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 70px;
  height: 56px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  transform: translateX(0);
}
@media print, screen and (min-width: 960px) {
  .menu-trigger {
    display: none;
  }
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 22px;
  right: 10px;
  width: 50px;
}
.menu-trigger span:nth-of-type(2) {
  top: 34px;
  right: 10px;
  width: 36px;
}
.menu-trigger.active span:nth-of-type(1) {
  top: 21px;
  background-color: #C30606;
  transform: translateY(6px) rotate(-20deg);
}
.menu-trigger.active span:nth-of-type(2) {
  top: 27px;
  width: 50px;
  background-color: #C30606;
  transform: rotate(20deg);
}
.menu-trigger.page span {
  background-color: #C30606;
}

header.is-show .menu-trigger span {
  background-color: #C30606;
}

/* メニュー枠
----------------------------------------*/
#header.open {
  background-color: #fff;
}
@media print, screen and (min-width: 960px) {
  #header.open {
    background-color: transparent;
  }
}
#header.open .header_inner {
  align-items: center;
}

.header_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background: #fff url(images/sp-menu-bg.svg) no-repeat;
  background-position: 106% 103%;
  background-size: 50% auto;
  transition: all 0.8s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
}
@media print, screen and (min-width: 960px) {
  .header_nav {
    position: unset;
    display: flex;
    justify-content: space-between;
    width: auto;
    height: 100%;
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}
.header_nav.open {
  opacity: 1;
  visibility: visible;
}

header.is-show .header_nav {
  margin-left: 0;
}

/* ************************************************
 * googlemap
 * ************************************************ */
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 32.5%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* ************************************************
 * 404
 * ************************************************ */
.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 5vw;
  z-index: 1;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    justify-content: flex-end;
    padding: 0 0 96px;
  }
}

.notfound_txt {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 2.4rem;
  }
}

/* ************************************************
 * reCAPTCHA
 * ************************************************ */
.grecaptcha-badge {
  visibility: hidden;
}

/* ************************************************
 *	パンくずリスト
 * ************************************************ */
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 0.8rem;
  line-height: 1;
  text-align: left;
  max-width: 1264px;
  padding: 70px 5% 16px;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding: 120px 32px 16px;
  }
}
.breadcrumbs_wrapper .bre {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 1rem;
  padding: 0 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    padding: 0 0;
    font-size: 1.2rem;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 1rem;
  padding-right: 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 1.2rem;
  }
}

/* ************************************************
 *	後援会のお申し込みボタン
 * ************************************************ */
a.supporter-btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: end center;
  width: 80px;
  height: 80px;
  background-color: #DBB657;
  color: #9D0000;
  z-index: 1;
  -webkit-mask-image: url("images/supporter-btn-mask.svg");
  mask-image: url("images/supporter-btn-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
@media print, screen and (min-width: 768px) {
  a.supporter-btn {
    width: 120px;
    height: 120px;
  }
}
@media print, screen and (min-width: 960px) {
  a.supporter-btn {
    right: 20px;
    bottom: 20px;
    width: 160px;
    height: 160px;
    transition: 0.5s;
  }
}
a.supporter-btn p {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  a.supporter-btn p {
    font-size: 1.3rem;
    padding-bottom: 15px;
  }
}
@media print, screen and (min-width: 960px) {
  a.supporter-btn p {
    font-size: 1.8rem;
    padding-bottom: 17px;
  }
}
a.supporter-btn p span {
  display: block;
  transition: margin-left 0.5s;
}
@media print, screen and (min-width: 960px) {
  a.supporter-btn:hover {
    background-color: #9D0000;
    color: #DBB657;
  }
  a.supporter-btn:hover span {
    margin-left: 1em;
  }
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* 共通
----------------------------------------*/
footer {
  padding-top: 56px;
}
@media print, screen and (min-width: 768px) {
  footer {
    padding-top: 72px;
  }
}
@media print, screen and (min-width: 960px) {
  footer {
    padding-top: 96px;
  }
}

/* 料金・YouTubeリンクボタン
----------------------------------------*/
.footer__link-btn-wrapper {
  padding-bottom: 56px;
}
@media print, screen and (min-width: 960px) {
  .footer__link-btn-wrapper {
    padding-bottom: 124px;
  }
}

/* Instagram
----------------------------------------*/
.footer__instagram {
  padding-bottom: 56px;
}
@media print, screen and (min-width: 768px) {
  .footer__instagram {
    padding-bottom: 72px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__instagram {
    padding-bottom: 160px;
  }
}
.footer__instagram .section-title {
  margin-bottom: 16px;
}
@media print, screen and (min-width: 960px) {
  .footer__instagram .section-title {
    margin-bottom: 24px;
  }
}

/* フッターリンクボタン
----------------------------------------*/
.footer__fee-link a {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .footer__fee-link a {
    width: calc(50% - 16px);
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1264px) {
  .footer__fee-link a {
    width: calc(50% - 28px);
  }
}

.footer__link-btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 24px 0;
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .footer__link-btn {
    flex-direction: row;
    justify-content: center;
    gap: 0 32px;
    margin-top: 32px;
  }
}
@media print, screen and (min-width: 1264px) {
  .footer__link-btn {
    gap: 0 56px;
    margin-top: 56px;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__link-btn li {
    width: calc(50% - 16px);
  }
}
@media print, screen and (min-width: 1264px) {
  .footer__link-btn li {
    width: calc(50% - 28px);
  }
}
.footer__link-btn p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .footer__link-btn p {
    font-size: 1.6rem;
  }
}

.footer__robert-vargas-link {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .footer__robert-vargas-link {
    margin-top: 56px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__robert-vargas-link {
    margin-top: 104px;
  }
}
.footer__robert-vargas-link a {
  display: block;
  background-color: rgb(243, 239, 228);
  color: rgb(195, 6, 6);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  padding: 16px 0;
}
@media print, screen and (min-width: 768px) {
  .footer__robert-vargas-link a {
    width: 65%;
    font-size: 1.8rem;
    padding: 18px 0;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__robert-vargas-link a {
    width: 800px;
    font-size: 3rem;
    padding: 24px 0;
    transition: background-color 0.4s, color 0.4s;
  }
}
.footer__robert-vargas-link a span {
  display: block;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .footer__robert-vargas-link a span {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__robert-vargas-link a span {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__robert-vargas-link a:hover {
    background-color: rgb(195, 6, 6);
    color: rgb(243, 239, 228);
  }
}

.footer__contact-wrapper {
  background-color: #EBE5E5;
  padding: 40px 0;
}
@media print, screen and (min-width: 960px) {
  .footer__contact-wrapper {
    padding: 56px 0;
  }
}

.footer__contact-ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .footer__contact-ttl {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__contact-ttl {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}

/* フッターリンク
----------------------------------------*/
.footer__link {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  max-width: 360px;
  line-height: 1;
  margin: 48px auto 32px;
}
@media print, screen and (min-width: 960px) {
  .footer__link {
    justify-content: center;
    gap: 24px 32px;
    font-size: 1.6rem;
    max-width: 100%;
    margin: 88px 0 32px;
  }
}
.footer__link li {
  width: 50%;
}
@media print, screen and (min-width: 960px) {
  .footer__link li {
    width: auto;
  }
}
.footer__link a {
  display: inline-block;
  color: #C30606;
}
@media print, screen and (min-width: 960px) {
  .footer__link a {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__link a {
    transition: opacity 0.4s;
  }
  .footer__link a:hover {
    opacity: 0.6;
  }
}

/* コピーライト
----------------------------------------*/
.copyright {
  background-color: #C30606;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  padding: 18px 0;
}/*# sourceMappingURL=style.css.map */