@charset "UTF-8";
/* ==========================================================================
   Component (FLOCSS)
   ========================================================================== */

/* ==============================================
   CATEGORY (カテゴリタブ)
   ============================================== */
.c-category {
  display: flex;
  flex-wrap: wrap;
  gap: 3.4rem 3.4rem;
  list-style: none;
  padding: 0;
}
.c-category__link {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
  font-size: 1.6rem;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}
.c-category__link:hover {
  color: #ffffff;
}
.c-category__link.is-active {
  color: #ffffff;
  text-decoration: none;
}
/* アクティブ時のドット */
.c-category__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background-color: #fff;
  border-radius: 50%;
}

@media (max-width: 1000px) {
  .c-category {
    gap: 1.8rem 1.6rem;
  }
  .c-category__link {
    font-size: 1.5rem;
  }
  .c-category__link.is-active::after {
    bottom: -0.9rem;
  }
}

/* ==============================================
   TOPICS (お知らせリスト)
   ============================================== */
.c-topics {
  list-style: none;
  padding: 0;
  margin: 0; /* リスト自体は下マージンを持たない */
}
.c-topics__item {
  border-bottom: 1px solid #1f3134;
}
.c-topics__link {
  display: block;
  padding: 3.3rem 0 4rem;
  text-decoration: none;
  color: #fff;
  background: #2b3d40;
  transition: opacity 0.4s ease;
}
.c-topics__link:hover {
  opacity: 0.6;
}
.c-topics__link-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  transition: padding-left 0.3s ease;
}
.c-topics__link:hover .c-topics__link-inner {
  padding-left: 1rem;
}
.c-topics__meta {
  width: 100%;
  display: flex;
  gap: 2rem;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.c-topics__cat {
  color: #a98f54;
}
.c-topics__title {
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.88;
}

@media (max-width: 1000px) {
  .c-topics__link {
    padding: 2.5rem 0 2.4rem;
  }
  .c-topics__meta {
    font-size: 1.3rem;
  }
  .c-topics__title {
    font-size: 1.5rem;
    line-height: 2;
  }
}

/* ==============================================
   PAGE TITLE (下層ページ共通の見出し)
   ============================================== */
.c-page-title {
  font-size: 4.8rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

@media (max-width: 1000px) {
  .c-page-title {
    font-size: 3.2rem;
  }
}

/* ==============================================
   SECTION TITLE
   ============================================== */
.c-section-title {
  font-size: 3.4rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.52;
}
.c-section-title--dark {
  color: var(--c-dark);
}

/* ==============================================
   PAGE HEAD - NO MEDIA (KV画像を持たない下層ページの共通ヘッダー)
   ============================================== */
.c-page-head-no-media {
  padding: 36.7rem 0 6.7rem;
  /* background-color: #1f3134; */
}
.c-page-head-no-media__category-list {
  margin-top: 5.6rem;
}

@media (max-width: 1000px) {
  .c-page-head-no-media {
    padding: 27rem 0 4.5rem;
  }
  .c-page-head-no-media__category-list {
    margin-top: 4.6rem;
  }
}

/* ==============================================
   PAGE HEAD (KV画像を持つ下層ページの共通ヘッダー。p-home-kvを流用しつつスライダーなしの1枚画像版)
   ============================================== */
.c-page-head {
  position: relative;
  width: 100%;
  height: var(--kv-height, 100vh);
  max-height: var(--kv-max-height, 100vh);
  min-height: var(--kv-min-height, 60rem);
  overflow: hidden; /* js-inview-mediaのscale(1.08→1)がはみ出さないように */
}
/* 下から中央にかけてのグラデーションシャドウ */
.c-page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
.c-page-head__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-page-head__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10.4rem;
  z-index: 2;
}
.c-page-head .c-page-title {
  position: relative;
  z-index: 2;
}
.c-scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
}
.c-page-head .c-scroll-down {
  position: absolute;
  right: 3.7rem;
  bottom: 11.5rem;
  z-index: 2;
}
.c-scroll-down__text {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  transition: color 0.3s ease;
}
.c-scroll-down:hover .c-scroll-down__text {
  color: var(--c-gold, #a98f54);
}
.c-scroll-down__line {
  position: relative;
  display: block;
  width: 1px;
  height: 7rem;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.c-scroll-down__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: c-scroll-down-anim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  transform-origin: top;
  transition: background 0.3s ease;
}
.c-scroll-down:hover .c-scroll-down__line::after {
  background: var(--c-gold, #a98f54);
}
@keyframes c-scroll-down-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 1000px) {
  .c-page-head__content {
    bottom: 6.8rem;
  }
  .c-page-head .c-scroll-down {
    right: 1.8rem;
    bottom: 8.8rem;
  }
}

/* ==============================================
   ROOM CARD LIST (客室カードグリッド。ROOMS一覧・シングルの「その他の客室」で共用)
   ============================================== */
.c-room-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 6rem;
}
.c-room-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-room-card__img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  display: block;
}
.c-room-card__info {
  padding-top: 4.3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.c-room-card__name {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}
.c-room-card__desc {
  margin-top: 2.3rem;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.6;
}
.c-room-card__desc + .c-room-card__desc {
  margin-top: 3rem;
}
.c-room-card__spec {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.6;
  line-height: 2;
}
.c-room-card__actions {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5rem;
}
.c-room-card__link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.c-room-card__link:hover {
  color: var(--c-gold, #a98f54);
  border-color: var(--c-gold, #a98f54);
}
.c-room-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  padding: 0.5rem 5.6rem;
  border-radius: 9999px;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  background: var(--c-gold, #a98f54);
  color: #fff;
}
.c-room-card__btn:hover {
  background: #fff;
  color: var(--c-gold, #a98f54);
}

@media (max-width: 1000px) {
  .c-room-card-list {
    gap: 5rem 3rem;
  }
  .c-room-card__name {
    font-size: 1.9rem;
  }
  .c-room-card__desc {
    margin-top: 2.5rem;
    font-size: 1.4rem;
  }
  .c-room-card__desc + .c-room-card__desc {
    margin-top: 2.7rem;
  }
  .c-room-card__info {
    padding-top: 3.3rem;
  }
  .c-room-card__actions {
    margin-top: 2.6rem;
    min-height: 4rem;
  }
  .c-room-card__link {
    font-size: 1.5rem;
  }
  .c-room-card__btn {
    height: 4rem;
    padding: 0.5rem 2.6rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 750px) {
  .c-room-card-list {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   INFO TABLE (客室情報・設備アメニティなどのラベル+値テーブル)
   ============================================== */
.c-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1px;
  margin-top: 2.5rem;
}
.c-info-table th,
.c-info-table td {
  background: #2b3d40;
  color: #fff;
  padding: 1.4rem 2rem 1.5rem;
  text-align: left;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.c-info-table th {
  width: 14rem;
}
.c-info-table td {
  padding-left: 0;
}

@media (max-width: 1000px) {
  .c-info-table {
    margin-top: 2rem;
  }
  .c-info-table th,
  .c-info-table td {
    padding: 1.4rem 1.4rem 1.5rem;
    font-size: 1.4rem;
  }
  .c-info-table th {
    width: 7.5rem;
  }
  .c-info-table td {
    padding: 1.4rem 1.3rem 1.5rem 0;
  }
}

/* ==============================================
   PAGINATION (WP標準 the_posts_pagination())
   ============================================== */
.pagination.-num {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.pagination.-num .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.pagination.-num .page-numbers:hover {
  border-color: var(--c-gold, #a98f54);
  color: var(--c-gold, #a98f54);
}
.pagination.-num .page-numbers.current {
  background: #fff;
  border-color: #fff;
  color: #2c2c2e;
}
.pagination.-num .page-numbers.dots {
  border: none;
  width: auto;
}
.pagination.-num .page-numbers.dots:hover {
  color: #fff;
}

@media (max-width: 1000px) {
  .pagination.-num .page-numbers {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}

/* ==============================================
   SLIDER CONTROLS (共通のスライダー操作UI)
   ============================================== */
.c-slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 95%;
  max-width: 1300px;
  margin: 3rem auto 0;
}
.c-slider-prev, .c-slider-next {
  position: static !important;
  margin-top: 0 !important;
  color: #fff !important;
  width: 6rem !important; /* 円のサイズ */
  height: 6rem !important;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.28) !important; /* 背景の黒28%オーバーレイ */
  border: 1px solid #2c2c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.c-slider-prev {
  position: relative !important;
  left: auto !important;
  right: auto !important;
}
.c-slider-next {
  position: relative !important;
  left: auto !important;
  right: auto !important;
}
.c-slider-prev::before,
.c-slider-prev::after,
.c-slider-next::before,
.c-slider-next::after {
  content: "" !important; /* Swiperのフォントアイコンを消去 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* prev: 左向き矢印（ホバーで左に抜け、右側から新しい矢印が入ってくる） */
.c-slider-prev::before,
.c-slider-prev::after {
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.c-slider-prev::after {
  transform: translate(-30%, -50%) rotate(45deg);
}
.c-slider-prev::before {
  transform: translate(calc(-30% + 2.5rem), -50%) rotate(45deg);
  opacity: 0;
}
.c-slider-prev:hover::after {
  transform: translate(calc(-30% - 2.5rem), -50%) rotate(45deg);
  opacity: 0;
}
.c-slider-prev:hover::before {
  transform: translate(-30%, -50%) rotate(45deg);
  opacity: 1;
}
/* next: 右向き矢印（ホバーで右に抜け、左側から新しい矢印が入ってくる） */
.c-slider-next::before,
.c-slider-next::after {
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}
.c-slider-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}
.c-slider-next::before {
  transform: translate(calc(-70% - 2.5rem), -50%) rotate(45deg);
  opacity: 0;
}
.c-slider-next:hover::after {
  transform: translate(calc(-70% + 2.5rem), -50%) rotate(45deg);
  opacity: 0;
}
.c-slider-next:hover::before {
  transform: translate(-70%, -50%) rotate(45deg);
  opacity: 1;
}
.c-slider-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem; /* ドット間の隙間12px */
}
.c-slider-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid #fff;
  background: transparent;
  opacity: 0.5;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.c-slider-pagination .swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  background: #fff;
  opacity: 1;
}

@media (max-width: 1000px) {
  .c-slider-controls {
    width: 88.8888vw;
    margin: 2rem auto 0;
  }
  .c-slider-prev, .c-slider-next {
    width: 4rem !important;
    height: 4rem !important;
  }
  .c-slider-prev::before, .c-slider-prev::after,
  .c-slider-next::before, .c-slider-next::after {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 1000px) {

  .c-section-title {
    font-size: 2.3rem;
    line-height: 1.65;
  }
}

/* ==============================================
   PARALLAX (スクロール連動で画像がゆっくり動くフルブリード写真)
   参考: mabataki.jp/company/ の .parallax-unit 実装を踏襲
   ============================================== */
.c-parallax__frame {
  position: relative;
  overflow: hidden;
  background-color: var(--c-dark, #2c2c2e);
}
.c-parallax__space {
  width: 100%;
  aspect-ratio: 2 / 1;
}
.c-parallax__img {
  position: absolute;
  top: -15%;
  left: 0;
  display: block;
  width: 100%;
  height: 130%;
  transition: transform 0.6s ease-out;
  will-change: transform;
}
.c-parallax__img picture {
  display: block; /* <picture>は既定でheightを子imgに依存し親の100%を継承できないため、明示的にブロック化 */
  width: 100%;
  height: 100%;
}
.c-parallax__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==============================================
   COOKIE CONSENT (Cookie同意バナー)
   ============================================== */
.c-cookie-consent {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 998; /* 予約モーダル(999)より下・ハンバーガーメニュー(500)より上 */
  width: 35rem;
  border-radius: 0;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.c-cookie-consent__inner {
  padding: 2.5rem 3rem 3rem;
}
.c-cookie-consent__text {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--c-dark);
  letter-spacing: 0.05em;
}
.c-cookie-consent__link {
  position: relative;
  display: inline-block;
  margin: 1.5rem 0 2.5rem;
  font-size: 1.4rem;
  color: #888888;
  text-decoration: underline;
  letter-spacing: 0.05em;
}
.c-cookie-consent__link:hover {
  color: var(--c-dark);
}
.c-cookie-consent__buttons {
  display: flex;
  gap: 1rem;
}
.c-cookie-consent__button {
  box-sizing: border-box;
  width: 12rem;
  padding: 0.9rem 0;
  border: 1px solid #2c2c2e;
  border-radius: 9999px;
  background: #2c2c2e;
  color: #fff;
  font-size: 1.5rem;
  /* font-weight: bold; */
  letter-spacing: 0.05em;
  text-align: center;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
}
.c-cookie-consent__button:hover {
  opacity: 0.7;
}
.c-cookie-consent__button--outline {
  background: transparent;
  border-color: var(--c-dark);
  color: var(--c-dark);
}
@media (max-width: 750px) {
  .c-cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 8rem;
    width: auto;
  }
  .c-cookie-consent__buttons {
    flex-wrap: wrap;
  }
  .c-cookie-consent__button {
    flex: 1 1 auto;
    width: auto;
    min-width: 10rem;
  }
}
