/*
Theme Name: Sunplaza
Theme URI: https://hotel-sunplaza.jp
Author: Hotel Sunplaza
Author URI: https://hotel-sunplaza.jp
Description: ホテルサンプラザ公式サイト（北海道岩見沢市）用カスタムテーマ。HTML直貼り方式（D案）で実装。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunplaza
*/

:root {
  --cream: #F5EBD8;
  --cream-light: #FBF6E8;
  --sand: #E8DCBD;
  --sand-deep: #DDD0AC;
  --bronze: #7D5F38;
  --bronze-light: #8C6E45;
  --moss: #4A5B37;
  --forest: #1F3A2E;
  --forest-deep: #142823;
  --ink: #2D1F18;
  --line: rgba(125,95,56,0.45);
  --line-strong: rgba(125,95,56,0.65);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245, 235, 216, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease;
}

.header.scrolled { background: rgba(245, 235, 216, 0.98); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
}

.header-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: .15em;
  color: var(--forest);
  font-weight: 500;
  text-decoration: none;
}

.header-logo-sub {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--bronze);
  margin-top: 2px;
  font-weight: 400;
}

.header-nav { display: flex; gap: 32px; }

.header-nav .nav-item { position: relative; }

.header-nav .nav-item > a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--forest);
  text-decoration: none;
  padding: 28px 0 24px;
  position: relative;
  transition: color .3s;
  text-align: center;
  display: block;
}

.header-nav .nav-item > a .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--bronze);
  margin-top: 4px;
  font-weight: 400;
}

.header-nav .nav-item > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width .3s;
}

.header-nav .nav-item > a:hover { color: var(--bronze); }

.header-nav .nav-item > a:hover::after { width: 100%; }

/* ===== Nav Dropdown (PC) ===== */
.header-nav .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(245, 235, 216, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-top: 0;
  padding: 14px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.header-nav .nav-has-children:hover .nav-dropdown,
.header-nav .nav-has-children:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header-nav .nav-dropdown a {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--forest);
  padding: 11px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s, background .3s;
}

.header-nav .nav-dropdown a:hover {
  color: var(--bronze);
  background: rgba(125,95,56,0.06);
}

.header-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--bronze);
  text-align: right;
  line-height: 1.4;
}

.header-tel strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--forest);
  margin-top: 2px;
  font-family: 'Cormorant Garamond', serif;
}

.header-search {
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(232, 220, 189, 0.35);
}

.header-search-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  flex-shrink: 0;
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.search-field label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.search-field input,
.search-field select {
  border: 0;
  background: transparent;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--forest);
  padding: 4px 0;
  border-bottom: 1px solid var(--line-strong);
  outline: none;
  width: 100%;
  cursor: pointer;
}

.search-field input:focus,
.search-field select:focus { border-bottom-color: var(--bronze); }

.search-submit {
  background: var(--forest);
  color: var(--cream);
  border: 0;
  padding: 12px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .35em;
  cursor: pointer;
  transition: background .3s;
  flex-shrink: 0;
  line-height: 1.3;
}

.search-submit .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  letter-spacing: .25em;
  margin-top: 3px;
  opacity: 0.88;
}

/* ヘッダー予約ボタン（検索バーを置き換え） */
.header-reserve { justify-content: space-between; }
.header-reserve-btn {
  background: var(--forest);
  color: var(--cream);
  padding: 12px 44px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .35em;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: background .3s;
}
.header-reserve-btn:hover { background: var(--bronze); }
.header-reserve-btn .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  letter-spacing: .25em;
  margin-top: 3px;
  opacity: 0.88;
}

.search-submit:hover { background: var(--ink); }

/* ===== HERO D 共通 ===== */
.hero-d {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 170px 60px 60px;
  display: flex;
  align-items: center;
}

.hero-d .hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-d .hero-bg-img img {
  width: 100%; height: 100%;
  display: block;
  /* ★ object-position で右側にロゴをずらす */
  object-position: 30% center;
  object-fit: cover;
}

.hero-d .hero-img-note {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: .04em;
  color: #F5EBD8;
  text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 0 2px rgba(0,0,0,0.75);
  z-index: 5;
  pointer-events: none;
}

.hero-d .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(245,235,216,0.92) 0%, rgba(245,235,216,0.75) 35%, rgba(20,40,35,0.30) 70%, rgba(20,40,35,0.55) 100%);
  z-index: 1;
}

/* ★ 装飾要素(D-2のみ表示) */
.hero-d .deco-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 380px;
  color: var(--cream);
  opacity: .07;
  line-height: 1;
  letter-spacing: -.04em;
  bottom: -80px;
  left: 40px;
  pointer-events: none;
  z-index: 2;
}

.hero-d .deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero-d .deco-circle-1 {
  width: 600px; height: 600px;
  border: 1px solid rgba(212,176,116,0.35);
  top: 8%; right: -200px;
}

.hero-d .deco-circle-2 {
  width: 380px; height: 380px;
  border: 1px solid rgba(212,176,116,0.55);
  top: 4%; right: -80px;
}

.hero-d .deco-circle-3 {
  width: 140px; height: 140px;
  background: rgba(212,176,116,0.18);
  top: 6%; right: 24%;
}

.hero-d .deco-line {
  position: absolute;
  width: 1px;
  height: 220px;
  background: rgba(212,176,116,0.5);
  right: 100px;
  top: 38%;
  z-index: 2;
}

/* テキスト */
.hero-d .hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-d .hero-text { max-width: 620px; }

.hero-d .hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .45em;
  color: var(--moss);
  margin-bottom: 32px;
  position: relative;
  padding-left: 30px;
}

.hero-d .hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--moss);
}

.hero-d .hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.45;
  letter-spacing: .04em;
  color: var(--forest);
  margin-bottom: 20px;
}

.hero-d .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  letter-spacing: .1em;
  color: var(--bronze);
  margin-bottom: 24px;
}

.hero-d .hero-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-d .hero-cta-row { display: flex; gap: 16px; margin-bottom: 60px; }

.hero-d .hero-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  padding: 16px 40px;
  letter-spacing: .35em;
  text-decoration: none;
  cursor: pointer;
  transition: all .4s;
  line-height: 1.3;
}

.hero-d .hero-btn .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: .25em;
  margin-top: 5px;
  opacity: 0.88;
  font-weight: 300;
}

.hero-d .hero-btn-primary { background: var(--forest); color: var(--cream); border: 0; }

.hero-d .hero-btn-primary:hover { background: var(--ink); letter-spacing: .4em; }

.hero-d .hero-btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--moss);
}

.hero-d .hero-btn-ghost:hover { background: var(--forest); color: var(--cream); }

.hero-d .hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 620px;
  padding: 26px 32px;
  background: rgba(245,235,216,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid var(--line-strong);
  border-radius: 2px;
}

.hero-d .hero-meta-item .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--bronze);
  display: block;
  margin-bottom: 8px;
}

.hero-d .hero-meta-item .value {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--forest);
}

.hero-d .hero-meta-access {
  list-style: none;
  margin-top: 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-d .hero-meta-access li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(125,95,56,0.3);
}

.hero-d .hero-meta-access li:last-child { border-bottom: 0; }

.hero-d .hero-meta-access .from {
  font-family: 'Noto Serif JP', serif;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .05em;
}

.hero-d .hero-meta-access .time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bronze);
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: .04em;
}

/* バリアント切替(object-positionの違いを比較) */
.hero-d.pos-30 .hero-bg-img img { object-position: 30% center; }

.hero-d.pos-20 .hero-bg-img img { object-position: 20% center; }

.hero-d.pos-15 .hero-bg-img img { object-position: 15% center; }

@media (max-width: 900px) {
  .hero-d { padding: 110px 24px 40px; }
  /* ★ 暗すぎ修正:filterを軽めに(brightnessを上げる) */
  .hero-d .hero-bg-img img {
    filter: brightness(0.95) saturate(0.95);
  }
  /* ★ overlayもダーク控えめ */
  .hero-d .hero-bg-overlay {
    background: linear-gradient(180deg,
      rgba(20,40,35,0.18) 0%,
      rgba(20,40,35,0.08) 35%,
      rgba(20,40,35,0.35) 100%);
  }
  /* ★ 装飾円を復活(モバイルサイズ) */
  .hero-d .deco-circle-1 {
    width: 320px; height: 320px;
    top: 8%; right: -150px;
    border-color: rgba(212,176,116,0.55);
  }
  .hero-d .deco-circle-2 {
    width: 200px; height: 200px;
    top: 4%; right: -60px;
    border-color: rgba(212,176,116,0.75);
  }
  .hero-d .deco-circle-3 {
    width: 80px; height: 80px;
    top: 6%; right: 24%;
    background: rgba(212,176,116,0.28);
  }
  .hero-d .deco-line {
    height: 130px;
    right: 60px;
    top: 38%;
    background: rgba(212,176,116,0.65);
  }
  .hero-d .deco-bg-text { display: none; }
  /* 文字は白+影で読ませる */
  .hero-d .hero-eyebrow,
  .hero-d .hero-title,
  .hero-d .hero-sub,
  .hero-d .hero-desc,
  .hero-d .hero-meta-item .label,
  .hero-d .hero-meta-item .value {
    color: #fff;
    text-shadow:
      0 1px 2px rgba(0,0,0,0.9),
      0 2px 8px rgba(0,0,0,0.65),
      0 4px 18px rgba(0,0,0,0.45);
  }
  .hero-d .hero-eyebrow::before { background: #fff; }
  .hero-d .hero-title {
    font-size: 38px;
    -webkit-text-stroke: 0.4px rgba(0,0,0,0.3);
  }
  .hero-d .hero-cta-row { flex-direction: column; }
  .hero-d .hero-btn { justify-content: center; }
  .hero-d .hero-btn-primary {
    background: rgba(20,40,35,0.88);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  }
  .hero-d .hero-btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.85);
  }
  /* ★ hero-meta から下を cream 背景エリアに */
  .hero-d .hero-img-note {
    color: var(--bronze);
    text-shadow: none;
    bottom: 10px;
    right: 14px;
    opacity: 0.85;
  }
    .hero-d .hero-meta {
    grid-template-columns: 1fr;
    gap: 20px;
    background: var(--cream);
    margin: 32px -24px -40px;
    padding: 32px 24px 40px;
    border-top: 1px solid var(--line-strong);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
  }
  .hero-d .hero-meta-item .label {
    color: var(--bronze);
    text-shadow: none;
  }
  .hero-d .hero-meta-item .value {
    color: var(--forest);
    text-shadow: none;
  }
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--forest-deep);
  padding: 48px 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.info-bar-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: .35em;
  color: #D4B074;
  padding-right: 36px;
  border-right: 1px solid rgba(212,176,116,0.4);
  flex-shrink: 0;
}

