@charset "UTF-8";
/**
  foundations
  サイト全体のスタイル
**/
/**
  size breakpoint
**/
/* size pxをremが基準になったサイズに変換 */
/* size pxをemが基準になったサイズに変換 */
/* clampの出力 size pxをremが基準になったサイズに変換する $minusをtrueとする事でマイナスの値を指定します */
/**
  breakpoint
**/
/* pcのみ */
/* pc以外（tbサイズ含む） */
/* tbのみ */
/* sp以外（tbサイズ含む） */
/* spのみ */
/* 三点リーダー */
/* アニメーション */
@-webkit-keyframes slideUpDiagonal {
  100% {
    translate: 0 0;
  }
}
@keyframes slideUpDiagonal {
  100% {
    translate: 0 0;
  }
}
:root {
  /* width */
  --font-size: 16px;
  --f-medium: 500;
  --f-regular: 400;
  --f-bold: 700;
  --header-h: clamp(5rem, 4.1071428571rem + 2.380952381vw, 6.25rem);
  --lineHeight: 1.6;
  --border-radius: 10px;
  scroll-padding-top: calc(var(--header-h));
}

.inner {
  width: min(75rem, 100% - clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem));
  margin-inline: auto;
}
.inner--s {
  width: min(65.625rem, 100% - clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem));
  margin-inline: auto;
}
.inner--footer {
  padding-inline: clamp(0.9375rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
}
.inner--news {
  width: min(52.8125rem, 100% - clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem));
  margin-inline: auto;
}
.inner--left-space {
  width: min(1200px + (100dvw - 1200px) / 2, 100% - clamp(0.9375rem, 0.2678571429rem + 1.7857142857vw, 1.875rem));
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  overflow: hidden;
}
.inner--left-space .title-wrap {
  padding-right: clamp(0.9375rem, 0.2678571429rem + 1.7857142857vw, 1.875rem);
}
@media screen and (max-width: 767.9px) {
  .inner--left-space .title-wrap {
    width: calc(100svw - 15px);
  }
}

.section-bg--top {
  padding-block: clamp(2.5rem, 0.7142857143rem + 4.7619047619vw, 5rem);
}
.section-bg--top.concept {
  position: relative;
  padding-bottom: 0;
  z-index: 1;
  padding-block: clamp(6.25rem, 1.7857142857rem + 11.9047619048vw, 12.5rem) 80px;
}
@media screen and (max-width: 767.9px) {
  .section-bg--top.concept {
    padding-block: 40px;
  }
}
.section-bg--top.concept::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  background: linear-gradient(to bottom, #fff 300px, transparent 300px);
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .section-bg--top.concept::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 150px, transparent 150px);
  }
}
.section-bg--top.service {
  z-index: 0;
}
.section-bg--top.how-to-use {
  overflow: hidden;
}
.section-bg--top.access {
  background-color: #fff;
}
.section-bg--mv {
  padding-block: 0 clamp(2.5rem, -0.1785714286rem + 7.1428571429vw, 6.25rem);
}
.section-bg--single {
  padding-block: clamp(2.5rem, 0.7142857143rem + 4.7619047619vw, 5rem) clamp(2.5rem, -0.1785714286rem + 7.1428571429vw, 6.25rem);
}
.section-bg.is-separate, .is-separate.section-bg--top, .is-separate.section-bg--mv, .is-separate.section-bg--single {
  background: -webkit-gradient(linear, left top, right top, color-stop(70%, #F2F5F4), color-stop(70%, rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to right, #F2F5F4 70%, rgba(255, 255, 255, 0.8) 70%);
}
.section-bg.is-left-white-separate, .is-left-white-separate.section-bg--top, .is-left-white-separate.section-bg--mv, .is-left-white-separate.section-bg--single {
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #ffffff), color-stop(30%, #F2F5F4));
  background: linear-gradient(to right, #ffffff 30%, #F2F5F4 30%);
}
.section-bg.is-green, .is-green.section-bg--top, .is-green.section-bg--mv, .is-green.section-bg--single {
  background-color: #F2F5F4;
}
.section-bg.is-white, .is-white.section-bg--top, .is-white.section-bg--mv, .is-white.section-bg--single {
  background-color: rgba(255, 255, 255, 0.8);
}

/*
  acab/reset.css v.0.5.3(2022/10/24)
  https://github.com/mayank99/reset.css/blob/main/package/index.css
**/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
  /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none;
  /* iOSのランドスケープでテキストが調整されないようにする */
  /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
    /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%;
  /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb;
  /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  /* アクセシブルな行の高さ */
  /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased;
  /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit;
  /* フォーム コントロールは親フォントを継承 */
  color: inherit;
  /* カラーも継承 */
}

:where(textarea) {
  resize: vertical;
  /* テキストエリアの水平リサイズを無効に */
  resize: block;
  white-space: revert;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
  /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed;
  /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
  /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid;
  /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2em;
  /* 下線の上にスペースを追加する */
  color: inherit;
  text-decoration: none;
}

:where(a, button) {
  cursor: pointer;
}

:where(ul, ol) {
  list-style: none;
  /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  /* images should never overflow past the available space */
  block-size: auto;
  /* アスペクト比を保持 */
  max-width: 100%;
  vertical-align: bottom;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  font-weight: normal;
  /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  /* 見出しの行の高さを減らす */
}

:where(hr) {
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:where(caption),
:where(th) {
  text-align: left;
}

:where(dl, figure, h1, h2, h3, h4, h5, h6, ol, p, ul) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  line-height: 1.3;
}

:where(a)[href=""] {
  pointer-events: none;
  text-decoration: none;
}

:where(dd) {
  margin-left: 0;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(*, *::before, *::after) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  line-height: 1.5;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

:where(figure) {
  display: -ms-grid;
  display: grid;
  vertical-align: middle;
}

::-moz-selection {
  background-color: rgba(170, 133, 52, 0.3);
}

::selection {
  background-color: rgba(170, 133, 52, 0.3);
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, 0.7857142857rem + 0.2857142857vw, 1.25rem);
}
html.is-menu-open {
  overflow: hidden;
}
html.is-fixed {
  overflow: hidden;
}

:where(a) {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif, sans-serif;
  font-weight: var(--f-regular);
  font-style: normal;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  color: #1F1F1F;
  line-height: var(--lineHeight);
  letter-spacing: 0.1em;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* パーツのスタイル */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 300;
  background-color: #fff;
  height: var(--header-h);
  -webkit-transition: -webkit-box-shadow background-color ease;
  transition: -webkit-box-shadow background-color ease;
  transition: box-shadow background-color ease;
  transition: box-shadow background-color ease, -webkit-box-shadow background-color ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  padding-left: clamp(0.9375rem, 0.7142857143rem + 0.5952380952vw, 1.25rem);
}
.header.is-scrolled {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.header__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 1fr 0 auto 0 auto;
  grid-template-columns: auto 1fr auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    -ms-grid-columns: auto 20px 1fr 20px auto;
    grid-template-columns: auto 1fr auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 0 auto;
        grid-template-areas: "item1 item2 item4" "item3 item3 item4";
    gap: 0 20px;
  }
}
@media screen and (max-width: 870px) {
  .header__inner {
        grid-template-areas: "item1 item4 item5";
    gap: 0;
  }
}
.header__logo {
  height: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(17.5rem, 16.6071428571rem + 2.380952381vw, 18.75rem);
}
@media screen and (max-width: 1280px) {
  .header__logo {
    grid-area: item1;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.footer__buttons__item__body > .header__logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  }
@media screen and (max-width: 870px) {
  .header__logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 160px;
  }
}
.header__logo__link {
  display: -ms-grid;
  display: grid;
  gap: 0.1875rem;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .header__logo__link:hover {
    opacity: 0.75;
  }
}
.header__logo__text {
  font-size: clamp(1rem, 0.7321428571rem + 0.7142857143vw, 1.375rem);
  font-weight: var(--f-bold);
  color: #007440;
  letter-spacing: 0.1em;
  line-height: 1;
}
.header__logo__catch {
  font-size: clamp(0.5rem, 0.4107142857rem + 0.2380952381vw, 0.625rem);
  color: #888;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: var(--f-regular);
}
@media screen and (max-width: 767.9px) {
  .header__logo__catch {
    display: none;
  }
}
.header__nav-group {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  padding-block: 16px;
  padding-right: 28px;
}
@media screen and (max-width: 1280px) {
  .header__nav-group {
    display: contents;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 870px) {
  .header__nav-group {
    display: none;
  }
}
.header__nav {
  height: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 1280px) {
  .header__nav {
    grid-area: item3;
  }
}
.footer__buttons__item__body > .header__nav {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  }
@media screen and (max-width: 870px) {
  .header__nav {
    display: none;
  }
}
.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .header__nav__list {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
.header__nav__item {
  height: 100%;
  position: relative;
}
.header__nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  height: 100%;
  font-size: clamp(0.75rem, 0.6607142857rem + 0.2380952381vw, 0.875rem);
  letter-spacing: 0.05em;
  color: #333;
  position: relative;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__nav__link.is-disable {
  pointer-events: none;
  color: #DADADA;
}
@media (hover: hover) {
  .header__nav__link:hover {
    color: #007440;
  }
}
.header__nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #007440;
  scale: 0 1;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: scale 1s ease;
  transition: scale 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__nav__dropdown-icon {
  font-size: clamp(0.875rem, 0.7857142857rem + 0.2380952381vw, 1rem);
  font-weight: var(--f-regular);
  color: #007440;
  line-height: 1;
}
.header__nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: clamp(10rem, 8.2142857143rem + 4.7619047619vw, 12.5rem);
  background-color: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #007440;
  border-radius: 0 0 0.375rem 0.375rem;
  opacity: 0;
  pointer-events: none;
  translate: 0 0.625rem;
  -webkit-transition: opacity translate ease;
  transition: opacity translate ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  z-index: 10;
}
.header__nav__dropdown__item:not(:last-child) {
  border-bottom: 1px solid #E9E9E9;
}
.header__nav__dropdown__link {
  display: block;
  padding: clamp(0.625rem, 0.4464285714rem + 0.4761904762vw, 0.875rem) clamp(1rem, 0.8214285714rem + 0.4761904762vw, 1.25rem);
  font-size: clamp(0.75rem, 0.7053571429rem + 0.119047619vw, 0.8125rem);
  color: #333;
  -webkit-transition: background-color color ease;
  transition: background-color color ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .header__nav__dropdown__link:hover {
    background-color: #F6F6F6;
    color: #007440;
  }
}
.header__sub-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.75rem, 0.3928571429rem + 0.9523809524vw, 1.25rem);
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-align: end;
      justify-self: end;
}
@media screen and (max-width: 870px) {
  .header__sub-links {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .header__sub-links {
    grid-area: item2;
    padding-top: 16px;
  }
}
.footer__buttons__item__body > .header__sub-links {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  }
.header__sub-links__item {
  font-size: clamp(0.6875rem, 0.6428571429rem + 0.119047619vw, 0.75rem);
  letter-spacing: 0.05em;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__sub-links__item.is-disable {
  color: #DADADA;
  pointer-events: none;
}
@media (hover: hover) {
  .header__sub-links__item:hover {
    color: #007440;
  }
}
.header__sub-links__item:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23007440"/><rect y="2.2002" width="7.7" height="5.5" fill="%23007440"/></svg>') no-repeat center/contain;
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .header__buttons {
    grid-area: item4;
  }
}
@media screen and (max-width: 870px) {
  .header__buttons {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
.header__buttons__item {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0.25rem;
  padding-inline: clamp(0.875rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  background-color: #f5f5f5;
  color: #333;
  font-size: clamp(0.625rem, 0.5357142857rem + 0.2380952381vw, 0.75rem);
  font-weight: var(--f-bold);
  letter-spacing: 0.08em;
  -webkit-transition: background-color color ease;
  transition: background-color color ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__buttons__item--primary {
  background-color: #1F1F1F;
  color: #fff;
  width: clamp(11.25rem, 9.2410714286rem + 5.3571428571vw, 14.0625rem);
  font-size: clamp(0.875rem, 0.6964285714rem + 0.4761904762vw, 1.125rem);
  font-weight: 300;
  padding-bottom: 13px;
}
@media screen and (max-width: 870px) {
  .header__buttons__item--primary {
    width: auto;
  }
}
@media (hover: hover) {
  .header__buttons__item--primary:hover {
    background-color: #007440;
    color: #fff;
  }
}
.header__buttons__icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: inherit;
}
.header__buttons__label.icon-blank::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23fff"/><rect y="2.2002" width="7.7" height="5.5" fill="%23fff"/></svg>') no-repeat center/contain;
}
.header__buttons__label.icon-blank::before {
  content: "";
  width: 71px;
  aspect-ratio: 71/12;
  position: absolute;
  bottom: 0;
  translate: -50% calc(100% + 5px);
  left: 50%;
  background: url("../img/common/logo_reserva.svg") no-repeat center/contain;
}
.header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  width: clamp(2.75rem, 2.2142857143rem + 1.4285714286vw, 3.5rem);
  height: var(--header-h);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
  width: 60px;
  background-color: #007440;
}
@media screen and (max-width: 870px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column: item5;
  }
}
.header__hamburger__line {
  display: block;
  width: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
  height: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.125rem;
  -webkit-transition: -webkit-transform opacity ease;
  transition: -webkit-transform opacity ease;
  transition: transform opacity ease;
  transition: transform opacity ease, -webkit-transform opacity ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__hamburger.is-active .header__hamburger__line:nth-child(1) {
  -webkit-transform: translateY(0.5rem) rotate(45deg);
          transform: translateY(0.5rem) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.header__hamburger.is-active .header__hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-0.5rem) rotate(-45deg);
          transform: translateY(-0.5rem) rotate(-45deg);
}
.header__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(170, 133, 52, 0.7);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 85vw);
  height: 100dvh;
  background-color: #fff;
  z-index: 100;
  overflow-y: auto;
  translate: 100% 0;
  -webkit-transition: translate 1s ease;
  transition: translate 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__drawer.is-active {
  translate: 0 0;
}
.header__drawer__inner {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.875rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
  padding: calc(var(--header-h) + clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem)) 0 clamp(2.5rem, 1.6071428571rem + 2.380952381vw, 3.75rem);
}
.header__drawer__list {
  display: -ms-grid;
  display: grid;
  gap: 0;
}
.header__drawer__item {
  border-bottom: 1px solid #E9E9E9;
}
.header__drawer__item:first-child {
  border-top: 1px solid #E9E9E9;
}
.header__drawer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6em;
  width: 100%;
  padding: clamp(1.25rem, 0.8928571429rem + 0.9523809524vw, 1.75rem) clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  font-size: clamp(1.125rem, 0.9464285714rem + 0.4761904762vw, 1.375rem);
  font-weight: var(--f-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-transition: color opacity ease;
  transition: color opacity ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__drawer__link:has(.is-disable) {
  pointer-events: none;
}
@media (hover: hover) {
  .header__drawer__link:hover {
    opacity: 0.6;
  }
}
.header__drawer__link__bar {
  display: inline-block;
  width: 1em;
  height: 1px;
  background-color: #007440;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  translate: 0 0.1em;
}
.header__drawer__link__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header__drawer__link__text.is-disable {
  pointer-events: none;
  color: #DADADA;
}
.header__drawer__link__text.is-disable::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23DADADA"/><rect y="2.2002" width="7.7" height="5.5" fill="%23DADADA"/></svg>') no-repeat center/contain;
}
.header__drawer__link__icon {
  font-size: clamp(0.875rem, 0.7857142857rem + 0.2380952381vw, 1rem);
  color: #666;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  display: inline-block;
  line-height: 1;
}
.is-open .header__drawer__link__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header__drawer__sub-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.5rem, 1.1428571429rem + 0.9523809524vw, 2rem);
  padding-inline: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}
