/* ===== home ===== */
/* =========================================
   リセット & ベース
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream: #F7F3ED;
  --dark: #1A1916;
  --gold: #B8954A;
  --forest: #364B3C;
  --muted: #7A7468;
  --font-en: 'Cormorant Garamond', 'EB Garamond', serif;
  --font-jp: 'Noto Serif JP', '游明朝', YuMincho, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-jp);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.75; }

/* =========================================
   ヘッダー
   ========================================= */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;           /* ドロワー(205)より上 */
  min-height: 112px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s, height 0.4s, min-height 0.4s;
}
header.scrolled {
  background: rgba(20,19,17,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100px;
  min-height: 100px;
  padding: 0 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* ロゴ SVG — スクロールしてもサイズ固定 */
.header-logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  z-index: 310;
}
.header-logo img,
.header-logo svg {
  height: 44px;
  width: auto;
  display: block;
}
/* scrolled時もサイズ変えない */
header.scrolled .header-logo img,
header.scrolled .header-logo svg {
  height: 44px;
}

/* PCナビ */
.header-nav {
  display: none;
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
  .header-nav a {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
      0 0 20px rgba(0,0,0,1),
      0 0 8px  rgba(0,0,0,1),
      0 1px 4px rgba(0,0,0,1),
      0 2px 10px rgba(0,0,0,0.9);
    transition: color 0.3s, text-shadow 0.25s;
    padding: 6px 14px;
    position: relative;
  }
  /* ホバー：色をゴールドに、テキストシャドウをゴールド系に変更 */
  .header-nav a:hover {
    color: var(--gold);
    opacity: 1;
    text-shadow:
      0 0 16px rgba(0,0,0,0.9),
      0 1px 4px rgba(0,0,0,0.9);
  }
  /* 下線：中央から左右に広がる */
  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: left 0.3s var(--ease), right 0.3s var(--ease);
  }
  .header-nav a:hover::after {
    left: 14px;
    right: 14px;
  }
}

/* 予約ボタン — RESERVATIONS / ホバーで白背景・囲み罫 */
.header-reserve {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--gold);
  padding: 12px 24px;
  border: 2px solid var(--gold);
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
  position: relative;
  z-index: 310;
  box-shadow: none;
  cursor: pointer;
}
.header-reserve:hover {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
  opacity: 1;
  box-shadow: none;
}

/* ハンバーガーボタン — PC・SPともに表示 */
.header-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 310;
  background: none;
  border: none;
  padding: 0;
}
.header-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  border-radius: 1px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.7);
  transition: transform 0.4s var(--ease), opacity 0.25s, background 0.3s, width 0.3s;
  transform-origin: center;
}

/* ×アニメーション */
.header-menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header-menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================
   ドロワーナビ（ハンバーガーメニュー）
   ========================================= */
.drawer-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 92vw);
  height: 100%;
  background: rgba(20,19,17,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 205;           /* header(300)より下 → ヘッダーが前面に残る */
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(184,149,74,0.18);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 72px;      /* ヘッダー分の余白 */
}
.drawer-nav.open {
  transform: translateX(0);
}

/* 上部：予約ボタン */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.drawer-top-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 0.18em;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  transition: opacity 0.3s;
}
.drawer-top-reserve:hover { opacity: 0.85; }

/* ×ボタン — ヘッダーに統合したので非表示 */
.drawer-close-btn { display: none; }

/* ナビリスト */
.drawer-nav-list {
  list-style: none;
  flex: 1;
  padding: 0;
}

/* 通常リンク項目 */
.drawer-nav-list > li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.drawer-nav-list > li:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.14em;
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-jp);
}
.drawer-nav-link:hover { color: var(--gold); background: rgba(255,255,255,0.03); }
a.drawer-nav-link { text-decoration: none; }

/* アコーディオン見出し（緑帯）＋ / − 表示 */
.drawer-acc-head {
  background: var(--forest);
  padding: 14px 24px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-jp);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.drawer-acc-head:hover { background: #4a6652; }

/* ＋／－ アイコン（丸囲みなし） */
.acc-pm {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  font-family: 'Arial', sans-serif;
  user-select: none;
  display: inline-block;
  width: 22px;
  text-align: center;
  transition: transform 0.35s var(--ease), color 0.3s;
  transform-origin: center;
}
.drawer-acc-head.acc-open .acc-pm {
  color: var(--gold);
  transform: rotate(180deg) scaleX(0.85); /* ＋が回転して－に見せる */
}
.drawer-acc-head.acc-open { color: #fff; }

/* アコーディオンパネル */
.drawer-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  background: rgba(255,255,255,0.03);
}
.drawer-acc-body.open {
  max-height: 600px;
}
.drawer-acc-body a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px 15px 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s, background 0.3s;
}
.drawer-acc-body a:last-child { border-bottom: none; }
.drawer-acc-body a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.drawer-acc-body a .ext-icon {
  font-size: 14px;
  opacity: 0.5;
  margin-left: auto;
}

/* フッター予約ボタン */
.drawer-nav .drawer-reserve,
.drawer-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-size: 13px !important;
  letter-spacing: 0.2em;
  background: var(--gold);
  color: #fff;
  padding: 18px 32px;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  flex-shrink: 0;
  margin: 0;
}
.drawer-nav .drawer-reserve:hover,
.drawer-reserve:hover {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

/* コピーライト */
.drawer-footer {
  padding: 14px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  background: var(--forest);
  flex-shrink: 0;
}

/* ドロワー背景マスク — ヘッダーより下 */
.drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 204;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-mask.open {
  opacity: 1;
  pointer-events: all;
}

/* =========================================
   ヒーロー（スライドショー）
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Swiper full-cover */
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide { height: 100%; }

.hero .slide-media {
  position: absolute;
  inset: 0;
}
.hero .slide-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s var(--ease);
}
.hero .swiper-slide-active .slide-media img {
  transform: scale(1);
}

/* 暗めオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5)   0%,
    rgba(0,0,0,0.3)  35%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* テキスト */
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 80px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1s 0.6s var(--ease) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1.2s 0.8s var(--ease) forwards;
  text-shadow:
    0 2px 20px rgba(0,0,0,0.8),
    0 0 40px rgba(0,0,0,0.5);
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.85); }