.info-bar-content {
  flex: 1;
  display: flex;
  gap: 64px;
  padding-left: 28px;
  white-space: nowrap;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream);
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
}

.info-bar-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: .15em;
  color: #D4B074;
}

/* ===== SECTION COMMON ===== */
.section { padding: 140px 80px; position: relative; overflow: hidden; }

.section-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }

.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .45em;
  color: var(--bronze);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: .04em;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: 10px;
}

.section-title-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bronze);
  letter-spacing: .05em;
  margin-top: 14px;
  font-weight: 400;
}

.section-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  line-height: 2.1;
  color: var(--ink);
  max-width: 620px;
  margin-top: 32px;
}

.section-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--forest);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--bronze);
  transition: all .3s;
  line-height: 1.3;
}

.section-link .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  letter-spacing: .2em;
  margin-top: 3px;
  opacity: 0.85;
}

.section-link::after { content: '  →'; margin-left: 6px; transition: transform .3s; }

.section-link:hover { color: var(--bronze); }

.section-link:hover::after { transform: translateX(4px); }

/* ===== STAY ===== */
.stay-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%); padding-bottom: 70px; }

.stay-bg-text {
  position: absolute;
  top: 80px;
  right: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 240px;
  color: var(--forest);
  opacity: .04;
  line-height: 1;
  letter-spacing: -.03em;
  pointer-events: none;
}

.stay-num {
  position: absolute;
  top: 140px;
  right: 100px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .35em;
  color: var(--bronze);
}

/* 4枚カード型(部屋ごと) */
.rooms-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.room-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--bronze);
  box-shadow: 0 24px 60px rgba(125,95,56,0.12);
}

.room-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.room-card-img::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245,235,216,0.3);
  pointer-events: none;
  z-index: 2;
}

.room-card-img-single-std { background: url('assets/images/room_single.jpg') center/cover no-repeat; }

.room-card-img-twin-std   { background: url('assets/images/room_twin_std.jpg') center/cover no-repeat; }

.room-card-img-twin-dlx   { background: url('assets/images/room_twin_dlx.jpg') center/cover no-repeat; }

.room-card-img-japanese   { background: url('assets/images/room_japanese.jpg') center/cover no-repeat; }

.room-card-img-label {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  z-index: 3;
}

.room-card-body {
  padding: 36px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 10px;
}

.room-card-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: 16px;
}

.room-card-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 28px;
  flex: 1;
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.room-card-price-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--bronze);
  display: block;
  margin-bottom: 6px;
}

.room-card-price {
  font-family: 'Noto Serif JP', serif;
  color: var(--bronze);
}

.room-card-price .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  letter-spacing: .02em;
  color: var(--forest);
  margin-right: 4px;
  line-height: 1;
}

.room-card-price .unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--bronze);
  letter-spacing: .05em;
}

.room-card-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all .3s;
}

.room-card-link .link-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.25;
}

.room-card-link .ja {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: .2em;
  margin-top: 2px;
  opacity: 0.85;
}

.room-card-link:hover { color: var(--forest); gap: 14px; }

.room-card-link:hover .arrow { transform: translateX(2px); }

.room-card-link .arrow { transition: transform .3s; }

.rooms-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* ===== EXPERIENCE ===== */
.experience-section {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
  padding-top: 70px;
}

.exp-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--bronze);
  line-height: 1.8;
  letter-spacing: .02em;
  margin-top: 12px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 70px;
}

.exp-card {
  background: var(--cream-light);
  border: 0.5px solid var(--line);
  padding: 0 0 36px;
  transition: all .4s;
}

.exp-card:hover { transform: translateY(-6px); border-color: var(--bronze); }

.exp-img {
  height: 280px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.exp-img-1 { background: url('assets/images/dining.jpg') center/cover no-repeat; }

.exp-img-2 { background: url('assets/images/banquet.jpg') center/cover no-repeat; }

.exp-img-3 { background: linear-gradient(135deg, #C8A465 0%, #8C6E45 60%, #5C3B22 100%); }

.exp-img::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 0.5px solid rgba(245,235,216,0.25);
}

.exp-img-label {
  position: absolute;
  bottom: 22px;
  left: 28px;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
}

.exp-content { padding: 0 32px; }

.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
}

.exp-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--forest);
  margin: 10px 0 6px;
  letter-spacing: .05em;
}

.exp-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bronze);
  letter-spacing: .15em;
  margin-bottom: 18px;
}

.exp-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 22px;
}

/* ===== ACCESS ===== */
.access-section { background: var(--forest-deep); color: var(--cream); padding: 140px 80px; }

.access-section .section-title { color: var(--cream); }

.access-section .section-title-en { color: var(--bronze); }

.access-section .section-desc { color: rgba(245,235,216,0.7); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 70px;
  align-items: start;
}

.access-info { display: flex; flex-direction: column; gap: 0; }

.access-info-item {
  border-top: 1px solid rgba(140,110,69,0.3);
  padding: 24px 0;
}

.access-info-item:last-child { border-bottom: 1px solid rgba(140,110,69,0.3); }

.access-info-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 10px;
}

.access-info-val {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--cream);
}

.access-map-wrap { display: flex; flex-direction: column; gap: 14px; }

.access-map {
  height: 460px;
  position: relative;
  border: 0.5px solid rgba(140,110,69,0.3);
  overflow: hidden;
  background: #0F1F1A;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-map-link {
  align-self: flex-end;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--bronze);
  text-decoration: none;
  transition: color .3s, gap .3s;
}

.access-map-link:hover { color: #D4B074; }

/* ヒーローと同じノリのアクセスルート (アクセスセクション=ダーク版) */
.access-routes {
  list-style: none;
  margin-top: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-routes li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px dashed rgba(140,110,69,0.3);
}

.access-routes li:last-child { border-bottom: 0; padding-bottom: 0; }

.access-routes .from {
  font-family: 'Noto Serif JP', serif;
  color: rgba(245,235,216,0.85);
  font-size: 12px;
  letter-spacing: .05em;
}

.access-routes .time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bronze);
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: .04em;
}

/* ===== FOOTER ===== */
.footer { background: #0B1814; color: var(--cream); padding: 90px 80px 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 70px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: .15em;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 6px;
}

.footer-logo-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--bronze);
  margin-bottom: 28px;
}

.footer-address {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 2;
  color: rgba(245,235,216,0.65);
}

.footer-mail-link {
  font-family: 'Cormorant Garamond', serif;
  color: var(--bronze);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .3s;
}

.footer-mail-link:hover { color: #D4B074; }

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(140,110,69,0.25);
}

.footer-col-title .ja-sub {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(212,176,116,0.7);
  margin-left: 6px;
}

.footer-col-title-2nd { margin-top: 28px; }

.footer-list { list-style: none; }

.footer-list li { margin-bottom: 12px; }

.footer-list a {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: rgba(245,235,216,0.72);
  text-decoration: none;
  transition: color .3s;
}

.footer-list a:hover { color: var(--bronze); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(140,110,69,0.2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .25em;
  color: rgba(245,235,216,0.5);
}

/* ===== MOBILE FOOTER ===== */
.mobile-footer {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(20, 40, 35, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 20px;
  border-top: 1px solid rgba(140,110,69,0.3);
}

.mobile-search-btn,
.mobile-reserve-btn {
  display: block;
  width: 100%;
  background: var(--bronze);
  color: var(--cream);
  border: 0;
  padding: 14px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .35em;
  cursor: pointer;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.mobile-search-btn .ja,
.mobile-reserve-btn .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: .25em;
  margin-top: 4px;
  opacity: 0.88;
}

.mobile-search-btn:hover,
.mobile-reserve-btn:hover { background: var(--forest); }

/* ===== HEADER: language + hamburger ===== */
.header-right { display: flex; align-items: center; gap: 24px; }

.lang-select-wrap { position: relative; }

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--forest);
  padding: 8px 32px 8px 14px;
  cursor: pointer;
  outline: none;
}

.lang-select:hover { border-color: var(--bronze); }

.lang-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--bronze);
  border-bottom: 1px solid var(--bronze);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--forest);
  transition: all .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== DRAWER (mobile menu) ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 35, 0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--cream);
  z-index: 1100;
  padding: 80px 36px 40px;
  transform: translateX(100%);
  transition: transform .4s ease;
  overflow-y: auto;
}

.drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--forest);
}

.drawer-close span:nth-child(1) { transform: rotate(45deg); }

.drawer-close span:nth-child(2) { transform: rotate(-45deg); }

.drawer-nav { list-style: none; margin-bottom: 40px; }

.drawer-nav li { border-bottom: 1px solid var(--line); list-style: none; }

.drawer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.drawer-row > a {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--forest);
  text-decoration: none;
}

.drawer-row > a .ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--bronze);
}

.drawer-toggle {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--line);
  width: 28px;
  height: 28px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: border-color .3s, transform .35s;
}

.drawer-toggle span {
  position: absolute;
  background: var(--bronze);
  transition: opacity .3s;
}

.drawer-toggle span:nth-child(1) {
  top: 50%; left: 20%; right: 20%; height: 1px; transform: translateY(-50%);
}

.drawer-toggle span:nth-child(2) {
  left: 50%; top: 20%; bottom: 20%; width: 1px; transform: translateX(-50%);
}

.drawer-item.open .drawer-toggle { transform: rotate(45deg); border-color: var(--bronze); }

.drawer-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 0 0 16px;
}

.drawer-item.open .drawer-sub {
  max-height: 240px;
  padding: 4px 0 16px 16px;
}

.drawer-sub li { border-bottom: 0; }

.drawer-sub a {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(31,58,46,0.85);
  text-decoration: none;
  padding: 9px 0;
  transition: color .3s;
}

.drawer-sub a:hover { color: var(--bronze); }

.drawer-lang { margin-bottom: 36px; }

.drawer-block-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.drawer-lang select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--forest);
  padding: 14px 16px;
  cursor: pointer;
}

/* ===== SNS icons ===== */
.sns-row { display: flex; gap: 12px; }

.sns-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(140,110,69,0.35);
  border-radius: 50%;
  color: var(--bronze);
  transition: all .3s;
  text-decoration: none;
}

.sns-row a:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--cream);
}

.sns-row svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ===== Info bar (manual switch) ===== */
.info-bar-light { color: #D4B074; }

.info-bar .lbl-pc { display: inline; }

.info-bar .lbl-sp { display: none; }

.info-bar-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 36px;
  overflow: hidden;
}

.info-bar-slide {
  position: absolute;
  left: 36px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--cream);
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .45s, transform .45s;
  pointer-events: none;
}

.info-bar-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.info-bar-slide a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}

.info-bar-slide a:hover { border-bottom-color: var(--bronze); }

.info-bar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
  flex-shrink: 0;
}

.info-bar-btn {
  background: transparent;
  border: 1px solid rgba(212,176,116,0.45);
  color: #D4B074;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  padding: 0;
}

.info-bar-btn:hover { background: #D4B074; color: var(--forest-deep); border-color: #D4B074; }

.info-bar-btn svg { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.info-bar-indicator {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .15em;
  color: #D4B074;
  min-width: 44px;
  text-align: center;
}

/* ===== Footer SNS ===== */
.footer-sns-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.footer-sns-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(140,110,69,0.4);
  border-radius: 50%;
  color: var(--bronze);
  text-decoration: none;
  transition: all .3s;
}

.footer-sns-row a:hover {
  background: var(--bronze);
  color: var(--cream);
  border-color: var(--bronze);
}

.footer-sns-row svg { width: 14px; height: 14px; fill: currentColor; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-top { padding: 12px 20px; }
  .header-logo { font-size: 18px; }
  .header-nav { display: none; }
  .header-tel { display: none; }
  .header-search { display: none; }
  .lang-select-wrap { display: none; }
  .hamburger { display: flex; }
  .info-bar-stage { padding-left: 16px; }
  .info-bar-slide { left: 16px; font-size: 12px; }
  .info-bar-controls { margin-left: 12px; }
  .info-bar {
    padding: 28px 20px;
    flex-wrap: wrap;
    align-items: center;
  }
  .info-bar-label {
    display: block;
    padding-right: 0;
    border-right: 0;
    font-size: 10px;
    letter-spacing: .3em;
    order: 1;
    flex: 1 1 auto;
  }
  .info-bar .lbl-pc { display: none; }
  .info-bar .lbl-sp { display: inline; }
  .info-bar-controls {
    order: 2;
    margin-left: 0;
    gap: 6px;
    flex-shrink: 0;
  }
  .info-bar-btn { width: 32px; height: 32px; }
  .info-bar-indicator { min-width: 36px; font-size: 12px; }
  .info-bar-stage {
    order: 3;
    flex: 1 1 100%;
    margin-top: 14px;
    padding-left: 0;
    height: 48px;
  }
  .info-bar-slide { left: 0; font-size: 15px; }
  .info-bar-slide .info-bar-date { font-size: 13px; }
  .section { padding: 80px 24px; }
  .section-title { font-size: 28px; }
  .section-title-en { font-size: 18px; }
  .stay-bg-text { font-size: 140px; top: 60px; right: -20px; }
  .stay-num { right: 24px; top: 100px; }
  .rooms-cards { grid-template-columns: 1fr; gap: 28px; margin-top: 50px; }
  .room-card-img { height: 240px; }
  .room-card-body { padding: 28px 24px 24px; }
  .room-card-name { font-size: 22px; }
  .room-card-price .num { font-size: 30px; }
  .experience-grid { grid-template-columns: 1fr; gap: 24px; }
  .access-section { padding: 80px 24px; }
  .access-grid { grid-template-columns: 1fr; gap: 40px; }
  .access-map { height: 320px; }
  .footer { padding: 70px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .mobile-footer { display: block; }
  body { padding-bottom: 80px; }
}

/* ===== Page Hero (Rooms ページ用) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  padding: 240px 80px 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'Rooms';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 240px;
  color: rgba(125,95,56,0.05);
  bottom: -60px;
  right: 40px;
  line-height: 1;
  pointer-events: none;
}

.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }

.page-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .4em;
  color: var(--moss);
  margin-bottom: 22px;
  padding-left: 30px;
  position: relative;
}

.page-hero-eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--moss);
}

.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 56px;
  line-height: 1.4;
  letter-spacing: .04em;
  color: var(--forest);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--bronze);
  margin-bottom: 24px;
}

.page-hero-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
  max-width: 600px;
}

/* ===== Rooms Container ===== */
.rooms-container {
  padding: 100px 80px 140px;
  max-width: 1400px;
  margin: 0 auto;
}

.rooms-intro {
  text-align: center;
  margin-bottom: 90px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.rooms-intro h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: .04em;
  color: var(--forest);
  margin-bottom: 14px;
}

.rooms-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.room-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.room-section:last-child { border-bottom: 0; }

.room-section:nth-child(even) { grid-template-columns: 1fr 1.15fr; }

.room-section:nth-child(even) .room-gallery { order: 2; }

.room-section:nth-child(even) .room-content { order: 1; }

.room-num-large {
  position: absolute;
  top: 60px;
  right: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .35em;
  color: var(--bronze);
}

.room-section:nth-child(even) .room-num-large { right: auto; left: 0; }

/* 写真なし客室（ツインデラックス・トリプル）— ギャラリー無し1カラム中央 */
.room-section.no-image {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.room-section.no-image .room-content { padding-top: 0; }

.room-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-main {
  height: 440px;
  overflow: hidden;
  background: var(--sand);
}

.room-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .5s;
}

.room-main img:hover { transform: scale(1.02); }

.room-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.room-thumb {
  height: 120px;
  overflow: hidden;
  background: var(--sand);
}

.room-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .5s, opacity .3s;
}

.room-thumb img:hover { transform: scale(1.05); opacity: 0.85; }

.room-content { padding-top: 28px; }

.room-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.35;
  letter-spacing: .04em;
  color: var(--forest);
  margin-bottom: 8px;
}

.room-content h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .2em;
  color: var(--bronze);
  margin-top: 8px;
  font-weight: 400;
}

.room-divider {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin: 22px 0;
}

.room-description {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 32px;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(245,235,216,0.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--bronze);
  text-transform: uppercase;
}

.spec-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--forest);
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.room-price .price-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--bronze);
}

.room-price .price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--forest);
  letter-spacing: .02em;
}

.room-price .price-value small {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--ink);
  margin-left: 6px;
}

.room-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.amenity-toggle {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.amenity-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--bronze);
}

.amenity-toggle-icon {
  width: 14px; height: 14px;
  position: relative;
}

.amenity-toggle-icon::before,
.amenity-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--bronze);
  transition: transform .3s;
}

.amenity-toggle-icon::before {
  top: 50%; left: 0; right: 0; height: 1px;
}

.amenity-toggle-icon::after {
  left: 50%; top: 0; bottom: 0; width: 1px;
}

.amenity-toggle.open .amenity-toggle-icon::after { transform: rotate(90deg); }

.amenity-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, padding .3s;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
}

.amenity-list li {
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.amenity-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bronze);
  font-family: 'Cormorant Garamond', serif;
}

.amenity-toggle.open .amenity-list {
  max-height: 420px;
  padding-bottom: 22px;
}

/* ===== Common Amenities ===== */
.common-amenities {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
  padding: 120px 80px;
}

.common-amenities-inner { max-width: 1280px; margin: 0 auto; }

.common-amenities h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 36px;
  letter-spacing: .04em;
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}

.common-amenities h2 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 12px;
  font-weight: 400;
}

.common-header { text-align: center; margin-bottom: 60px; }

.common-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--bronze);
  margin-bottom: 18px;
}