.header__drawer__sub-link {
  font-size: clamp(0.75rem, 0.7053571429rem + 0.119047619vw, 0.8125rem);
  font-weight: var(--f-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.header__drawer__sub-link.is-disable {
  pointer-events: none;
  color: #DADADA;
}
.header__drawer__sub-link.is-disable::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23DADADA"/><rect y="2.2002" width="7.7" height="5.5" fill="%23DADADA"/></svg>') no-repeat center/contain;
}
@media (hover: hover) {
  .header__drawer__sub-link:hover {
    color: #007440;
  }
}
.header__drawer__btns {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.625rem, 0.4464285714rem + 0.4761904762vw, 0.875rem);
  padding-inline: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
}
.header__drawer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em;
  padding: clamp(1rem, 0.8214285714rem + 0.4761904762vw, 1.25rem) clamp(1.25rem, 1.0714285714rem + 0.4761904762vw, 1.5rem);
  letter-spacing: 0.14em;
  -webkit-transition: background-color opacity ease;
  transition: background-color opacity ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  position: relative;
}
.header__drawer__btn::after {
  content: "";
  width: 71px;
  aspect-ratio: 71/12;
  position: absolute;
  bottom: 0;
  translate: -50% -50%;
  left: 50%;
  background: url("../img/common/logo_reserva.svg") no-repeat center/contain;
}
.header__drawer__btn__ja {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  position: relative;
  top: -5px;
}
.header__drawer__btn--primary {
  background-color: #007440;
  color: #fff;
}
@media (hover: hover) {
  .header__drawer__btn--primary:hover {
    opacity: 0.75;
  }
}
.header__drawer__btn--outline {
  background-color: transparent;
  color: #007440;
  border: 1px solid #007440;
}
@media (hover: hover) {
  .header__drawer__btn--outline:hover {
    background-color: #007440;
    color: #fff;
  }
}

.main {
  padding-top: var(--header-h);
}

@media screen and (max-width: 767.9px) {
  .footer {
    padding-bottom: 20px;
  }
}
.footer-wrapper {
  background-color: #1F1F1F;
}
.footer {
  color: #fff;
}
.footer__inner {
  padding-top: clamp(2.8125rem, 1.25rem + 4.1666666667vw, 5rem);
}
.footer__head {
  width: min(clamp(18.75rem, 16.2053571429rem + 6.7857142857vw, 22.3125rem), 100%);
  margin-bottom: clamp(1.25rem, 0.3571428571rem + 2.380952381vw, 2.5rem);
}
@media screen and (max-width: 767.9px) {
  .footer__head {
    margin-inline: auto;
  }
}
@media screen and (max-width: 479.9px) {
  .footer__head {
    margin-inline: 0;
  }
}
.footer__site-name {
  font-size: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  font-weight: var(--f-bold);
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1;
}
.footer__site-catch {
  font-size: clamp(0.5625rem, 0.4732142857rem + 0.2380952381vw, 0.6875rem);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: var(--f-regular);
}
.footer__upper {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.875rem, -0.3571428571rem + 5.9523809524vw, 5rem);
}
@media screen and (min-width: 768px) {
  .footer__upper {
    -ms-grid-columns: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 999.9px) {
  .footer__upper {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767.9px) {
  .footer__upper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-inline: auto;
  }
}
.footer__info {
  background-color: #151515;
  padding: 20px;
  border-radius: 3px;
}
.footer__info__table {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: auto 16px auto;
  grid-template-columns: repeat(2, auto);
}
@media screen and (max-width: 767.9px) {
  .footer__info__table {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__info__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto clamp(0.625rem, 0.3571428571rem + 0.7142857143vw, 1rem) auto;
  grid-template-columns: repeat(2, auto);
  -ms-grid-columns: subgrid;
  grid-template-columns: subgrid;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  gap: clamp(0.625rem, 0.3571428571rem + 0.7142857143vw, 1rem);
}
.footer__info__title {
  color: #BBB;
  font-size: clamp(0.6875rem, 0.5535714286rem + 0.3571428571vw, 0.875rem);
  margin-bottom: clamp(0.625rem, 0.4017857143rem + 0.5952380952vw, 0.9375rem);
}
.footer__info__label {
  font-size: clamp(0.6875rem, 0.6428571429rem + 0.119047619vw, 0.75rem);
  letter-spacing: 0.05em;
  padding-top: 0.15em;
  color: #BBB;
}
.footer__info__value {
  font-size: clamp(0.75rem, 0.7053571429rem + 0.119047619vw, 0.8125rem);
  color: #BBB;
  line-height: 1.7;
}
.footer__info__tel {
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--f-bold);
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .footer__info__tel:hover {
    color: #fff;
  }
}
.footer__info__sns {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .footer__info__sns:hover {
    color: #fff;
  }
}
@media screen and (min-width: 1000px) {
  .footer__nav {
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
.footer__nav__list {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.625rem, 0.4464285714rem + 0.4761904762vw, 0.875rem);
  -ms-flex-line-pack: start;
      align-content: start;
}
@media screen and (max-width: 999.9px) {
  .footer__nav__list {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
  }
}
.footer__nav__item {
  position: relative;
}
.footer__nav__link {
  font-size: clamp(0.75rem, 0.6607142857rem + 0.2380952381vw, 0.875rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  padding-left: 0.8em;
}
.footer__nav__link.is-disable {
  pointer-events: none;
  color: #323232;
}
.footer__nav__link.is-disable::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23323232"/><rect y="2.2002" width="7.7" height="5.5" fill="%23323232"/></svg>') no-repeat center/contain;
}
.footer__nav__link::before {
  content: "";
  width: 2px;
  height: 2px;
  top: 12px;
  background-color: #AA8534;
  position: absolute;
  left: 0;
}
@media (hover: hover) {
  .footer__nav__link:hover {
    color: #007440;
  }
  .footer__nav__link:hover::after {
    background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23007440"/><rect y="2.2002" width="7.7" height="5.5" fill="%23007440"/></svg>') no-repeat center/contain;
  }
}
.footer__buttons {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  -ms-flex-line-pack: start;
      align-content: start;
}
@media screen and (max-width: 999.9px) {
  .footer__buttons {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.9px) {
  .footer__buttons {
    display: none;
  }
}
.footer__buttons__item {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-width: clamp(17.5rem, 3.6607142857rem + 22.1428571429vw, 21.375rem);
  padding: 1em;
  font-size: clamp(1.25rem, 1.0714285714rem + 0.4761904762vw, 1.5rem);
  letter-spacing: 0.1em;
  border-radius: 3px;
  text-align: center;
  -webkit-transition: background-color color border-color;
  transition: background-color color border-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  border: 1px solid #323232;
  color: #fff;
  min-height: 109px;
  background-color: #151515;
}
.footer__buttons__item--primary {
  padding: 1em 1em 2em;
}
.footer__buttons__item--primary span::before {
  content: "";
  width: 71px;
  aspect-ratio: 71/12;
  position: absolute;
  bottom: 0;
  translate: -50% calc(100% + 5px);
  left: 50%;
  background: url("../img/common/logo_reserva.svg") no-repeat center/contain;
}
@media (hover: hover) {
  .footer__buttons__item--primary:hover {
    background-color: #007440;
    border-color: #fff;
  }
}
.footer__buttons__item--primary:hover span::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23fff"/><rect y="2.2002" width="7.7" height="5.5" fill="%23fff"/></svg>') no-repeat center/contain;
}
.footer__buttons__item__body {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "item1 item2" "item3 item3";
}
.footer__buttons__item__body > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: item1;
}
.footer__buttons__item__body > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: item2;
}
.footer__buttons__item__body > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: item3;
}
.footer__buttons__item__body > *:nth-child(4) {
  grid-area: item4;
}
.footer__buttons__item__body > *:nth-child(5) {
  grid-area: item5;
}
@media screen and (max-width: 1280px){
  .header__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .header__nav {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .header__sub-links {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .header__buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 5;
  }
  .footer__buttons__item__body > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__buttons__item__body > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .footer__buttons__item__body > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .footer__buttons__item__body > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 5;
  }
}
@media screen and (max-width: 870px){
  .header__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .header__buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
  }
  .footer__buttons__item__body > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__buttons__item__body > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
  }
  .footer__buttons__item__body > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}
