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

:root {
  --cream: #F7F3ED;
  --header-current-height: 112px;
  --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: flex-start;
  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;
  margin-left: auto;
  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;
  margin-left: 18px;
  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: var(--header-current-height); right: 0;
  width: min(380px, 92vw);
  height: calc(100dvh - var(--header-current-height));
  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: 0;         /* ヘッダーの下から開始 */
}
.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: 12px;
  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: flex-start;
  padding: 18px 24px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.12em;
  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: 15px;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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: 15px;
  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: 10px;
  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: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  background: var(--forest);
  flex-shrink: 0;
}

/* ドロワー背景マスク — ヘッダーより下 */
.drawer-mask {
  position: fixed;
  top: var(--header-current-height);
  right: 0;
  bottom: 0;
  left: 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: 11px;
  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.35em;
  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(13px, 1.3vw, 15px);
  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: 10px;
  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: 12px;
  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: 11px;
  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: 11px;
  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: 12px;
  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: flex-start;
  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: 12px;
  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: 11px;
  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: flex-start;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.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 cubic-bezier(0.16,1,0.3,1), right 0.3s cubic-bezier(0.16,1,0.3,1);
}
.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;
}

/* =========================================
   トップ 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) {
  :root {
    --header-current-height: 92px;
  }
  header {
    min-height: 92px;
    padding: 14px 20px;
    gap: 12px;
  }
  header.scrolled {
    height: 80px;
    min-height: 80px;
    padding: 0 20px;
  }
  .header-logo img,
  .header-logo svg,
  header.scrolled .header-logo img,
  header.scrolled .header-logo svg {
    height: 34px;
  }
  .header-reserve {
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0 14px;
    height: 44px;
    min-height: 44px;
    font-size: 9px;
    letter-spacing: 0.06em;
    min-width: min(42vw, 220px);
  }
  .header-menu-btn {
    width: 36px;
    height: 36px;
    margin-left: 0;
  }
  .header-menu-btn span {
    width: 22px;
  }
  .drawer-nav {
    width: min(420px, 100vw);
  }
  .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;
  }
  .header-reserve {
    padding: 0 12px;
    height: 40px;
    min-height: 40px;
    min-width: min(40vw, 200px);
    font-size: 8px;
    letter-spacing: 0.05em;
  }
  .header-logo img,
  .header-logo svg,
  header.scrolled .header-logo img,
  header.scrolled .header-logo svg {
    height: 30px;
  }
  .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;
  }
}


/* =========================================
   Header / Drawer final fix (2026-03-26)
   ========================================= */
:root{
  --header-current-height: 112px;
}

header{
  min-height: 112px;
  padding: 16px 28px;
}
header.scrolled{
  height: 100px;
  min-height: 100px;
  padding-top: 0;
  padding-bottom: 0;
}

.drawer-nav{
  top: var(--header-current-height) !important;
  height: calc(100dvh - var(--header-current-height)) !important;
  padding-top: 0 !important;
}
.drawer-mask{
  top: var(--header-current-height) !important;
  height: calc(100dvh - var(--header-current-height)) !important;
}
.drawer-nav-list{
  margin: 0 !important;
  padding: 0 !important;
}
.drawer-nav-list > li:first-child,
.drawer-nav-list > li{
  margin-top: 0 !important;
}
.drawer-acc-head,
.drawer-nav-link{
  scroll-margin-top: 0;
}

@media (max-width: 1023px){
  :root{
    --header-current-height: 92px;
  }
  header{
    min-height: 92px;
    padding: 14px 20px;
  }
  header.scrolled{
    height: 80px;
    min-height: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-logo img,
  .header-logo svg,
  header.scrolled .header-logo img,
  header.scrolled .header-logo svg{
    height: 34px;
  }
  .header-reserve{
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    min-width: 160px !important;
    max-width: 52vw;
    font-size: 8px !important;
    letter-spacing: 0.05em !important;
    border-width: 1.5px;
  }
  .drawer-nav{
    width: min(380px, 100vw) !important;
  }
}

@media (max-width: 767px){
  .header-reserve{
    height: 36px !important;
    min-height: 36px !important;
    min-width: 150px !important;
    max-width: 50vw;
    padding: 0 11px !important;
    font-size: 7px !important;
    letter-spacing: 0.04em !important;
  }
  .header-menu-btn{
    width: 34px;
    height: 34px;
  }
  .header-menu-btn span{
    width: 20px;
  }
}


/* =========================================
   2026-03-26 targeted mobile/header fixes
   ========================================= */
@media (max-width: 1023px){
  header.scrolled{
    height: 80px;
    min-height: 80px;
  }
  .drawer-nav{
    top: var(--header-current-height) !important;
    height: calc(100dvh - var(--header-current-height)) !important;
    padding-top: 0 !important;
  }
  .drawer-mask{
    top: var(--header-current-height) !important;
    height: calc(100dvh - var(--header-current-height)) !important;
  }
  .header-reserve{
    height: 44px !important;
    min-height: 44px !important;
    min-width: 180px !important;
    max-width: fit-content !important;
    flex: 0 0 auto !important;
    padding: 0 16px !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }
  .header-menu-btn{
    width: 40px !important;
    height: 40px !important;
  }
  .header-menu-btn span{
    width: 24px !important;
  }
}
@media (max-width: 420px){
  .header-reserve{
    min-width: 168px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }
}