.amenity-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.amenity-category {
  background: var(--cream-light);
  border: 0.5px solid var(--line);
  padding: 36px 26px 30px;
  transition: all .3s;
}

.amenity-category:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(125,95,56,0.1);
}

.amenity-icon {
  width: 38px; height: 38px;
  color: var(--bronze);
  margin-bottom: 18px;
}

.amenity-icon svg { width: 100%; height: 100%; }

.amenity-category h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--forest);
  margin-bottom: 4px;
}

.amenity-category h4 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--bronze);
  text-transform: lowercase;
  margin-top: 4px;
  font-weight: 400;
}

.amenity-divider {
  width: 28px;
  height: 1px;
  background: var(--bronze);
  margin: 14px 0 18px;
}

.amenity-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.amenity-category ul li {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
  padding-left: 14px;
  position: relative;
  line-height: 1.7;
}

.amenity-category ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 1px;
  background: var(--bronze);
}

/* ===== Footer CTA ===== */
.footer-cta {
  background: var(--forest-deep);
  padding: 110px 80px;
  text-align: center;
  color: var(--cream);
}

.footer-cta h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 36px;
  letter-spacing: .04em;
  color: var(--cream);
  margin-bottom: 36px;
}

.footer-cta-contacts {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 44px;
  min-width: 280px;
  border: 1px solid rgba(212,176,116,0.4);
  background: rgba(245,235,216,0.03);
  text-decoration: none;
  transition: all .3s;
}

.cta-contact:hover {
  border-color: #D4B074;
  background: rgba(245,235,216,0.08);
  transform: translateY(-2px);
}

.cta-contact-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .4em;
  color: #D4B074;
}

.cta-contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: .06em;
  color: var(--cream);
  margin-top: 6px;
}

.cta-contact-note {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(245,235,216,0.6);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .footer-cta-contacts { flex-direction: column; gap: 16px; }
  .cta-contact { padding: 22px 24px; min-width: 0; width: 100%; }
  .cta-contact-value { font-size: 20px; }
}

/* ===== Page共通ボタン (Rooms ページ) ===== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  padding: 16px 36px;
  letter-spacing: .35em;
  text-decoration: none;
  cursor: pointer;
  transition: all .4s;
  line-height: 1.3;
  border: 0;
}

.btn .ja {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  letter-spacing: .25em;
  margin-top: 5px;
  opacity: 0.88;
  font-weight: 300;
}

.btn-primary { background: var(--forest); color: var(--cream); }

.btn-primary:hover { background: var(--ink); letter-spacing: .4em; }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--moss);
}

.btn-ghost:hover { background: var(--forest); color: var(--cream); }

.btn-sm {
  padding: 11px 24px;
  font-size: 12px;
  letter-spacing: .3em;
}

.btn-sm .ja {
  font-size: 10px;
  letter-spacing: .2em;
  margin-top: 3px;
}

.btn-bronze { background: var(--bronze); color: var(--cream); }

.btn-bronze:hover { background: #D4B074; color: var(--forest-deep); letter-spacing: .4em; }

/* ===== Room Filter ===== */
.room-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 20px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--forest);
  padding: 12px 28px;
  cursor: pointer;
  transition: all .3s;
}

.filter-btn:hover { border-color: var(--bronze); color: var(--bronze); }

.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.room-section {
  transition: opacity .45s ease, transform .45s ease;
}

.room-section.is-fading {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.rooms-intro h2,
.rooms-intro p {
  transition: opacity .35s ease, transform .35s ease;
}

.rooms-intro.is-fading h2,
.rooms-intro.is-fading p {
  opacity: 0;
  transform: translateY(8px);
}

.room-section.hidden { display: none; }

/* ===== Access Page ===== */
.page-hero-access::before { content: 'Access'; }

/* common-header (Access専用) */
.common-header h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 34px;
  letter-spacing: .04em;
  color: var(--forest);
  line-height: 1.45;
  margin-bottom: 8px;
}

.common-header h2 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 10px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .common-header h2 { font-size: 24px; }
  .common-header h2 em { font-size: 13px; letter-spacing: .2em; margin-top: 8px; }
}

/* ホテル情報サマリー */
.access-summary {
  padding: 80px 80px 0;
  background: var(--cream);
}

.access-summary-inner {
  max-width: 900px;
  margin: 0 auto;
}

.summary-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 36px 44px;
}

.summary-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 18px;
}

.summary-list { display: flex; flex-direction: column; }

.summary-list .row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.summary-list .row:first-child { border-top: 1px solid var(--line); }

.summary-list dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.summary-list dt::before { content: '— '; }

.summary-list dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
}

.summary-list dd .tel-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--forest);
  margin-right: 6px;
}

/* Route tabs */
.route-section-wrap {
  padding: 90px 80px;
  background: var(--cream);
}

.route-inner { max-width: 1100px; margin: 0 auto; }

.route-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 50px 0 50px;
  flex-wrap: wrap;
}

.route-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 24px 36px 22px;
  cursor: pointer;
  transition: all .3s;
  min-width: 220px;
  font-family: inherit;
  color: var(--forest);
}

.route-btn:hover { border-color: var(--bronze); color: var(--bronze); }

.route-btn svg {
  width: 28px;
  height: 28px;
  color: var(--bronze);
  margin-bottom: 4px;
}

.route-btn .rb-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  margin-top: 2px;
}

.route-btn .rb-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: .15em;
  opacity: 0.85;
}

.route-btn.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.route-btn.active svg { color: #D4B074; }

.route-btn.active .rb-ja { opacity: 1; }

/* Route content (フェード) */
.route-content {
  transition: opacity .35s ease, transform .35s ease;
}

.route-content.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.route-content.hidden { display: none; }

.route-head { text-align: center; margin-bottom: 36px; }

.route-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.route-head h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--forest);
  letter-spacing: .04em;
}

.route-head h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 8px;
  font-weight: 400;
}

.route-divider {
  width: 36px;
  height: 1px;
  background: var(--bronze);
  margin: 22px auto;
}

.route-head p {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto;
}

.route-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.route-list li {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 20px;
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.rl-from {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--forest);
  font-weight: 500;
}

.rl-time {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  justify-content: center;
}

.rl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--forest);
  letter-spacing: .02em;
  font-weight: 500;
  line-height: 1;
}

.rl-unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
}

.rl-mode {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--bronze);
  text-align: right;
}

.route-note {
  margin: 20px auto 0;
  max-width: 760px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--bronze);
  line-height: 1.8;
  letter-spacing: .04em;
  text-align: center;
}

/* Google Map */
.access-map-section {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
}

.access-map-section-inner { max-width: 1200px; margin: 0 auto; }

.access-map-wrap-v2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 50px;
}

.access-map-v2 {
  height: 460px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0F1F1A;
}

.access-map-v2 iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-map-link-v2 {
  align-self: flex-end;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--bronze);
  text-decoration: none;
  transition: color .3s;
}

.access-map-link-v2:hover { color: var(--forest); }

/* 車ルート2枚並べ */
.route-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 50px;
}

.route-map-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.route-map-head {
  text-align: left;
  padding-bottom: 6px;
}

.route-map-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--bronze);
  display: block;
  margin-bottom: 6px;
}

.route-map-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--forest);
}

.route-map-card .access-map-v2 { height: 380px; }

.route-map-grid.route-map-single { grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; }

.route-map-single .access-map-v2 { height: 420px; }

/* タブ内のサブセクション(駐車場・車ルート) */
.route-section-sub {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.route-sub-head {
  text-align: center;
  margin-bottom: 30px;
}

.route-sub-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--bronze);
  display: block;
  margin-bottom: 10px;
}

.route-sub-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--forest);
}

.route-section-sub .route-map-grid { margin-top: 20px; }

.route-section-sub .parking-list { margin-top: 10px; }

@media (max-width: 900px) {
  .route-map-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; }
  .route-map-title { font-size: 16px; }
  .route-map-card .access-map-v2 { height: 280px; }
  .route-map-single .access-map-v2 { height: 280px; }
  .route-section-sub { margin-top: 50px; padding-top: 36px; }
  .route-sub-title { font-size: 18px; }
}

/* 駐車場 */
.parking-section {
  padding: 100px 80px;
  background: var(--cream);
}

.parking-inner { max-width: 1100px; margin: 0 auto; }

.parking-body { margin-top: 50px; }

.parking-list { display: flex; flex-direction: column; }

.parking-list .row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.parking-list .row:first-child { border-top: 1px solid var(--line); }

.parking-list dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.parking-list dt::before { content: '— '; }

.parking-list dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
}

.parking-list dd strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: .02em;
  margin: 0 4px;
}

.parking-figure {
  margin-top: 30px;
  text-align: center;
}

.parking-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: opacity .3s, transform .4s;
}

.parking-figure img:hover { opacity: 0.92; transform: scale(1.005); }

.parking-figure figcaption {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.parking-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(125,95,56,0.06);
  border-left: 2px solid var(--bronze);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
}

