@charset "UTF-8";
@media screen and (max-width: 1579px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1580 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

.fv-img {
  width: 100%;
}

/* =========================
  Header
========================= */
.header {
  background: #2b1f1a;
  position: relative;
  z-index: 100;
}

/* header内のラッパー（ライン含む） */
.header__inner {
  width: 100%;
}

/* 上下ラインSVG */
.header__line {
  display: block;
  width: 100%;
  height: 0.2604166667vw;
}

/* nav */
.header__nav {
  width: 100%;
}

/* list */
.header__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: 5rem;
  list-style: none;
  margin: 0;
  padding: 1.125rem 0;
}

/* link */
.header__link {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0833333333vw;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.header__link {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

/* 下線 */
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px; /* 文字との距離 */
  width: 100%;
  height: 2px;
  background-color: #EDBC6A;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* hover時 */
.header__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.sp-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.sp-header__inner {
  padding: 13.5px 20px;
}

.sp-header__nav {
  display: none;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 40px;
  right: 20px;
  width: 20px;
  height: 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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #fff;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  height: 100svh;
  background: #221816;
  overflow-y: scroll;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 84px 40px;
  padding-inline: 20px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 48px;
  text-align: right;
}
.drawer__list li {
  position: relative;
}
.drawer__list li + li::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.drawer__list li a {
  color: #FFF;
  text-align: right;
  font-family: "Noto Serif JP";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 44.2px */
}

.drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  border-radius: 100vmax;
  color: #001A75;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

/* PCでは非表示 */
@media (min-width: 768px) {
  .sp-header,
  .drawer,
  .drawer__icon {
    display: none;
  }
}
.drawer__list li a {
  position: relative;
  display: inline-block;
}

/* 通常は非表示 */
.drawer__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* 文字から少し離す */
  width: 100%;
  height: 2px;
  background-color: #EDBC6A;
  opacity: 0;
}

/* 触れた瞬間に表示（PCホバー / SPタップ開始） */
.drawer__list li a:hover::after {
  opacity: 1;
}

.introduction {
  position: relative;
}

@media screen and (max-width: 767px) {
  .introduction__bg {
    height: 43.125rem;
  }
}

.introduction__inner {
  width: min(58.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .introduction__inner {
    width: min(36.875rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.introduction__contents {
  position: absolute;
  top: 5rem;
}
@media screen and (max-width: 767px) {
  .introduction__contents {
    top: 5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.introduction__content-top {
  position: relative;
  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: 18.75rem;
}
@media screen and (max-width: 767px) {
  .introduction__content-top {
    gap: 4.5rem;
  }
}

.introduction__wicked-logo {
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .introduction__wicked-logo {
    width: 8.5rem;
  }
}

.introduction__icon-decoration {
  position: absolute;
  left: 50%;
  top: 7.25rem;
  z-index: 1;
  width: 3.623875rem;
}
@media screen and (max-width: 767px) {
  .introduction__icon-decoration {
    width: 1.5rem;
    top: 2.5rem;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.introduction__prince-logo {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .introduction__prince-logo {
    width: 5rem;
  }
}

.introduction__content-bottom {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .introduction__content-bottom {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.introduction__content-text--ja {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .introduction__content-text--ja {
    text-align: left;
  }
}

.introduction__content-text--en {
  color: #FFF;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.03rem;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .introduction__content-text--en {
    text-align: left;
  }
}

.stay__title {
  width: 14.1875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .stay__title {
    width: 9.25rem;
  }
}

.stay {
  background: var(--bg, #221816);
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  -webkit-padding-after: 63px;
          padding-block-end: 63px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .stay {
    -webkit-padding-before: 1.375rem;
            padding-block-start: 1.375rem;
    -webkit-padding-after: 4.25rem;
            padding-block-end: 4.25rem;
  }
}

.stay__inner {
  width: min(73.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .stay__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.stay__top-img {
  -webkit-margin-before: 1.663125rem;
          margin-block-start: 1.663125rem;
}
@media screen and (max-width: 767px) {
  .stay__top-img {
    -webkit-margin-before: 1.53375rem;
            margin-block-start: 1.53375rem;
  }
}

/* =========================
// スライダー
========================= */
.card__swiper-container,
.card__swiper,
.card__swiper-wrapper,
.card__swiper-slide {
  position: relative;
}

.card__swiper-container {
  -webkit-margin-before: 1.663125rem;
          margin-block-start: 1.663125rem;
}

.card__swiper {
  overflow: visible;
}

.card__swiper-bottom {
  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;
  margin-top: 2.0625rem;
  -webkit-column-gap: 0.90625rem;
     -moz-column-gap: 0.90625rem;
          column-gap: 0.90625rem;
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.03rem;
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  background: #494949;
  margin-inline: 12px;
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #e0be63;
}

/* 全スライド共通 */
.card__swiper-slide {
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.5s ease, -webkit-box-shadow 0.5s ease;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

/* 前後（次・前） */
.card__swiper-slide.swiper-slide-prev,
.card__swiper-slide.swiper-slide-next {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* 真ん中（アクティブ） */
.card__swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}

.stay__contents-middle {
  position: relative;
  -webkit-margin-before: 5.53rem;
          margin-block-start: 5.53rem;
}
@media screen and (max-width: 767px) {
  .stay__contents-middle {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.stay__bar-gold {
  position: absolute;
  bottom: -3.75rem;
  width: 55.06875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .stay__bar-gold {
    width: 21.0625rem;
    bottom: -3.125rem;
  }
}

.stay__head {
  text-align: center;
  font-family: "Playfair Display";
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: 0.06rem;
  background: var(--gold, linear-gradient(270deg, #D3B000 0%, #F7E694 25.48%, #FEF7CC 50%, #EFDA97 73.08%, #D3B000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .stay__head {
    font-size: 1.5rem;
  }
}

.stay__text--ja {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  -webkit-margin-before: 1.0325rem;
          margin-block-start: 1.0325rem;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .stay__text--ja {
    font-size: 1rem;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
    text-align: left;
  }
}

.stay__text--en {
  color: #fff;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 767px) {
  .stay__text--en {
    font-size: 1rem;
    text-align: left;
  }
}
.stay__text--en span {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  display: inline !important;
}

.stay-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 767px) {
  .stay-info {
    -webkit-margin-before: 5.5625rem;
            margin-block-start: 5.5625rem;
  }
}

/* dlリセット */
.stay-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .stay-info__list {
    gap: 1.5rem;
  }
}

/* 1行 */
.stay-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .stay-info__row {
    -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;
    row-gap: 1rem;
  }
}

/* 左ラベル（丸枠） */
.stay-info__label {
  width: 8.8125rem;
  padding: 10px;
  text-align: center;
  background: url("../img/stay/stay-info__circle1.png") no-repeat center center/contain;
}

.stay-info__label-ja {
  color: #faf8f5;
  /* PC/Noto Serif JP_p */
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}

.stay-info__label-en {
  color: #faf8f5;
  font-family: "Noto Serif JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 20.4px */
  -webkit-margin-before: -5px;
          margin-block-start: -5px;
}

/* 右側 */
.stay-info__body {
  margin: 0;
}

/* 日本語 / 英語 2カラム */
.stay-info__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .stay-info__cols {
    display: block;
  }
}

/* 通常テキスト */
.stay-info__text {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .stay-info__text {
    font-weight: 400;
  }
}

/* 箇条書き */
@media screen and (max-width: 767px) {
  .stay-info__bullets {
    -webkit-margin-before: 0.5rem;
            margin-block-start: 0.5rem;
  }
}
.stay-info__bullets li {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .stay-info__bullets li {
    font-weight: 400;
    line-height: 170%;
  }
}

.cta {
  position: relative;
}

.cta__bg {
  height: 13.3125rem;
}
@media screen and (max-width: 767px) {
  .cta__bg {
    height: 17.8125rem;
  }
}

.cta__inner {
  position: absolute;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(39.625rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.cta__title {
  width: 34.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cta__title {
    width: 14.25rem;
  }
}

.cta__info {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  -webkit-margin-before: 1.97625rem;
          margin-block-start: 1.97625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta__info {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.cta__info span {
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03rem;
}

.cta__info-content {
  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.5rem;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .cta__info-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-inline: auto;
    width: 11.8125rem;
    gap: 0.5625rem;
  }
}

.cta__button {
  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;
  gap: 0.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2.75rem;
  border: 0.0625rem solid #221816;
  padding: 0.5rem 1.5rem;
  color: #221816;
  height: 3.4375rem;
  width: 8.8125rem;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cta__button {
    font-weight: 500;
  }
}

.cta__button span {
  display: block;
  font-size: 0.75rem;
  font-family: "Noto Serif JP";
  color: #221816;
  line-height: 1;
  font-style: normal;
  font-weight: 500;
}

.cta__tel {
  color: #221816;
  font-family: "Noto Serif JP";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 34px */
}
.cta__tel span {
  color: #221816;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .cta__tel span {
    font-weight: 500;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .header__line--sp {
    height: 0.3125rem; /* ← 固定で確実に出す */
    min-height: 0.3125rem;
  }
}
.room {
  position: relative;
}

.room__bg {
  height: 36.8125rem;
}
@media screen and (max-width: 767px) {
  .room__bg {
    height: 48.75rem;
  }
}

.room__inner {
  position: absolute;
  width: min(73.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
  top: 5rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 767px) {
  .room__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
    top: 3.75rem;
  }
}

.room__title {
  width: 35.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .room__title {
    width: 21.0625rem;
  }
}

.room__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-margin-before: 1.538125rem;
          margin-block-start: 1.538125rem;
}

.room__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .room__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.room__card:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.room__card-img {
  width: 33.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .room__card-img {
    width: 100%;
  }
}

.room__card-head--1 {
  width: 14.3125rem;
}

.room__card-head--2 {
  width: 18.75rem;
}

.room__card-head--3 {
  width: 17.4375rem;
}

.room__card-head--4 {
  width: 16.75rem;
}

.room__card-text--ja {
  color: #FFF;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}

.room__card-text--en {
  color: #FFF;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

.plan {
  position: relative;
}

.plan__bg {
  height: 59.375rem;
}
@media screen and (max-width: 767px) {
  .plan__bg {
    height: 87.5rem;
  }
}

.plan__inner {
  position: absolute;
  width: min(73.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
  top: 4.375rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 767px) {
  .plan__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
    top: 3.75rem;
  }
}

.plan__title {
  width: 18.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .plan__title {
    width: 12.0625rem;
  }
}

.plan__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.plan__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .plan__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.plan__card:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .plan__card:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.plan__card-img {
  width: 33.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .plan__card-img {
    width: 100%;
  }
}

.plan__card-head--1 {
  width: 11.5625rem;
}

.plan__card-head--2 {
  width: 11.1875rem;
}

.plan__card-text--ja {
  color: #FFF;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}

.plan__card-text--en {
  color: #FFF;
  font-family: "Playfair Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.03rem;
}
.plan__card-text--en span {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  display: inline !important;
}

.benefit {
  position: relative;
}

.benefit__bg {
  height: 55.8125rem;
}
@media screen and (max-width: 767px) {
  .benefit__bg {
    height: 74.375rem;
  }
}

.benefit__inner {
  position: absolute;
  width: min(73.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
  top: 3rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 767px) {
  .benefit__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.benefit__title {
  width: 14.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .benefit__title {
    width: 7.5rem;
  }
}

.benefit__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.benefit__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .benefit__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.benefit__card:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .benefit__card:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.benefit__card-img {
  width: 33.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .benefit__card-img {
    width: 100%;
  }
}

.benefit__card-head1 {
  width: 23.0625rem;
}
@media screen and (max-width: 767px) {
  .benefit__card-head1 {
    width: 14.375rem;
  }
}

.benefit__card-head2 {
  width: 15.375rem;
}
@media screen and (max-width: 767px) {
  .benefit__card-head2 {
    width: 15.375rem;
  }
}

.benefit__card-text--ja {
  color: #FFF;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}

.benefit__card-text--en {
  color: #FFF;
  font-family: "Playfair Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.03rem;
}

.collaboration {
  -webkit-padding-before: 3.875rem;
          padding-block-start: 3.875rem;
  -webkit-padding-after: 5.125rem;
          padding-block-end: 5.125rem;
  background: #221816;
}
@media screen and (max-width: 767px) {
  .collaboration {
    -webkit-padding-before: 2.5rem;
            padding-block-start: 2.5rem;
    -webkit-padding-after: 3.75rem;
            padding-block-end: 3.75rem;
  }
}

.collaboration__inner {
  width: min(57.5rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .collaboration__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.collaboration__text--ja {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  background: var(--gold, linear-gradient(270deg, #D3B000 0%, #F7E694 25.48%, #FEF7CC 50%, #EFDA97 73.08%, #D3B000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.collaboration__text--en {
  text-align: center;
  font-family: "Playfair Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.03rem;
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  background: var(--gold, linear-gradient(270deg, #EDBC6A 0%, #F7E694 25.48%, #FEF7CC 50%, #EFDA97 73.08%, #EDBC6A 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .collaboration__text--en {
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
  }
}

.collaboration__link a {
  display: block;
}

.collaboration__link img {
  display: block;
  width: 52.5rem;
  margin-inline: auto;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.collaboration__link a:hover img {
  opacity: 0.8; /* ← ここで暗さ調整 */
}

.cautionary {
  position: relative;
}

.cautionary__bg {
  height: 34.75rem;
}
@media screen and (max-width: 767px) {
  .cautionary__bg {
    height: 59.125rem;
  }
}

.cautionary__inner {
  position: absolute;
  width: min(61rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
  top: 2.5rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .cautionary__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.cautionary__text--ja {
  position: relative;
  padding-left: 1rem;
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}
.cautionary__text--ja::before {
  position: absolute;
  content: "※";
  left: 0;
}

.cautionary__text--en {
  position: relative;
  padding-left: 1rem;
  color: #333;
  font-family: "Noto Serif JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}
.cautionary__text--en::before {
  position: absolute;
  content: "※";
  left: 0;
}

.pdf__link {
  color: #000;
  text-decoration: underline;
  text-decoration-color: #000;
  display: inline !important;
  white-space: nowrap !important;
}

.pdf__link:hover {
  text-decoration: none;
}

.footer {
  -webkit-padding-before: 7.5rem;
          padding-block-start: 7.5rem;
  -webkit-padding-after: 7.3125rem;
          padding-block-end: 7.3125rem;
  background: var(--bg, #221816);
}
@media screen and (max-width: 767px) {
  .footer {
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
    -webkit-padding-after: 5rem;
            padding-block-end: 5rem;
  }
}

.footer__inner {
  width: min(73.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    width: min(23.4375rem, 100%);
    padding-inline: 1.25rem;
    margin-inline: auto;
  }
}

.footer__text--ja {
  background: var(--gold, linear-gradient(270deg, #D3B000 0%, #F7E694 25.48%, #FEF7CC 50%, #EFDA97 73.08%, #D3B000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

.footer__text--en {
  background: var(--gold, linear-gradient(270deg, #D3B000 0%, #F7E694 25.48%, #FEF7CC 50%, #EFDA97 73.08%, #D3B000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.03rem;
}

.footer__banner1 {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__banner1 {
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
}

.footer__contents-bottom {
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
}
@media screen and (max-width: 767px) {
  .footer__contents-bottom {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.footer__banner2 {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  -webkit-margin-after: 7.5rem;
          margin-block-end: 7.5rem;
}
@media screen and (max-width: 767px) {
  .footer__banner2 {
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
    -webkit-margin-after: 6.875rem;
            margin-block-end: 6.875rem;
  }
}

.footer__banner1 a,
.footer__banner2 a {
  display: block;
}

.footer__banner1 img,
.footer__banner2 img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__banner1 a:hover img,
.footer__banner2 a:hover img {
  opacity: 0.8;
}

.footer__logo {
  width: 11rem;
  margin-inline: auto;
  -webkit-margin-after: 3.8325rem;
          margin-block-end: 3.8325rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    -webkit-margin-after: 2.8325rem;
            margin-block-end: 2.8325rem;
  }
}

.footer__text {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  padding-block: 1.25rem;
  text-align: center;
  background: var(--gr, linear-gradient(90deg, #025A0A 0%, #59340C 50%, #841042 100%));
}
@media screen and (max-width: 767px) {
  .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding-block: 1rem;
    background: var(--gr, linear-gradient(90deg, #025A0A 0%, #59340C 50%, #841042 100%));
  }
}

.copyright__text1 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

.copyright__text2 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

.footer__hotelNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__hotelNav {
    gap: 0.125rem;
  }
}

/* 2つ目以降のliに区切り線を入れる */
.footer__hotelNav li + li {
  position: relative;
  padding-left: 0.625rem;
}

.footer__hotelNav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 1.2em;
  background-color: #fff;
}

@media (max-width: 767px) {
  .footer__hotelNav li {
    position: relative;
  }
  /* 1つ目のliの右側に線 */
  .footer__hotelNav li:first-child {
    padding-right: 0.625rem;
  }
  .footer__hotelNav li:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1px;
    height: 1.2em;
    background-color: #fff;
  }
  /* PC用の「左線」はSPでは消す */
  .footer__hotelNav li + li::before {
    display: none;
  }
}
.footer__hotelNav a {
  color: #fff;
  text-decoration: none;
}

/* hoverで下線を出すだけ */
.footer__hotelNav a:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 0.2em;
}

.toTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 999;
  /* 初期は非表示 */
  display: none;
}
@media screen and (max-width: 767px) {
  .toTop {
    width: 40px;
    height: 40px;
  }
}

/* 表示状態 */
.toTop.is-show {
  display: block;
}

/* SVGの見た目（前のままでOK） */
.toTop svg {
  width: 100%;
  height: 100%;
}

.toTop circle {
  fill: rgba(0, 0, 0, 0.75);
  stroke: #fff;
  stroke-width: 2;
}

.toTop path {
  fill: #fff;
}