.footer__buttons__item__body > *:nth-child(6) {
  grid-area: item6;
}
.footer__buttons__item__body > *:nth-child(7) {
  grid-area: item7;
}
.footer__buttons__item__body > *:nth-child(8) {
  grid-area: item8;
}
.footer__buttons__item__body > *:nth-child(9) {
  grid-area: item9;
}
.footer__buttons__item__body > *:nth-child(10) {
  grid-area: item10;
}
.footer__buttons__item__label {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: 10px;
}
.footer__buttons__item__num {
  font-size: clamp(1.25rem, 1.0714285714rem + 0.4761904762vw, 1.5rem);
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.footer__buttons__item__note {
  color: #686868;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.75rem, 0.5714285714rem + 0.4761904762vw, 1rem);
  padding-block: clamp(1rem, 0.8214285714rem + 0.4761904762vw, 1.25rem);
  border-top: 1px solid #323232;
  margin-top: clamp(2.5rem, 2.0535714286rem + 1.1904761905vw, 3.125rem);
}
@media screen and (max-width: 767.9px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: clamp(0.625rem, 0.4464285714rem + 0.4761904762vw, 0.875rem);
    margin-top: 10px;
  }
}
.footer__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.75rem, 0.3928571429rem + 0.9523809524vw, 1.25rem);
}
@media screen and (max-width: 767.9px) {
  .footer__bottom-links {
    margin-inline: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__bottom-links__item {
  font-size: clamp(0.6875rem, 0.6428571429rem + 0.119047619vw, 0.75rem);
  color: #6A6A6A;
  letter-spacing: 0.05em;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .footer__bottom-links__item:hover {
    color: #007440;
  }
  .footer__bottom-links__item:hover::after {
    background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23007440"/><rect y="2.2002" width="7.7" height="5.5" fill="%23007440"/></svg>') no-repeat center/contain;
  }
}
.footer__copyright {
  font-size: clamp(0.625rem, 0.5357142857rem + 0.2380952381vw, 0.75rem);
  font-weight: 300;
  color: #6A6A6A;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .footer__copyright {
    margin-inline: auto;
  }
}

.floating-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 100;
}
@media screen and (max-width: 767.9px) {
  .floating-menu {
    display: block;
  }
}
.floating-menu.is-stop {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .floating-menu .footer__buttons {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.floating-menu .footer__buttons__item {
  background-color: #151515;
  min-height: auto;
  padding: 0.5em;
  min-width: 0;
}
@media screen and (max-width: 479.9px) {
  .floating-menu .footer__buttons__item__body {
        grid-template-areas: "item2" "item3";
  }
  .floating-menu .footer__buttons__item__body > .header__nav {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .floating-menu .footer__buttons__item__body > .header__sub-links {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .floating-menu .footer__buttons__item__body > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .floating-menu .footer__buttons__item__body > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.floating-menu .footer__buttons__item__label {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
@media screen and (max-width: 479.9px) {
  .floating-menu .footer__buttons__item__label {
    display: none;
  }
}
.floating-menu .footer__buttons__item__num {
  font-size: clamp(1.125rem, 0.7318548387rem + 1.2096774194vw, 1.3125rem);
}
.floating-menu .footer__buttons__item__note {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
@media (max-width: 400px) {
  .floating-menu .footer__buttons__item__note .is-non-xs {
    display: none;
  }
}
@media (min-width: 401px) {
  .floating-menu .footer__buttons__item__note .is-xs {
    display: none;
  }
}
.floating-menu .footer__buttons__item--primary span {
  font-size: 16px;
  translate: 0 -9px;
}

.title {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  width: 100%;
}
.is-center .title {
  justify-items: center;
}
.is-left .title {
  justify-items: start;
}
.title-wrap {
  display: -ms-grid;
  display: grid;
  gap: clamp(2.5rem, 2.0535714286rem + 1.1904761905vw, 3.125rem) 0;
  margin-bottom: clamp(1.25rem, 0.5803571429rem + 1.7857142857vw, 2.1875rem);
}
.title-wrap.is-center {
  justify-items: center;
  text-align: center;
}
.title-wrap.is-left {
  justify-items: start;
  text-align: left;
}
.title-wrap.is-white .title__main {
  color: #fff;
}
.title-wrap.is-white .title__sub {
  color: #fff;
}
.title-wrap.is-white .title__text {
  color: rgba(255, 255, 255, 0.8);
}
.title__main {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.title__sub {
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: var(--f-regular);
  font-size: clamp(2.375rem, 1.5714285714rem + 2.1428571429vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: clamp(0.625rem, 0.3571428571rem + 0.7142857143vw, 1rem);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.6428571429rem + 0.9523809524vw, 1.5rem);
}
.title__sub::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background-color: #AA8534;
  opacity: 0.25;
}
.is-center .title__sub {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-center .title__sub::before {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: currentColor;
  opacity: 0.25;
}
.is-left .title__sub {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.is-left .title__sub::before {
  content: none;
}
.title__text {
  line-height: 1.9;
}
.is-center .title__text {
  text-align: center;
}
.is-left .title__text {
  text-align: left;
}
.title-wrap.is-white .title__text {
  color: rgba(255, 255, 255, 0.8);
}

.icon-blank, .icon-blank--off-white, .icon-blank--white {
  position: relative;
  padding-right: calc(10px + 0.2em);
}
.icon-blank::after, .icon-blank--off-white::after, .icon-blank--white::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%231F1F1F"/><rect y="2.2002" width="7.7" height="5.5" fill="%231F1F1F"/></svg>') no-repeat center/contain;
  width: 0.5rem;
  aspect-ratio: 1/1;
}
.icon-blank--white::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23A4A4A4"/><rect y="2.2002" width="7.7" height="5.5" fill="%23A4A4A4"/></svg>') no-repeat center/contain;
}
.icon-blank--off-white::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23fff"/><rect y="2.2002" width="7.7" height="5.5" fill="%23fff"/></svg>') no-repeat center/contain;
}

.button {
  max-width: 100%;
}
.button.is-center {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button__figure {
  margin: 0;
}
.button.is-pdf .button__item {
  border: 1px solid #DADADA;
  color: #007440;
}
.button.is-pdf .button__item::before {
  background-color: #fff;
}
@media (hover: hover) {
  .button.is-pdf .button__item:hover, .button.is-pdf .button__item:focus-visible {
    border-color: #007440;
    color: #fff;
  }
  .button.is-pdf .button__item:hover .button__text::before, .button.is-pdf .button__item:focus-visible .button__text::before {
    background: url('data:image/svg+xml;charset=utf8,<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.85 20V10.125H2.85V18H9.85V13.175L12.475 10.55C12.9583 10.0667 13.3333 9.525 13.6 8.925C13.8667 8.325 14 7.68333 14 7C14 6.33333 13.8625 5.7 13.5875 5.1C13.3125 4.5 12.9417 3.95833 12.475 3.475L11.85 2.825L8.675 6H4.675L3.6 7.075L2.175 5.675L3.85 4H7.85L11.85 0L13.9 2.05C14.5667 2.71667 15.0833 3.47083 15.45 4.3125C15.8167 5.15417 16 6.05 16 7C16 7.95 15.8167 8.84583 15.45 9.6875C15.0833 10.5292 14.5667 11.2833 13.9 11.95L11.85 14V20H0.85ZM5.775 15.325L0.575 10.125C0.391667 9.94167 0.25 9.725 0.15 9.475C0.05 9.225 0 8.96667 0 8.7C0 8.43333 0.05 8.17917 0.15 7.9375C0.25 7.69583 0.391667 7.48333 0.575 7.3L2.675 5.175L5.775 8.25C6.24167 8.71667 6.60417 9.25417 6.8625 9.8625C7.12083 10.4708 7.25 11.1083 7.25 11.775C7.25 12.4417 7.125 13.0792 6.875 13.6875C6.625 14.2958 6.25833 14.8417 5.775 15.325Z" fill="%23fff"/></svg>') no-repeat center/contain;
  }
  .button.is-pdf .button__item:hover .button__text::after, .button.is-pdf .button__item:focus-visible .button__text::after {
    background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%23fff"/><rect y="2.2002" width="7.7" height="5.5" fill="%23fff"/></svg>') no-repeat center/contain;
  }
  .button.is-pdf .button__item:hover::after, .button.is-pdf .button__item:focus-visible::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.button.is-pdf .button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.button.is-pdf .button__text::before {
  content: "";
  -webkit-transition: background 1s ease;
  transition: background 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  width: 16px;
  height: 20px;
  background: url('data:image/svg+xml;charset=utf8,<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.85 20V10.125H2.85V18H9.85V13.175L12.475 10.55C12.9583 10.0667 13.3333 9.525 13.6 8.925C13.8667 8.325 14 7.68333 14 7C14 6.33333 13.8625 5.7 13.5875 5.1C13.3125 4.5 12.9417 3.95833 12.475 3.475L11.85 2.825L8.675 6H4.675L3.6 7.075L2.175 5.675L3.85 4H7.85L11.85 0L13.9 2.05C14.5667 2.71667 15.0833 3.47083 15.45 4.3125C15.8167 5.15417 16 6.05 16 7C16 7.95 15.8167 8.84583 15.45 9.6875C15.0833 10.5292 14.5667 11.2833 13.9 11.95L11.85 14V20H0.85ZM5.775 15.325L0.575 10.125C0.391667 9.94167 0.25 9.725 0.15 9.475C0.05 9.225 0 8.96667 0 8.7C0 8.43333 0.05 8.17917 0.15 7.9375C0.25 7.69583 0.391667 7.48333 0.575 7.3L2.675 5.175L5.775 8.25C6.24167 8.71667 6.60417 9.25417 6.8625 9.8625C7.12083 10.4708 7.25 11.1083 7.25 11.775C7.25 12.4417 7.125 13.0792 6.875 13.6875C6.625 14.2958 6.25833 14.8417 5.775 15.325Z" fill="%23007440"/></svg>') no-repeat center/contain;
}
.button.is-pdf .button__text::after {
  background: url('data:image/svg+xml;charset=utf8,<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="3.79999" y="0.5" width="6.7" height="4.5" stroke="%231F1F1F"/><rect y="2.2002" width="7.7" height="5.5" fill="%231F1F1F"/></svg>') no-repeat center/contain;
}
.button.is-reserva .button__item {
  min-height: 52px;
}
.button.is-reserva .button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.button.is-reserva .button__text::before {
  content: "";
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 57px;
  height: 10px;
  background: url("../img/common/logo_reserva.svg") no-repeat center/contain;
}
.button__item {
  position: relative;
  z-index: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-height: clamp(2.375rem, 2.375rem + 0vw, 2.375rem);
  padding-inline: 1em;
  padding-block: 0.5rem;
  overflow: hidden;
  font-weight: 300;
  width: clamp(17.3125rem, 17.3125rem + 0vw, 17.3125rem);
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  border: 1px solid #1F1F1F;
  background-color: transparent;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: border-color 1s ease;
  transition: border-color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.button__item::before, .button__item::after {
  position: absolute;
  inset: 0;
  content: "";
}
.button__item::before {
  z-index: -2;
  background-color: #1F1F1F;
}
.button__item::after {
  z-index: -1;
  background-color: #007440;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .button__item:hover, .button__item:focus-visible {
    border-color: #007440;
  }
  .button__item:hover::after, .button__item:focus-visible::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.button__text {
  position: relative;
  z-index: 1;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  line-height: 1.4;
  color: inherit;
}

.mv__slider__item:nth-child(even) {
  margin-top: clamp(3.75rem, 1.9642857143rem + 4.7619047619vw, 6.25rem);
}
@media (max-width: 1200px) {
  .mv__slider__item:nth-child(even) {
    margin-top: clamp(2.5rem, 2.0535714286rem + 1.1904761905vw, 3.125rem);
  }
}
.mv__slider__item {
  max-height: clamp(45.3125rem, 45.3125rem + 0vw, 45.3125rem);
  overflow: hidden;
}
.mv__slider__item img {
  -o-object-fit: cover;
     object-fit: cover;
}

.news__slider.is-grid-style {
  visibility: visible;
  width: min(75rem, 100% - clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem));
  margin-inline: auto;
}
.news__slider.is-grid-style .splide__list {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr clamp(1.875rem, 1.875rem + 0vw, 1.875rem) 1fr clamp(1.875rem, 1.875rem + 0vw, 1.875rem) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
}
@media screen and (max-width: 767.9px) {
  .news__slider.is-grid-style .splide__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.grid-column, .grid-column--col2 {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 768px) {
  .grid-column--col2 {
    -ms-grid-columns: clamp(13.125rem, 10.1785714286rem + 7.8571428571vw, 17.25rem) clamp(3.125rem, -1.7857142857rem + 13.0952380952vw, 10rem) 1fr;
    grid-template-columns: clamp(13.125rem, 10.1785714286rem + 7.8571428571vw, 17.25rem) 1fr;
    gap: clamp(3.125rem, -1.7857142857rem + 13.0952380952vw, 10rem);
  }
}
@media screen and (max-width: 767.9px) {
  .grid-column--col2.staff-article {
    gap: 2.5rem;
  }
}
.grid-column__item__contents {
  --padding: clamp(2.5rem, 1.6071428571rem + 2.380952381vw, 3.75rem);
  display: -ms-grid;
  display: grid;
}
.grid-column__item__contents section {
  position: relative;
  counter-increment: page-num-counter;
  padding-block: var(--padding);
}
.grid-column__item__contents section + section::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E9E9E9;
  left: 0;
  position: absolute;
  translate: 0 calc((var(--padding) + 50%) * -1);
}

.article-title {
  font-size: clamp(1.375rem, 0.75rem + 1.6666666667vw, 2.25rem);
  font-weight: var(--f-midium);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article-title-group {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.625rem, 0.625rem + 0vw, 0.625rem) clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: auto clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem) auto;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-title-group + .title .title__main {
  font-size: 34px;
}
@media screen and (max-width: 1199.9px) {
  .article-title-group + .title .title__main {
    font-size: clamp(38 / 16 * 1rem, (34 - 1440 * (34 - 38) / 840) / 16 * 1rem + 100 * (34 - 38) / 840 * 1vw, 2.125rem);
  }
}
.article-title-term {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto clamp(0.625rem, 0.4017857143rem + 0.5952380952vw, 0.9375rem) auto;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(0.625rem, 0.4017857143rem + 0.5952380952vw, 0.9375rem);
  margin-block: clamp(0.375rem, 0.375rem + 0vw, 0.375rem) clamp(0.625rem, 0.1785714286rem + 1.1904761905vw, 1.25rem);
}
@media screen and (max-width: 767.9px) {
  .article-title-term {
    -ms-grid-columns: (auto)[1];
    grid-template-columns: repeat(1, auto);
  }
}
.article-title__date {
  color: #787878;
  font-size: clamp(0.75rem, 0.6607142857rem + 0.2380952381vw, 0.875rem);
  padding-right: 0.8em;
  position: relative;
}
.article-title__date::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  top: 55%;
  background-color: #000;
  translate: 0 -50%;
  right: 0;
}
.article-title__tarms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
.article-title__tarms__link {
  display: block;
  font-size: 16px;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #AA8534;
  letter-spacing: 0;
  text-align: center;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

:where(.article-contants) {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  -ms-flex-line-pack: start;
      align-content: flex-start;
  padding-block: clamp(1.25rem, 1.25rem + 0vw, 1.25rem) 0;
}
@media screen and (min-width: 1200px) {
  :where(.article-contants) {
    min-height: 8.125rem;
  }
}
:where(.article-contants) > :where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}
:where(.article-contants) :where(strong) {
  font-weight: var(--f-bold);
}
:where(.article-contants) :where(h1) {
  font-size: clamp(1.5rem, 0.875rem + 1.6666666667vw, 2.375rem);
  font-weight: bold;
  line-height: 1.2;
}
:where(.article-contants) :where(h2) {
  font-size: 28px;
}
@media screen and (max-width: 1199.9px) {
  :where(.article-contants) :where(h2) {
    font-size: clamp(22 / 16 * 1rem, (30 - 1440 * (30 - 22) / 840) / 16 * 1rem + 100 * (30 - 22) / 840 * 1vw, 1.875rem);
  }
}
:where(.article-contants) :where(figure) {
  margin-top: clamp(0.625rem, 0.1785714286rem + 1.1904761905vw, 1.25rem);
}
:where(.article-contants) :where(a) {
  color: #007440;
}
:where(.article-contants) :where(a):hover {
  text-decoration: underline;
}
:where(.article-contants) :where(p) {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
:where(.article-contants) :where(ul) {
  display: -ms-grid;
  display: grid;
  gap: 0.3125rem;
}
:where(.article-contants) :where(ul) :where(li) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
}
:where(.article-contants) :where(ul) :where(li)::before {
  content: "・";
}
:where(.article-contants) :where(ol) {
  display: -ms-grid;
  display: grid;
  gap: 0.3125rem;
}
:where(.article-contants) :where(ol) :where(li) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.125rem;
  counter-increment: nav-num;
}
:where(.article-contants) :where(ol) :where(li)::before {
  content: counter(nav-num) ".";
}
:where(.article-contants) .wp-block-table table {
  --padding: 0.8em 0.5em;
}
@media screen and (max-width: 767.9px) {
  :where(.article-contants) .wp-block-table table {
    --padding: 0 0;
  }
}
:where(.article-contants) .wp-block-table table {
  overflow: hidden;
}
:where(.article-contants) .wp-block-table table td {
  padding: var(--padding);
  word-break: break-word;
  border: none;
  vertical-align: top;
}
:where(.article-contants) .wp-block-table table td:only-of-type {
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  :where(.article-contants) .wp-block-table table td:nth-child(1) {
    width: 9.375rem;
    font-size: 14px;
    color: #6D6D6D;
    padding-top: calc(0.8em + 5px);
    padding-inline: 0;
  }
}
@media screen and (max-width: 767.9px) {
  :where(.article-contants) .wp-block-table table td:nth-child(1) {
    min-width: 6.25rem;
    width: 100%;
    font-size: 14px;
    font-weight: var(--f-bold);
  }
}
:where(.article-contants) .wp-block-table table td:nth-child(1) {
  font-weight: 500;
}
:where(.article-contants) .wp-block-table table td:not(:first-child) {
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 767.9px) {
  :where(.article-contants) .wp-block-table table td:not(:first-child) {
    font-size: 14px;
  }
}
:where(.article-contants) .wp-block-table table td, :where(.article-contants) .wp-block-table table dd {
  border: none;
}
:where(.article-contants) .wp-block-table thead {
  border: none;
}
:where(.article-contants) :where(tr) {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  :where(.article-contants) :where(tr) {
    display: -ms-grid;
    display: grid;
    gap: 0.3125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8125rem;
  }
}
:where(.article-contants) :where(tr)::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 1px;
  bottom: 1px;
  translate: 0 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(5.4375rem, #9BE0C2), color-stop(5.4375rem, #E9E9E9), to(#E9E9E9));
  background: linear-gradient(to right, #9BE0C2 5.4375rem, #E9E9E9 5.4375rem, #E9E9E9);
}
@media screen and (max-width: 767.9px) {
  :where(.article-contants) + .button.is-center {
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
}
@media screen and (max-width: 767.9px) {
  :where(.article-contants) + .button.is-center .button__item {
    width: 100%;
  }
}
:where(.article-contants) + .button {
  margin-top: clamp(2.5rem, -0.1785714286rem + 7.1428571429vw, 6.25rem);
}

.article__mv-figure {
  margin-top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.breadcrumbs {
  --gap: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .breadcrumbs-wrap {
    overflow-x: scroll;
  }
}
.breadcrumbs-wrap::-webkit-scrollbar {
  display: none;
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap);
}
@media screen and (max-width: 767.9px) {
  .breadcrumbs {
    white-space: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.breadcrumbs__li {
  line-height: 1;
}
.breadcrumbs__li:not(:last-child) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.breadcrumbs__li:not(:nth-child(1)) {
  position: relative;
  line-height: 0.6;
}
.breadcrumbs__li:not(:nth-child(1))::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 1px;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  background-color: #AA8534;
  left: 0;
  translate: calc((var(--gap) / 2 + 50%) * -1) -50%;
}
.breadcrumbs__current {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  line-height: 1;
  color: #A4A4A4;
}
.breadcrumbs__link {
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #6A6A6A;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  line-height: 1;
}

/* 各ページのスタイル */
.page-header {
  height: clamp(9.375rem, 7.8125rem + 4.1666666667vw, 11.5625rem);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-inline: clamp(0.9375rem, -1.0714285714rem + 5.3571428571vw, 3.75rem);
  position: relative;
}
.page-header__title {
  display: -ms-grid;
  display: grid;
  padding-inline: 15px;
}
.page-header__title-sub {
  font-size: clamp(2.375rem, 1.5714285714rem + 2.1428571429vw, 3.5rem);
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
}
.page-header__title-main {
  font-size: clamp(1rem, 0.9107142857rem + 0.2380952381vw, 1.125rem);
  line-height: 1;
  letter-spacing: 0.2em;
}
.page-header .breadcrumbs-wrap {
  position: absolute;
  right: clamp(0.9375rem, -1.0714285714rem + 5.3571428571vw, 3.75rem);
  bottom: 20px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

.mv__scroll {
  position: absolute;
  left: 30px;
  display: -ms-grid;
  display: grid;
  justify-items: center;
  gap: 0.625rem;
  bottom: 20%;
}
@media screen and (max-width: 767.9px) {
  .mv__scroll {
    bottom: 10%;
    left: 15px;
  }
}
.mv__scroll__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: clamp(0.625rem, 0.5803571429rem + 0.119047619vw, 0.6875rem);
  letter-spacing: 0.15em;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  color: #fff;
}
.mv__scroll__line {
  display: block;
  width: 1px;
  height: clamp(5rem, 1.6071428571rem + 9.0476190476vw, 9.75rem);
  background-color: #fff;
  -webkit-animation: scroll-line 1.8s ease-in-out infinite;
          animation: scroll-line 1.8s ease-in-out infinite;
}
.mv__fixed-text {
  position: absolute;
  font-size: clamp(1.25rem, 1.0267857143rem + 0.5952380952vw, 1.5625rem);
  font-weight: var(--f-medium);
  text-align: left;
  direction: ltr;
  line-height: 2.4;
  left: 199px;
  bottom: 30%;
}
@media (max-width: 1200px) {
  .mv__fixed-text {
    left: 160px;
  }
}
@media screen and (max-width: 767.9px) {
  .mv__fixed-text {
    bottom: 60px;
    line-height: 2;
    left: 55px;
    text-shadow: 2px 2px 2px #fff;
  }
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
.concept {
  position: relative;
  z-index: 0;
}
.concept__logo {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: clamp(1.875rem, -1.25rem + 8.3333333333vw, 6.25rem);
}
.concept__logo__img {
  width: min(clamp(50rem, 35.1785714286rem + 39.5238095238vw, 70.75rem), 100%);
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .concept__logo__img {
    width: 90%;
    margin-inline: auto;
  }
}
.concept__col2 {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (min-width: 768px) {
  .concept__col2 {
    -ms-grid-columns: (auto)[4];
    grid-template-columns: repeat(4, auto);
        grid-template-areas: "title title . ." ". . text text";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .concept__col2 {
        grid-template-areas: "title title title ." ". . text text";
  }
}
.concept__col2__left {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  -ms-flex-line-pack: start;
      align-content: start;
}
@media screen and (min-width: 768px) {
  .concept__col2__left {
    grid-area: title;
  }
}
@media screen and (max-width: 767.9px) {
  .concept__col2__left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.concept__col2__right {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  -ms-flex-line-pack: start;
      align-content: start;
}
@media screen and (min-width: 768px) {
  .concept__col2__right {
    grid-area: text;
  }
}
@media screen and (min-width: 768px){
  .concept__col2__left {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .concept__col2__right {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px){
  .concept__col2__left {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .concept__col2__right {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }
}
.concept__heading {
  font-size: clamp(22 / 16 * 1rem, (40 - 1440 * (40 - 22) / 840) / 16 * 1rem + 100 * (40 - 22) / 840 * 1vw, 2.5rem);
  font-weight: var(--f-medium);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.concept__sub-text {
  font-size: clamp(1.375rem, 0.9285714286rem + 1.1904761905vw, 2rem);
  letter-spacing: 0.2em;
  font-weight: var(--f-medium);
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
}
.concept__text {
  font-size: clamp(0.9375rem, 0.8928571429rem + 0.119047619vw, 1rem);
  line-height: 1.9;
}
@media screen and (max-width: 767.9px) {
  .concept__text {
    line-height: 1.6;
  }
}
.concept__parallax {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: clamp(17.5rem, 7.6785714286rem + 26.1904761905vw, 31.25rem);
  height: clamp(25rem, 11.6071428571rem + 35.7142857143vw, 43.75rem);
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .concept__parallax {
    display: none;
  }
}
.concept__parallax__img {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

.service__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1.875rem auto 1.875rem auto 1.875rem auto 1.875rem auto;
  grid-template-rows: repeat(5, auto);
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 999.9px) {
  .service__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.9px) {
  .service__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.service__item {
  --padding-inline: clamp(0.625rem, 0.1785714286rem + 1.1904761905vw, 1.25rem);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 5;
  grid-row: span 5;
  gap: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.service__item.is-coming-soon {
  pointer-events: none;
}
.service__item.is-coming-soon .service__item__en, .service__item.is-coming-soon .service__item__title, .service__item.is-coming-soon .service__item__text {
  color: #B3B3B3;
}
.service__item.is-coming-soon .button__item {
  cursor: default;
  pointer-events: none;
  border-color: #B3B3B3;
  width: 100%;
}
.service__item.is-coming-soon .button__item::before {
  background-color: #B3B3B3;
}
.service__item.is-coming-soon .button__item span {
  color: #fff;
}
.service__item__img-wrap {
  margin: 0;
  position: relative;
  z-index: 0;
}
.service__item__link {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .service__item__link:hover {
    opacity: 0.8;
  }
}
.service__item__img {
  width: 100%;
  height: 21.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .service__item__img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.service__item__coming-soon {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 1;
}
.service__item__coming-soon__text {
  text-align: center;
  color: #fff;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: var(--f-regular);
  font-size: clamp(1.125rem, 1.0357142857rem + 0.2380952381vw, 1.25rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.service__item__coming-soon__text span {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.service__item__en {
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: var(--f-regular);
  font-size: 30px;
  letter-spacing: 0.1em;
  margin-top: clamp(0.625rem, 0.3571428571rem + 0.7142857143vw, 1rem);
  line-height: 1;
  font-weight: 200;
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service__item__title {
  font-size: clamp(1rem, 0.9107142857rem + 0.2380952381vw, 1.125rem);
  letter-spacing: 0.04em;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service__item__text {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  margin-top: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  font-size: 0.875rem;
  line-height: 1.8;
}
.service__item .button {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  margin-top: clamp(0.625rem, 0.3571428571rem + 0.7142857143vw, 1rem);
  width: 100%;
}
.service__item .button .button__item {
  width: 100%;
}

.reason__lead {
  font-size: clamp(0.875rem, 0.7857142857rem + 0.2380952381vw, 1rem);
  margin-top: clamp(0.5rem, 0.3214285714rem + 0.4761904762vw, 0.75rem);
  letter-spacing: 0.1em;
  color: #007440;
  font-weight: var(--f-medium);
}
.reason__grid {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .reason__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.reason__grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 1px;
  background-color: #E9E9E9;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .reason__grid::before {
    display: none;
  }
}
.reason__item {
  --gap: 14px;
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
  -ms-flex-line-pack: start;
      align-content: start;
  padding: clamp(1.25rem, 0.3571428571rem + 2.380952381vw, 2.5rem);
  background-color: rgba(223, 223, 223, 0.1);
  position: relative;
  z-index: 0;
  -webkit-transition: background-color 1s ease;
  transition: background-color 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (min-width: 768px) {
  .reason__item:nth-child(-n+2)::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #E9E9E9;
    width: calc(100% + var(--gap) / 2);
    bottom: calc(var(--gap) / 2 * -1);
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .reason__item:nth-child(2)::after {
    left: calc(var(--gap) / 2 * -1);
  }
}
@media screen and (max-width: 767.9px) {
  .reason__item::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #E9E9E9;
    width: 100%;
    bottom: calc(var(--gap) / 2 * -1);
    left: 0;
  }
}
.reason__item__num {
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: var(--f-regular);
  font-size: clamp(1.875rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
  font-weight: 200;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .reason__item__num {
    text-align: center;
  }
}
.reason__item__title {
  font-size: clamp(1rem, 0.9107142857rem + 0.2380952381vw, 1.125rem);
  font-weight: var(--f-medium);
  letter-spacing: 0.05em;
  padding-bottom: clamp(0.625rem, 0.4464285714rem + 0.4761904762vw, 0.875rem);
  border-bottom: 1px solid #E9E9E9;
}
.reason__item__text {
  font-size: 0.875rem;
  line-height: 1.9;
}

.price {
  position: relative;
  z-index: 0;
}
.price__parallax {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.price__parallax__img {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.price__parallax::after {
  content: "";
  position: absolute;
  inset: 0;
}
.price__grid {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.3125rem, 0.3125rem + 0vw, 0.3125rem);
  margin-top: clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem);
}
@media screen and (min-width: 768px) {
  .price__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 999.9px) {
  .price__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767.9px) {
  .price__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.price__item {
  background-color: #fff;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto auto 1fr auto auto;
  grid-template-rows: auto auto auto 1fr auto auto;
  padding: 1.25rem;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.price__item__img-wrap {
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .price__item__img-wrap {
    aspect-ratio: 3/2;
    position: relative;
  }
}
.price__item__sele {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.6;
  background: rgba(170, 133, 52, 0.2);
  padding: 5px 10px;
  border-left: 3px solid #AA8534;
  border-radius: 4px;
}
.price__item__sele em {
  color: #FF0000;
  font-style: normal;
}
.price__item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .price__item__img {
    position: absolute;
    inset: 0;
  }
}
.price__item__link {
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .price__item__link:hover {
    opacity: 0.8;
  }
}
.price__item__en {
  margin-top: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: var(--f-regular);
  font-size: clamp(1.625rem, 1.4464285714rem + 0.4761904762vw, 1.875rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 769px) {
  .price__item__en {
    text-align: center;
  }
}
.price__item__title {
  margin-top: clamp(0.1875rem, 0.0982142857rem + 0.2380952381vw, 0.3125rem);
  font-size: clamp(1rem, 0.9107142857rem + 0.2380952381vw, 1.125rem);
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.price__item__tag-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding-top: clamp(0.5rem, 0.3214285714rem + 0.4761904762vw, 0.75rem);
}
.price__item__tag {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  background-color: #525252;
  color: #fff;
  font-size: 0.75rem;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 200;
  padding: 0.25em 1em;
  letter-spacing: 0.08em;
}
.price__item__price {
  letter-spacing: 0.05em;
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.price__item__price em {
  font-style: normal;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.0714285714rem + 0.4761904762vw, 1.5rem);
}
.price__item .button {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  margin-top: clamp(0.5rem, 0.3214285714rem + 0.4761904762vw, 0.75rem);
}
.price__item__slider .splide__arrow {
  background: rgba(255, 255, 255, 0);
}
.price__item__slider .splide__arrow--next {
  right: 0;
}
.price__item__slider .splide__arrow--prev {
  left: 0;
}
.price__item__slider .splide__arrow svg {
  width: 2em;
  height: 2em;
}
.price .button__item {
  width: 100%;
}

.how-to-use > .inner {
  margin-bottom: clamp(2.5rem, 1.6071428571rem + 2.380952381vw, 3.75rem);
}
.how-to-use__list {
  display: -ms-grid;
  display: grid;
  gap: 0.3125rem;
}
@media screen and (max-width: 1199.9px) {
  .how-to-use__list {
    gap: 30px;
  }
}
.how-to-use__list-wrap {
  width: min(75rem, 100% - clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem));
  margin-inline: auto;
}
@media (max-width: 1100px) {
  .how-to-use__list-wrap {
    width: 100%;
    padding-right: clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem);
  }
}
@media screen and (max-width: 767.9px) {
  .how-to-use__list-wrap {
    padding-right: 0;
  }
}
.how-to-use__item {
  display: -ms-grid;
  display: grid;
  gap: clamp(2.5rem, 1.7857142857rem + 1.9047619048vw, 3.5rem);
}
@media screen and (min-width: 768px) {
  .how-to-use__item {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .how-to-use__item {
    -ms-grid-columns: 50% 1fr;
    grid-template-columns: 50% 1fr;
  }
}
@media screen and (max-width: 767.9px) {
  .how-to-use__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.how-to-use__item__img-wrap {
  position: relative;
  width: 100%;
  height: 321px;
}
@media (max-width: 1100px) {
  .how-to-use__item__img-wrap {
    height: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .how-to-use__item__img-wrap {
    aspect-ratio: 16/9;
  }
}
.how-to-use__item__img {
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(41.5625rem, 41.5625rem + 0vw, 41.5625rem);
  height: 100%;
  max-width: clamp(41.5625rem, 41.5625rem + 0vw, 41.5625rem);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .how-to-use__item__img {
    width: 100%;
    max-width: 100%;
  }
}
.how-to-use__item__body {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.75rem, 0.3928571429rem + 0.9523809524vw, 1.25rem);
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 767.9px) {
  .how-to-use__item__body {
    padding-inline: 15px;
    position: relative;
  }
}
.how-to-use__item__num {
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 200;
  font-size: clamp(2.25rem, 2.0714285714rem + 0.4761904762vw, 2.5rem);
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .how-to-use__item__num {
    position: absolute;
    top: 0;
    left: 15px;
  }
}
.how-to-use__item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.6428571429rem + 0.9523809524vw, 1.5rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .how-to-use__item__head .button {
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .how-to-use__item__head .button {
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
}
@media screen and (max-width: 479.9px) {
  .how-to-use__item__head .button {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .how-to-use__item__head .button__item {
    width: 100%;
  }
}
.how-to-use__item__title {
  font-size: clamp(1.125rem, 1.0357142857rem + 0.2380952381vw, 1.25rem);
  font-weight: var(--f-medium);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .how-to-use__item__title {
    padding-left: 60px;
    position: relative;
    top: 6px;
  }
}
.how-to-use__item__text {
  font-size: 0.875rem;
  line-height: 1.9;
}

.news__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem) 1fr clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  margin-top: clamp(2.5rem, 1.6071428571rem + 2.380952381vw, 3.75rem);
}
.news__slider {
  margin-top: clamp(2.5rem, 1.6071428571rem + 2.380952381vw, 3.75rem);
}
.news__slider .splide__slide {
  height: auto;
}
.news__item {
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .news__item {
    width: 100%;
  }
}
.news__item__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  height: 100%;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .news__item__link:hover {
    opacity: 0.7;
  }
}
.news__item__img-wrap {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 381/274;
  position: relative;
}
.news__item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news__item__body {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.5rem, 0.3214285714rem + 0.4761904762vw, 0.75rem);
  -ms-flex-line-pack: start;
      align-content: start;
  margin-top: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
}
.news__item__summary p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
}
.news__item__meta {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  -ms-grid-columns: auto 0.625rem auto;
  grid-template-columns: auto auto;
}
.news__item__date {
  font-size: 0.875rem;
  color: #787878;
  letter-spacing: 0.05em;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 200;
  line-height: 1;
}
.news__item__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.375rem;
  -ms-grid-column-align: end;
      justify-self: end;
}
.news__item__cat {
  font-size: 1rem;
  color: #AA8534;
  font-weight: var(--f-regular);
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
}
.news__item__cat:not(:last-child)::after {
  content: "・";
  color: #AA8534;
}
.news__item__title {
  font-size: 0.875rem;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
}
.news .button {
  margin-top: clamp(1.875rem, 0.9821428571rem + 2.380952381vw, 3.125rem);
}

.access__map {
  width: 100%;
  line-height: 0;
}
.access__map iframe {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .access__map iframe {
    height: clamp(17.5rem, 12.1428571429rem + 14.2857142857vw, 25rem);
  }
}
.access .contents-inner {
  padding-top: clamp(1.5625rem, 1.3392857143rem + 0.5952380952vw, 1.875rem);
}
.access__address {
  margin-bottom: clamp(1.5rem, 0.7857142857rem + 1.9047619048vw, 2.5rem);
}
.access__address__text {
  letter-spacing: 0.1em;
}
.access__info {
  display: -ms-grid;
  display: grid;
  gap: 0.125rem;
}
.access__info__item {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.25rem, -1.6964285714rem + 7.8571428571vw, 5.375rem);
  padding: clamp(1.25rem, -0.0892857143rem + 3.5714285714vw, 3.125rem) clamp(0.9375rem, -1.0714285714rem + 5.3571428571vw, 3.75rem);
  background-color: rgba(223, 223, 223, 0.23);
}
@media screen and (min-width: 768px) {
  .access__info__item {
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
  }
}
.access__info__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.access__info__label {
  font-size: clamp(1.125rem, 1.0357142857rem + 0.2380952381vw, 1.25rem);
  font-weight: var(--f-medium);
  letter-spacing: 0.05em;
  position: relative;
  padding-left: calc(clamp(1.75rem, 1.75rem + 0vw, 1.75rem) + 0.5em);
}
.access__info__label::before {
  content: "";
  position: absolute;
  aspect-ratio: 28/25;
  left: 0;
  top: 5px;
  background: url('data:image/svg+xml;charset=utf8,<svg width="29" height="26" viewBox="0 0 29 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.75 22.1667V23.75C4.75 24.1986 4.59826 24.5747 4.29479 24.8781C3.99132 25.1816 3.61528 25.3333 3.16667 25.3333H1.58333C1.13472 25.3333 0.758681 25.1816 0.455208 24.8781C0.151736 24.5747 0 24.1986 0 23.75V11.0833L3.325 1.58333C3.48333 1.10833 3.76701 0.725694 4.17604 0.435417C4.58507 0.145139 5.04028 0 5.54167 0H22.9583C23.4597 0 23.9149 0.145139 24.324 0.435417C24.733 0.725694 25.0167 1.10833 25.175 1.58333L28.5 11.0833V23.75C28.5 24.1986 28.3483 24.5747 28.0448 24.8781C27.7413 25.1816 27.3653 25.3333 26.9167 25.3333H25.3333C24.8847 25.3333 24.5087 25.1816 24.2052 24.8781C23.9017 24.5747 23.75 24.1986 23.75 23.75V22.1667H4.75ZM4.43333 7.91667H24.0667L22.4042 3.16667H6.09583L4.43333 7.91667ZM7.125 17.4167C7.78472 17.4167 8.34549 17.1858 8.80729 16.724C9.2691 16.2622 9.5 15.7014 9.5 15.0417C9.5 14.3819 9.2691 13.8212 8.80729 13.3594C8.34549 12.8976 7.78472 12.6667 7.125 12.6667C6.46528 12.6667 5.90451 12.8976 5.44271 13.3594C4.9809 13.8212 4.75 14.3819 4.75 15.0417C4.75 15.7014 4.9809 16.2622 5.44271 16.724C5.90451 17.1858 6.46528 17.4167 7.125 17.4167ZM21.375 17.4167C22.0347 17.4167 22.5955 17.1858 23.0573 16.724C23.5191 16.2622 23.75 15.7014 23.75 15.0417C23.75 14.3819 23.5191 13.8212 23.0573 13.3594C22.5955 12.8976 22.0347 12.6667 21.375 12.6667C20.7153 12.6667 20.1545 12.8976 19.6927 13.3594C19.2309 13.8212 19 14.3819 19 15.0417C19 15.7014 19.2309 16.2622 19.6927 16.724C20.1545 17.1858 20.7153 17.4167 21.375 17.4167ZM3.16667 19H25.3333V11.0833H3.16667V19Z" fill="%231F1F1F"/></svg>') no-repeat center/contain;
  width: clamp(1.4375rem, 1.2142857143rem + 0.5952380952vw, 1.75rem);
}
.access__info__text {
  font-size: 0.875rem;
  line-height: 1.9;
}
.access__info__hours {
  display: -ms-grid;
  display: grid;
  gap: 0.375rem;
}
.access__info__hours__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: clamp(4.375rem, 3.4821428571rem + 2.380952381vw, 5.625rem) 1rem 1fr;
  grid-template-columns: clamp(4.375rem, 3.4821428571rem + 2.380952381vw, 5.625rem) 1fr;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access__info__hours__label {
  font-size: 0.8125rem;
  color: #888;
}
.access__info__hours__value {
  font-size: 0.875rem;
  font-weight: var(--f-medium);
}

.back-to-top {
  position: fixed;
  right: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  bottom: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  z-index: 50;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  pointer-events: none;
}
.back-to-top.is-active {
  pointer-events: all;
  opacity: 1;
}
@media screen and (max-width: 767.9px) {
  .back-to-top {
    display: none;
  }
}
.back-to-top__link {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  width: 2.625rem;
  height: 157px;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-block: 0.3125rem;
  border: 1px solid #AA8534;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .back-to-top__link:hover {
    background: rgba(170, 133, 52, 0.3);
  }
}
.back-to-top__icon {
  display: block;
  position: relative;
  width: 1px;
  height: 68px;
  background-color: #AA8534;
}
.back-to-top__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid #AA8534;
  border-right: 1px solid #AA8534;
  rotate: -45deg;
  translate: -50% 2px;
}
.back-to-top__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 18px;
  letter-spacing: 0.2em;
  font-family: "Lexend", "Urbanist", "Arial", "Helvetica", sans-serif;
  font-weight: 200;
  color: #AA8534;
  line-height: 1;
}

/* パララックスセクション */
.parallax-section {
  width: max(90%, 1250px);
  max-width: 100%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  aspect-ratio: 1250/670;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .parallax-section {
    width: 100%;
  }
}

.parallax {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 画像は大きめにして動かしたときに余白が出ないようにする */
.parallax__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  min-width: 100%;
  min-height: 150%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rain-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  background-color: #F2F5F4;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.rain-pattern.is-white {
  background-color: #fff;
}

.petal-y {
  position: absolute;
  top: -60px;
  pointer-events: none;
  will-change: transform, filter;
}

.panel {
  background: var(--color-background-secondary);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.panel code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--color-background-primary);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-text-primary);
}

.__img--cover, .__img--cover--absorute {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.__img--cover--absorute {
  position: absolute;
  inset: 0 0 0 0;
}
.__img--contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.__img--auto {
  width: auto;
  height: auto;
}

/**
  utility
  汎用クラス
**/
.is-overflow {
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1199.9px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (max-width: 999.9px) {
  .is-m {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .is-none-m {
    display: none !important;
  }
}

@media screen and (min-width: 480px) {
  .is-xs {
    display: none !important;
  }
}

@media screen and (max-width: 479.9px) {
  .is-none-xs {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

.is-tb {
  display: none !important;
}
@media screen and (min-width: 1200px) and (max-width: 767.9px) {
  .is-tb {
    display: block !important;
  }
}

@media screen and (min-width: 1200px) {
  .is-tbsp {
    display: none !important;
  }
}

@media screen and (max-width: 767.9px) {
  .is-pctb {
    display: none !important;
  }
}

.is-em {
  font-weight: var(--f-bold);
}

.z-index {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mb0 {
    margin-bottom: 0px !important;
  }
  .pt0 {
    padding-top: 0px !important;
  }
  .pb0 {
    padding-bottom: 0px !important;
  }
  .mt5 {
    margin-top: 5px !important;
  }
  .mb5 {
    margin-bottom: 5px !important;
  }
  .pt5 {
    padding-top: 5px !important;
  }
  .pb5 {
    padding-bottom: 5px !important;
  }
  .mt10 {
    margin-top: 10px !important;
  }
  .mb10 {
    margin-bottom: 10px !important;
  }
  .pt10 {
    padding-top: 10px !important;
  }
  .pb10 {
    padding-bottom: 10px !important;
  }
  .mt15 {
    margin-top: 15px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .pt15 {
    padding-top: 15px !important;
  }
  .pb15 {
    padding-bottom: 15px !important;
  }
  .mt20 {
    margin-top: 20px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .pt20 {
    padding-top: 20px !important;
  }
  .pb20 {
    padding-bottom: 20px !important;
  }
  .mt25 {
    margin-top: 25px !important;
  }
  .mb25 {
    margin-bottom: 25px !important;
  }
  .pt25 {
    padding-top: 25px !important;
  }
  .pb25 {
    padding-bottom: 25px !important;
  }
  .mt30 {
    margin-top: 30px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .pt30 {
    padding-top: 30px !important;
  }
  .pb30 {
    padding-bottom: 30px !important;
  }
  .mt35 {
    margin-top: 35px !important;
  }
  .mb35 {
    margin-bottom: 35px !important;
  }
  .pt35 {
    padding-top: 35px !important;
  }
  .pb35 {
    padding-bottom: 35px !important;
  }
  .mt40 {
    margin-top: 40px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .pt40 {
    padding-top: 40px !important;
  }
  .pb40 {
    padding-bottom: 40px !important;
  }
  .mt45 {
    margin-top: 45px !important;
  }
  .mb45 {
    margin-bottom: 45px !important;
  }
  .pt45 {
    padding-top: 45px !important;
  }
  .pb45 {
    padding-bottom: 45px !important;
  }
  .mt50 {
    margin-top: 50px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .pt50 {
    padding-top: 50px !important;
  }
  .pb50 {
    padding-bottom: 50px !important;
  }
  .mt55 {
    margin-top: 55px !important;
  }
  .mb55 {
    margin-bottom: 55px !important;
  }
  .pt55 {
    padding-top: 55px !important;
  }
  .pb55 {
    padding-bottom: 55px !important;
  }
  .mt60 {
    margin-top: 60px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .pt60 {
    padding-top: 60px !important;
  }
  .pb60 {
    padding-bottom: 60px !important;
  }
  .mt65 {
    margin-top: 65px !important;
  }
  .mb65 {
    margin-bottom: 65px !important;
  }
  .pt65 {
    padding-top: 65px !important;
  }
  .pb65 {
    padding-bottom: 65px !important;
  }
  .mt70 {
    margin-top: 70px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .pt70 {
    padding-top: 70px !important;
  }
  .pb70 {
    padding-bottom: 70px !important;
  }
  .mt75 {
    margin-top: 75px !important;
  }
  .mb75 {
    margin-bottom: 75px !important;
  }
  .pt75 {
    padding-top: 75px !important;
  }
  .pb75 {
    padding-bottom: 75px !important;
  }
  .mt80 {
    margin-top: 80px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .pt80 {
    padding-top: 80px !important;
  }
  .pb80 {
    padding-bottom: 80px !important;
  }
  .mt85 {
    margin-top: 85px !important;
  }
  .mb85 {
    margin-bottom: 85px !important;
  }
  .pt85 {
    padding-top: 85px !important;
  }
  .pb85 {
    padding-bottom: 85px !important;
  }
  .mt90 {
    margin-top: 90px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .pt90 {
    padding-top: 90px !important;
  }
  .pb90 {
    padding-bottom: 90px !important;
  }
  .mt95 {
    margin-top: 95px !important;
  }
  .mb95 {
    margin-bottom: 95px !important;
  }
  .pt95 {
    padding-top: 95px !important;
  }
  .pb95 {
    padding-bottom: 95px !important;
  }
  .mt100 {
    margin-top: 100px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .pt100 {
    padding-top: 100px !important;
  }
  .pb100 {
    padding-bottom: 100px !important;
  }
  .mt105 {
    margin-top: 105px !important;
  }
  .mb105 {
    margin-bottom: 105px !important;
  }
  .pt105 {
    padding-top: 105px !important;
  }
  .pb105 {
    padding-bottom: 105px !important;
  }
  .mt110 {
    margin-top: 110px !important;
  }
  .mb110 {
    margin-bottom: 110px !important;
  }
  .pt110 {
    padding-top: 110px !important;
  }
  .pb110 {
    padding-bottom: 110px !important;
  }
  .mt115 {
    margin-top: 115px !important;
  }
  .mb115 {
    margin-bottom: 115px !important;
  }
  .pt115 {
    padding-top: 115px !important;
  }
  .pb115 {
    padding-bottom: 115px !important;
  }
  .mt120 {
    margin-top: 120px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .pt120 {
    padding-top: 120px !important;
  }
  .pb120 {
    padding-bottom: 120px !important;
  }
  .mt125 {
    margin-top: 125px !important;
  }
  .mb125 {
    margin-bottom: 125px !important;
  }
  .pt125 {
    padding-top: 125px !important;
  }
  .pb125 {
    padding-bottom: 125px !important;
  }
  .mt130 {
    margin-top: 130px !important;
  }
  .mb130 {
    margin-bottom: 130px !important;
  }
  .pt130 {
    padding-top: 130px !important;
  }
  .pb130 {
    padding-bottom: 130px !important;
  }
  .mt135 {
    margin-top: 135px !important;
  }
  .mb135 {
    margin-bottom: 135px !important;
  }
  .pt135 {
    padding-top: 135px !important;
  }
  .pb135 {
    padding-bottom: 135px !important;
  }
  .mt140 {
    margin-top: 140px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .pt140 {
    padding-top: 140px !important;
  }
  .pb140 {
    padding-bottom: 140px !important;
  }
  .mt145 {
    margin-top: 145px !important;
  }
  .mb145 {
    margin-bottom: 145px !important;
  }
  .pt145 {
    padding-top: 145px !important;
  }
  .pb145 {
    padding-bottom: 145px !important;
  }
  .mt150 {
    margin-top: 150px !important;
  }
  .mb150 {
    margin-bottom: 150px !important;
  }
  .pt150 {
    padding-top: 150px !important;
  }
  .pb150 {
    padding-bottom: 150px !important;
  }
  .mt155 {
    margin-top: 155px !important;
  }
  .mb155 {
    margin-bottom: 155px !important;
  }
  .pt155 {
    padding-top: 155px !important;
  }
  .pb155 {
    padding-bottom: 155px !important;
  }
  .mt160 {
    margin-top: 160px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .pt160 {
    padding-top: 160px !important;
  }
  .pb160 {
    padding-bottom: 160px !important;
  }
  .mt165 {
    margin-top: 165px !important;
  }
  .mb165 {
    margin-bottom: 165px !important;
  }
  .pt165 {
    padding-top: 165px !important;
  }
  .pb165 {
    padding-bottom: 165px !important;
  }
  .mt170 {
    margin-top: 170px !important;
  }
  .mb170 {
    margin-bottom: 170px !important;
  }
  .pt170 {
    padding-top: 170px !important;
  }
  .pb170 {
    padding-bottom: 170px !important;
  }
  .mt175 {
    margin-top: 175px !important;
  }
  .mb175 {
    margin-bottom: 175px !important;
  }
  .pt175 {
    padding-top: 175px !important;
  }
  .pb175 {
    padding-bottom: 175px !important;
  }
  .mt180 {
    margin-top: 180px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .pt180 {
    padding-top: 180px !important;
  }
  .pb180 {
    padding-bottom: 180px !important;
  }
  .mt185 {
    margin-top: 185px !important;
  }
  .mb185 {
    margin-bottom: 185px !important;
  }
  .pt185 {
    padding-top: 185px !important;
  }
  .pb185 {
    padding-bottom: 185px !important;
  }
  .mt190 {
    margin-top: 190px !important;
  }
  .mb190 {
    margin-bottom: 190px !important;
  }
  .pt190 {
    padding-top: 190px !important;
  }
  .pb190 {
    padding-bottom: 190px !important;
  }
  .mt195 {
    margin-top: 195px !important;
  }
  .mb195 {
    margin-bottom: 195px !important;
  }
  .pt195 {
    padding-top: 195px !important;
  }
  .pb195 {
    padding-bottom: 195px !important;
  }
  .mt200 {
    margin-top: 200px !important;
  }
  .mb200 {
    margin-bottom: 200px !important;
  }
  .pt200 {
    padding-top: 200px !important;
  }
  .pb200 {
    padding-bottom: 200px !important;
  }
}
@media screen and (max-width: 767.9px) {
  .mt-sp0 {
    margin-top: 0px !important;
  }
  .mb-sp0 {
    margin-bottom: 0px !important;
  }
  .pt-sp0 {
    padding-top: 0px !important;
  }
  .pb-sp0 {
    padding-bottom: 0px !important;
  }
  .mt-sp5 {
    margin-top: 5px !important;
  }
  .mb-sp5 {
    margin-bottom: 5px !important;
  }
  .pt-sp5 {
    padding-top: 5px !important;
  }
  .pb-sp5 {
    padding-bottom: 5px !important;
  }
  .mt-sp10 {
    margin-top: 10px !important;
  }
  .mb-sp10 {
    margin-bottom: 10px !important;
  }
  .pt-sp10 {
    padding-top: 10px !important;
  }
  .pb-sp10 {
    padding-bottom: 10px !important;
  }
  .mt-sp15 {
    margin-top: 15px !important;
  }
  .mb-sp15 {
    margin-bottom: 15px !important;
  }
  .pt-sp15 {
    padding-top: 15px !important;
  }
  .pb-sp15 {
    padding-bottom: 15px !important;
  }
  .mt-sp20 {
    margin-top: 20px !important;
  }
  .mb-sp20 {
    margin-bottom: 20px !important;
  }
  .pt-sp20 {
    padding-top: 20px !important;
  }
  .pb-sp20 {
    padding-bottom: 20px !important;
  }
  .mt-sp25 {
    margin-top: 25px !important;
  }
  .mb-sp25 {
    margin-bottom: 25px !important;
  }
  .pt-sp25 {
    padding-top: 25px !important;
  }
  .pb-sp25 {
    padding-bottom: 25px !important;
  }
  .mt-sp30 {
    margin-top: 30px !important;
  }
  .mb-sp30 {
    margin-bottom: 30px !important;
  }
  .pt-sp30 {
    padding-top: 30px !important;
  }
  .pb-sp30 {
    padding-bottom: 30px !important;
  }
  .mt-sp35 {
    margin-top: 35px !important;
  }
  .mb-sp35 {
    margin-bottom: 35px !important;
  }
  .pt-sp35 {
    padding-top: 35px !important;
  }
  .pb-sp35 {
    padding-bottom: 35px !important;
  }
  .mt-sp40 {
    margin-top: 40px !important;
  }
  .mb-sp40 {
    margin-bottom: 40px !important;
  }
  .pt-sp40 {
    padding-top: 40px !important;
  }
  .pb-sp40 {
    padding-bottom: 40px !important;
  }
  .mt-sp45 {
    margin-top: 45px !important;
  }
  .mb-sp45 {
    margin-bottom: 45px !important;
  }
  .pt-sp45 {
    padding-top: 45px !important;
  }
  .pb-sp45 {
    padding-bottom: 45px !important;
  }
  .mt-sp50 {
    margin-top: 50px !important;
  }
  .mb-sp50 {
    margin-bottom: 50px !important;
  }
  .pt-sp50 {
    padding-top: 50px !important;
  }
  .pb-sp50 {
    padding-bottom: 50px !important;
  }
  .mt-sp55 {
    margin-top: 55px !important;
  }
  .mb-sp55 {
    margin-bottom: 55px !important;
  }
  .pt-sp55 {
    padding-top: 55px !important;
  }
  .pb-sp55 {
    padding-bottom: 55px !important;
  }
  .mt-sp60 {
    margin-top: 60px !important;
  }
  .mb-sp60 {
    margin-bottom: 60px !important;
  }
  .pt-sp60 {
    padding-top: 60px !important;
  }
  .pb-sp60 {
    padding-bottom: 60px !important;
  }
  .mt-sp65 {
    margin-top: 65px !important;
  }
  .mb-sp65 {
    margin-bottom: 65px !important;
  }
  .pt-sp65 {
    padding-top: 65px !important;
  }
  .pb-sp65 {
    padding-bottom: 65px !important;
  }
  .mt-sp70 {
    margin-top: 70px !important;
  }
  .mb-sp70 {
    margin-bottom: 70px !important;
  }
  .pt-sp70 {
    padding-top: 70px !important;
  }
  .pb-sp70 {
    padding-bottom: 70px !important;
  }
  .mt-sp75 {
    margin-top: 75px !important;
  }
  .mb-sp75 {
    margin-bottom: 75px !important;
  }
  .pt-sp75 {
    padding-top: 75px !important;
  }
  .pb-sp75 {
    padding-bottom: 75px !important;
  }
  .mt-sp80 {
    margin-top: 80px !important;
  }
  .mb-sp80 {
    margin-bottom: 80px !important;
  }
  .pt-sp80 {
    padding-top: 80px !important;
  }
  .pb-sp80 {
    padding-bottom: 80px !important;
  }
  .mt-sp85 {
    margin-top: 85px !important;
  }
  .mb-sp85 {
    margin-bottom: 85px !important;
  }
  .pt-sp85 {
    padding-top: 85px !important;
  }
  .pb-sp85 {
    padding-bottom: 85px !important;
  }
  .mt-sp90 {
    margin-top: 90px !important;
  }
  .mb-sp90 {
    margin-bottom: 90px !important;
  }
  .pt-sp90 {
    padding-top: 90px !important;
  }
  .pb-sp90 {
    padding-bottom: 90px !important;
  }
  .mt-sp95 {
    margin-top: 95px !important;
  }
  .mb-sp95 {
    margin-bottom: 95px !important;
  }
  .pt-sp95 {
    padding-top: 95px !important;
  }
  .pb-sp95 {
    padding-bottom: 95px !important;
  }
  .mt-sp100 {
    margin-top: 100px !important;
  }
  .mb-sp100 {
    margin-bottom: 100px !important;
  }
  .pt-sp100 {
    padding-top: 100px !important;
  }
  .pb-sp100 {
    padding-bottom: 100px !important;
  }
  .mt-sp105 {
    margin-top: 105px !important;
  }
  .mb-sp105 {
    margin-bottom: 105px !important;
  }
  .pt-sp105 {
    padding-top: 105px !important;
  }
  .pb-sp105 {
    padding-bottom: 105px !important;
  }
  .mt-sp110 {
    margin-top: 110px !important;
  }
  .mb-sp110 {
    margin-bottom: 110px !important;
  }
  .pt-sp110 {
    padding-top: 110px !important;
  }
  .pb-sp110 {
    padding-bottom: 110px !important;
  }
  .mt-sp115 {
    margin-top: 115px !important;
  }
  .mb-sp115 {
    margin-bottom: 115px !important;
  }
  .pt-sp115 {
    padding-top: 115px !important;
  }
  .pb-sp115 {
    padding-bottom: 115px !important;
  }
  .mt-sp120 {
    margin-top: 120px !important;
  }
  .mb-sp120 {
    margin-bottom: 120px !important;
  }
  .pt-sp120 {
    padding-top: 120px !important;
  }
  .pb-sp120 {
    padding-bottom: 120px !important;
  }
  .mt-sp125 {
    margin-top: 125px !important;
  }
  .mb-sp125 {
    margin-bottom: 125px !important;
  }
  .pt-sp125 {
    padding-top: 125px !important;
  }
  .pb-sp125 {
    padding-bottom: 125px !important;
  }
  .mt-sp130 {
    margin-top: 130px !important;
  }
  .mb-sp130 {
    margin-bottom: 130px !important;
  }
  .pt-sp130 {
    padding-top: 130px !important;
  }
  .pb-sp130 {
    padding-bottom: 130px !important;
  }
  .mt-sp135 {
    margin-top: 135px !important;
  }
  .mb-sp135 {
    margin-bottom: 135px !important;
  }
  .pt-sp135 {
    padding-top: 135px !important;
  }
  .pb-sp135 {
    padding-bottom: 135px !important;
  }
  .mt-sp140 {
    margin-top: 140px !important;
  }
  .mb-sp140 {
    margin-bottom: 140px !important;
  }
  .pt-sp140 {
    padding-top: 140px !important;
  }
  .pb-sp140 {
    padding-bottom: 140px !important;
  }
  .mt-sp145 {
    margin-top: 145px !important;
  }
  .mb-sp145 {
    margin-bottom: 145px !important;
  }
  .pt-sp145 {
    padding-top: 145px !important;
  }
  .pb-sp145 {
    padding-bottom: 145px !important;
  }
  .mt-sp150 {
    margin-top: 150px !important;
  }
  .mb-sp150 {
    margin-bottom: 150px !important;
  }
  .pt-sp150 {
    padding-top: 150px !important;
  }
  .pb-sp150 {
    padding-bottom: 150px !important;
  }
  .mt-sp155 {
    margin-top: 155px !important;
  }
  .mb-sp155 {
    margin-bottom: 155px !important;
  }
  .pt-sp155 {
    padding-top: 155px !important;
  }
  .pb-sp155 {
    padding-bottom: 155px !important;
  }
  .mt-sp160 {
    margin-top: 160px !important;
  }
  .mb-sp160 {
    margin-bottom: 160px !important;
  }
  .pt-sp160 {
    padding-top: 160px !important;
  }
  .pb-sp160 {
    padding-bottom: 160px !important;
  }
  .mt-sp165 {
    margin-top: 165px !important;
  }
  .mb-sp165 {
    margin-bottom: 165px !important;
  }
  .pt-sp165 {
    padding-top: 165px !important;
  }
  .pb-sp165 {
    padding-bottom: 165px !important;
  }
  .mt-sp170 {
    margin-top: 170px !important;
  }
  .mb-sp170 {
    margin-bottom: 170px !important;
  }
  .pt-sp170 {
    padding-top: 170px !important;
  }
  .pb-sp170 {
    padding-bottom: 170px !important;
  }
  .mt-sp175 {
    margin-top: 175px !important;
  }
  .mb-sp175 {
    margin-bottom: 175px !important;
  }
  .pt-sp175 {
    padding-top: 175px !important;
  }
  .pb-sp175 {
    padding-bottom: 175px !important;
  }
  .mt-sp180 {
    margin-top: 180px !important;
  }
  .mb-sp180 {
    margin-bottom: 180px !important;
  }
  .pt-sp180 {
    padding-top: 180px !important;
  }
  .pb-sp180 {
    padding-bottom: 180px !important;
  }
  .mt-sp185 {
    margin-top: 185px !important;
  }
  .mb-sp185 {
    margin-bottom: 185px !important;
  }
  .pt-sp185 {
    padding-top: 185px !important;
  }
  .pb-sp185 {
    padding-bottom: 185px !important;
  }
  .mt-sp190 {
    margin-top: 190px !important;
  }
  .mb-sp190 {
    margin-bottom: 190px !important;
  }
  .pt-sp190 {
    padding-top: 190px !important;
  }
  .pb-sp190 {
    padding-bottom: 190px !important;
  }
  .mt-sp195 {
    margin-top: 195px !important;
  }
  .mb-sp195 {
    margin-bottom: 195px !important;
  }
  .pt-sp195 {
    padding-top: 195px !important;
  }
  .pb-sp195 {
    padding-bottom: 195px !important;
  }
  .mt-sp200 {
    margin-top: 200px !important;
  }
  .mb-sp200 {
    margin-bottom: 200px !important;
  }
  .pt-sp200 {
    padding-top: 200px !important;
  }
  .pb-sp200 {
    padding-bottom: 200px !important;
  }
}
[class*=__link] {
  text-decoration: none;
}