@media (max-width: 900px) {
  .access-summary { padding: 50px 24px 0; }
  .summary-card { padding: 24px 22px; }
  .summary-list .row { grid-template-columns: 1fr; gap: 6px; }
  .summary-list dd .tel-big { font-size: 20px; }
  .route-section-wrap { padding: 60px 24px; }
  .route-tabs { gap: 10px; margin: 36px 0; }
  .route-btn { min-width: 160px; padding: 18px 22px 16px; }
  .route-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 4px;
  }
  .rl-time { justify-content: flex-start; }
  .rl-num { font-size: 30px; }
  .rl-mode { text-align: left; }
  .access-map-section { padding: 60px 24px; }
  .access-map-v2 { height: 320px; }
  .parking-section { padding: 60px 24px; }
  .parking-list .row { grid-template-columns: 1fr; gap: 6px; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 24, 20, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 60px 40px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox.open { display: flex; }

.lightbox .lb-image {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox .lb-close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: 1px solid rgba(245,235,216,0.55);
  color: rgba(245,235,216,0.9);
  width: 44px; height: 44px;
  font-size: 20px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  transition: all .3s;
}

.lightbox .lb-close:hover { background: rgba(245,235,216,0.1); border-color: #D4B074; color: #D4B074; }

.lightbox .lb-caption {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(245,235,216,0.75);
}

@media (max-width: 900px) {
  .page-hero { padding: 150px 24px 60px; }
  .page-hero::before { font-size: 120px; right: 20px; }
  .page-hero-title { font-size: 32px; }
  .rooms-container { padding: 60px 24px 80px; }
  .rooms-intro { margin-bottom: 50px; padding-bottom: 40px; }
  .rooms-intro h2 { font-size: 24px; }
  .room-section { grid-template-columns: 1fr !important; gap: 40px; padding: 60px 0; }
  .room-section:nth-child(even) .room-gallery { order: 1; }
  .room-section:nth-child(even) .room-content { order: 2; }
  .room-num-large { position: static !important; margin-bottom: 6px; }
  .room-main { height: 260px; }
  .room-thumb { height: 80px; }
  .room-content { padding-top: 0; }
  .room-content h3 { font-size: 28px; }
  .room-specs { grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px; }
  .room-price .price-value { font-size: 30px; }
  .room-actions { flex-direction: column; }
  .room-actions .btn { width: 100%; }
  .common-amenities { padding: 80px 24px; }
  .common-amenities h2 { font-size: 26px; }
  .amenity-grid-4 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-cta { padding: 70px 24px; }
  .footer-cta h2 { font-size: 24px; margin-bottom: 28px; }
  .lightbox .lb-image { max-height: 75vh; }
}

.common-header h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 36px;
  letter-spacing: .04em;
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
}

.common-header h2 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 12px;
  font-weight: 400;
}

/* ===== Amenity Page ===== */
.page-hero-amenity::before { content: 'Amenity'; }

/* room-type-section */
.room-type-section {
  padding: 120px 80px;
  background: var(--cream);
}

.room-type-inner { max-width: 1280px; margin: 0 auto; }

.room-type-intro {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  margin-top: 20px;
  letter-spacing: .05em;
}

.room-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.room-type-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 36px 32px 30px;
  transition: all .3s;
}

.room-type-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(125,95,56,0.1);
}

.room-type-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.room-type-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--forest);
  line-height: 1.4;
}

.room-type-card h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 6px;
  font-weight: 400;
}

.room-type-divider {
  width: 32px;
  height: 1px;
  background: var(--bronze);
  margin: 18px 0 20px;
}

.room-type-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.room-type-list li {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}

.room-type-list li::before {
  content: '—';
  position: absolute;
  left: 0; top: 0;
  color: var(--bronze);
  font-family: 'Cormorant Garamond', serif;
}

.room-type-list li strong {
  font-weight: 500;
  color: var(--forest);
}

/* info-block-section (Wi-Fi / Smoking) */
.info-block-section {
  padding: 110px 80px;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
}

.info-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  align-items: start;
  transition: all .3s;
}

.info-block:hover {
  border-color: var(--bronze);
  box-shadow: 0 16px 36px rgba(125,95,56,0.08);
}

.info-block-icon {
  width: 56px;
  height: 56px;
  color: var(--bronze);
}

.info-block-icon svg { width: 100%; height: 100%; }

.info-block-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 12px;
}

.info-block-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 18px;
  line-height: 1.45;
}

.info-block-body h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 6px;
  font-weight: 400;
}

.info-block-body p {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 10px;
}

.info-block-body strong {
  color: var(--forest);
  font-weight: 500;
}

.info-note {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(125,95,56,0.06);
  border-left: 2px solid var(--bronze);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
}

@media (max-width: 900px) {
  .room-type-section { padding: 70px 24px; }
  .room-type-grid { grid-template-columns: 1fr; gap: 18px; }
  .room-type-card { padding: 28px 22px 24px; }
  .room-type-card h3 { font-size: 20px; }
  .info-block-section { padding: 70px 24px; }
  .info-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 20px;
  }
  .info-block-icon { width: 44px; height: 44px; }
  .info-block-body h3 { font-size: 20px; }
}

/* ===== Banquet Page ===== */
.page-hero-banquet::before { content: 'Banquet'; }

/* イントロ */
.banquet-intro {
  padding: 100px 80px;
  background: var(--cream);
}

.banquet-intro-inner { max-width: 1100px; margin: 0 auto; }

.usage-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 36px;
  margin-top: 50px;
}

.usage-grid li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--forest);
}

.usage-icon {
  color: var(--bronze);
  font-size: 10px;
}

/* 会場一覧 */
.venue-section {
  padding: 110px 80px;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
}

.venue-inner { max-width: 1300px; margin: 0 auto; }

.venue-intro-text {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: .04em;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.venue-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .3s;
}

.venue-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(125,95,56,0.1);
}

.venue-image {
  height: 200px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .5s;
}

.venue-image img:hover { transform: scale(1.04); }

.venue-body { padding: 26px 26px 28px; }

.venue-cap {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-bottom: 12px;
}

.venue-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 14px;
  line-height: 1.4;
}

.venue-body h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 5px;
  font-weight: 400;
}

.venue-body p {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
}

/* 太陽の間 分割室 */
.split-info {
  margin-top: 70px;
  padding: 36px 40px;
  background: var(--cream-light);
  border: 1px solid var(--line);
}

.split-info-head { margin-bottom: 22px; }

.split-info-head h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.split-info-head h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--bronze);
  margin-left: 10px;
  font-weight: 400;
}

.split-info-head p {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.9;
}

.split-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.split-row {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.split-row:last-child { border-right: 0; }

.split-row dt {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--forest);
  margin-bottom: 6px;
}

.split-row dt em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--bronze);
  margin-top: 3px;
  font-weight: 400;
}

.split-row dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--bronze);
  letter-spacing: .04em;
  margin-top: 8px;
}

/* お料理プラン */
.plan-section {
  padding: 110px 80px;
  background: var(--cream);
}

.plan-inner { max-width: 1200px; margin: 0 auto; }

.plan-intro-text {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  margin-top: 18px;
}

.plan-photo {
  margin: 50px auto 60px;
  max-width: 900px;
  text-align: center;
}

.plan-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  border: 1px solid var(--line);
  transition: transform .5s;
}

.plan-photo img:hover { transform: scale(1.01); }

.plan-photo-caption {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.plan-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  transition: all .3s;
}

.plan-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(125,95,56,0.1);
}

.plan-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.plan-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: .04em;
  line-height: 1.4;
}

.plan-card h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--bronze);
  margin-top: 6px;
  font-weight: 400;
}

.plan-divider {
  width: 30px;
  height: 1px;
  background: var(--bronze);
  margin: 18px 0;
}

.plan-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 22px;
  min-height: 70px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}

.plan-price .from {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.plan-price .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--forest);
  letter-spacing: .02em;
}

.plan-price .unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  color: var(--ink);
}

.plan-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: .04em;
  margin-top: 8px;
}

/* オプション */
.plan-options {
  background: rgba(125,95,56,0.05);
  border: 1px solid var(--line);
  padding: 32px 36px;
  max-width: 720px;
  margin: 0 auto;
}

.plan-options-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 18px;
}

.plan-options-list { display: flex; flex-direction: column; }

.opt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.opt-row:last-child { border-bottom: 0; }

.opt-row dt {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--forest);
}

.opt-row dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
}

.opt-row dd strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: .02em;
  margin-right: 4px;
}

/* お問い合わせ */
.banquet-contact-section {
  padding: 110px 80px;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
}

.banquet-contact-inner { max-width: 900px; margin: 0 auto; }

.contact-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 50px 56px;
  text-align: center;
}

.contact-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.contact-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 18px;
}

.contact-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 28px;
}

.contact-table { display: flex; flex-direction: column; max-width: 640px; margin: 0 auto; }

.contact-table .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  text-align: left;
}

.contact-table .row:first-child { border-top: 1px solid var(--line); }

.contact-table dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--bronze);
}

.contact-table dt::before { content: '— '; }

.contact-table dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
}

.contact-table dd .tel-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--forest);
  margin-right: 6px;
}

@media (max-width: 900px) {
  .banquet-intro { padding: 60px 24px; }
  .usage-grid { gap: 12px 22px; margin-top: 32px; }
  .usage-grid li { font-size: 13px; }
  .venue-section { padding: 70px 24px; }
  .venue-grid { grid-template-columns: 1fr; gap: 18px; }
  .venue-image { height: 220px; }
  .split-info { padding: 24px 22px; }
  .split-table {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }
  .split-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
  }
  .split-row:last-child { border-bottom: 0; }
  .split-row dt {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0;
    font-size: 15px;
  }
  .split-row dt em {
    display: inline;
    margin-top: 0;
    font-size: 11px;
  }
  .split-row dd { margin-top: 0; font-size: 14px; color: var(--forest); font-weight: 500; }
  .plan-section { padding: 70px 24px; }
  .plan-photo img { height: 280px; }
  .plan-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; }
  .plan-desc { min-height: 0; }
  .plan-options { padding: 22px 22px; }
  .banquet-contact-section { padding: 60px 24px; }
  .contact-card { padding: 32px 24px; }
  .contact-card h3 { font-size: 22px; }
  .contact-table .row { grid-template-columns: 1fr; gap: 6px; padding: 12px 0; }
  .contact-table dd .tel-big { font-size: 22px; }
}

