@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-origin: border-box;
}

@font-face {
  font-family: "Snell Roundhand";
  src: url("../font/SnellBT-Regular.otf") format("opentype");
  font-display: swap;
}
:root {
  --main-primary: #a07506;
  --txt-primary: #3c321e;
  --color-white: #fff;
  font-size: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  display: block;
  overflow-x: hidden;
  width: 100%;
  font-style: normal;
  font-family: "Shippori Mincho", serif;
  color: var(--color-white);
  background-color: #000;
  position: relative;
}
body.is-splash-active {
  overflow: hidden;
  height: 100vh;
}

/*====================================*/
/* スプラッシュスクリーン（オープニング） */
/* 北斗の拳風：1枚目中央 → 2,3枚目が叩き込まれる */
/*====================================*/
@-webkit-keyframes splash-punch-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes splash-punch-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes splash-impact-shake {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  15% {
    -webkit-transform: translate(-10px, 5px);
            transform: translate(-10px, 5px);
  }
  30% {
    -webkit-transform: translate(8px, -5px);
            transform: translate(8px, -5px);
  }
  45% {
    -webkit-transform: translate(-5px, 3px);
            transform: translate(-5px, 3px);
  }
  60% {
    -webkit-transform: translate(5px, -3px);
            transform: translate(5px, -3px);
  }
}
@keyframes splash-impact-shake {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  15% {
    -webkit-transform: translate(-10px, 5px);
            transform: translate(-10px, 5px);
  }
  30% {
    -webkit-transform: translate(8px, -5px);
            transform: translate(8px, -5px);
  }
  45% {
    -webkit-transform: translate(-5px, 3px);
            transform: translate(-5px, 3px);
  }
  60% {
    -webkit-transform: translate(5px, -3px);
            transform: translate(5px, -3px);
  }
}
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  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;
  background-color: #000;
  -webkit-transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  visibility: visible;
  opacity: 1;
}
.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-screen__inner {
  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;
  width: 50%;
  max-width: 1400px;
  height: auto;
  gap: 0;
  -webkit-transition: gap 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: gap 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .splash-screen__inner {
    width: 95%;
  }
}
.splash-screen__inner.is-animated {
  gap: 3%;
}
.splash-screen__img {
  height: auto;
  max-height: 50vh;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-box-flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s, -webkit-box-flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  transition: flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s, -webkit-box-flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -ms-flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* 1枚目（460）: 北斗の拳ロゴ */
}
.splash-screen__img:nth-of-type(1) {
  -webkit-box-flex: 230;
      -ms-flex: 230;
          flex: 230;
  opacity: 1;
  -webkit-animation: splash-punch-in 0.4s cubic-bezier(0.11, 0, 0.5, 0) forwards, splash-impact-shake 0.3s ease-out 0.4s forwards;
          animation: splash-punch-in 0.4s cubic-bezier(0.11, 0, 0.5, 0) forwards, splash-impact-shake 0.3s ease-out 0.4s forwards;
}
.splash-screen__img {
  /* 2枚目（66）: ✕マーク */
}
.splash-screen__img:nth-of-type(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  pointer-events: none;
  overflow: hidden;
}
.splash-screen__img {
  /* 3枚目（564）: プリンスホテルロゴ */
}
.splash-screen__img:nth-of-type(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  pointer-events: none;
  overflow: hidden;
}
.splash-screen {
  /* JavaScriptで .is-animated が付与された時の動き */
}
.splash-screen.is-animated .splash-screen__img:nth-of-type(2) {
  -webkit-box-flex: 33;
      -ms-flex: 33;
          flex: 33;
  opacity: 1;
  -webkit-animation: splash-punch-in 0.3s ease-out 0.1s forwards;
          animation: splash-punch-in 0.3s ease-out 0.1s forwards;
}
.splash-screen.is-animated .splash-screen__img:nth-of-type(3) {
  -webkit-box-flex: 282;
      -ms-flex: 282;
          flex: 282;
  opacity: 1;
  -webkit-animation: splash-punch-in 0.4s cubic-bezier(0.11, 0, 0.5, 0) 0.2s forwards, splash-impact-shake 0.3s ease-out 0.6s forwards;
          animation: splash-punch-in 0.4s cubic-bezier(0.11, 0, 0.5, 0) 0.2s forwards, splash-impact-shake 0.3s ease-out 0.6s forwards;
}

/*====================================*/
/* base contents */
/*====================================*/
h1 {
  font-weight: 400;
  line-height: 1.8;
}

h2 {
  font-weight: 700;
  line-height: 1.7;
}

h3 {
  font-weight: 500;
  line-height: 1.8;
}

p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style-type: none;
}

ul li {
  color: currentColor;
}