.hero-sub {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 2;
  color: #fff;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1s 1.1s var(--ease) forwards;
  text-shadow:
    0 1px 8px rgba(0,0,0,0.9),
    0 0 20px rgba(0,0,0,0.7);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 14px 32px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1s 1.3s var(--ease) forwards;
}
.hero-cta:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
  opacity: 1;
}

/* スクロールヒント */
.scroll-hint {
  position: absolute;
  bottom: 32px; right: 5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:.8} 50%{transform:scaleY(0.5);opacity:.3} }

/* ページネーション */
.hero .swiper-pagination {
  bottom: 32px !important;
  left: clamp(24px, 5vw, 60px) !important;
  text-align: left !important;
  width: auto !important;
}
.hero .swiper-pagination-bullet {
  width: 24px; height: 1px;
  border-radius: 0;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  margin: 0 4px !important;
  transition: background 0.3s, width 0.3s;
}
.hero .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 40px;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   セクション共通
   ========================================= */
.s-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 48px);
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.s-tag::before, .s-tag::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
}

.s-title-en {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--dark);
}
.s-title-en em { font-style: italic; color: var(--muted); }

.s-title-jp {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #5a5850;
  margin-bottom: 32px;
}

.s-body {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 2.2;
  color: #3a3a38;
  font-weight: 400;
}

/* セクション共通の区切り線 */
.divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

/* =========================================
   Villa・Spa・Dinner セクション（写真×テキスト重ね）
   ========================================= */
.feature-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* PC: 2カラム */
@media (min-width: 768px) {
  .feature-section {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 600px;
  }
  .feature-section.reverse {
    grid-template-columns: 45% 55%;
  }
  .feature-section.reverse .feature-photo { order: 2; }
  .feature-section.reverse .feature-text  { order: 1; }
}

.feature-photo {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .feature-photo { min-height: 500px; }
}

.feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.feature-section:hover .feature-photo img {
  transform: scale(1.03);
}

/* 写真の上の薄暗オーバーレイ */
.feature-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,25,22,0.25);
  pointer-events: none;
}

/* テキスト側 */
.feature-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  background: var(--dark);
  color: #fff;
}

.feature-no {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 24px; right: 32px;
  line-height: 1;
  pointer-events: none;
}

.feature-tag {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.feature-title-en {
  font-family: var(--font-en);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 6px;
}
.feature-title-en em { font-style: italic; }

.feature-title-jp {
  font-size: 14px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 26px;
}

.feature-divider {
  width: 36px; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.feature-body {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 2.2;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-weight: 300;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.3s;
  width: fit-content;
}
.btn-text-link:hover { color: var(--gold); opacity: 1; }
.btn-text-link .arrow { transition: transform 0.3s; }
.btn-text-link:hover .arrow { transform: translateX(4px); }

/* クリーム背景上での使用（アクセスセクション等） */
.btn-text-link--dark {
  color: var(--dark);
}
.btn-text-link--dark:hover { color: var(--gold); }

/* SP: 写真の上にテキストを重ねる */
@media (max-width: 767px) {
  .feature-section { display: block; }
  .feature-photo { min-height: 260px; }
  .feature-photo::after {
    background: linear-gradient(to bottom, rgba(26,25,22,0.1), rgba(26,25,22,0.5));
  }
  .feature-no { font-size: 54px; top: 16px; right: 16px; }
}

/* =========================================
   観光グリッド
   ========================================= */
.sightseeing-section {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 60px);
  background: var(--cream);
}

.sight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: clamp(32px, 4vw, 56px);
}
@media (min-width: 768px) {
  .sight-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sight-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
@media (min-width: 768px) {
  .sight-card { aspect-ratio: 2/3; }
}

.sight-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.sight-card:hover img { transform: scale(1.05); }

.sight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,25,22,0.75) 0%, transparent 50%);
  transition: background 0.4s;
}
.sight-card:hover .sight-overlay {
  background: linear-gradient(to top, rgba(26,25,22,0.85) 0%, rgba(26,25,22,0.2) 60%);
}

.sight-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  color: #fff;
}
.sight-label-en {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 2px;
}
.sight-label-jp {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}

/* =========================================
   クォートバンド
   ========================================= */
.quote-band {
  background: var(--forest);
  padding: clamp(56px, 8vw, 96px) clamp(24px, 8vw, 80px);
  text-align: center;
}

.quote-mark {
  font-family: var(--font-en);
  font-size: 72px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 28px;
  display: block;
}

.quote-text {
  font-family: var(--font-en);
  font-size: clamp(18px, 2.8vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 18px;
  letter-spacing: 0.04em;
}

.quote-sub {
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.42);
}

/* =========================================
   アクセス
   ========================================= */
.access-section {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 60px);
  background: var(--cream);
  max-width: 1000px;
  margin: 0 auto;
}

.access-section .section-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.access-body {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 2.2;
  color: #3a3a38;
  font-weight: 400;
  text-align: center;
  margin-bottom: 36px;
}

.access-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .access-section iframe { height: 500px; }
}

/* =========================================
   お知らせ
   ========================================= */
.info-section {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 48px);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid rgba(26,25,22,0.12);
}
.info-table tr:first-child {
  border-top: 1px solid rgba(26,25,22,0.12);
}
.info-table td {
  padding: 20px 0;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .info-table td { flex-wrap: nowrap; }
}

.info-date {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 90px;
  font-weight: 500;
}

.info-text a {
  color: var(--gold);
  font-weight: 700;
  border-bottom: none;
  text-decoration: none;
  transition: opacity 0.3s;
}
.info-text a:hover { opacity: 0.75; }

/* =========================================
   予約バナー
   ========================================= */
.reserve-band {
  background: var(--dark);
  padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.reserve-text .reserve-en {
  font-family: var(--font-en);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.reserve-text .reserve-jp {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.42);
  margin-top: 6px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 16px 40px;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-gold:hover {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

/* =========================================
   フッター
   ========================================= */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: clamp(48px, 7vw, 72px) clamp(24px, 6vw, 64px) 28px;
  color: rgba(255,255,255,0.45);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  z-index: 200;
}

.footer-logo-img {
  display: block;
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 32px);
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, opacity 0.3s;
  position: relative;
  padding-bottom: 3px;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
.footer-nav a:hover::after { left: 0; right: 0; }
.footer-nav a:hover { color: var(--gold); opacity: 1; }

.footer-info {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

/* =========================================
   スクロールアニメーション
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =========================================
   SP 非表示
   ========================================= */
.pc-only { display: none; }
@media (min-width: 768px) {
  .pc-only { display: inline; }
  .sp-only { display: none; }
}


/* ===== stay ===== */
/* =========================================
   下層ページ共通
   ========================================= */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.18) 40%,
    rgba(0,0,0,0.65) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 6vw, 80px);
  color: #fff;
}
.page-hero-eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease) forwards;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.page-hero-title {
  font-family: var(--font-en);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fadeUp 1s 0.55s var(--ease) forwards;
}
.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.8); }