/* ===== venue-cap (収容人数強調) ===== */
.venue-cap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  color: var(--bronze);
}

.venue-cap .cap-num {
  font-size: 30px;
  letter-spacing: .02em;
  color: var(--forest);
  font-weight: 500;
  line-height: 1;
}

.venue-cap .cap-unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  margin-left: 1px;
  margin-right: 6px;
}

.venue-cap .cap-sep {
  font-size: 18px;
  color: var(--bronze);
  margin: 0 4px;
}

.venue-cap .cap-extra {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-size: 10px;
  color: var(--bronze);
  margin-left: auto;
  letter-spacing: .05em;
}

/* ===== Course Cards ===== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 60px 0 50px;
}

.course-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(125,95,56,0.1);
}

.course-image {
  height: 320px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .5s;
}

.course-image img:hover { transform: scale(1.03); }

.course-body { padding: 32px 36px 32px; }

.course-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 12px;
}

.course-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: .02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--forest);
}

.course-price .yen { font-size: 22px; }

.course-price .num { font-size: 44px; line-height: 1; }

.course-price .suffix {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
  margin-left: 8px;
  font-weight: 400;
}

.course-divider {
  width: 32px;
  height: 1px;
  background: var(--bronze);
  margin: 18px 0 20px;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.menu-list li {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.menu-list li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 2px;
  color: var(--bronze);
  font-size: 9px;
}

/* ===== 飲み放題 ===== */
.drink-block {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 36px 40px 32px;
  margin-bottom: 40px;
}

.drink-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.drink-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: .04em;
}

.drink-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-left: 10px;
  font-weight: 400;
}

.drink-time {
  font-family: 'Cormorant Garamond', serif;
  color: var(--bronze);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 6px 14px;
  background: rgba(125,95,56,0.08);
  border-radius: 2px;
}

.drink-time-num {
  font-size: 24px;
  letter-spacing: .02em;
  color: var(--forest);
  font-weight: 500;
}

.drink-time-unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
}

.drink-note-line {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--bronze);
  margin-bottom: 18px;
}

.drink-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 16px;
}

.drink-list li {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}

.drink-list li::before {
  content: '—';
  position: absolute;
  left: 0; top: 0;
  color: var(--bronze);
  font-family: 'Cormorant Garamond', serif;
}

/* ===== Cautions ===== */
.caution-block {
  background: rgba(125,95,56,0.05);
  border: 1px solid var(--line);
  border-left: 3px solid var(--bronze);
  padding: 24px 32px 22px;
  margin-bottom: 70px;
}

.caution-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.caution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.caution-list li {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.8;
}

.caution-list li::before {
  content: '※';
  position: absolute;
  left: 0; top: 1px;
  color: var(--bronze);
}

.caution-list li strong { color: var(--forest); font-weight: 500; }

/* ===== その他プラン ===== */
.other-plans {
  border-top: 1px solid var(--line);
  padding-top: 50px;
}

.other-plans-head { text-align: center; margin-bottom: 40px; }

.other-plans-head h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 10px;
}

.other-plans-head h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-left: 10px;
  font-weight: 400;
}

.other-plans-head p {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
}

.other-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.other-plan-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 22px 20px 20px;
  text-align: center;
  transition: all .3s;
}

.other-plan-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
}

.other-plan-card h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 12px;
  letter-spacing: .04em;
}

.other-plan-price {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.other-plan-price .yen { font-size: 14px; color: var(--bronze); }

.other-plan-price .num {
  font-size: 26px;
  letter-spacing: .02em;
  font-weight: 500;
}

.other-plan-price .other-plan-from {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--forest);
  font-weight: 400;
}

.other-plan-price .suffix {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  color: var(--ink);
  margin-left: 4px;
  font-weight: 400;
}

.other-plan-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.7;
}

.plan-source-note {
  margin-top: 24px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: .05em;
}

@media (max-width: 900px) {
  .course-grid { grid-template-columns: 1fr; gap: 20px; margin: 40px 0 30px; }
  .course-image { height: 240px; }
  .course-body { padding: 24px 22px 26px; }
  .course-price .num { font-size: 36px; }
  .drink-block { padding: 24px 22px; }
  .drink-list { grid-template-columns: 1fr 1fr; }
  .caution-block { padding: 18px 20px; }
  .other-plans-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .venue-cap .cap-num { font-size: 26px; }
}

/* ===== Guide (ご利用案内ページ) ===== */
.page-hero-guide::before { content: 'Guide'; }

.page-hero-company::before { content: 'Company'; }

.page-hero-privacy::before { content: 'Privacy'; }

.guide-container {
  padding: 100px 80px 140px;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.guide-section:last-of-type { border-bottom: 0; }

.guide-section:first-of-type { padding-top: 40px; }

.guide-head {
  position: relative;
}

.guide-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 18px;
}

.guide-icon {
  width: 40px;
  height: 40px;
  color: var(--bronze);
  margin-bottom: 22px;
}

.guide-icon svg { width: 100%; height: 100%; }

.guide-head h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.45;
  color: var(--forest);
  letter-spacing: .04em;
}

.guide-head h2 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 8px;
  font-weight: 400;
}

.guide-divider {
  width: 36px;
  height: 1px;
  background: var(--bronze);
  margin-top: 22px;
}

.guide-body {
  padding-top: 8px;
}

.guide-table {
  display: flex;
  flex-direction: column;
}

.guide-table .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.guide-table .row:first-child { border-top: 1px solid var(--line); }

.guide-table dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
  text-transform: uppercase;
}

.guide-table dt::before {
  content: '— ';
}

.guide-table dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}

.guide-table dd strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: .02em;
  margin-right: 4px;
}

.guide-table dd .tel-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--forest);
}

.guide-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(125,95,56,0.06);
  border-left: 2px solid var(--bronze);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
  letter-spacing: .02em;
}

.guide-para {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 14px;
}

.guide-link {
  color: var(--bronze);
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}

.guide-link:hover { color: var(--forest); border-color: var(--forest); }

@media (max-width: 900px) {
  .guide-container { padding: 60px 24px 80px; }
  .guide-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 0;
  }
  .guide-head h2 { font-size: 22px; }
  .guide-table .row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .guide-table dt { font-size: 11px; }
  .guide-table dd { font-size: 14px; }
  .guide-table dd .tel-big { font-size: 24px; }
}

/* ===== Cancel Policy (表形式 + 数字強調) ===== */
.cancel-subhead {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--bronze);
  margin: 36px 0 8px;
}
.cancel-subhead:first-child { margin-top: 0; }

.cancel-table .row {
  align-items: center;
  padding: 22px 0;
}

.cancel-table dt {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--forest);
  text-transform: none;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.cancel-table dt::before { content: '—'; color: var(--bronze); margin-right: 8px; font-family: 'Cormorant Garamond', serif; }

.cancel-table dt .hi {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 30px;
  color: var(--bronze);
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 2px;
}

@media (max-width: 900px) {
  .cancel-table dt .hi { font-size: 26px; }
}

/* ===== Guide Figure (画像) ===== */
.guide-figure {
  margin-top: 24px;
  text-align: center;
}

.guide-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  transition: opacity .3s, transform .4s;
}

.guide-figure img:hover { opacity: 0.92; transform: scale(1.01); }

.guide-figure figcaption {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
  text-align: center;
}

@media (max-width: 900px) {
}

/* ===== Dining Page ===== */
.page-hero-dining::before { content: 'Dining'; }

/* dining-intro */
.dining-intro {
  padding: 120px 80px;
  background: var(--cream);
}

.dining-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.dining-intro-text .dining-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 18px;
}

.dining-intro-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 38px;
  letter-spacing: .04em;
  color: var(--forest);
  line-height: 1.4;
}

.dining-intro-text h2 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 8px;
  font-weight: 400;
}

.dining-divider {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin: 22px 0 26px;
}

.dining-intro-text p {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 18px;
}

.dining-intro-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .5s;
  border: 1px solid var(--line);
}

.dining-intro-image img:hover { transform: scale(1.02); }

/* breakfast */
.dining-breakfast {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
}

.dining-breakfast-inner { max-width: 1100px; margin: 0 auto; }

.breakfast-info {
  max-width: 720px;
  margin: 50px auto 60px;
}

.dining-table { display: flex; flex-direction: column; }

.dining-table .row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.dining-table .row:first-child { border-top: 1px solid var(--line); }

.dining-table dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
}

.dining-table dt::before { content: '— '; }

.dining-table dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}

.dining-table dd strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: .02em;
  margin: 0 2px;
}

.dining-note {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(125,95,56,0.06);
  border-left: 2px solid var(--bronze);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
}

.breakfast-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bg-thumb {
  height: 240px;
  overflow: hidden;
  background: var(--sand);
}

.bg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .5s, opacity .3s;
}

.bg-thumb img:hover { transform: scale(1.05); opacity: 0.92; }

/* services */
.dining-services {
  padding: 120px 80px;
  background: var(--cream);
}

.dining-services-inner { max-width: 1100px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.services-grid-single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 40px 36px 36px;
  transition: all .3s;
}

.service-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(125,95,56,0.1);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--bronze);
  margin-bottom: 22px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--forest);
  line-height: 1.4;
}

.service-card h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 6px;
  font-weight: 400;
}

