@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 u-fadeUp {
  0% {
    opacity: 0;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes u-fadeUp {
  0% {
    opacity: 0;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes u-fadeIn {
  100% {
    opacity: 1;
    translate: 0;
  }
}
@keyframes u-fadeIn {
  100% {
    opacity: 1;
    translate: 0;
  }
}
@-webkit-keyframes u-animation-title {
  0% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes u-animation-title {
  0% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes u-fadeOut {
  0% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
}
@keyframes u-fadeOut {
  0% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 0;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
}
@-webkit-keyframes video-left {
  100% {
    opacity: 1;
    translate: -100%;
  }
}
@keyframes video-left {
  100% {
    opacity: 1;
    translate: -100%;
  }
}
@-webkit-keyframes video-right {
  100% {
    opacity: 0;
    translate: 100% 0;
  }
}
@keyframes video-right {
  100% {
    opacity: 0;
    translate: 100% 0;
  }
}
@-webkit-keyframes video-top {
  100% {
    opacity: 0;
    translate: 0 -100%;
  }
}
@keyframes video-top {
  100% {
    opacity: 0;
    translate: 0 -100%;
  }
}
@-webkit-keyframes video-end {
  100% {
    opacity: 0;
  }
}
@keyframes video-end {
  100% {
    opacity: 0;
  }
}
:root {
  /* width */
  --font-size: 16px;
  --f-medium: 500;
  --f-regular: 400;
  --f-bold: 700;
  --lineHeight: 1.6;
  --border-radius: 10px;
}

/*
  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(4, 1, 33, 0.3);
}

::selection {
  background-color: rgba(4, 1, 33, 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: "Shippori Mincho", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif, sans-serif;
  font-weight: var(--f-regular);
  font-style: normal;
  font-size: clampValue(16, 16);
  color: #464646;
  line-height: var(--lineHeight);
  letter-spacing: 0.1em;
  word-break: break-word;
  overflow-wrap: break-word;
}
body.body-top {
  background-color: #0D2C1B;
}

/* パーツのスタイル */
:where(.body-top) :where(p) {
  color: #fff;
}

main {
  padding-bottom: clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem);
}

.site-bg {
  position: absolute;
  z-index: -1;
  display: -ms-grid;
  display: grid;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100%;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.site-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../img/teaser/site-bg_2.jpg) repeat-y center;
  height: 100%;
  z-index: -1;
}
.site-bg img {
  width: 100%;
  z-index: 0;
}
.site-bg img:nth-child(2) {
  position: relative;
  top: -2px;
}
.site-bg img:nth-child(3) {
  position: relative;
  top: -3px;
}
.site-bg img:nth-child(4) {
  position: relative;
  top: -4px;
}
.site-bg img:nth-child(5) {
  position: relative;
  top: -5px;
}
.site-bg img:nth-child(6) {
  position: relative;
  top: -6px;
}
.site-bg img:nth-child(7) {
  position: relative;
  top: -7px;
}
.site-bg img:nth-child(8) {
  position: relative;
  top: -8px;
}
.site-bg img:nth-child(9) {
  position: relative;
  top: -9px;
}
.site-bg img:nth-child(10) {
  position: relative;
  top: -10px;
}

.contents-bg--top {
  padding-block: clamp(2.5rem, -0.1785714286rem + 7.1428571429vw, 6.25rem) clamp(1.25rem, -2.3214285714rem + 9.5238095238vw, 6.25rem);
}

.inner {
  width: calc(100% - 30px);
  margin-inline: auto;
}

.site-header {
  padding-top: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
}
.site-header__inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}
.site-header__logo--secondary {
  margin-top: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}
.site-header__logo-h1 {
  margin: 0;
  font-size: 0;
  line-height: 0;
}
.site-header__date-image {
  line-height: 1;
  opacity: 0;
}
.is-inview .site-header__date-image {
  -webkit-animation-name: "u-fadeUp";
          animation-name: "u-fadeUp";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero__main-visual {
  margin-top: clamp(1.4375rem, 0.4553571429rem + 2.619047619vw, 2.8125rem);
  position: relative;
  margin-inline: auto;
  width: min(1200px, 100%);
  padding: 14px;
  z-index: 0;
}
.hero__main-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: url("../img/teaser/mv_frame.svg") no-repeat center/contain;
}
.hero__text {
  line-height: 1.8;
  font-size: clamp(1.125rem, 1.0357142857rem + 0.2380952381vw, 1.25rem);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(1.875rem, 0.9821428571rem + 2.380952381vw, 3.125rem);
}
@media screen and (min-width: 768px) {
  .hero__text {
    text-align: center;
  }
}

.three-column {
  margin-top: clamp(2.5rem, 1.2946428571rem + 3.2142857143vw, 4.1875rem);
  display: -ms-grid;
  display: grid;
  padding-bottom: clamp(3.75rem, 1.9642857143rem + 4.7619047619vw, 6.25rem);
      grid-template-areas: "img1 img2" "img3 img3";
  width: min(1046px, 100%);
  margin-inline: auto;
  gap: clamp(1.875rem, 0rem + 5vw, 4.5rem) clamp(1.25rem, -0.0892857143rem + 3.5714285714vw, 3.125rem);
  min-width: 1px;
}
@media (max-width: 820px) {
  .three-column {
    -ms-grid-columns: (calc(50% - 10px))[2];
    grid-template-columns: repeat(2, calc(50% - 10px));
  }
}
@media screen and (min-width: 480px) {
  .three-column {
    -ms-grid-rows: clamp(37.5rem, 32.0089285714rem + 14.6428571429vw, 45.1875rem) auto;
    grid-template-rows: clamp(37.5rem, 32.0089285714rem + 14.6428571429vw, 45.1875rem) auto;
  }
}
.three-column-wrap {
  position: relative;
  overflow: hidden;
}
.three-column__item {
  opacity: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.three-column__item:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: img1;
}
.three-column__item:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: img2;
}
.three-column__item:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: img3;
}
.three-column__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.three-column__item--1 {
  translate: -30px 0;
  width: 387px;
  aspect-ratio: 387/544;
  padding: clamp(2.9375rem, 2.2393617021rem + 2.2340425532vw, 4.25rem) clamp(1.625rem, 0.8271276596rem + 2.5531914894vw, 3.125rem);
}
@media screen and (max-width: 479.9px) {
  .three-column__item--1 {
    padding: 30px 20px;
  }
}
@media (max-width: 820px) {
  .three-column__item--1 {
    width: 100%;
  }
}
.three-column__item--1::before {
  background-image: url("../img/teaser/visual_1_frame.svg");
}
.three-column__item--1.is-inview {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.three-column__item--2 {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  -ms-grid-column-align: end;
      justify-self: end;
  translate: 30px 0;
  width: 350px;
  aspect-ratio: 350/494;
}
@media (max-width: 820px) {
  .three-column__item--2 {
    width: 100%;
  }
}
.three-column__item--2 {
  padding: clamp(0.75rem, 0.3928571429rem + 0.9523809524vw, 1.25rem);
}
@media screen and (max-width: 479.9px) {
  .three-column__item--2 {
    padding: 10px;
    margin-top: 160px;
  }
}
.three-column__item--2::before {
  background-image: url("../img/teaser/visual_2_frame.svg");
}
.three-column__item--2.is-inview {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.three-column__item--3 {
  translate: clamp(1.875rem, -2.3660714286rem + 11.3095238095vw, 7.8125rem) 30px;
  -webkit-transition: all 1s;
  transition: all 1s;
  width: 583px;
}
@media screen and (max-width: 1199.9px) {
  .three-column__item--3 {
    width: clamp(18.3125rem, 10.0738636364rem + 29.2929292929vw, 36.4375rem);
  }
}
.three-column__item--3 {
  aspect-ratio: 583/388;
  padding: 51px;
}
@media screen and (max-width: 1199.9px) {
  .three-column__item--3 {
    padding: 30px;
  }
}
.three-column__item--3::before {
  background-image: url("../img/teaser/visual_3_frame.svg");
}
.three-column__item--3.is-inview {
  opacity: 1;
  translate: clamp(1.875rem, -2.3660714286rem + 11.3095238095vw, 7.8125rem) 0;
}
.three-column__item__img-figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.three-column__item__img-figure img {
  position: absolute;
  width: 100%;
  top: -20px;
  left: 0px;
  min-height: calc(100% + 40px);
  -o-object-fit: cover;
     object-fit: cover;
}
.three-column__welcom {
  position: absolute;
  bottom: 10px;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  translate: 0 clamp(0rem, -0.7142857143rem + 1.9047619048vw, 1rem);
  -webkit-transition: opacity 3s;
  transition: opacity 3s;
  opacity: 0;
}
.is-inview .three-column__welcom {
  -webkit-animation-name: "u-fadeUp";
          animation-name: "u-fadeUp";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.reserve__text {
  margin-top: clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem);
  line-height: 1.8;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.125rem, 1.0357142857rem + 0.2380952381vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .reserve__text {
    text-align: center;
  }
}
.reserve.is-inview .button {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.reserve .button {
  margin-top: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  translate: 0 30px;
}
.reserve .button__link {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .reserve .button__link:hover {
    opacity: 0.8;
  }
}
.section-title {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.3125rem, 0.3125rem + 0vw, 0.3125rem);
  position: relative;
  margin-bottom: clamp(1.875rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
}
@media screen and (min-width: 480px) {
  .section-title {
    padding-inline: 115px;
    max-inline-size: -webkit-max-content;
    max-inline-size: -moz-max-content;
    max-inline-size: max-content;
  }
}
.section-title::before, .section-title::after {
  content: "";
  width: 15px;
  aspect-ratio: 15/78;
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  translate: 0 -50%;
  background-image: url("../img/teaser/ocbc.svg");
}
.section-title::before {
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.section-title::after {
  right: 0;
}
.section-title span:first-child span {
  color: #AC7B28;
  font-size: clamp(1.75rem, 1.2142857143rem + 1.4285714286vw, 2.5rem);
}
.section-title span:not(:first-child) {
  color: #fff;
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
}
.section-title.is-center {
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.two-column {
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: auto 10px auto;
  grid-template-columns: repeat(2, auto);
  width: min(clamp(60rem, 60rem + 0vw, 60rem), 100%);
}
@media (max-width: 1540px) {
  .two-column {
    width: min(100dvw - (100dvw - 1200px), 100%);
    -ms-grid-columns: 1.5fr clamp(2.5rem, 2.5rem + 0vw, 2.5rem) 1fr;
    grid-template-columns: 1.5fr 1fr;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    gap: 10px clamp(2.5rem, 2.5rem + 0vw, 2.5rem);
  }
}
@media screen and (max-width: 999.9px) {
  .two-column {
    row-gap: clamp(0.9375rem, 0.5769230769rem + 1.4423076923vw, 1.875rem);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.two-column__col--left {
  opacity: 0;
}
@media screen and (min-width: 1000px) {
  .two-column__col--left {
    translate: -40px 0;
  }
}
@media screen and (max-width: 999.9px) {
  .two-column__col--left {
    translate: 0 40px;
  }
}
.is-inview .two-column__col--left {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.two-column__col--left {
  position: relative;
}
@media (min-width: 1541px) {
  .two-column__col--left {
    width: clamp(29.5625rem, 29.5625rem + 0vw, 29.5625rem);
    height: clamp(27.375rem, 27.375rem + 0vw, 27.375rem);
  }
}
@media screen and (max-width: 999.9px) {
  .two-column__col--left {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    width: calc(100% + 30px);
    left: -15px;
  }
}
.two-column__col--left iframe {
  width: clamp(37.5rem, 32.6785714286rem + 12.8571428571vw, 44.25rem);
}
@media (min-width: 1541px) {
  .two-column__col--left iframe {
    position: absolute;
    right: 0;
    top: 0;
    max-width: none;
    height: 100%;
  }
}
@media (max-width: 1540px) {
  .two-column__col--left iframe {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .two-column__col--left iframe {
    height: 300px;
  }
}
.two-column__col--right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  gap: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
}
@media screen and (min-width: 1000px) {
  .two-column__col--right {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}
@media screen and (max-width: 999.9px) {
  .two-column__col--right {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
  }
}
.two-column__col--right > * {
  opacity: 0;
  translate: 0 30px;
}
.is-inview .two-column__col--right > *:nth-child(1) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.is-inview .two-column__col--right > *:nth-child(2) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.is-inview .two-column__col--right > *:nth-child(3) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.95s;
          animation-delay: 0.95s;
}
.is-inview .two-column__col--right > *:nth-child(4) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.is-inview .two-column__col--right > *:nth-child(5) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.is-inview .two-column__col--right > *:nth-child(6) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.is-inview .two-column__col--right > *:nth-child(7) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.55s;
          animation-delay: 1.55s;
}
.is-inview .two-column__col--right > *:nth-child(8) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.is-inview .two-column__col--right > *:nth-child(9) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.85s;
          animation-delay: 1.85s;
}
.is-inview .two-column__col--right > *:nth-child(10) {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.two-column__title {
  margin: 0;
}
.two-column__text {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
@media screen and (max-width: 999.9px) {
  .two-column__exterior-image {
    width: min(500px, 100%);
    margin-top: 20px;
  }
  .two-column__exterior-image img {
    width: 100%;
  }
}

.site-footer__inner {
  padding: 2rem 0;
}
.site-footer__text {
  text-align: center;
}

.footer__floating {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #202020;
  padding-block: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  padding-inline: 1em;
}
.footer__floating__button {
  width: min(1203px, 100%);
  margin-inline: auto;
  color: #fff;
  display: -ms-grid;
  display: grid;
  font-size: clamp(1.125rem, 0.8571428571rem + 0.7142857143vw, 1.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 1.5em 18px;
  line-height: 1.2;
  background: url("../img/teaser/button_left_frame.svg") no-repeat center left/auto 100%, url("../img/teaser/button_right_frame.svg") no-repeat center right/auto 100%;
  position: relative;
  z-index: 0;
}
.footer__floating__button::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 5px;
  width: 71px;
  aspect-ratio: 71/12;
  left: 50%;
  background: url("../img/teaser/button_reserva.svg") no-repeat center/contain;
  translate: -50% 0;
}
.footer__floating__button::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 30px);
  left: 15px;
  height: 100%;
  background: url("../img/teaser/button_line.svg") repeat left center/auto 100%;
}

/*
アニメーション
*/
.u-fadeUp {
  opacity: 0;
}

.is-inview .u-fadeUp {
  opacity: 1;
  -webkit-animation: u-fadeUp 1.5s cubic-bezier(0.55, 0, 0.1, 1) both;
          animation: u-fadeUp 1.5s cubic-bezier(0.55, 0, 0.1, 1) both;
}

.u-fadeIn {
  opacity: 0;
  translate: 0 30px;
}

.is-inview .u-fadeIn {
  opacity: 1;
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animation-title span {
  opacity: 0;
  display: inline-block;
}
.is-inview .animation-title span {
  -webkit-animation: u-animation-title 0.5s cubic-bezier(0.55, 0, 0.1, 1) both;
          animation: u-animation-title 0.5s cubic-bezier(0.55, 0, 0.1, 1) both;
}
.is-inview .animation-title span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.is-inview .animation-title span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.is-inview .animation-title span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.is-inview .animation-title span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.is-inview .animation-title span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.is-inview .animation-title span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.is-inview .animation-title span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.is-inview .animation-title span:nth-child(8) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.is-inview .animation-title span:nth-child(9) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.is-inview .animation-title span:nth-child(10) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.is-inview .animation-title span:nth-child(11) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.is-inview .animation-title span:nth-child(12) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.is-inview .animation-title span:nth-child(13) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.is-inview .animation-title span:nth-child(14) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.is-inview .animation-title span:nth-child(15) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.is-inview .animation-title span:nth-child(16) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.is-inview .animation-title span:nth-child(17) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}
.is-inview .animation-title span:nth-child(18) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.is-inview .animation-title span:nth-child(19) {
  -webkit-animation-delay: 0.95s;
          animation-delay: 0.95s;
}
.is-inview .animation-title span:nth-child(20) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.is-inview .animation-title span:nth-child(21) {
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
}
.is-inview .animation-title span:nth-child(22) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.is-inview .animation-title span:nth-child(23) {
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}
.is-inview .animation-title span:nth-child(24) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.is-inview .animation-title span:nth-child(25) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.is-inview .animation-title span:nth-child(26) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.is-inview .animation-title span:nth-child(27) {
  -webkit-animation-delay: 1.35s;
          animation-delay: 1.35s;
}
.is-inview .animation-title span:nth-child(28) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.is-inview .animation-title span:nth-child(29) {
  -webkit-animation-delay: 1.45s;
          animation-delay: 1.45s;
}
.is-inview .animation-title span:nth-child(30) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.video {
  background-color: #082414;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  padding: 10px;
  opacity: 1;
  pointer-events: none;
}
.video.is-animation {
  -webkit-animation-name: "u-fadeOut";
          animation-name: "u-fadeOut";
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  animation-c: ease;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.video__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  max-width: calc(100% - 30px);
  pointer-events: none;
  translate: -50% -50%;
}
.is-animation .video__logo {
  opacity: 0;
}

.video__inner {
  top: 0;
  left: 0;
  position: relative;
  overflow: hidden;
  position: relative;
  padding: 5px;
  height: 100%;
  border: 5px solid transparent;
  opacity: 0;
}
.is-animation .video__inner {
  opacity: 1;
  border: 5px solid #AC7B28;
}

.video__frame {
  position: absolute;
  inset: 5px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.is-animation .video__frame {
  opacity: 1;
}

.video__frame::after, .video__frame::before {
  content: "";
  position: absolute;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  width: 186px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767.9px) {
  .video__frame::after, .video__frame::before {
    width: clamp(3.75rem, -1.875rem + 15vw, 11.625rem);
  }
}
.video__frame::after, .video__frame::before {
  background: url("../img/teaser/frame_decoration.png") no-repeat center/contain;
}
.video__frame:nth-child(1)::before {
  top: 0;
  left: 0;
  rotate: -90deg;
}
.video__frame:nth-child(1)::after {
  top: 0;
  right: 0;
}
.video__frame:nth-child(2)::before {
  bottom: 0;
  left: 0;
  rotate: 180deg;
}
.video__frame:nth-child(2)::after {
  bottom: 0;
  right: 0;
  rotate: 90deg;
}
.video__images {
  opacity: 0;
  position: absolute;
  inset: 10px 10px 10px 10px;
  z-index: 0;
  overflow: hidden;
}
.is-animation .video__images {
  opacity: 1;
}

.video__images img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.is-animation .video__images img:nth-child(1) {
  -webkit-animation-name: "video-left";
          animation-name: "video-left";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: cubic-bezier(0.97, 0.07, 0.25, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: -1;
}

.is-animation .video__images img:nth-child(2) {
  -webkit-animation-name: "video-right";
          animation-name: "video-right";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: cubic-bezier(0.97, 0.07, 0.25, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: -2;
}

.is-animation .video__images img:nth-child(3) {
  -webkit-animation-name: "video-top";
          animation-name: "video-top";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: cubic-bezier(0.97, 0.07, 0.25, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: -3;
}

.is-animation .video__images img:nth-child(4) {
  -webkit-animation-name: "video-end";
          animation-name: "video-end";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: cubic-bezier(0.97, 0.07, 0.25, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: -4;
}

.is-animation .video__images img:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.is-animation .video__images img:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.is-animation .video__images img:nth-child(4) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.is-animation .video__images img:nth-child(5) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.is-animation .video__images img:nth-child(6) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.is-animation .video__images img:nth-child(7) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.is-animation .video__images img:nth-child(8) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.is-animation .video__images img:nth-child(9) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.is-animation .video__images img:nth-child(10) {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

/* パララックスセクション */
.parallax-section {
  aspect-ratio: 1440/755;
  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;
}
@media screen and (max-width: 767.9px) {
  .parallax-section {
    aspect-ratio: 16/10;
  }
}

.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;
}

.footer {
  padding: 15px;
}
.footer__copyright {
  color: #fff;
  display: -ms-grid;
  display: grid;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ==============================================
   Base: Contact Us Wrapper & Inputs
   ============================================== */
.top-contact {
  width: min(960px, 100%);
  margin-inline: auto;
  background-color: #082414;
  padding: clamp(2.5rem, 1.6071428571rem + 2.380952381vw, 3.75rem) clamp(1.25rem, -0.5357142857rem + 4.7619047619vw, 3.75rem);
  position: relative;
}

.contact-us input[type=text], .contact-us input[type=email], .contact-us input[type=tel], .contact-us select, .contact-us textarea {
  outline: none;
  width: 100%;
  min-height: clamp(2.1875rem, 1.9642857143rem + 0.5952380952vw, 2.5rem);
  padding: 0.5em 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  background-color: #F6F6F6;
  border: none;
  font-family: "Hiragino Kaku Gothic ProN", Arial, "Hiragino Sans", Meiryo, sans-serif, sans-serif;
}
.contact-us input[type=text]::-webkit-input-placeholder, .contact-us input[type=email]::-webkit-input-placeholder, .contact-us input[type=tel]::-webkit-input-placeholder, .contact-us select::-webkit-input-placeholder, .contact-us textarea::-webkit-input-placeholder {
  color: #B1B1B1;
}
.contact-us input[type=text]::-moz-placeholder, .contact-us input[type=email]::-moz-placeholder, .contact-us input[type=tel]::-moz-placeholder, .contact-us select::-moz-placeholder, .contact-us textarea::-moz-placeholder {
  color: #B1B1B1;
}
.contact-us input[type=text]:-ms-input-placeholder, .contact-us input[type=email]:-ms-input-placeholder, .contact-us input[type=tel]:-ms-input-placeholder, .contact-us select:-ms-input-placeholder, .contact-us textarea:-ms-input-placeholder {
  color: #B1B1B1;
}
.contact-us input[type=text]::-ms-input-placeholder, .contact-us input[type=email]::-ms-input-placeholder, .contact-us input[type=tel]::-ms-input-placeholder, .contact-us select::-ms-input-placeholder, .contact-us textarea::-ms-input-placeholder {
  color: #B1B1B1;
}
.contact-us input[type=text]::placeholder, .contact-us input[type=email]::placeholder, .contact-us input[type=tel]::placeholder, .contact-us select::placeholder, .contact-us textarea::placeholder {
  color: #B1B1B1;
}
.regist .contact-us input[type=text], .regist .contact-us input[type=email], .regist .contact-us input[type=tel], .regist .contact-us select, .regist .contact-us textarea {
  min-height: clamp(4.375rem, 3.9285714286rem + 1.1904761905vw, 5rem);
  background-color: #F6F6F6;
}

.contact-us input[type=text].is-short, .contact-us input[type=email].is-short, .contact-us input[type=tel].is-short, .contact-us select.is-short, .contact-us textarea.is-short {
  width: min(345px, 100%);
}
.contact-us textarea {
  height: clamp(22.5rem, 22.5rem + 0vw, 22.5rem);
}
@media screen and (max-width: 479.9px) {
  .contact-us textarea {
    height: 200px;
  }
}
@media screen and (min-width: 768px) {
  .contact-us input[type=file] {
    line-height: 43px;
  }
}
.contact-us input[type=file]::-webkit-file-upload-button {
  background: #E6E6E6;
  border: none;
  font-size: 16px;
  margin-right: 10px;
  padding: 2px 13px;
}
.contact-us input[type=file] span {
  padding-inline: 10px;
}
.contact-us select {
  cursor: pointer;
  background: url('data:image/svg+xml;charset=utf8,<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5.19629L9 0.000137329L9 10.3924L0 5.19629Z" fill="%23fff"/></svg>') no-repeat calc(100% - 10px) center/18px;
}
.contact-us .wpcf7-list-item {
  margin: 0;
}
.contact-us .wpcf7-not-valid-tip {
  color: #FF0000;
  font-size: 0.875rem;
  margin-top: 0.375rem;
}
.contact-us .wpcf7-not-valid-tip.is-hidden {
  display: none;
}
.contact-us .wpcf7-form {
  position: relative;
}
.contact-us input[type=radio] {
  display: none;
}
.contact-us input[type=radio]:checked + .wpcf7-list-item-label::after {
  background: #040121;
}
.contact-us .wpcf7-list-item-label {
  position: relative;
  padding-left: 1.7em;
  cursor: pointer;
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .contact-us .wpcf7-list-item-label {
    font-size: 14px;
  }
}

/* ==============================================
   Component: Contact Form
   ============================================== */
.contact-form__head {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
}
.contact-form__head__title {
  color: #fff;
  font-weight: var(--f-medium);
  font-size: clamp(1.375rem, 0.5714285714rem + 2.1428571429vw, 2.5rem);
  line-height: 1.3;
}
.contact-form__head__text {
  color: #fff;
  margin-top: clamp(0rem, -1.1160714286rem + 2.9761904762vw, 1.5625rem);
}
@media screen and (max-width: 1199.9px) {
  .contact-form__head__text {
    font-size: clamp(0.875rem, 0.7857142857rem + 0.2380952381vw, 1rem);
  }
}
.contact-form__head__note {
  color: #040121;
  font-weight: var(--f-medium);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.3125rem, 0.3125rem + 0vw, 0.3125rem);
}
@media screen and (max-width: 1199.9px) {
  .contact-form__head__note {
    font-size: clamp(0.875rem, 0.7857142857rem + 0.2380952381vw, 1rem);
  }
}
.contact-form__head__note::before {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #040121;
  position: relative;
}
.contact-form__title {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-form__title__main {
  font-size: clamp(1.5rem, 0.875rem + 1.6666666667vw, 2.375rem);
  padding-bottom: 0.4em;
}
.contact-form__title-wrap {
  margin-inline: auto;
}
.contact-form__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem) min(clamp(29.4375rem, 29.4375rem + 0vw, 29.4375rem), 60%);
  grid-template-columns: 1fr min(clamp(29.4375rem, 29.4375rem + 0vw, 29.4375rem), 60%);
  gap: clamp(1.875rem, 0.5357142857rem + 3.5714285714vw, 3.75rem);
}
@media screen and (max-width: 767.9px) {
  .contact-form__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.contact-form__grid__text {
  color: #fff;
}
@media screen and (max-width: 1199.9px) {
  .contact-form__grid__text {
    font-size: clamp(0.875rem, 0.7857142857rem + 0.2380952381vw, 1rem);
  }
}
@media screen and (max-width: 767.9px) {
  .contact-form__grid__text br + br {
    display: none;
  }
}
.contact-form__input {
  position: relative;
}
.contact-form .page-title-bg {
  margin-top: clamp(2.9375rem, 2.9375rem + 0vw, 2.9375rem);
}
.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--f-medium);
  color: #fff;
  line-height: 1.2;
  font-size: 16px;
  cursor: default;
}
.contact-form__label.is-required::after {
  content: "必須";
  white-space: nowrap;
  padding-inline: 0.8em;
  display: inline-block;
  background-color: #AC7B28;
  font-size: 12px;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  position: relative;
  top: 4px;
  color: #082414;
}
.contact-form__label__min {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
.contact-form__radio .wpcf7-form-control {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.75rem, -0.0535714286rem + 2.1428571429vw, 1.875rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .contact-form__radio .wpcf7-form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contact-form__comment__error {
  display: none;
}
.contact-form.is-error .contact-form__comment__error {
  display: -ms-grid;
  display: grid;
}

.contact-form__comment__error {
  color: #FF0000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.125rem, 1.0357142857rem + 0.2380952381vw, 1.25rem);
  margin-block: 0 0.8em;
}
.contact-form__error-message {
  color: #FF0000;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form__error-message::before {
  content: "※";
  color: #FF0000;
  left: 0;
  top: 0.1em;
}
.contact-form__complate {
  display: none;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__complate {
    padding-block: 2.5rem 1.25rem;
  }
}
@media screen and (max-width: 767.9px) {
  .contact-form__complate {
    padding-block: 3.4375rem 0;
  }
}
.contact-form.is-complate .contact-form__complate {
  -webkit-animation-name: "u-fadeIn";
          animation-name: "u-fadeIn";
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  animation-c: ease;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.contact-form__complate a {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .contact-form__complate a:hover {
    color: #040121;
  }
}
.contact-form__complate a.link-arrow--l::after {
  width: 13px;
}
.contact-form__complate__text {
  line-height: 2;
  font-size: clamp(1rem, 0.9107142857rem + 0.2380952381vw, 1.125rem);
  color: #fff;
}
.contact-form__complate__text a {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact-form__complate__text {
    text-align: center;
  }
}
.contact-form__complate__text__error {
  color: #FF0000;
  font-weight: var(--f-bold);
  margin-bottom: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
  display: none;
  font-size: 1.125rem;
  line-height: 1.2;
}
.is-contact.is-error .contact-form__complate__text__error {
  display: block;
}

.contact-form__block {
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
}
.contact-form__block.is-flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem) 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem);
}
@media screen and (max-width: 1199.9px) {
  .contact-form__block.is-flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.page-title-bg + .contact-form__block {
  margin-top: 0;
}

.contact-form__block.is-radio-block .contact-form__block__item:nth-child(1) {
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
}
@media screen and (min-width: 768px) {
  .contact-form__block.is-radio-block .contact-form__block__item:nth-child(2) {
    margin-top: clamp(1.125rem, 0.8125rem + 0.8333333333vw, 1.5625rem);
  }
}
.contact-form__block__group {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.contact-form__block__item__label {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  margin-bottom: clamp(0.3125rem, 0.3125rem + 0vw, 0.3125rem);
}
.contact-form__block__item__address {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem) clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  margin-top: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
}
@media screen and (min-width: 768px) {
  .contact-form__block__item__address {
    -ms-grid-columns: (162px)[2] 1fr;
    grid-template-columns: repeat(2, 162px) 1fr;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__block__item__address__item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
  }
}
.contact-form__block__item__age {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: clamp(6rem, 6rem + 0vw, 6rem) clamp(0.5rem, 0.5rem + 0vw, 0.5rem) 1fr;
  grid-template-columns: clamp(6rem, 6rem + 0vw, 6rem) 1fr;
  gap: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form__block .smf-placeholder {
  min-height: clamp(1.6875rem, 1.6875rem + 0vw, 1.6875rem);
}
@media screen and (min-width: 768px) {
  .contact-form__block .smf-item__label__text {
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 767.9px) {
  .contact-form__block .smf-item__label__text {
    margin-bottom: 0.3125rem;
  }
}
.contact-form__block .smf-item__label__text.is-required::after {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  margin-left: 0.3125rem;
  background-color: #040121;
  border-radius: 50%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  translate: 0 0.625rem;
}
.contact-form__block .smf-radio-buttons-control__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.contact-form__note {
  color: #111111;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  margin-inline: auto;
  line-height: 1.6;
  display: block;
}
.contact-form__note span {
  color: #FF0000;
}
.contact-form__agreement {
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
  margin-top: clamp(1.25rem, 0.8035714286rem + 1.1904761905vw, 1.875rem);
}
.contact-form__checkbox {
  margin-top: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  position: relative;
}
.contact-form__checkbox input {
  display: none !important;
}
.contact-form__checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: calc(24px + 0.5em);
  cursor: pointer;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.contact-form__checkbox .wpcf7-list-item-label a {
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.contact-form__checkbox .wpcf7-list-item-label a::after {
  content: "";
  width: 11px;
  aspect-ratio: 11/8;
  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.80005" 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;
  display: -ms-grid;
  display: grid;
}
@media (hover: hover) {
  .contact-form__checkbox .wpcf7-list-item-label a:hover {
    text-decoration: none;
  }
}
.contact-form__checkbox .wpcf7-list-item-label::before, .contact-form__checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  aspect-ratio: 1/1;
  top: 4px;
  left: 0;
  translate: 0;
}
@media screen and (max-width: 767.9px) {
  .contact-form__checkbox .wpcf7-list-item-label::before, .contact-form__checkbox .wpcf7-list-item-label::after {
    width: 18px;
    height: 18px;
  }
}
.contact-form__checkbox .wpcf7-list-item-label::before {
  background-color: #fff;
}
.contact-form__checkbox .wpcf7-list-item-label::after {
  opacity: 0;
  width: 8px;
  height: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
  left: 5px;
  border: none;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}
[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #fff;
}

[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contact-form__checkbox__label__text {
  display: -ms-grid;
  display: grid;
  margin-bottom: clamp(1.5625rem, 1.1160714286rem + 1.1904761905vw, 2.1875rem);
  position: relative;
  padding-top: 0.3125rem;
}
.contact-form-wrap.is-confirm .contact-form__checkbox__label__text {
  display: none;
}

.contact-form__checkbox__label__text input {
  display: none;
}
.contact-form__checkbox__label__text__group {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .contact-form__checkbox__label__text__group {
    font-size: 0.875rem;
  }
}
.contact-form__checkbox__label__text__group::before, .contact-form__checkbox__label__text__group::after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  width: clamp(1rem, 0.9107142857rem + 0.2380952381vw, 1.125rem);
  aspect-ratio: 1/1;
  top: 58%;
  left: 0;
  translate: 0 -50%;
}
.contact-form__checkbox__label__text__group::before {
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .contact-form__checkbox__label__text__group::before {
    top: 0.6875rem;
  }
}
.contact-form__checkbox__label__text__group::after {
  opacity: 0;
  width: 0.5rem;
  height: 0.6875rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 55%;
  left: 0.375rem;
  border: none;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  translate: 0 -50%;
}
[type=checkbox]:checked + .contact-form__checkbox__label__text__group::after {
  opacity: 1;
}
@media screen and (max-width: 767.9px) {
  [type=checkbox]:checked + .contact-form__checkbox__label__text__group::after {
    top: 0.625rem;
  }
}

.contact-form__checkbox__label__text__group a {
  display: inline-block;
  margin-left: 1.75rem;
  border-bottom: none;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  position: relative;
  gap: 0.3125rem;
  padding-right: 0.75rem;
}
.contact-form__checkbox__label__text__group a::after {
  content: "";
  position: absolute;
  top: 50%;
  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.80005" 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;
  width: 0.625rem;
  aspect-ratio: 1/1;
  translate: 0 -50%;
  right: 0;
}
@media (hover: hover) {
  .contact-form__checkbox__label__text__group a:hover {
    opacity: 0.8;
  }
}
.contact-form__checkbox__label__text__group label {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
.contact-form__checkbox__label__text__group label:nth-child(1) {
  height: 20px;
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .contact-form__checkbox__label__text__group label {
    display: block;
    padding-left: 2em;
  }
}
.contact-form__send {
  margin-top: clamp(1.25rem, 0.9821428571rem + 0.7142857143vw, 1.625rem);
}
.contact-form__send__item {
  text-align: center;
  color: #000;
  margin-top: clamp(3.125rem, 0.8928571429rem + 5.9523809524vw, 6.25rem);
}
.contact-form__send__text {
  font-weight: var(--f-bold);
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  text-decoration: underline;
}
.contact-form__button-wrap {
  margin-top: clamp(2.1875rem, 1.5178571429rem + 1.7857142857vw, 3.125rem);
}
.contact-form__button-wrap .wpcf7-spinner {
  position: absolute;
  right: 2em;
  top: 50%;
  translate: 0 -50%;
  background-color: rgba(4, 1, 33, 0.8);
}
.contact-form__button__item--submit {
  position: relative;
}
.contact-form__button__item--confirm, .contact-form__button__item--submit input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -ms-grid;
  display: grid;
  cursor: pointer;
  width: 100%;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  min-height: 3.625rem;
  padding: 0.3rem 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 1.4;
  z-index: 0;
  color: #fff;
  padding: 0;
  background-color: #AC7B28;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 1s ease;
  transition: background 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.contact-form__button__item--confirm:disabled, .contact-form__button__item--submit input:disabled {
  cursor: no-drop;
  background-color: #3B3B3B;
}
@media (hover: hover) {
  .contact-form__button__item--confirm:not(:disabled):hover, .contact-form__button__item--submit input:not(:disabled):hover {
    background-color: rgb(208.3962264151, 151.3066037736, 54.6037735849);
  }
}
.contact-form__button__item--return {
  margin-top: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  text-align: left;
  background: none;
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  position: relative;
  padding-left: calc(0.75rem + 0.6em);
  opacity: 1;
  color: #fff;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) {
  .contact-form__button__item--return:hover {
    opacity: 0.8;
  }
}
.contact-form__button__item--return::before {
  content: "";
  position: absolute;
  left: 0;
  top: 51%;
  background: url('data:image/svg+xml;charset=utf8,<svg width="9" height="11" viewBox="0 0 9 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5.19629L9 0.000137329L9 10.3924L0 5.19629Z" fill="%23fff"/></svg>') no-repeat center/contain;
  width: 0.75rem;
  aspect-ratio: 1/1;
  translate: 0 -50%;
}
.contact-form pre {
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  width: 100%;
}
.contact-form:not(.is-confirm) .contact-form__button__item--return, .contact-form:not(.is-confirm) .contact-form__button__item--submit {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact-form:not(.is-confirm) .contact-form__block.is-radio-block .contact-form__block__item:nth-child(2) {
    margin-top: clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem);
  }
}
.contact-form {
  /* ==============================================
     [State] Confirm: 確認画面のスタイル一括管理
     ============================================== */
}
.contact-form.is-confirm .contact-form__head__text, .contact-form.is-confirm .contact-form__head__note, .contact-form.is-confirm .contact-form__block__item__address, .contact-form.is-confirm .contact-form__checkbox__label__text, .contact-form.is-confirm .contact-form__note, .contact-form.is-confirm .contact-form__grid__text, .contact-form.is-confirm .contact-form__file {
  display: none;
}
.contact-form.is-confirm select, .contact-form.is-confirm input[type=text], .contact-form.is-confirm input[type=email], .contact-form.is-confirm input[type=tel], .contact-form.is-confirm .wpcf7-radio, .contact-form.is-confirm .contact-form__block__item__age, .contact-form.is-confirm textarea {
  display: none;
}
.contact-form.is-confirm .contact-form__grid {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: clamp(2.1875rem, 2.1875rem + 0vw, 2.1875rem);
}
.contact-form.is-confirm .contact-form__checkbox__agreement .wpcf7-form-control-wrap {
  display: none;
}
.contact-form.is-confirm .contact-form__block.is-radio-block .contact-form__block__item:nth-child(2), .contact-form.is-confirm .contact-form__inner {
  margin-top: 0;
}
.contact-form.is-confirm [data-screen=confirm] .smf-item__label__text {
  color: #040121;
}
.contact-form.is-confirm .contact-form__block.is-flex {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767.9px) {
  .is-contact.is-confirm .contact-form.is-confirm .smf-item__label__text {
    background-color: rgba(4, 1, 33, 0.1);
    padding: 0.3em 0.2em;
  }
}

.contact-form.is-confirm .contact-form__button__item--confirm {
  display: none;
}
.contact-form.is-confirm .contact-form__button-wrap .button {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.contact-form {
  /* ==============================================
     [State] Complate: 完了画面のスタイル一括管理
     ============================================== */
}
.contact-form.is-complate .contact-form__head__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -ms-grid;
  display: grid;
}
.contact-form.is-complate .contact-form__grid, .contact-form.is-complate .contact-form__note, .contact-form.is-complate .contact-form__button-wrap, .contact-form.is-complate .contact-form__send {
  display: none;
}
.contact-form.is-complate .contact-form__inner {
  display: none;
}
.contact-form.is-complate .contact-form__complate {
  display: block;
}
#contact.is-complate .contact-form.is-complate .contact-form__complate {
  display: block;
}

.contact-form.is-input .button__group {
  display: none;
}

/* ==============================================
   Other Components
   ============================================== */
.form-confirm-text {
  min-height: 1.5em;
  padding: 0 0 0.5em;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}

.wpcf7-turnstile {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(1.875rem, 0.9821428571rem + 2.380952381vw, 3.125rem);
}

.wpcf7 form .wpcf7-response-output {
  position: absolute;
  left: 0;
  border: none;
  top: 0;
  text-align: center;
  width: 100%;
  margin: 0;
  top: 3.1875rem;
  padding: 0;
  font-size: clamp(1rem, 0.9107142857rem + 0.2380952381vw, 1.125rem);
  color: #fff;
  padding-inline: clamp(0.9375rem, -1.0714285714rem + 5.3571428571vw, 3.75rem);
}
@media screen and (max-width: 767.9px) {
  .wpcf7 form .wpcf7-response-output {
    top: 2.0625rem;
    text-align: left;
  }
}

body:has(.is-complate) .grecaptcha-add-text {
  display: none;
}

/* 各ページのスタイル */
.__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;
}
/*# sourceMappingURL=main.css.map */