.page-hero-sub {
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease) forwards;
}

/* パンくず */
.breadcrumb {
  background: var(--dark);
  padding: 12px clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); opacity: 1; }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: rgba(255,255,255,0.65); }

/* =========================================
   イントロセクション
   ========================================= */
.villa-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 112px) clamp(24px, 5vw, 48px);
  text-align: center;
}
.villa-intro-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2.4;
  color: #3a3a38;
  font-weight: 400;
  margin-bottom: 0;
}

/* =========================================
   客室タイプ グリッド
   ========================================= */
.room-types {
  background: var(--dark);
  padding: clamp(56px, 8vw, 100px) 0;
}
.room-types-header {
  text-align: center;
  padding: 0 clamp(24px, 5vw, 48px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.room-types-header .s-tag { justify-content: center; }

.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 768px) {
  .room-grid { grid-template-columns: 1fr 1fr; }
}

/* 客室カード */
.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
@media (min-width: 768px) {
  .room-card:first-child { aspect-ratio: unset; grid-row: span 2; }
}

.room-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.room-card:hover .room-card-img { transform: scale(1.04); }

.room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  transition: background 0.4s;
}
.room-card:hover .room-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.1) 100%);
}

.room-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 36px);
  color: #fff;
}
.room-card-tag {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-card-title {
  font-family: var(--font-en);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 6px;
}
.room-card-title em { font-style: italic; }
.room-card-jp {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.room-card-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
  opacity: 0;
  font-weight: 300;
}
.room-card:hover .room-card-desc { max-height: 120px; opacity: 1; }

.room-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-top: 14px;
  transition: color 0.3s;
  opacity: 0;
  transition: max-height 0.5s, opacity 0.4s;
}
.room-card:hover .room-card-link { opacity: 1; }
.room-card-link:hover { color: var(--gold); }

/* =========================================
   特徴・設備セクション
   ========================================= */