.service-divider {
  width: 30px;
  height: 1px;
  background: var(--bronze);
  margin: 18px 0 18px;
}

.service-card p {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 2;
  color: var(--ink);
}

/* notice */
.dining-notice-section {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand-deep) 100%);
}

.dining-notice-inner { max-width: 900px; margin: 0 auto; }

.dining-notice {
  background: var(--cream-light);
  border: 1px solid rgba(168,98,63,0.45);
  border-left: 4px solid #A8623F;
  padding: 36px 40px;
  text-align: center;
}

.notice-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .4em;
  color: #A8623F;
  margin-bottom: 14px;
}

.dining-notice h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: .04em;
}

.dining-notice p {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
}

.dining-notice p { margin-bottom: 10px; }

.dining-notice p:last-child { margin-bottom: 0; }

.dining-notice-tel {
  margin-top: 16px !important;
  padding: 12px 18px;
  background: rgba(125,95,56,0.08);
  border: 1px solid var(--line);
  display: inline-block;
}

.dining-notice-tel strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: .04em;
  margin: 0 4px;
}

.dining-notice-link-row {
  font-size: 13px !important;
  margin-top: 12px !important;
}

.dining-notice strong { color: var(--forest); font-weight: 500; }

.dining-link {
  color: var(--bronze);
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 1px;
  transition: color .3s, border-color .3s;
}

.dining-link:hover { color: var(--forest); border-color: var(--forest); }

@media (max-width: 900px) {
  .dining-intro { padding: 60px 24px; }
  .dining-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .dining-intro-text h2 { font-size: 28px; }
  .dining-intro-image img { height: 280px; }
  .dining-breakfast { padding: 70px 24px; }
  .breakfast-info { margin: 40px 0; }
  .dining-table .row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .breakfast-gallery { grid-template-columns: 1fr; gap: 12px; }
  .bg-thumb { height: 220px; }
  .dining-services { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .dining-notice-section { padding: 60px 24px; }
  .dining-notice { padding: 28px 22px; }
  .dining-notice h3 { font-size: 18px; }
}

/* ===== FAQ Page ===== */
.page-hero-faq::before { content: 'FAQ'; }

.faq-section { padding: 90px 80px; background: var(--cream); }

.faq-inner { max-width: 1000px; margin: 0 auto; }

/* カテゴリナビ */
.faq-cat-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 60px;
}

.faq-cat-nav a {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--forest);
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid var(--line);
  transition: all .3s;
}

.faq-cat-nav a:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

/* カテゴリブロック */
.faq-cat {
  margin-bottom: 70px;
  scroll-margin-top: 170px;
}

@media (max-width: 900px) {
  .faq-cat { scroll-margin-top: 90px; }
}

.faq-cat:last-child { margin-bottom: 0; }

.faq-cat-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.faq-cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--bronze);
  flex-shrink: 0;
}

.faq-cat-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--forest);
}

.faq-cat-name em {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--bronze);
  margin-left: 14px;
  font-weight: 400;
}

/* FAQアイテム(detailsベース) */
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}

.faq-item[open] { background: rgba(245,235,216,0.5); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px 22px 0;
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 18px;
  align-items: start;
  position: relative;
  transition: color .3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--bronze); }

.faq-item summary:hover .faq-q-mark { color: var(--bronze); }

.faq-q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--bronze);
  line-height: 1.3;
  transition: color .3s;
}

.faq-q-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--forest);
  line-height: 1.7;
  letter-spacing: .04em;
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  align-self: start;
  justify-self: end;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--bronze);
  transition: transform .3s;
}

.faq-toggle::before {
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-toggle::after { transform: translateX(-50%) rotate(90deg); }

.faq-item .faq-a {
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 18px;
  padding: 0 24px 28px 0;
  animation: faqOpen .35s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-a-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--moss);
  line-height: 1.3;
}

.faq-a-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 2;
  color: var(--ink);
  letter-spacing: .04em;
}

.faq-a-text p { margin-bottom: 10px; }

.faq-a-text p:last-child { margin-bottom: 0; }

.faq-a-text ul {
  list-style: none;
  margin: 8px 0 4px;
  padding: 0;
}

.faq-a-text ul li {
  padding-left: 18px;
  position: relative;
  line-height: 1.85;
}

.faq-a-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-family: 'Cormorant Garamond', serif;
}

.faq-a-text a {
  color: var(--bronze);
  text-decoration: none;
  border-bottom: 1px solid rgba(125,95,56,0.3);
  transition: color .3s, border-color .3s;
}

.faq-a-text a:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

.faq-pending {
  display: inline-block;
  background: rgba(212,176,116,0.18);
  border: 1px solid rgba(125,95,56,0.4);
  color: var(--bronze);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 2px 9px;
  margin-right: 6px;
  border-radius: 2px;
  font-weight: 500;
  vertical-align: 1px;
}

@media (max-width: 900px) {
  .faq-section { padding: 60px 24px; }
  .faq-cat-nav { gap: 8px; margin: 28px 0 40px; }
  .faq-cat-nav a { padding: 8px 14px; font-size: 12px; }
  .faq-cat { margin-bottom: 50px; }
  .faq-cat-name { font-size: 18px; }
  .faq-cat-name em { display: block; margin-left: 0; margin-top: 6px; font-size: 12px; }
  .faq-item summary {
    grid-template-columns: 28px 1fr 18px;
    gap: 12px;
    padding: 18px 16px 18px 0;
  }
  .faq-q-mark { font-size: 18px; }
  .faq-q-text { font-size: 14px; }
  .faq-item .faq-a {
    grid-template-columns: 28px 1fr 18px;
    gap: 12px;
    padding: 0 16px 22px 0;
  }
  .faq-a-mark { font-size: 18px; }
  .faq-a-text { font-size: 13px; }
}

/* ===== Sightseeing Page ===== */
.page-hero-sightseeing::before { content: 'Sightseeing'; }

/* セクションタブ */
.sight-section-wrap { padding: 90px 80px; background: var(--cream); }

.sight-inner { max-width: 1200px; margin: 0 auto; }

.sight-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 50px 0 60px;
  flex-wrap: wrap;
}

.sight-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 22px 38px 20px;
  cursor: pointer;
  transition: all .3s;
  min-width: 200px;
  font-family: inherit;
  color: var(--forest);
}

.sight-tab:hover { border-color: var(--bronze); color: var(--bronze); }

.sight-tab svg { width: 24px; height: 24px; color: var(--bronze); }

.sight-tab .st-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  margin-top: 4px;
}

.sight-tab .st-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .15em;
  opacity: 0.92;
  margin-top: 2px;
}

.sight-tab.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.sight-tab.active svg { color: #D4B074; }

/* カテゴリのコンテンツ */
.sight-cat {
  transition: opacity .35s ease, transform .35s ease;
}

.sight-cat.is-fading { opacity: 0; transform: translateY(8px); }

.sight-cat.hidden { display: none; }

.sight-cat-head { text-align: center; margin-bottom: 40px; }

.sight-cat-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.sight-cat-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: .06em;
  color: var(--forest);
  margin-bottom: 8px;
}

.sight-cat-title em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 10px;
  font-weight: 400;
}

.sight-cat-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
  max-width: 580px;
  margin: 20px auto 0;
}

/* スポットカードグリッド */
.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.spot-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 36px 40px 34px;
  transition: all .35s;
  position: relative;
}

.spot-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(125,95,56,0.1);
}

.spot-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.spot-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  flex-shrink: 0;
}

.spot-card-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--forest);
  flex: 1;
  min-width: 200px;
}

.spot-card-title em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 6px;
  font-weight: 400;
}

.spot-card-time {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--bronze);
  padding: 10px 20px;
  flex-shrink: 0;
}

.spot-card-time .mode {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--bronze);
}

.spot-card-time .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
}

.spot-card-time .unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: .04em;
}

.spot-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 18px;
}

.spot-meta {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 18px;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.spot-meta dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--bronze);
}

.spot-meta dt::before { content: '— '; }

.spot-meta dd { color: var(--ink); }

.spot-note {
  padding: 12px 16px;
  background: rgba(125,95,56,0.06);
  border-left: 2px solid var(--bronze);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 22px;
}

.spot-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.spot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--forest);
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid var(--line);
  transition: all .3s;
}

.spot-link:hover { border-color: var(--bronze); color: var(--bronze); }

.spot-link.is-primary {
  background: var(--bronze);
  color: var(--cream);
  border-color: var(--bronze);
}

.spot-link.is-primary:hover {
  background: #D4B074;
  color: var(--forest-deep);
  border-color: #D4B074;
}

.spot-link svg { width: 14px; height: 14px; fill: currentColor; }

.spot-link .ja {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .1em;
  margin-left: 4px;
  opacity: 0.85;
}

/* 北海道全域マップ */
.hokkaido-section {
  padding: 110px 80px;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--sand) 100%);
}

.hokkaido-inner { max-width: 1100px; margin: 0 auto; }

.hokkaido-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.hokkaido-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
}

.hokkaido-card,
.hokkaido-card * { text-decoration: none; }

.hokkaido-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(125,95,56,0.1);
}

.hokkaido-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--bronze);
}

.hokkaido-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.hokkaido-card-time {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.hokkaido-card-time svg {
  width: 18px; height: 18px;
  color: var(--bronze);
  align-self: center;
  margin-right: 4px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.hokkaido-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--forest);
  letter-spacing: .02em;
  font-weight: 500;
  line-height: 1;
}

.hokkaido-card-unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
}