img {
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.animate,
.animate-delay {
  opacity: 0;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  position: relative;
}

.animate-delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.slide-up {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.slide-down {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.slide-left {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.slide-right {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.animate.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.gallery_img.animate {
  -webkit-transition-delay: calc(var(--delay) * 0.1s);
          transition-delay: calc(var(--delay) * 0.1s);
}

/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */
/* ----pc,sp/on_off---- */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767.98px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.copyright {
  background-color: var(--color-white);
}

.copyright p {
  padding: 14px 0;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 15.2px;
  letter-spacing: 0.36px;
  color: #000;
  font-family: "Noto Serif JP", serif;
}

/* pageTop */
.pageTop a {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  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;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  rotate: 180deg;
  background-color: var(--color-white);
  -webkit-transition: all 0.3s ease, -webkit-filter 0.3s ease;
  transition: all 0.3s ease, -webkit-filter 0.3s ease;
  transition: all 0.3s ease, filter 0.3s ease;
  transition: all 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
  opacity: 0.5;
}

.pageTop a:hover {
  background-color: var(--main-primary);
  -webkit-filter: drop-shadow(0px 8px 5px rgba(61, 38, 4, 0.5333333333));
          filter: drop-shadow(0px 8px 5px rgba(61, 38, 4, 0.5333333333));
  rotate: 270deg;
  opacity: 1;
}

.pageTop a:hover svg path,
.pageTop a:hover svg circle {
  stroke: white;
  fill: var(--color-primary);
}

.pageTop a:hover svg circle {
  stroke: var(--color-primary);
}

.pageTop a svg {
  width: 80px;
}

.is-pc {
  display: block;
}
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

/* ベース：最初は透明 */
.js-fade {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  will-change: opacity, transform; /* 動作を滑らかにするお守り */
}

/* 方向ごとの初期位置 */
.js-fade[data-fade=up] {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-fade[data-fade=down] {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.js-fade[data-fade=left] {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-fade[data-fade=right] {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

/* 実行時：元の位置に戻る */
.js-fade.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 星空の背景のスタイル */
.stars {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.stars .star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-animation: twinkle 3s infinite ease-in-out;
          animation: twinkle 3s infinite ease-in-out;
  pointer-events: none;
}
.stars .shooting-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 8px 1px #fff, -20px 0 20px 1px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 8px 1px #fff, -20px 0 20px 1px rgba(255, 255, 255, 0.5);
  -webkit-animation: shooting-ani 3s linear forwards;
          animation: shooting-ani 3s linear forwards;
}

@-webkit-keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@-webkit-keyframes shooting-ani {
  0% {
    -webkit-transform: translate(0, 0) rotate(-45deg) scale(0);
            transform: translate(0, 0) rotate(-45deg) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    -webkit-transform: translate(-10px, 10px) rotate(-45deg) scale(1);
            transform: translate(-10px, 10px) rotate(-45deg) scale(1);
  }
  100% {
    -webkit-transform: translate(600px, 600px) rotate(-45deg) scale(1);
            transform: translate(600px, 600px) rotate(-45deg) scale(1);
    opacity: 0;
  }
}
@keyframes shooting-ani {
  0% {
    -webkit-transform: translate(0, 0) rotate(-45deg) scale(0);
            transform: translate(0, 0) rotate(-45deg) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    -webkit-transform: translate(-10px, 10px) rotate(-45deg) scale(1);
            transform: translate(-10px, 10px) rotate(-45deg) scale(1);
  }
  100% {
    -webkit-transform: translate(600px, 600px) rotate(-45deg) scale(1);
            transform: translate(600px, 600px) rotate(-45deg) scale(1);
    opacity: 0;
  }
}
/* 星空の背景のスタイル ここまで*/
.header__inner {
  padding-top: clamp(0px, 2.0833333333vw, 40px);
  padding-bottom: clamp(0px, 2.96875vw, 57px);
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .header__inner {
    padding-top: 6.4vw;
    padding-bottom: 2.6666666667vw;
    padding-inline: 2.6666666667vw;
  }
}

.header__title {
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, from(#f8cb2e), color-stop(65.38%, #fff));
  background: linear-gradient(0deg, #f8cb2e 0%, #fff 65.38%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(20px, 2.0833333333vw, 40px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .header__title {
    font-family: "Noto Sans JP";
    font-size: 4.2666666667vw;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
  }
}

.header__logo--pc {
  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: clamp(0px, 0.5208333333vw, 10px);
}
@media (max-width: 768px) {
  .header__logo--pc {
    display: none;
  }
}

.header__logo-hokutonoken {
  display: block;
  width: clamp(0px, 11.9791666667vw, 230px);
}
@media (max-width: 768px) {
  .header__logo-hokutonoken {
    width: 28.8vw;
  }
}
.header__logo-hokutonoken img {
  width: 100%;
}

.header__logo-union {
  display: block;
  width: clamp(0px, 1.71875vw, 33px);
}
@media (max-width: 768px) {
  .header__logo-union {
    width: 4.2666666667vw;
  }
}
.header__logo-union img {
  width: 100%;
}

.header__logo-prince {
  display: block;
  width: clamp(0px, 14.6875vw, 282px);
}
@media (max-width: 768px) {
  .header__logo-prince {
    width: 42.6666666667vw;
  }
}
.header__logo-prince img {
  width: 100%;
}

.header__logo-collaboration {
  display: block;
  width: clamp(0px, 30.625vw, 588px);
}
@media (max-width: 768px) {
  .header__logo-collaboration {
    width: 94.6666666667vw;
    margin-inline: auto;
  }
}
.header__logo-collaboration img {
  width: 100%;
}

.header__logo--sp {
  display: none;
}
@media (max-width: 768px) {
  .header__logo--sp {
    display: block;
  }
}

@media (max-width: 768px) {
  .header__logo--sp-box {
    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: 2.6666666667vw;
  }
}

.header__text-box {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: clamp(20px, 2.0833333333vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 1.6666666667vw, 32px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header__text-box {
    display: none;
  }
}

.header__date {
  font-style: italic;
}

.kv {
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.kv .kv-slider.splide .splide__track {
  overflow: visible;
}
.kv .kv-slider.splide .splide__list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.kv .kv-slider.splide .splide__slide {
  height: auto;
}

.kv__img {
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
}
.kv__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.kv__text-box {
  display: none;
}
@media (max-width: 768px) {
  .kv__text-box {
    background: url("../img/kv_bg_sp.webp") repeat-y center top/cover;
    -webkit-animation: header-bg-scroll 60s linear infinite;
            animation: header-bg-scroll 60s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0;
    width: 90.4vw;
    margin-inline: auto;
    position: absolute;
    bottom: 1.0666666667vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.kv__text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 5.3333333333vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.kv__date {
  color: #fff;
  font-family: Montserrat;
  font-size: 6.9333333333vw;
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.5546666667vw;
}

.menu {
  background: #fff;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .menu {
    display: none;
  }
}

.menu__inner {
  padding-top: clamp(0px, 1.71875vw, 33px);
  padding-bottom: clamp(0px, 1.71875vw, 33px);
}

.menu__list {
  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: 64px;
}

.menu__item + .menu__item {
  position: relative;
}
.menu__item + .menu__item::before {
  content: "";
  width: clamp(0px, 0.5208333333vw, 10px);
  height: clamp(0px, 2.6041666667vw, 50px);
  background: url("../img/menu_slash.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: clamp(-32px, -1.6666666667vw, -32px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.menu__text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(20px, 1.6666666667vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
}

.intro {
  background: url("../img/intro_bg.webp") no-repeat center top/cover;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .intro {
    background: url("../img/intro_bg_sp.webp") no-repeat center top/cover;
  }
}

.intro__inner {
  padding-top: clamp(0px, 4.1666666667vw, 80px);
  padding-bottom: clamp(0px, 3.90625vw, 75px);
  padding-inline: clamp(0px, 4.1666666667vw, 80px);
  position: relative;
}
@media (max-width: 768px) {
  .intro__inner {
    padding-top: 12.8vw;
    padding-bottom: 11.4666666667vw;
    padding-inline: 4.8vw;
  }
}

.intro__description-box {
  position: relative;
}

.intro__description {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.6666666667vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .intro__description {
    font-size: 5.3333333333vw;
  }
}

.intro__description-img {
  width: clamp(0px, 21.8229166667vw, 419px);
  position: absolute;
  bottom: clamp(0px, 0.4166666667vw, 8px);
  left: clamp(0px, 23.5416666667vw, 452px);
}
@media (max-width: 768px) {
  .intro__description-img {
    width: 89.3333333333vw;
    bottom: 9.3333333333vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.intro__description-img img {
  width: 100%;
}

.intro__content {
  margin-top: clamp(0px, 4.1666666667vw, 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 2.0833333333vw, 40px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .intro__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.2666666667vw;
    margin-top: 12.2666666667vw;
  }
}

.intro__img {
  width: clamp(0px, 26.0416666667vw, 500px);
}
@media (max-width: 768px) {
  .intro__img {
    width: 100%;
  }
}
.intro__img img {
  width: 100%;
}

.intro__text {
  width: clamp(0px, 28.125vw, 540px);
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .intro__text {
    width: 100%;
    font-size: 4.2666666667vw;
  }
}

.intro__credit {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  position: absolute;
  right: clamp(0px, 1.25vw, 24px);
  bottom: clamp(0px, 0.8333333333vw, 16px);
}
@media (max-width: 768px) {
  .intro__credit {
    position: relative;
    display: block;
    text-align: center;
    font-size: 3.2vw;
    line-height: 170%;
    margin-top: 11.7333333333vw;
  }
}

.plan {
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.plan__inner {
  padding-top: clamp(0px, 4.1666666667vw, 80px);
  padding-bottom: clamp(0px, 2.96875vw, 57px);
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .plan__inner {
    padding-top: 12.8vw;
    padding-bottom: 15.2vw;
  }
}

.plan__title {
  text-align: center;
}

.plan__title--en {
  display: block;
  margin-bottom: clamp(0px, 0.7291666667vw, 14px);
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: clamp(0px, 0.15625vw, 3px);
}
@media (max-width: 768px) {
  .plan__title--en {
    font-size: 4.2666666667vw;
    letter-spacing: 0.64vw;
  }
}

.plan__title--ja {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-size: clamp(20px, 1.6666666667vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: 14px;
  border-bottom: 2px solid #fff;
  margin-top: clamp(-22px, -1.1458333333vw, 0px);
}
@media (max-width: 768px) {
  .plan__title--ja {
    font-size: 6.9333333333vw;
    padding-bottom: 1.8666666667vw;
    border-bottom: 0.2666666667vw solid #fff;
    margin-top: -3.2vw;
  }
}

.plan-splide__wrapper {
  margin-inline: auto;
  margin-top: clamp(0px, 2.0833333333vw, 40px);
  width: 100%;
}
@media (max-width: 768px) {
  .plan-splide__wrapper {
    margin-top: 6.4vw;
    width: 89.3333333333vw;
  }
}

.plan-splide__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan-splide__slide img {
  border: clamp(0px, 0.15625vw, 3px) solid #f8cb2e;
  width: 100%;
  opacity: 0.4;
  scale: 0.9 !important;
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
}
@media (max-width: 768px) {
  .plan-splide__slide img {
    width: 89.3333333333vw;
    border: 0.8vw solid #f8cb2e;
  }
}
.plan-splide__slide.is-active img {
  border: clamp(0px, 0.15625vw, 3px) solid #f8cb2e;
  width: 100%;
  opacity: 1;
  scale: 1 !important;
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
}
@media (max-width: 768px) {
  .plan-splide__slide.is-active img {
    width: 89.3333333333vw;
    border: 0.8vw solid #f8cb2e;
  }
}

.splide__pagination {
  display: block !important;
  text-align: center !important;
  bottom: -24px !important;
}
@media (max-width: 768px) {
  .splide__pagination {
    bottom: -4.2666666667vw;
  }
}

.splide__pagination__page {
  width: 10px !important;
  height: 10px !important;
  background: #c1c1c1 !important;
  margin: 0 12px 0 12px !important;
}
@media (max-width: 768px) {
  .splide__pagination__page {
    width: 1.6vw !important;
    height: 1.6vw !important;
    margin: 0 3.2vw;
  }
}
.splide__pagination__page.is-active {
  width: 10px !important;
  height: 10px !important;
  background: #f8cb2e !important;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
@media (max-width: 768px) {
  .splide__pagination__page.is-active {
    width: 1.6vw !important;
    height: 1.6vw !important;
  }
}

.plan__subtitle {
  margin-top: clamp(0px, 3.8020833333vw, 73px);
  width: clamp(0px, 26.6666666667vw, 512px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .plan__subtitle {
    width: 97.0666666667vw;
    margin-top: 6.4vw;
  }
}
.plan__subtitle img {
  width: 100%;
}

.plan__text {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.plan__text--lead {
  font-size: clamp(0px, 1.0416666667vw, 20px);
}
@media (max-width: 768px) {
  .plan__text--lead {
    font-size: 4.2666666667vw;
    margin-top: 8px;
  }
}

.plan__text--room {
  font-size: clamp(0px, 1.0416666667vw, 20px);
  margin-top: clamp(0px, 1.25vw, 24px);
}
@media (max-width: 768px) {
  .plan__text--room {
    font-size: 5.3333333333vw;
    margin-top: 11.4666666667vw;
  }
}

.plan__text--detail {
  font-size: clamp(0px, 0.8333333333vw, 16px);
  margin-top: clamp(0px, 0.4166666667vw, 8px);
}
@media (max-width: 768px) {
  .plan__text--detail {
    font-size: 4.2666666667vw;
    margin-top: 2.1333333333vw;
    width: 89.3333333333vw;
    margin-inline: auto;
    text-align: left;
  }
}

.plan__benefits {
  background: url("../img/plan_benefits_bg.webp") no-repeat center center/cover;
  width: clamp(0px, 56.25vw, 1080px);
  margin-inline: auto;
  margin-top: clamp(0px, 2.0833333333vw, 40px);
  margin-bottom: clamp(0px, 2.0833333333vw, 40px);
  border: clamp(0px, 0.15625vw, 3px) solid #ee9416;
}
@media (max-width: 768px) {
  .plan__benefits {
    background: url("../img/plan_benefits_bg_sp.webp") no-repeat center center/cover;
    width: 89.3333333333vw;
    margin-inline: auto;
    margin-top: 9.3333333333vw;
    margin-bottom: 10.6666666667vw;
    border: 0.8vw solid #ee9416;
  }
}

.plan__benefits-inner {
  padding-top: clamp(0px, 1.25vw, 24px);
  padding-bottom: clamp(0px, 1.25vw, 24px);
  padding-left: clamp(0px, 1.6145833333vw, 31px);
  padding-right: clamp(0px, 1.6145833333vw, 31px);
}
@media (max-width: 768px) {
  .plan__benefits-inner {
    padding-top: 8.5333333333vw;
    padding-bottom: 8.5333333333vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.plan__benefits-title {
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 3px;
  text-align: center;
}
@media (max-width: 768px) {
  .plan__benefits-title {
    font-size: 4.2666666667vw;
    letter-spacing: 0.64vw;
  }
}

.plan__benefits-title-img {
  display: block;
  width: clamp(0px, 6.3541666667vw, 122px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .plan__benefits-title-img {
    width: 45.8666666667vw;
    margin-top: -2.1333333333vw;
  }
}
.plan__benefits-title-img img {
  width: 100%;
}

.plan__benefits-contents {
  margin-top: clamp(0px, 2.0833333333vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 1.8229166667vw, 35px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .plan__benefits-contents {
    margin-top: 6.4vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.plan__benefits-img {
  width: clamp(0px, 26.6666666667vw, 512px);
}
@media (max-width: 768px) {
  .plan__benefits-img {
    width: 82.6666666667vw;
    margin-inline: auto;
  }
}
.plan__benefits-img img {
  width: 100%;
}

.plan__benefits-text-box {
  width: clamp(0px, 24.0625vw, 462px);
}
@media (max-width: 768px) {
  .plan__benefits-text-box {
    width: 89.3333333333vw;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .plan__benefits-list {
    width: 88vw;
    margin-inline: auto;
    text-align: left;
  }
}

.plan__benefits-text-item {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .plan__benefits-text-item {
    font-size: 5.3333333333vw;
  }
}

.plan__benefits-list--note {
  margin-top: clamp(0px, 0.625vw, 12px);
}
@media (max-width: 768px) {
  .plan__benefits-list--note {
    margin-top: 4.2666666667vw;
    width: 85.3333333333vw;
    margin-inline: auto;
    text-align: left;
  }
}

.plan__benefits-text-item--note {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .plan__benefits-text-item--note {
    font-size: 3.2vw;
  }
}

.plan__benefits-reserve-price-box {
  position: relative;
  z-index: 10;
  width: clamp(0px, 42.1875vw, 810px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0px, 1.1458333333vw, 22px);
}
@media (max-width: 768px) {
  .plan__benefits-reserve-price-box {
    width: 89.3333333333vw;
    margin-top: 10.6666666667vw;
    gap: 4.5333333333vw;
  }
}

.plan__benefits-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 1.25vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .plan__benefits-reserve {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1333333333vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.plan__benefits-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0px, 1.25vw, 24px);
}
@media (max-width: 768px) {
  .plan__benefits-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1333333333vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.plan__benefits-reserve-price-title {
  background: #fcc700;
  width: clamp(0px, 8.5416666667vw, 164px);
  height: clamp(0px, 2.2916666667vw, 44px);
  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;
  text-align: center;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .plan__benefits-reserve-price-title {
    width: 43.7333333333vw;
    height: 11.7333333333vw;
    font-size: 5.3333333333vw;
  }
}

@media (max-width: 768px) {
  .plan__benefits-reserve-price-list {
    width: 89.3333333333vw;
  }
}

.plan__benefits-reserve-price-text {
  width: clamp(0px, 32.2916666667vw, 620px);
  color: #fff;
  text-align: left;
  font-family: Montserrat;
  font-size: clamp(0px, 1.25vw, 24px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: clamp(0px, 0.0625vw, 1.2px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 1.25vw, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .plan__benefits-reserve-price-text {
    width: 89.3333333333vw;
    font-size: 6.9333333333vw;
    letter-spacing: 0.3466666667vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 3.2vw;
  }
}

.plan__benefits-reserve-price-text--row {
  width: clamp(0px, 32.2916666667vw, 620px);
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: clamp(0px, 1.25vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: clamp(0px, 0.0625vw, 1.2px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 1.25vw, 24px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .plan__benefits-reserve-price-text--row + .plan__benefits-reserve-price-text--row {
    padding-top: 0vw;
    border-top: 0.5333333333vw solid #fff;
  }
}
@media (max-width: 768px) {
  .plan__benefits-reserve-price-text--row {
    width: 89.3333333333vw;
    font-size: 5.3333333333vw;
    letter-spacing: 0.32vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.plan__benefits-reserve-price-label {
  display: block;
  width: clamp(0px, 11.40625vw, 219px);
  text-align: left;
}
@media (max-width: 768px) {
  .plan__benefits-reserve-price-label {
    width: 37.3333333333vw;
  }
}

.plan__benefits-reserve-price-value {
  display: block;
  width: clamp(0px, 20.4166666667vw, 392px);
}
@media (max-width: 768px) {
  .plan__benefits-reserve-price-value {
    width: 52.5333333333vw;
  }
}

.plan__benefits-annotation {
  margin-top: clamp(0px, 1.6666666667vw, 32px);
  width: clamp(0px, 42.7083333333vw, 820px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .plan__benefits-annotation {
    width: 89.3333333333vw;
  }
}

@media (max-width: 768px) {
  .plan__benefits-annotation-list {
    margin-top: 4.5333333333vw;
  }
}

.plan__benefits-annotation-text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  padding-left: clamp(0px, 0.8333333333vw, 16px);
  position: relative;
}
@media (max-width: 768px) {
  .plan__benefits-annotation-text {
    width: 89.3333333333vw;
    font-size: 3.2vw;
    font-weight: 500;
    padding-left: 4.2666666667vw;
  }
}
.plan__benefits-annotation-text::before {
  content: "※";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .plan__benefits-annotation-text::before {
    font-size: 4.2666666667vw;
    top: -0.9333333333vw;
  }
}

.plan__novelty {
  margin-top: clamp(0px, 6.25vw, 120px);
  margin-bottom: clamp(0px, 1.25vw, 24px);
}
@media (max-width: 768px) {
  .plan__novelty {
    margin-top: 10.6666666667vw;
    margin-bottom: 0;
  }
}

.plan__novelty-title {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .plan__novelty-title {
    font-size: 4.2666666667vw;
  }
}

.plan__novelty-img {
  border: 3px solid #ee9416;
  width: clamp(0px, 28.2291666667vw, 542px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .plan__novelty-img {
    border: 0.8vw solid #f8cb2e;
    width: 89.3333333333vw;
  }
}
.plan__novelty-img img {
  width: 100%;
}

.plan__novelty-slider {
  margin-top: clamp(0px, 1.6666666667vw, 32px);
  width: clamp(0px, 28.2291666667vw, 542px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .plan__novelty-slider {
    margin-top: 3.4666666667vw;
    width: 89.3333333333vw;
  }
}
.plan__novelty-slider .splide__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plan__novelty-slider .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reserve {
  background: #ffffff;
  position: relative;
  z-index: 10;
}

.reserve__inner {
  padding-top: clamp(0px, 3.125vw, 60px);
  padding-bottom: clamp(0px, 3.125vw, 60px);
}
@media (max-width: 768px) {
  .reserve__inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 9.8666666667vw;
    padding-inline: 4.5333333333vw;
  }
}

.reserve__title {
  text-align: center;
}

.reserve__title--en {
  display: block;
  color: #221816;
  font-family: Montserrat;
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: clamp(0px, 0.0416666667vw, 0.8px);
}
@media (max-width: 768px) {
  .reserve__title--en {
    font-size: 4.2666666667vw;
    letter-spacing: 0.2133333333vw;
  }
}

.reserve__title--ja {
  display: inline-block;
  color: #010117;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.6666666667vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: clamp(0px, 0.3645833333vw, 7px);
  border-bottom: clamp(0px, 0.1041666667vw, 2px) solid #010117;
  margin-top: clamp(-11px, -0.5729166667vw, 0px);
}
@media (max-width: 768px) {
  .reserve__title--ja {
    font-size: 6.9333333333vw;
    padding-bottom: 4vw;
    margin-top: -2.4vw;
    border-bottom: 0.5333333333vw solid #010117;
  }
}

.reserve__link-button {
  margin-top: clamp(0px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .reserve__link-button {
    margin-top: 7.4666666667vw;
  }
}

.reserve__link-button-link {
  position: relative;
  width: clamp(0px, 20.4166666667vw, 392px);
  height: clamp(0px, 4.4791666667vw, 86px);
  margin-inline: auto;
  border-radius: clamp(0px, 2.6041666667vw, 50px);
  border: clamp(0px, 0.15625vw, 3px) solid #cb1b05;
  background: var(--hokuto_gr, linear-gradient(180deg, #ee9416 0%, #f3dd4e 50%, #fcf7d3 100%));
  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: clamp(0px, 1.25vw, 24px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .reserve__link-button-link {
    width: 89.3333333333vw;
    height: 20.2666666667vw;
    border-radius: 13.3333333333vw;
    border: 0.8vw solid #cb1b05;
    gap: 6.4vw;
  }
}
.reserve__link-button-link:hover {
  text-decoration: none;
  color: #fbfbfb;
}
.reserve__link-button-link::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  -webkit-animation: btn_animation 2.5s ease-in-out infinite;
          animation: btn_animation 2.5s ease-in-out infinite;
}

@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.reserve__link-button-text {
  background: var(--hokuto_gra_line, linear-gradient(180deg, #cb1b05 0%, #4a0405 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.6666666667vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .reserve__link-button-text {
    font-size: 6.9333333333vw;
  }
}

.reserve__link-button-img {
  display: block;
  width: clamp(0px, 0.8333333333vw, 16px);
  height: clamp(0px, 0.8333333333vw, 16px);
}
@media (max-width: 768px) {
  .reserve__link-button-img {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.reserve__link-button-img img {
  width: 100%;
}

.reserve__text-box {
  margin-top: clamp(0px, 1.1458333333vw, 22px);
  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: clamp(0px, 1.25vw, 24px);
}
@media (max-width: 768px) {
  .reserve__text-box {
    margin-top: 7.2vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1333333333vw;
  }
}

.reserve__text-box-text {
  width: clamp(0px, 8.5416666667vw, 164px);
  height: clamp(0px, 2.2916666667vw, 44px);
  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;
  color: #010117;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .reserve__text-box-text {
    width: initial;
    height: initial;
    display: block;
    text-align: center;
    font-size: 5.3333333333vw;
  }
}

.reserve__text-box-tel {
  display: block;
  color: #101010;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .reserve__text-box-tel {
    font-size: 5.3333333333vw;
  }
}

.reserve__text-box-tel-note {
  display: block;
  color: #101010;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .reserve__text-box-tel-note {
    font-size: 4.2666666667vw;
  }
}

.restaurant {
  background-color: #000;
  position: relative;
  z-index: 10;
}
.restaurant::before {
  content: "";
  background: url("../img/restaurant_bg_top.webp") no-repeat center center/cover;
  width: 100vw;
  height: 44.21875vw;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 7;
}
@media (max-width: 768px) {
  .restaurant::before {
    background: url("../img/restaurant_bg_top_sp.webp") no-repeat center center/cover;
    width: 100vw;
    height: 44.2666666667vw;
  }
}
.restaurant::after {
  content: "";
  background: url("../img/restaurant_bg_bottom.webp") no-repeat center center/cover;
  width: 100vw;
  height: 44.21875vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .restaurant::after {
    background: url("../img/restaurant_bg_bottom_sp.webp") no-repeat center center/cover;
    width: 100vw;
    height: 44.2666666667vw;
  }
}

.restaurant__inner {
  padding-top: clamp(0px, 5.2083333333vw, 100px);
  padding-bottom: clamp(0px, 6.25vw, 120px);
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .restaurant__inner {
    padding-top: 12.8vw;
    padding-bottom: 21.6vw;
  }
}

.restaurant__title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.restaurant__title--en {
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: clamp(0px, 0.15625vw, 3px);
}
@media (max-width: 768px) {
  .restaurant__title--en {
    font-size: 4.2666666667vw;
    letter-spacing: 0.64vw;
  }
}

.restaurant__title--ja {
  display: inline-block;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.6666666667vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: clamp(0px, 0.7291666667vw, 14px);
  border-bottom: clamp(0px, 0.1041666667vw, 2px) solid #fff;
  margin-top: clamp(-11px, -0.5729166667vw, 0px);
}
@media (max-width: 768px) {
  .restaurant__title--ja {
    font-size: 5.3333333333vw;
    margin-top: -2.1333333333vw;
    padding-bottom: 1.8666666667vw;
    border-bottom: 0.5333333333vw solid #fff;
  }
}

.restaurant__description {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  margin-top: clamp(0px, 1.0416666667vw, 20px);
}
@media (max-width: 768px) {
  .restaurant__description {
    font-size: 4.2666666667vw;
    margin-top: 6.4vw;
  }
}

.restaurant__food-content {
  margin-top: clamp(0px, 2.9166666667vw, 56px);
}
@media (max-width: 768px) {
  .restaurant__food-content {
    margin-top: 8.8vw;
  }
}

.restaurant__food-title {
  width: clamp(0px, 12.7604166667vw, 245px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .restaurant__food-title {
    width: 46.9333333333vw;
  }
}
.restaurant__food-title img {
  width: 100%;
}

.restaurant__food-list {
  width: clamp(0px, 56.25vw, 1080px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: clamp(0px, 1.6666666667vw, 32px);
  margin-top: clamp(0px, 1.0416666667vw, 20px);
}
@media (max-width: 768px) {
  .restaurant__food-list {
    width: 100%;
    gap: 10.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}

.restaurant__food-item {
  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: clamp(0px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .restaurant__food-item {
    width: 89.3333333333vw;
    -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: 4.8vw;
  }
}

.restaurant__food-item-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .restaurant__food-item-reverse {
    width: 89.3333333333vw;
    -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: 3.4666666667vw;
  }
}

.restaurant__food-slider {
  width: clamp(0px, 28.28125vw, 543px);
  margin-inline: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 768px) {
  .restaurant__food-slider {
    width: 89.3333333333vw;
  }
}
.restaurant__food-slider .splide__track {
  overflow: hidden;
}
.restaurant__food-slider .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.restaurant__food-slider .restaurant__food-item-img {
  width: clamp(0px, 28.28125vw, 543px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .restaurant__food-slider .restaurant__food-item-img {
    width: 89.3333333333vw;
  }
}

.restaurant__food-item-img {
  width: clamp(0px, 28.2291666667vw, 542px);
}
@media (max-width: 768px) {
  .restaurant__food-item-img {
    width: 89.3333333333vw;
  }
}
.restaurant__food-item-img img {
  width: 100%;
}

.restaurant__food-item-text {
  width: clamp(0px, 25.9375vw, 498px);
}
@media (max-width: 768px) {
  .restaurant__food-item-text {
    width: 89.3333333333vw;
  }
}

.restaurant__food-item-title-01 {
  width: clamp(0px, 15.8333333333vw, 304px);
}
@media (max-width: 768px) {
  .restaurant__food-item-title-01 {
    width: 78.6666666667vw;
  }
}
.restaurant__food-item-title-01 img {
  width: 100%;
}

.restaurant__food-item-title-02 {
  width: clamp(0px, 12.7604166667vw, 245px);
}
@media (max-width: 768px) {
  .restaurant__food-item-title-02 {
    width: 64vw;
  }
}
.restaurant__food-item-title-02 img {
  width: 100%;
}

.restaurant__food-item-price {
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: clamp(0px, 0.0520833333vw, 1px);
}
@media (max-width: 768px) {
  .restaurant__food-item-price {
    font-size: 5.3333333333vw;
    letter-spacing: 0.2666666667vw;
  }
}

.restaurant__food-item-description {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  margin-top: clamp(0px, 1.25vw, 24px);
}
@media (max-width: 768px) {
  .restaurant__food-item-description {
    font-size: 4.2666666667vw;
    margin-top: 2.1333333333vw;
  }
}

.restaurant__drink-content {
  margin-top: clamp(0px, 6.9270833333vw, 133px);
}
@media (max-width: 768px) {
  .restaurant__drink-content {
    margin-top: 21.3333333333vw;
  }
}

.restaurant__drink-title {
  width: clamp(0px, 12.7604166667vw, 245px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .restaurant__drink-title {
    width: 46.9333333333vw;
  }
}
.restaurant__drink-title img {
  width: 100%;
}

.restaurant__drink-price-boxes {
  margin-top: 0.8333333333vw;
  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: 2.5vw;
}
@media (max-width: 768px) {
  .restaurant__drink-price-boxes {
    margin-top: 5.0666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1333333333vw;
  }
}

.restaurant__drink-price-box {
  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: 1.09375vw;
}
@media (max-width: 768px) {
  .restaurant__drink-price-box {
    gap: 5.6vw;
  }
}

.restaurant__drink-price-box-title {
  background: #f8cb2e;
  width: clamp(0px, 8.3333333333vw, 160px);
  height: clamp(0px, 2.2395833333vw, 43px);
  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;
  color: #010117;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .restaurant__drink-price-box-title {
    width: 42.6666666667vw;
    height: 11.4666666667vw;
    font-size: 4.2666666667vw;
  }
}

.restaurant__drink-price-box-price {
  color: var(--main-Wh, #fff);
  font-family: Montserrat;
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .restaurant__drink-price-box-price {
    font-size: 5.3333333333vw;
  }
}

.restaurant__drink-list {
  width: clamp(0px, 56.25vw, 1080px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: clamp(0px, 2.5vw, 48px);
  margin-top: clamp(0px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .restaurant__drink-list {
    width: 100%;
    gap: 10.6666666667vw;
    margin-top: 10.1333333333vw;
  }
}

.restaurant__drink-item {
  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: clamp(0px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .restaurant__drink-item {
    width: 89.3333333333vw;
    -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: 5.8666666667vw;
  }
}

.restaurant__drink-item-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .restaurant__drink-item-reverse {
    width: 89.3333333333vw;
    -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: 3.4666666667vw;
  }
}

.restaurant__drink-item-img {
  width: clamp(0px, 28.2291666667vw, 542px);
  position: relative;
}
@media (max-width: 768px) {
  .restaurant__drink-item-img {
    width: 89.3333333333vw;
  }
}
.restaurant__drink-item-img .splide__slide::before {
  content: "ソフトドリンク";
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.625vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  position: absolute;
  top: clamp(0px, 0.5208333333vw, 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .restaurant__drink-item-img .splide__slide::before {
    font-size: 3.2vw;
    top: 2.6666666667vw;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
}
.restaurant__drink-item-img .splide__slide--type2::before {
  content: "カクテル";
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.625vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  position: absolute;
  top: clamp(0px, 0.5208333333vw, 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .restaurant__drink-item-img .splide__slide--type2::before {
    font-size: 3.2vw;
    top: 2.6666666667vw;
  }
}
.restaurant__drink-item-img img {
  border: 3px solid #f8cb2e;
  background: url(<path-to-image>) lightgray 135.683px -20.021px/88.659% 106.752% no-repeat;
  width: 100%;
}

.restaurant__drink-item-text {
  width: clamp(0px, 25.9375vw, 498px);
}
@media (max-width: 768px) {
  .restaurant__drink-item-text {
    width: 89.3333333333vw;
  }
}

.restaurant__drink-item-title {
  width: clamp(0px, 25.9375vw, 498px);
}
@media (max-width: 768px) {
  .restaurant__drink-item-title {
    width: 90.4vw;
  }
}
.restaurant__drink-item-title img {
  width: 100%;
}

.restaurant__drink-item-description {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  margin-top: clamp(0px, 0.8333333333vw, 16px);
}
@media (max-width: 768px) {
  .restaurant__drink-item-description {
    font-size: 4.2666666667vw;
    margin-top: 0;
  }
}

.restaurant__drink-item-menu {
  width: clamp(0px, 26.09375vw, 501px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0px, 1.09375vw, 21px);
  margin-top: 16px;
}
@media (max-width: 768px) {
  .restaurant__drink-item-menu {
    display: none;
  }
}

.restaurant__drink-item-menu-title {
  width: clamp(0px, 8.3333333333vw, 160px);
  height: clamp(0px, 2.2395833333vw, 43px);
  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;
  background: #f8cb2e;
  color: #010117;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.restaurant__drink-item-menu-list {
  width: clamp(0px, 16.6666666667vw, 320px);
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

/* sp版タブ表示 */
/* ボタンの並び */
@media (max-width: 768px) {
  .restaurant__drink-tab-container {
    margin-top: clamp(0px, 4.2666666667vw, 16px);
  }
}

@media (max-width: 768px) {
  .restaurant__drink-tab-buttons {
    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: clamp(0px, 4.2666666667vw, 16px);
  }
}

/* ボタンの基本スタイル */
@media (max-width: 768px) {
  .tab-btn {
    width: clamp(0px, 40.5333333333vw, 152px);
    height: clamp(0px, 11.4666666667vw, 43px);
    border: none;
    background-color: #e0e0e0; /* 通常時はグレー */
    color: #888;
    font-family: "Noto Sans JP";
    font-size: 4.2666666667vw;
    font-style: normal;
    font-weight: 700;
    line-height: 1.7;
    cursor: pointer;
    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 (max-width: 768px) {
  .tab-btn.active {
    background-color: #f8cb2e; /* 画像の黄色 */
    color: #010117;
  }
}

@media (max-width: 768px) {
  .tab-btn .arrow {
    font-size: 4.2666666667vw;
    margin-left: 1.3333333333vw;
  }
}

/* コンテンツの制御 */
@media (max-width: 768px) {
  .restaurant__drink-tab-contents {
    margin-top: clamp(0px, 2.1333333333vw, 8px);
  }
}

@media (max-width: 768px) {
  .tab-content {
    display: none; /* 基本は非表示 */
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: clamp(0px, 4.2666666667vw, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .tab-content.active {
    display: block; /* 選択中のみ表示 */
  }
}

/* sp版タブ表示ここまで */
.restaurant__benefits {
  background: url("../img/plan_benefits_bg.webp") no-repeat center center/cover;
  width: clamp(0px, 56.25vw, 1080px);
  margin-inline: auto;
  margin-top: clamp(0px, 3.3333333333vw, 64px);
  margin-bottom: clamp(0px, 3.3333333333vw, 64px);
  border: 3px solid #f8cb2e;
}
@media (max-width: 768px) {
  .restaurant__benefits {
    background: url("../img/plan_benefits_bg_sp.webp") no-repeat center center/cover;
    width: 87.7333333333vw;
    margin-top: 9.8666666667vw;
    margin-bottom: 8.5333333333vw;
    border: 0.8vw solid #f8cb2e;
  }
}

.restaurant__benefits-inner {
  padding-top: clamp(0px, 2.0833333333vw, 40px);
  padding-bottom: clamp(0px, 2.0833333333vw, 40px);
  padding-left: clamp(0px, 2.0833333333vw, 40px);
  padding-right: clamp(0px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .restaurant__benefits-inner {
    padding-top: 8.5333333333vw;
    padding-bottom: 9.0666666667vw;
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

.restaurant__benefits-title {
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 3px;
  text-align: center;
}
@media (max-width: 768px) {
  .restaurant__benefits-title {
    font-size: 4.2666666667vw;
    letter-spacing: 0.64vw;
  }
}

.restaurant__benefits-title-img {
  display: block;
  width: clamp(0px, 6.3541666667vw, 122px);
  margin-inline: auto;
  margin-top: clamp(-8px, -0.4166666667vw, 0px);
}
@media (max-width: 768px) {
  .restaurant__benefits-title-img {
    width: 46.4vw;
    margin-top: -2.1333333333vw;
  }
}
.restaurant__benefits-title-img img {
  width: 100%;
}

.restaurant__benefits-contents {
  margin-top: clamp(0px, 1.6666666667vw, 32px);
  width: clamp(0px, 51.6666666667vw, 992px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 0.8333333333vw, 16px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .restaurant__benefits-contents {
    width: 82.6666666667vw;
    margin-top: 8.8vw;
    gap: 8.8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.restaurant__benefits-contents-item {
  width: clamp(0px, 16.6666666667vw, 320px);
}
@media (max-width: 768px) {
  .restaurant__benefits-contents-item {
    width: 82.6666666667vw;
  }
}

.restaurant__benefits-contents-title {
  display: inline-block;
  background: #f8cb2e;
  padding-top: clamp(0px, 0.4166666667vw, 8px);
  padding-bottom: clamp(0px, 0.4166666667vw, 8px);
  padding-left: clamp(0px, 1.25vw, 24px);
  padding-right: clamp(0px, 1.25vw, 24px);
  color: #010117;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .restaurant__benefits-contents-title {
    font-size: 4.2666666667vw;
    padding-top: 2.1333333333vw;
    padding-bottom: 2.1333333333vw;
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
}

.restaurant__benefits-img {
  margin-top: clamp(-23px, -1.1979166667vw, 0px);
}
@media (max-width: 768px) {
  .restaurant__benefits-img {
    margin-top: -5.3333333333vw;
    width: 65.6vw;
    margin-inline: auto;
  }
}
.restaurant__benefits-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .restaurant__benefits-img--type2 {
    margin-top: -3.7333333333vw;
  }
}

.restaurant__benefits-contents-text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  margin-top: clamp(0px, 0.4166666667vw, 8px);
}
@media (max-width: 768px) {
  .restaurant__benefits-contents-text {
    font-size: 4.2666666667vw;
    margin-top: 2.4vw;
  }
}

.restaurant__benefits-contents-size {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  margin-top: clamp(0px, 0.4166666667vw, 8px);
}
@media (max-width: 768px) {
  .restaurant__benefits-contents-size {
    font-size: 4.2666666667vw;
  }
}

.restaurant__benefits-annotation {
  width: clamp(0px, 56.25vw, 1080px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .restaurant__benefits-annotation {
    width: 90.4vw;
    margin-top: 32px;
  }
}

.restaurant__benefits-annotation-text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  padding-left: clamp(0px, 0.8333333333vw, 16px);
  position: relative;
}
.restaurant__benefits-annotation-text a {
  color: orange;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .restaurant__benefits-annotation-text a {
    font-size: 3.2vw;
    font-weight: 500;
    padding-left: 3.2vw;
  }
}
@media (max-width: 768px) {
  .restaurant__benefits-annotation-text {
    font-size: 3.2vw;
    font-weight: 500;
    padding-left: 3.2vw;
  }
}
.restaurant__benefits-annotation-text::before {
  content: "※";
  font-size: clamp(0px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .restaurant__benefits-annotation-text::before {
    font-size: 3.2vw;
  }
}

.station {
  background: url("../img/station_bg.webp") no-repeat center center/cover;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .station {
    background: url("../img/station_bg_sp.webp") no-repeat center center/cover;
  }
}

.station__inner {
  padding-top: clamp(0px, 2.9166666667vw, 56px);
  padding-bottom: clamp(0px, 2.9166666667vw, 56px);
}
@media (max-width: 768px) {
  .station__inner {
    padding-top: 12.8vw;
    padding-bottom: 12.8vw;
  }
}

.station__title {
  text-align: center;
}

.station__title--en {
  display: block;
  color: #010117;
  font-family: Montserrat;
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 3px;
  text-align: center;
}
@media (max-width: 768px) {
  .station__title--en {
    font-size: 4.2666666667vw;
    letter-spacing: 0.64vw;
  }
}

.station__title--ja {
  display: inline-block;
  color: #010117;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: clamp(0px, 1.6666666667vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: clamp(0px, 0.78125vw, 15px);
  border-bottom: clamp(0px, 0.1041666667vw, 2px) solid #101010;
  margin-top: clamp(-10px, -0.5208333333vw, 0px);
}
@media (max-width: 768px) {
  .station__title--ja {
    font-size: 6.9333333333vw;
    padding-bottom: 2.1333333333vw;
    border-bottom: 0.5333333333vw solid #101010;
    margin-top: -0.2666666667vw;
  }
}

.station__description {
  color: #010117;
  font-family: "Noto Sans JP";
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.0416666667vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  margin-top: clamp(0px, 1.25vw, 24px);
}
@media (max-width: 768px) {
  .station__description {
    font-size: 5.3333333333vw;
    margin-top: 4vw;
  }
}

.station__img {
  width: clamp(0px, 56.25vw, 1080px);
  margin-inline: auto;
  margin-top: clamp(0px, 1.3020833333vw, 25px);
}
@media (max-width: 768px) {
  .station__img {
    width: 90.4vw;
    margin-top: 6.4vw;
  }
}
.station__img img {
  width: 100%;
}

.faq {
  position: relative;
  z-index: 10;
  background: var(--hokuto_gra_line, linear-gradient(180deg, #cb1b05 0%, #4a0405 100%));
}

.faq__inner {
  padding-top: clamp(0px, 3.125vw, 60px);
  padding-bottom: clamp(0px, 3.125vw, 60px);
}
@media (max-width: 768px) {
  .faq__inner {
    padding-top: 17.0666666667vw;
    padding-bottom: 17.0666666667vw;
  }
}

.faq__title {
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(0px, 1.25vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: clamp(0px, 0.0625vw, 1.2px);
  text-align: center;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 6.4vw;
    letter-spacing: 0.32vw;
  }
}

.faq__text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.6666666667vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin-top: clamp(-10px, -0.5208333333vw, 0px);
}
@media (max-width: 768px) {
  .faq__text {
    font-size: 6.9333333333vw;
    margin-top: -2.1333333333vw;
  }
}
.faq__text a {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(0px, 1.6666666667vw, 32px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 768px) {
  .faq__text a {
    font-size: 6.9333333333vw;
  }
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#010117), to(#000b28));
  background: linear-gradient(180deg, #010117 0%, #000b28 100%);
  position: relative;
  z-index: 10;
}

.footer__inner {
  padding-top: clamp(0px, 8.3333333333vw, 160px);
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 14.1333333333vw;
  }
}

.footer__logo {
  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: clamp(0px, 2.2395833333vw, 43px);
}
@media (max-width: 768px) {
  .footer__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14.9333333333vw;
  }
}

.footer__logo-img--hokutonoken {
  display: block;
  width: clamp(0px, 18.3854166667vw, 353px);
}
@media (max-width: 768px) {
  .footer__logo-img--hokutonoken {
    width: 64.2666666667vw;
  }
}
.footer__logo-img--hokutonoken img {
  width: 100%;
}

.footer__logo-img--prince {
  display: block;
  width: clamp(0px, 22.7083333333vw, 436px);
}
@media (max-width: 768px) {
  .footer__logo-img--prince {
    width: 64.2666666667vw;
  }
}
.footer__logo-img--prince img {
  width: 100%;
}

.footer_sns {
  margin-top: clamp(0px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .footer_sns {
    margin-top: 14.9333333333vw;
  }
}

.footer_sns-item {
  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: clamp(0px, 4.7395833333vw, 91px);
}
@media (max-width: 768px) {
  .footer_sns-item {
    gap: 12.8vw;
  }
}

.footer_sns-link {
  width: clamp(0px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .footer_sns-link {
    width: 21.3333333333vw;
  }
}
.footer_sns-link img {
  width: 100%;
}

.footer__link-box {
  margin-top: clamp(0px, 2.9166666667vw, 56px);
  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: clamp(0px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .footer__link-box {
    margin-top: 14.9333333333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.footer__link-box-link {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(12px, 0.625vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .footer__link-box-link {
    font-size: 4.2666666667vw;
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
}

.footer__copyright {
  background: var(--hokuto_gr, linear-gradient(180deg, #ee9416 0%, #f3dd4e 50%, #fcf7d3 100%));
  padding-top: clamp(0px, 0.8333333333vw, 16px);
  padding-bottom: clamp(0px, 0.8333333333vw, 16px);
  margin-top: clamp(0px, 4.1666666667vw, 80px);
}
@media (max-width: 768px) {
  .footer__copyright {
    margin-top: 21.3333333333vw;
    padding-top: 4.2666666667vw;
    padding-bottom: 4.2666666667vw;
  }
}

.footer__copyright-text {
  color: #101010;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(12px, 0.625vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .footer__copyright-text {
    font-size: 3.2vw;
  }
}

.scroll-top {
  position: fixed;
  bottom: clamp(0px, 4.1666666667vw, 80px);
  right: clamp(-3px, -0.15625vw, 0px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s; /* ふわっと出すためのアニメーション */
}
.scroll-top.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-top__link {
  display: block;
  width: clamp(0px, 13.0729166667vw, 251px);
  height: clamp(0px, 5.8333333333vw, 112px);
}
.scroll-top__link img {
  width: 100%;
}

/* ボタンコンテナ（ボタンを重ねて配置） */
@media (max-width: 768px) {
  .nav__button-container {
    position: fixed;
    top: clamp(0px, 2.6666666667vw, 10px);
    right: clamp(0px, 2.6666666667vw, 10px);
    z-index: 999;
  }
}

@media (max-width: 768px) {
  .nav__button {
    border: none;
    background: transparent;
    width: clamp(0px, 10.6666666667vw, 40px);
  }
}

@media (max-width: 768px) {
  .nav__inner {
    position: fixed;
    top: 0;
    right: -100%; /* 画面の外へ */
    width: 100%;
    height: 100vh;
    background: #fff;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 998;
  }
}

@media (max-width: 768px) {
  .nav__list {
    padding-top: clamp(0px, 16vw, 60px);
    padding-right: clamp(0px, 4.2666666667vw, 16px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: clamp(0px, 2.1333333333vw, 8px);
  }
}

@media (max-width: 768px) {
  .nav__link {
    color: #010101;
    text-align: right;
    font-family: "Noto Sans JP";
    font-size: clamp(0px, 5.3333333333vw, 20px);
    font-style: italic;
    font-weight: 700;
    line-height: 170%;
  }
}

/* メニューが開いた時 */
@media (max-width: 768px) {
  .nav.is-active .nav__inner {
    right: 0;
  }
}

/* JSでbodyにつけるスクロール禁止用クラス */
@media (max-width: 768px) {
  body.is-fixed {
    overflow: hidden;
  }
}