.features-section {
  padding: clamp(64px, 9vw, 112px) clamp(24px, 6vw, 80px);
  background: var(--cream);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px) clamp(24px, 4vw, 56px);
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(26,25,22,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.feature-item-icon {
  width: 36px; height: 36px;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.feature-item-icon svg { width: 24px; height: 24px; }
.feature-item-en {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.feature-item-jp {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.feature-item-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-top: 4px;
}

/* =========================================
   写真×テキスト（詳細説明）
   ========================================= */
.detail-split {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
@media (min-width: 768px) {
  .detail-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 560px;
  }
  .detail-split.reverse {
    grid-template-columns: 45% 55%;
  }
  .detail-split.reverse .detail-photo { order: 2; }
  .detail-split.reverse .detail-text  { order: 1; }
}

.detail-photo {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.detail-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.detail-split:hover .detail-photo img { transform: scale(1.03); }
.detail-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.detail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 5vw, 64px);
  background: var(--dark);
  color: #fff;
  position: relative;
}
.detail-no {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 24px; right: 32px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.detail-tag {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.detail-title-en {
  font-family: var(--font-en);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 6px;
}
.detail-title-en em { font-style: italic; }
.detail-title-jp {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.detail-divider {
  width: 36px; height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
}
.detail-body {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 2.3;
  color: rgba(255,255,255,0.68);
  margin-bottom: 32px;
  font-weight: 300;
}
.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 32px;
}
.detail-spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.detail-spec-label {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.detail-spec-val {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}

/* =========================================
   ギャラリー
   ========================================= */
.gallery-section {
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 48px);
  background: var(--cream);
}
.gallery-section .features-header { margin-bottom: clamp(32px, 4vw, 48px); }

.gallery-swiper {
  overflow: hidden;
  position: relative;
}
.gallery-swiper .swiper-slide {
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gallery-swiper .swiper-slide { aspect-ratio: 4/3; }
}
.gallery-swiper .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: #fff;
  width: 44px; height: 44px;
  background: rgba(26,25,22,0.55);
  backdrop-filter: blur(4px);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 14px;
}
.gallery-swiper .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.4;
}
.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* =========================================
   アメニティリスト
   ========================================= */
.amenity-section {
  background: var(--forest);
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
}
.amenity-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.amenity-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.amenity-header .s-tag { color: rgba(255,255,255,0.5); }
.amenity-header .s-tag::before,
.amenity-header .s-tag::after { background: rgba(255,255,255,0.3); }
.amenity-header .s-title-en { color: #fff; }
.amenity-header .s-title-jp { color: rgba(255,255,255,0.5); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .amenity-grid { grid-template-columns: repeat(4, 1fr); }
}
.amenity-item {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.amenity-item::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .amenity-item:nth-child(4n) { border-right: none; }
}
.amenity-item:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .amenity-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
}


/* ===== spa ===== */
/* ---- 下層共通ヒーロー ---- */
.page-hero{position:relative;height:60vh;min-height:400px;max-height:640px;overflow:hidden;display:flex;align-items:flex-end}
.page-hero-bg{position:absolute;inset:0}
.page-hero-bg img{width:100%;height:100%;object-fit:cover;transform:scale(1.04);animation:heroZoom 8s var(--ease) forwards}
@keyframes heroZoom{to{transform:scale(1)}}
.page-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.4) 0%,rgba(0,0,0,.18) 40%,rgba(0,0,0,.68) 100%)}
.page-hero-content{position:relative;z-index:2;padding:clamp(32px,5vw,64px) clamp(24px,6vw,80px);color:#fff}
.page-hero-eyebrow{font-family:var(--font-en);font-size:11px;letter-spacing:.45em;text-transform:uppercase;color:var(--gold);display:flex;align-items:center;gap:14px;margin-bottom:14px;opacity:0;animation:fadeUp .9s .4s var(--ease) forwards}
.page-hero-eyebrow::before{content:'';display:block;width:24px;height:1px;background:var(--gold)}
.page-hero-title{font-family:var(--font-en);font-size:clamp(36px,5.5vw,68px);font-weight:400;line-height:1.05;text-shadow:0 2px 20px rgba(0,0,0,.7);opacity:0;animation:fadeUp 1s .55s var(--ease) forwards}
.page-hero-title em{font-style:italic;color:rgba(255,255,255,.82)}
.page-hero-sub{font-size:clamp(12px,1.3vw,14px);letter-spacing:.18em;color:rgba(255,255,255,.88);margin-top:12px;text-shadow:0 1px 8px rgba(0,0,0,.8);opacity:0;animation:fadeUp .9s .7s var(--ease) forwards}
.breadcrumb{background:var(--dark);padding:12px clamp(24px,6vw,80px);display:flex;align-items:center;gap:10px;font-family:var(--font-en);font-size:10px;letter-spacing:.28em;text-transform:uppercase;color:rgba(255,255,255,.35)}
.breadcrumb a{color:rgba(255,255,255,.35);transition:color .3s}.breadcrumb a:hover{color:var(--gold);opacity:1}
.breadcrumb .sep{color:rgba(255,255,255,.2)}.breadcrumb .current{color:rgba(255,255,255,.65)}

/* ---- イントロ ---- */
.page-intro{max-width:860px;margin:0 auto;padding:clamp(60px,9vw,112px) clamp(24px,5vw,48px);text-align:center}
.page-intro-lead{font-size:clamp(15px,1.6vw,18px);line-height:2.4;color:#3a3a38;font-weight:400}

/* ---- 写真×テキスト（共通） ---- */
.detail-split{position:relative;overflow:hidden;background:var(--dark)}
@media(min-width:768px){
  .detail-split{display:grid;grid-template-columns:55% 45%;min-height:560px}
  .detail-split.reverse{grid-template-columns:45% 55%}
  .detail-split.reverse .detail-photo{order:2}
  .detail-split.reverse .detail-text{order:1}
}
.detail-photo{position:relative;min-height:300px;overflow:hidden}
.detail-photo img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.detail-split:hover .detail-photo img{transform:scale(1.03)}
.detail-photo::after{content:'';position:absolute;inset:0;background:rgba(0,0,0,.18);pointer-events:none}
.detail-text{display:flex;flex-direction:column;justify-content:center;padding:clamp(40px,5vw,72px) clamp(28px,5vw,64px);background:var(--dark);color:#fff;position:relative}
.detail-no{font-family:var(--font-en);font-size:80px;font-weight:300;color:rgba(255,255,255,.04);position:absolute;top:24px;right:32px;line-height:1;pointer-events:none;user-select:none}
.detail-tag{font-family:var(--font-en);font-size:10px;letter-spacing:.4em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.detail-title-en{font-family:var(--font-en);font-size:clamp(28px,3.5vw,46px);font-weight:400;line-height:1.1;margin-bottom:6px}
.detail-title-en em{font-style:italic}
.detail-title-jp{font-size:12px;letter-spacing:.2em;color:rgba(255,255,255,.4);margin-bottom:24px}
.detail-divider{width:36px;height:1px;background:var(--gold);margin-bottom:22px}
.detail-body{font-size:clamp(12px,1.2vw,14px);line-height:2.3;color:rgba(255,255,255,.68);margin-bottom:32px;font-weight:300}

/* ---- オンセン特有：効能リスト ---- */
.onsen-effects{background:var(--cream);padding:clamp(56px,8vw,96px) clamp(24px,6vw,80px)}
.onsen-effects-inner{max-width:1000px;margin:0 auto}
.effects-header{text-align:center;margin-bottom:clamp(36px,5vw,56px)}
.effects-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2px}
@media(min-width:768px){.effects-grid{grid-template-columns:repeat(4,1fr)}}
.effect-card{background:var(--dark);padding:clamp(24px,3vw,36px) 20px;text-align:center;transition:background .3s}
.effect-card:hover{background:#2a2925}
.effect-num{font-family:var(--font-en);font-size:36px;font-weight:300;color:var(--gold);line-height:1;margin-bottom:12px}
.effect-en{font-family:var(--font-en);font-size:13px;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:6px}
.effect-jp{font-size:14px;color:#fff;letter-spacing:.12em}
.effect-desc{font-size:11px;color:rgba(255,255,255,.45);line-height:1.8;margin-top:10px;font-weight:300}

/* ---- 温泉情報テーブル ---- */
.onsen-info{background:var(--forest);padding:clamp(56px,8vw,96px) clamp(24px,6vw,80px)}
.onsen-info-inner{max-width:800px;margin:0 auto}
.info-header{text-align:center;margin-bottom:clamp(36px,5vw,56px)}
.info-header .s-tag{color:rgba(255,255,255,.5)}.info-header .s-tag::before,.info-header .s-tag::after{background:rgba(255,255,255,.3)}
.info-header .s-title-en{color:#fff}.info-header .s-title-jp{color:rgba(255,255,255,.5)}
.onsen-table{width:100%;border-collapse:collapse}
.onsen-table tr{border-bottom:1px solid rgba(255,255,255,.1)}
.onsen-table tr:first-child{border-top:1px solid rgba(255,255,255,.1)}
.onsen-table th{width:36%;padding:18px 16px;font-size:12px;letter-spacing:.18em;color:rgba(255,255,255,.45);font-weight:400;text-align:left;font-family:var(--font-jp)}
.onsen-table td{padding:18px 16px;font-size:13px;color:rgba(255,255,255,.82);line-height:1.8;letter-spacing:.1em}
@media(min-width:768px){.onsen-table th{width:30%;padding:20px 24px}.onsen-table td{padding:20px 24px}}

/* ---- ギャラリー ---- */
.gallery-section{padding:clamp(56px,8vw,96px) clamp(24px,5vw,48px);background:var(--cream)}
.gallery-header{text-align:center;margin-bottom:clamp(32px,4vw,48px)}
.gallery-swiper{overflow:hidden;position:relative}
.gallery-swiper .swiper-slide{aspect-ratio:4/3;overflow:hidden}
.gallery-swiper .swiper-slide img{width:100%;height:100%;object-fit:cover}
.gallery-swiper .swiper-button-prev,.gallery-swiper .swiper-button-next{color:#fff;width:44px;height:44px;background:rgba(26,25,22,.55);backdrop-filter:blur(4px)}
.gallery-swiper .swiper-button-prev::after,.gallery-swiper .swiper-button-next::after{font-size:14px}
.gallery-swiper .swiper-pagination-bullet{background:var(--gold);opacity:.4}
.gallery-swiper .swiper-pagination-bullet-active{opacity:1}


/* ===== meal ===== */
.page-hero{position:relative;height:60vh;min-height:400px;max-height:640px;overflow:hidden;display:flex;align-items:flex-end}
.page-hero-bg{position:absolute;inset:0}
.page-hero-bg img{width:100%;height:100%;object-fit:cover;transform:scale(1.04);animation:heroZoom 8s var(--ease) forwards}
@keyframes heroZoom{to{transform:scale(1)}}
.page-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.4) 0%,rgba(0,0,0,.15) 40%,rgba(0,0,0,.7) 100%)}
.page-hero-content{position:relative;z-index:2;padding:clamp(32px,5vw,64px) clamp(24px,6vw,80px);color:#fff}
.page-hero-eyebrow{font-family:var(--font-en);font-size:11px;letter-spacing:.45em;text-transform:uppercase;color:var(--gold);display:flex;align-items:center;gap:14px;margin-bottom:14px;opacity:0;animation:fadeUp .9s .4s var(--ease) forwards}
.page-hero-eyebrow::before{content:'';display:block;width:24px;height:1px;background:var(--gold)}
.page-hero-title{font-family:var(--font-en);font-size:clamp(36px,5.5vw,68px);font-weight:400;line-height:1.05;text-shadow:0 2px 20px rgba(0,0,0,.7);opacity:0;animation:fadeUp 1s .55s var(--ease) forwards}
.page-hero-title em{font-style:italic;color:rgba(255,255,255,.82)}
.page-hero-sub{font-size:clamp(12px,1.3vw,14px);letter-spacing:.18em;color:rgba(255,255,255,.88);margin-top:12px;text-shadow:0 1px 8px rgba(0,0,0,.8);opacity:0;animation:fadeUp .9s .7s var(--ease) forwards}
.breadcrumb{background:var(--dark);padding:12px clamp(24px,6vw,80px);display:flex;align-items:center;gap:10px;font-family:var(--font-en);font-size:10px;letter-spacing:.28em;text-transform:uppercase;color:rgba(255,255,255,.35)}
.breadcrumb a{color:rgba(255,255,255,.35);transition:color .3s}.breadcrumb a:hover{color:var(--gold);opacity:1}
.breadcrumb .sep{color:rgba(255,255,255,.2)}.breadcrumb .current{color:rgba(255,255,255,.65)}
.page-intro{max-width:860px;margin:0 auto;padding:clamp(60px,9vw,112px) clamp(24px,5vw,48px);text-align:center}
.page-intro-lead{font-size:clamp(15px,1.6vw,18px);line-height:2.4;color:#3a3a38;font-weight:400}

/* 写真×テキスト */
.detail-split{position:relative;overflow:hidden;background:var(--dark)}
@media(min-width:768px){
  .detail-split{display:grid;grid-template-columns:55% 45%;min-height:560px}
  .detail-split.reverse{grid-template-columns:45% 55%}
  .detail-split.reverse .detail-photo{order:2}
  .detail-split.reverse .detail-text{order:1}
}
.detail-photo{position:relative;min-height:300px;overflow:hidden}
.detail-photo img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.detail-split:hover .detail-photo img{transform:scale(1.03)}
.detail-photo::after{content:'';position:absolute;inset:0;background:rgba(0,0,0,.18);pointer-events:none}
.detail-text{display:flex;flex-direction:column;justify-content:center;padding:clamp(40px,5vw,72px) clamp(28px,5vw,64px);background:var(--dark);color:#fff;position:relative}
.detail-no{font-family:var(--font-en);font-size:80px;font-weight:300;color:rgba(255,255,255,.04);position:absolute;top:24px;right:32px;line-height:1;pointer-events:none;user-select:none}
.detail-tag{font-family:var(--font-en);font-size:10px;letter-spacing:.4em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.detail-title-en{font-family:var(--font-en);font-size:clamp(28px,3.5vw,46px);font-weight:400;line-height:1.1;margin-bottom:6px}
.detail-title-en em{font-style:italic}
.detail-title-jp{font-size:12px;letter-spacing:.2em;color:rgba(255,255,255,.4);margin-bottom:24px}
.detail-divider{width:36px;height:1px;background:var(--gold);margin-bottom:22px}
.detail-body{font-size:clamp(12px,1.2vw,14px);line-height:2.3;color:rgba(255,255,255,.68);margin-bottom:32px;font-weight:300}

/* コンセプト帯 */
.concept-band{background:var(--forest);padding:clamp(56px,8vw,96px) clamp(24px,6vw,80px);text-align:center}
.concept-band blockquote{font-family:var(--font-en);font-size:clamp(20px,3vw,28px);font-style:italic;font-weight:300;color:#fff;line-height:1.8;max-width:640px;margin:0 auto 16px;letter-spacing:.04em}
.concept-sub{font-size:12px;letter-spacing:.22em;color:rgba(255,255,255,.45)}
.quote-mark-d{font-family:var(--font-en);font-size:72px;line-height:.5;color:var(--gold);opacity:.35;margin-bottom:24px;display:block}

/* こだわりグリッド */
.concept-section{padding:clamp(56px,8vw,96px) clamp(24px,6vw,80px);background:var(--cream)}
.concept-inner{max-width:1100px;margin:0 auto}
.concept-header{text-align:center;margin-bottom:clamp(40px,5vw,60px)}
.concept-grid{display:grid;grid-template-columns:1fr;gap:2px}
@media(min-width:768px){.concept-grid{grid-template-columns:1fr 1fr 1fr}}
.concept-card{position:relative;overflow:hidden;aspect-ratio:3/4;cursor:default}
@media(min-width:768px){.concept-card{aspect-ratio:2/3}}
.concept-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.concept-card:hover img{transform:scale(1.04)}
.concept-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.2) 55%,transparent 100%)}
.concept-card-body{position:absolute;bottom:0;left:0;right:0;padding:clamp(20px,3vw,32px)}
.concept-card-num{font-family:var(--font-en);font-size:11px;letter-spacing:.35em;color:var(--gold);margin-bottom:8px}
.concept-card-title{font-family:var(--font-en);font-size:clamp(18px,2vw,24px);font-weight:400;color:#fff;margin-bottom:6px}
.concept-card-title em{font-style:italic}
.concept-card-jp{font-size:12px;letter-spacing:.18em;color:rgba(255,255,255,.55);margin-bottom:12px}
.concept-card-desc{font-size:12px;line-height:1.9;color:rgba(255,255,255,.72);font-weight:300}

/* ご案内テーブル */
.dining-info{background:var(--dark);padding:clamp(56px,8vw,96px) clamp(24px,6vw,80px)}
.dining-info-inner{max-width:800px;margin:0 auto}
.dining-info-header{text-align:center;margin-bottom:clamp(36px,5vw,56px)}
.dining-info-header .s-tag{color:rgba(255,255,255,.5)}.dining-info-header .s-tag::before,.dining-info-header .s-tag::after{background:rgba(255,255,255,.3)}
.dining-info-header .s-title-en{color:#fff}.dining-info-header .s-title-jp{color:rgba(255,255,255,.5)}
.dining-table{width:100%;border-collapse:collapse}
.dining-table tr{border-bottom:1px solid rgba(255,255,255,.1)}
.dining-table tr:first-child{border-top:1px solid rgba(255,255,255,.1)}
.dining-table th{width:36%;padding:18px 16px;font-size:12px;letter-spacing:.18em;color:rgba(255,255,255,.45);font-weight:400;text-align:left;font-family:var(--font-jp)}
.dining-table td{padding:18px 16px;font-size:13px;color:rgba(255,255,255,.82);line-height:1.8;letter-spacing:.1em}
@media(min-width:768px){.dining-table th,.dining-table td{padding:20px 24px}}

/* ギャラリー */
.gallery-section{padding:clamp(56px,8vw,96px) clamp(24px,5vw,48px);background:var(--cream)}
.gallery-header{text-align:center;margin-bottom:clamp(32px,4vw,48px)}
.gallery-swiper{overflow:hidden;position:relative}
.gallery-swiper .swiper-slide{aspect-ratio:4/3;overflow:hidden}
.gallery-swiper .swiper-slide img{width:100%;height:100%;object-fit:cover}
.gallery-swiper .swiper-button-prev,.gallery-swiper .swiper-button-next{color:#fff;width:44px;height:44px;background:rgba(26,25,22,.55);backdrop-filter:blur(4px)}
.gallery-swiper .swiper-button-prev::after,.gallery-swiper .swiper-button-next::after{font-size:14px}
.gallery-swiper .swiper-pagination-bullet{background:var(--gold);opacity:.4}
.gallery-swiper .swiper-pagination-bullet-active{opacity:1}


/* ===== access ===== */
.page-hero{position:relative;height:50vh;min-height:340px;max-height:520px;overflow:hidden;display:flex;align-items:flex-end}
.page-hero-bg{position:absolute;inset:0}
.page-hero-bg img{width:100%;height:100%;object-fit:cover;transform:scale(1.04);animation:heroZoom 8s var(--ease) forwards}
@keyframes heroZoom{to{transform:scale(1)}}
.page-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.45) 0%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.7) 100%)}
.page-hero-content{position:relative;z-index:2;padding:clamp(32px,5vw,64px) clamp(24px,6vw,80px);color:#fff}
.page-hero-eyebrow{font-family:var(--font-en);font-size:11px;letter-spacing:.45em;text-transform:uppercase;color:var(--gold);display:flex;align-items:center;gap:14px;margin-bottom:14px;opacity:0;animation:fadeUp .9s .4s var(--ease) forwards}
.page-hero-eyebrow::before{content:'';display:block;width:24px;height:1px;background:var(--gold)}
.page-hero-title{font-family:var(--font-en);font-size:clamp(36px,5.5vw,68px);font-weight:400;line-height:1.05;text-shadow:0 2px 20px rgba(0,0,0,.7);opacity:0;animation:fadeUp 1s .55s var(--ease) forwards}
.page-hero-title em{font-style:italic;color:rgba(255,255,255,.82)}
.page-hero-sub{font-size:clamp(12px,1.3vw,14px);letter-spacing:.18em;color:rgba(255,255,255,.88);margin-top:12px;text-shadow:0 1px 8px rgba(0,0,0,.8);opacity:0;animation:fadeUp .9s .7s var(--ease) forwards}
.breadcrumb{background:var(--dark);padding:12px clamp(24px,6vw,80px);display:flex;align-items:center;gap:10px;font-family:var(--font-en);font-size:10px;letter-spacing:.28em;text-transform:uppercase;color:rgba(255,255,255,.35)}
.breadcrumb a{color:rgba(255,255,255,.35);transition:color .3s}.breadcrumb a:hover{color:var(--gold);opacity:1}
.breadcrumb .sep{color:rgba(255,255,255,.2)}.breadcrumb .current{color:rgba(255,255,255,.65)}

/* イントロ */
.page-intro{max-width:800px;margin:0 auto;padding:clamp(56px,8vw,96px) clamp(24px,5vw,48px);text-align:center}
.page-intro-lead{font-size:clamp(15px,1.6vw,18px);line-height:2.4;color:#3a3a38;font-weight:400}

/* アクセスカード */
.access-section{background:var(--cream);padding:0 clamp(24px,6vw,80px) clamp(64px,9vw,112px)}
.access-inner{max-width:1000px;margin:0 auto}
.access-methods{display:grid;grid-template-columns:1fr;gap:2px;margin-bottom:clamp(48px,6vw,72px)}
@media(min-width:768px){.access-methods{grid-template-columns:1fr 1fr}}

.access-card{background:#fff;border:1px solid rgba(26,25,22,.07);padding:clamp(28px,4vw,48px) clamp(24px,3vw,40px);transition:box-shadow .3s,transform .3s}
.access-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.08);transform:translateY(-2px)}
.access-card-icon{margin-bottom:20px}
.access-card-icon svg{width:36px;height:36px;stroke:var(--gold)}
.access-card-en{font-family:var(--font-en);font-size:22px;font-weight:400;letter-spacing:.06em;color:var(--dark);margin-bottom:4px}
.access-card-jp{font-size:11px;letter-spacing:.22em;color:var(--muted);margin-bottom:20px}
.access-card-divider{width:28px;height:1px;background:var(--gold);margin-bottom:20px}
.access-card-steps{display:flex;flex-direction:column;gap:12px}
.access-step{display:flex;gap:14px;align-items:flex-start}
.access-step-num{font-family:var(--font-en);font-size:11px;letter-spacing:.2em;color:var(--gold);min-width:28px;padding-top:2px}
.access-step-text{font-size:13px;line-height:1.9;color:#3a3a38;letter-spacing:.08em}
.access-step-time{display:inline-block;font-family:var(--font-en);font-size:11px;letter-spacing:.15em;color:var(--muted);margin-top:4px}

/* 地図 */
.map-section{background:var(--cream);padding:0 clamp(24px,6vw,80px) clamp(64px,9vw,112px)}
.map-inner{max-width:1000px;margin:0 auto}
.map-header{text-align:center;margin-bottom:clamp(32px,4vw,48px)}
.map-frame{width:100%;height:480px;border:0;display:block}
@media(min-width:768px){.map-frame{height:560px}}

/* 住所・連絡先 */
.contact-band{background:var(--dark);padding:clamp(48px,7vw,80px) clamp(24px,6vw,80px)}
.contact-inner{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:clamp(32px,4vw,56px)}
@media(min-width:768px){.contact-inner{grid-template-columns:1fr 1fr 1fr}}
.contact-item-label{font-family:var(--font-en);font-size:9px;letter-spacing:.4em;text-transform:uppercase;color:var(--gold);margin-bottom:12px}
.contact-item-val{font-size:clamp(14px,1.4vw,16px);color:rgba(255,255,255,.82);line-height:1.9;letter-spacing:.1em}
.contact-item-val a{color:rgba(255,255,255,.82);transition:color .3s}
.contact-item-val a:hover{color:var(--gold);opacity:1}
.contact-divider{width:28px;height:1px;background:var(--gold);margin-bottom:16px}

/* 周辺観光ミニリスト */
.nearby-section{background:var(--forest);padding:clamp(48px,7vw,80px) clamp(24px,6vw,80px)}
.nearby-inner{max-width:1000px;margin:0 auto}
.nearby-header{text-align:center;margin-bottom:clamp(32px,4vw,48px)}
.nearby-header .s-tag{color:rgba(255,255,255,.5)}.nearby-header .s-tag::before,.nearby-header .s-tag::after{background:rgba(255,255,255,.3)}
.nearby-header .s-title-en{color:#fff}.nearby-header .s-title-jp{color:rgba(255,255,255,.5)}
.nearby-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2px}
@media(min-width:768px){.nearby-grid{grid-template-columns:repeat(4,1fr)}}
.nearby-card{position:relative;overflow:hidden;aspect-ratio:1/1}
.nearby-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.nearby-card:hover img{transform:scale(1.05)}
.nearby-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.75) 0%,transparent 55%)}
.nearby-label{position:absolute;bottom:0;left:0;right:0;padding:16px}
.nearby-label-en{font-family:var(--font-en);font-size:14px;font-weight:400;color:#fff;margin-bottom:2px}
.nearby-label-jp{font-size:11px;letter-spacing:.18em;color:rgba(255,255,255,.55)}
.nearby-dist{font-family:var(--font-en);font-size:10px;letter-spacing:.25em;color:var(--gold);margin-top:6px}


/* ===== access fix ===== */
.page-access .map-section{position:relative;z-index:1;background:var(--cream);}
.page-access .map-inner{max-width:1000px;margin:0 auto;}
.page-access .map-frame{width:100%;height:560px;display:block;border:0;background:#e9e4dc;opacity:1 !important;transform:none !important;visibility:visible !important;}
@media (max-width: 767px){.page-access .map-frame{height:420px;}}
.page-access .contact-band{display:block;background:var(--dark);padding:clamp(48px,7vw,80px) clamp(24px,6vw,80px);}
.page-access .contact-inner{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:clamp(32px,4vw,56px);}
@media (min-width:768px){.page-access .contact-inner{grid-template-columns:repeat(3,1fr);}}
.page-access .contact-item-val,.page-access .contact-item-val a{color:rgba(255,255,255,.82);}
.page-access .nearby-section{background:var(--forest);}

/* =========================================
   トップ Access ミニセクション
   ========================================= */
.access-mini {
  padding: clamp(60px, 9vw, 110px) clamp(24px, 5vw, 60px);
  background: var(--cream);
}
.access-mini__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.access-mini__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.access-mini .s-tag,
.access-mini .s-title-en,
.access-mini .s-title-jp,
.access-mini .access-body {
  text-align: left;
}
.access-mini .divider {
  margin: 0 0 32px;
}
.access-mini .map-link-wrap {
  margin-top: 8px;
}
.access-mini .btn-text-link {
  margin: 0;
}
.access-mini__map {
  position: relative;
}
.access-mini__map::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(184,149,74,.28);
  pointer-events: none;
}
.map-frame--home {
  display: block;
  width: 100%;
  height: min(52vw, 420px);
  min-height: 320px;
  border: 0;
  position: relative;
  z-index: 1;
  background: #e8e1d6;
}

@media (max-width: 1023px) {
  header {
    min-height: 92px;
    padding: 14px 20px;
    gap: 12px;
  }
  header.scrolled {
    height: 100px;
    min-height: 100px;
    padding: 0 20px;
  }
  .header-logo img,
  .header-logo svg,
  header.scrolled .header-logo img,
  header.scrolled .header-logo svg {
    height: 34px;
  }
  .header-reserve {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0 18px;
    height: 56px;
    font-size: 11px;
    letter-spacing: 0.10em;
  }
  .header-menu-btn {
    width: 36px;
    height: 36px;
    margin-left: 0;
  }
  .header-menu-btn span {
    width: 22px;
  }
  .access-mini__inner {
    grid-template-columns: 1fr;
  }
  .access-mini__content {
    align-items: flex-start;
  }
  .map-frame--home {
    height: 56vw;
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .access-mini {
    padding: 56px 20px;
  }
  .access-mini .s-title-jp {
    margin-bottom: 24px;
  }
  .access-mini .access-body {
    margin-bottom: 28px;
  }
  .access-mini__map::after {
    inset: 10px -10px -10px 10px;
  }
  .map-frame--home {
    height: 64vw;
    min-height: 240px;
  }
}




/* =========================================
   2026-03-26 page-level mobile spacing fixes
   ========================================= */
.page-intro{
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 112px) clamp(24px, 5vw, 48px);
  text-align: center;
}
.page-intro-lead{
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2.4;
  color: #3a3a38;
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 767px){
  .page-intro,
  .villa-intro,
  .onsen-effects,
  .onsen-info,
  .gallery-section,
  .concept-section,
  .dining-info,
  .access-section,
  .map-section,
  .contact-band,
  .nearby-section,
  .faq-section,
  .sightseeing-section{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .page-intro,
  .villa-intro{
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .page-intro-lead,
  .villa-intro-lead{
    font-size: 15px !important;
    line-height: 2.05 !important;
  }

  .page-intro-lead br,
  .villa-intro-lead br{
    display: none;
  }

  .access-section,
  .map-section{
    padding-bottom: 56px !important;
  }

  .access-methods{
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .access-card{
    padding: 24px 20px !important;
  }

  .access-card-en{
    font-size: 18px !important;
  }

  .access-card-steps{
    gap: 10px !important;
  }

  .map-frame{
    height: 300px !important;
  }

  .contact-band,
  .nearby-section,
  .onsen-effects,
  .onsen-info,
  .gallery-section,
  .concept-section,
  .dining-info{
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}


/* =========================================
   FAQ / Sightseeing page fixes
   ========================================= */
.faq-section{padding:0 0 clamp(80px,10vw,120px);background:var(--cream);}
.faq-section-inner{max-width:980px;margin:0 auto;padding:0 clamp(24px,5vw,48px);}
.faq-list{display:flex;flex-direction:column;gap:16px;}
.faq-item{background:#fff;border:1px solid rgba(26,25,22,.08);}
.faq-item summary{list-style:none;cursor:pointer;padding:24px 28px;font-size:clamp(18px,1.5vw,21px);line-height:1.7;position:relative;font-family:var(--font-mincho);}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::before{content:'▶';display:inline-block;margin-right:10px;font-size:.9em;transition:transform .25s ease;}
.faq-item[open] summary::before{transform:rotate(90deg);}
.faq-answer{padding:0 28px 24px 48px;font-size:15px;line-height:1.95;color:#4c4b47;}
.sightseeing-section .sight-grid{max-width:1320px;margin-left:auto;margin-right:auto;}
.info-list-wrap{max-width:980px;margin:0 auto;padding:0 clamp(24px,5vw,48px) clamp(80px,10vw,120px);}
@media (max-width: 767px){
  .faq-section-inner,.info-list-wrap{padding-left:20px;padding-right:20px;}
  .faq-item summary{padding:18px 18px;font-size:15px;line-height:1.75;}
  .faq-answer{padding:0 18px 18px 34px;font-size:13px;line-height:1.85;}
}

/* =========================================
   Stay page: floor plan modal
========================================= */
.detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px 24px;
  align-items:center;
}
.btn-floorplan{
  appearance:none;
  border:1px solid rgba(199,162,83,.7);
  background:transparent;
  color:#fff;
  min-height:48px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s ease,color .3s ease,border-color .3s ease,transform .3s ease;
}
.btn-floorplan:hover{
  background:var(--gold);
  color:var(--dark);
  border-color:var(--gold);
  transform:translateY(-1px);
}
.floorplan-modal{
  position:fixed;
  inset:0;
  z-index:2500;
}
.floorplan-modal[hidden]{display:none}
.floorplan-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(4px);
}
.floorplan-modal__dialog{
  position:relative;
  z-index:1;
  width:min(92vw,1040px);
  max-height:calc(100vh - 48px);
  margin:24px auto;
  background:#f7f1e7;
  padding:28px 28px 24px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  overflow:auto;
}
.floorplan-modal__close{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--dark);
  position:absolute;
  top:12px;
  right:14px;
  font-size:42px;
  line-height:1;
  cursor:pointer;
}
.floorplan-modal__title{
  margin:0 48px 18px 0;
  font-size:22px;
  line-height:1.35;
  color:var(--dark);
  letter-spacing:.03em;
}

.floorplan-modal__body img{
  display:block;
  width:100%;
  height:auto;
  background:#fff;
}
body.floorplan-open{
  overflow:hidden;
}
@media (max-width: 767px){
  .detail-actions{
    gap:14px 0;
    align-items:flex-start;
    flex-direction:column;
  }
  .btn-floorplan{
    width:100%;
    min-height:46px;
    font-size:12px;
    letter-spacing:.12em;
  }
  .floorplan-modal__dialog{
    width:min(94vw,1040px);
    margin:16px auto;
    padding:20px 16px 16px;
    max-height:calc(100vh - 32px);
  }
  .floorplan-modal__title{
    font-size:17px;
    margin-right:36px;
    margin-bottom:12px;
    letter-spacing:.02em;
  }
  .floorplan-modal__close{
    top:8px;
    right:10px;
    font-size:34px;
  }
}


/* =========================================
   2026-03-30 FAQ / Sightseeing / footer sync fixes
   ========================================= */
.info-list-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(24px,5vw,48px) clamp(80px,10vw,120px);
}
.footer-nav{
  row-gap: 10px;
}
@media (max-width: 767px){
  .footer-nav{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px 20px;
  }
  .footer-nav a{
    display:inline-flex;
    width:max-content;
  }
  .page-intro{
    padding-left:20px !important;
    padding-right:20px !important;
  }
  .sightseeing-section .sight-grid{
    grid-template-columns:1fr 1fr;
    gap:0;
  }
  .sightseeing-section{
    padding-top:0 !important;
  }
}


/* =========================================
   Coming Soon
========================================= */
.coming-soon-section{
  padding: 0 0 120px;
}
.coming-soon-inner{
  width:min(1120px, calc(100% - 80px));
  margin:0 auto;
}
.coming-soon-figure{
  margin:0;
  overflow:hidden;
  background:#111;
}
.coming-soon-figure img{
  display:block;
  width:100%;
  height:auto;
}
.coming-soon-copy{
  text-align:center;
  padding:42px 20px 0;
}
.coming-soon-label{
  margin:0 0 12px;
  font-size:14px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--forest);
}
.coming-soon-title{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.3;
  font-weight:500;
}
.coming-soon-text{
  margin:0;
  font-size:16px;
  line-height:2;
}
@media (max-width: 1024px){
  .coming-soon-section{ padding:0 0 80px; }
  .coming-soon-inner{ width:calc(100% - 40px); }
  .coming-soon-copy{ padding:28px 0 0; }
  .coming-soon-label{ font-size:12px; }
  .coming-soon-title{ font-size:28px; }
  .coming-soon-text{ font-size:14px; line-height:1.9; }
}