.hokkaido-card-mode {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--bronze);
  margin-left: auto;
}

.hokkaido-note {
  max-width: 760px;
  margin: 30px auto 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--bronze);
  line-height: 1.8;
  letter-spacing: .04em;
  text-align: center;
}

.hokkaido-note-top {
  margin: 24px auto 0;
}

@media (max-width: 900px) {
  .sight-section-wrap { padding: 60px 24px; }
  .sight-tabs { gap: 10px; margin: 30px 0 40px; }
  .sight-tab { min-width: 140px; padding: 16px 18px; }
  .sight-cat-title { font-size: 22px; }
  .spot-card { padding: 26px 22px 24px; }
  .spot-card-title { font-size: 18px; }
  .spot-card-time { padding: 6px 12px; font-size: 12px; }
  .spot-card-time .num { font-size: 15px; }
  .spot-meta { grid-template-columns: 90px 1fr; font-size: 12px; gap: 6px 14px; }
  .hokkaido-section { padding: 70px 24px; }
  .hokkaido-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .hokkaido-card { padding: 22px 20px; }
  .hokkaido-card-name { font-size: 18px; }
  .hokkaido-card-num { font-size: 24px; }
}

/* ===== Access Page (継承) ===== */
.page-hero-access::before { content: 'Access'; }

/* ===== Floor Map ===== */
.page-hero-floor::before { content: 'Floor'; }

.floor-container {
  padding: 100px 80px 140px;
  max-width: 1200px;
  margin: 0 auto;
}

.floor-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.floor-section:last-of-type { border-bottom: 0; }

.floor-section:first-of-type { padding-top: 30px; }

.floor-head { text-align: center; margin-bottom: 50px; }

.floor-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.floor-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  letter-spacing: .04em;
  color: var(--forest);
  line-height: 1;
}

.floor-head h2 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--bronze);
  margin-top: 14px;
  font-weight: 400;
}

.floor-divider {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin: 22px auto;
}

.floor-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
  max-width: 580px;
  margin: 0 auto;
}

.floor-body { display: block; }

.floor-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.floor-cat {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 28px 28px 26px;
  transition: all .3s;
}

.floor-cat:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(125,95,56,0.08);
}

.floor-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.floor-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.floor-items li {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}

.floor-items li::before {
  content: '—';
  position: absolute;
  left: 0; top: 0;
  color: var(--bronze);
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 900px) {
  .floor-container { padding: 60px 24px 80px; }
  .floor-section { padding: 50px 0; }
  .floor-head h2 { font-size: 48px; }
  .floor-cats { grid-template-columns: 1fr; gap: 16px; }
  .floor-cat { padding: 22px 20px; }
}

/* ===== HERO D 共通 ===== */
.hero-d {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 210px 60px 60px;
  display: flex;
  align-items: flex-start;
}

/* ===== Kaiseki Page ===== */
.page-hero-kaiseki::before { content: 'Kaiseki'; }

/* イベント別用途 */
.kaiseki-occasions {
  padding: 100px 80px;
  background: var(--cream);
}

.kaiseki-occasions-inner { max-width: 1200px; margin: 0 auto; }

.kaiseki-occ-intro {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  margin-top: 18px;
}

.occ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.occ-grid > .occ-card:nth-child(4),
.occ-grid > .occ-card:nth-child(5) {
  /* 4枚目・5枚目はそのまま流す(3カラム→2行目)*/
}

.occ-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 32px 30px 30px;
  transition: all .3s;
}

.occ-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(125,95,56,0.08);
}

.occ-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 14px;
}

.occ-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: .04em;
  line-height: 1.4;
}

.occ-card h3 em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-top: 6px;
  font-weight: 400;
}

.occ-divider {
  width: 28px;
  height: 1px;
  background: var(--bronze);
  margin: 16px 0 16px;
}

.occ-card p {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
}

/* 3カラムコース */
.course-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* 祭壇 */
.altar-block {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 40px 44px 36px;
  margin: 60px 0 40px;
}

.altar-head { text-align: center; margin-bottom: 26px; }

.altar-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 12px;
}

.altar-head h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: .04em;
}

.altar-head h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-left: 10px;
  font-weight: 400;
}

.altar-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.altar-price-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--bronze);
}

.altar-price {
  font-family: 'Cormorant Garamond', serif;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--forest);
}

.altar-price .yen { font-size: 20px; }

.altar-price .num { font-size: 40px; font-weight: 500; letter-spacing: .02em; }

.altar-includes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin-bottom: 20px;
}

.altar-includes li {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}

.altar-includes li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 2px;
  color: var(--bronze);
  font-size: 9px;
}

.altar-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--bronze);
  line-height: 1.8;
}

/* お祝いの席 */
.celebration-block {
  background: rgba(125,95,56,0.05);
  border: 1px solid var(--line);
  padding: 32px 40px 30px;
  margin-bottom: 40px;
}

.celebration-head h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 14px;
  letter-spacing: .04em;
}

.celebration-head h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--bronze);
  margin-left: 10px;
  font-weight: 400;
}

.celebration-head p {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.95;
}

@media (max-width: 900px) {
  .kaiseki-occasions { padding: 60px 24px; }
  .occ-grid { grid-template-columns: 1fr; gap: 16px; }
  .course-grid-3 { grid-template-columns: 1fr !important; }
  .altar-block { padding: 28px 22px; }
  .altar-includes { grid-template-columns: 1fr 1fr; }
  .altar-price .num { font-size: 30px; }
  .celebration-block { padding: 22px 22px; }
}

/* altar-image */
.altar-image {
  margin: 0 -44px 28px;
  height: 280px;
  overflow: hidden;
}

.altar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .5s;
}

.altar-image img:hover { transform: scale(1.02); }

/* celebration-cat */
.celebration-cat {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.celebration-cat:first-of-type {
  margin-top: 32px;
  padding-top: 28px;
}

.celebration-cat-head {
  margin-bottom: 22px;
  text-align: left;
}

.celebration-cat-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--bronze);
  margin-bottom: 8px;
}

.celebration-cat h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--forest);
  letter-spacing: .04em;
}

/* 長寿・冠礼 共通リスト */
.celebration-list {
  display: flex;
  flex-direction: column;
}

.cel-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.cel-row:first-child { border-top: 1px solid var(--line); }

.cel-row dt {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.cel-row .cel-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--forest);
  font-weight: 500;
}

.cel-row .cel-age {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--bronze);
  letter-spacing: .02em;
}

.cel-row dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink);
}

.cel-note {
  margin-top: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: .05em;
}

/* 結婚記念日 2カラム */
.anniv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  border-top: 1px solid var(--line);
}

.ann-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.ann-row dt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--bronze);
}

.ann-row dd {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--forest);
}

@media (max-width: 900px) {
  .altar-image { margin: 0 -22px 22px; height: 200px; }
  .cel-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .anniv-list { grid-template-columns: 1fr; gap: 0; }
  .ann-row { grid-template-columns: 80px 1fr; }
}

/* ===== News (お知らせ) ===== */
.page-hero-news::before { content: 'News'; }

.news-container {
  padding: 100px 80px 140px;
  max-width: 1040px;
  margin: 0 auto;
}

/* --- タグ(一覧・詳細 共通) --- */
.news-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--moss);
  border: 1px solid var(--moss);
  padding: 4px 14px;
}

/* --- 一覧:カード --- */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  text-decoration: none;
  transition: opacity .3s;
}

.news-card:first-of-type { padding-top: 8px; }

.news-card:hover { opacity: .72; }

.news-card-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.news-card:hover .news-card-thumb img { transform: scale(1.05); }

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.news-card-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: .06em;
  color: var(--bronze);
}

.news-card-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.news-card-excerpt {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-more {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--bronze);
}

.news-card-more em { font-style: normal; margin-left: 6px; }

/* --- ページネーション --- */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 64px;
}

.news-pagination a,
.news-pagination span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: all .3s;
}

.news-pagination a:hover { border-color: var(--bronze); color: var(--bronze); }

.news-pagination .current {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream-light);
}

/* --- 記事詳細 --- */
.news-article {
  max-width: 760px;
  margin: 0 auto;
}

.news-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.news-article-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--bronze);
}

.news-article-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.5;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.news-article-divider {
  width: 40px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 40px;
}

.news-article-body p {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 22px;
}

.news-article-figure { margin: 36px 0; }

.news-article-figure img { width: 100%; display: block; }

.news-article-figure figcaption {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--bronze);
  margin-top: 10px;
  text-align: center;
}

.news-back {
  text-align: center;
  margin-top: 64px;
}

.news-back a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--bronze);
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 3px;
}

@media (max-width: 900px) {
  .news-container { padding: 60px 24px 80px; }
  .news-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  .news-card-title { font-size: 19px; }
  .news-article-title { font-size: 23px; }
  .news-pagination { margin-top: 44px; }
}

/* ===== Privacy Policy ===== */
.policy-container {
  padding: 100px 80px 140px;
  max-width: 860px;
  margin: 0 auto;
}

.policy-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 52px;
}

.policy-section { margin-bottom: 40px; }

.policy-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--forest);
  letter-spacing: .04em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.policy-section h2 .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--bronze);
  margin-right: 14px;
}

.policy-section p {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 2.05;
  color: var(--ink);
}

.policy-section ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.policy-section ul li {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 1px;
  background: var(--bronze);
}

.policy-meta {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 2;
  color: var(--bronze);
  text-align: right;
}

@media (max-width: 900px) {
  .policy-container { padding: 60px 24px 80px; }
  .policy-section h2 { font-size: 16px; }
}