/* KYABEL SITE 61 HOTEL MINIMAL / style.css
   2カラム中心・建築/席写真を大きく・シルバーの細枠が署名。明るい石とネイビー。
   本文16px以上・ナビ/ボタン14px以上・注釈14px以上・コントラスト4.5:1。 */

/* ============ ベース ============ */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--gutter) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--sec-pad); position: relative; overflow-x: clip; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4rem); }

a { color: inherit; }
strong { font-weight: 700; }

/* 見出し体系 */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin: 0 0 0.9rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--silver-line); }
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--ink);
}
.h2 .ja { display: block; font-family: var(--font-body); font-size: 0.92rem; letter-spacing: 0.24em; color: var(--ink-2); margin-top: 0.55rem; font-weight: 600; }
.lead { font-size: var(--fs-lead); line-height: 1.85; color: var(--slate); max-width: 46ch; }
.sec-head { margin-bottom: clamp(1.8rem, 4vw, 3rem); }

/* ============ ボタン ============ */
.btn {
  --h: 3rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: var(--h); padding: 0 1.5rem;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; line-height: 1.2;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(35,50,78,0.06); }
.btn--line { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--line:hover { background: var(--navy); color: var(--white); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============ ヘッダー ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-shrunk { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 4.4rem; }
.brand { display: flex; flex-direction: column; line-height: 1.05; margin-right: auto; }
.brand__mark { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: 0.14em; color: var(--navy); }
.brand__sub { font-size: 0.7rem; letter-spacing: 0.42em; color: var(--stone-deep); margin-top: 0.2rem; }
.nav { display: flex; gap: 1.5rem; }
.nav__link {
  font-family: var(--font-display); font-size: 0.92rem; letter-spacing: 0.1em;
  color: var(--navy); padding: 0.4rem 0; position: relative;
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--navy); transition: width var(--dur) var(--ease); }
.nav__link:hover::after, .nav__link:focus-visible::after { width: 100%; }
.header__cta { --h: 2.6rem; }

.hamburger {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
}
.hamburger span, .hamburger::before, .hamburger::after { content: ""; display: block; width: 20px; height: 2px; background: var(--navy); }

/* ============ ドロワー ============ */
#drawer-backdrop {
  position: fixed; inset: 0; z-index: 70; background: rgba(26,39,64,0.4);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
#drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 80; width: min(88vw, 360px); height: 100%;
  background: var(--white); border-left: 1px solid var(--silver);
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column; padding: 1.4rem;
}
.drawer.is-open { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.drawer__close { width: 44px; height: 44px; font-size: 1.8rem; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.drawer__nav { display: flex; flex-direction: column; margin-top: 0.6rem; }
.drawer__nav a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1rem 0.2rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); color: var(--navy);
}
.drawer__nav a .en { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em; color: var(--stone-deep); }
.drawer__foot { margin-top: auto; display: grid; gap: 0.7rem; padding-top: 1.2rem; }

/* ============ ヒーロー ============ */
#hero { padding-block: clamp(2.4rem, 5vw, 4.2rem) clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.hero__grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: center; }
.hero__eyebrow { font-family: var(--font-display); letter-spacing: 0.3em; font-size: 0.82rem; color: var(--ink-2); text-transform: uppercase; }
.hero__title {
  font-family: var(--font-display); font-size: var(--fs-display); line-height: 1.08;
  letter-spacing: 0.005em; color: var(--navy); margin: 1rem 0 1.3rem;
}
.hero__lead { font-size: var(--fs-lead); line-height: 1.85; color: var(--slate); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero__actions .btn { --h: 3.25rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; margin-top: 1.8rem;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta dt { font-size: 0.78rem; letter-spacing: 0.16em; color: var(--stone-deep); font-family: var(--font-display); text-transform: uppercase; }
.hero__meta dd { font-size: 1rem; font-weight: 600; color: var(--navy); }
.hero__meta .status { color: #2f6b4a; }

/* ヒーロー写真＋前景の細い枠（パララックス2層） */
.hero__media { position: relative; }
.hero__photo { position: relative; overflow: hidden; border-radius: var(--radius); }
.hero__photo .ph { border-radius: var(--radius); }
.hero__frame {
  position: absolute; inset: 14px; border: 1px solid var(--silver); pointer-events: none;
  border-radius: var(--radius); z-index: 2;
}
.hero__stamp {
  position: absolute; left: 18px; bottom: 16px; z-index: 3;
  background: rgba(250,250,248,0.92); border: 1px solid var(--silver);
  padding: 0.5rem 0.9rem; font-family: var(--font-display); letter-spacing: 0.14em;
  font-size: 0.82rem; color: var(--navy);
}

/* ============ 画像イメージ ============ */
.ph { position: relative; overflow: hidden; background: var(--beige-soft); margin: 0; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph--r21x9 { aspect-ratio: 21 / 9; }
.ph--r16x9 { aspect-ratio: 16 / 9; }
.ph--r3x2 { aspect-ratio: 3 / 2; }
.ph--r4x3 { aspect-ratio: 4 / 3; }
.ph--r1x1 { aspect-ratio: 1 / 1; }
.ph--r3x4 { aspect-ratio: 3 / 4; }
.ph--r4x5 { aspect-ratio: 4 / 5; }
.ph--frame::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,0.55); pointer-events: none; }
.ph__label { position: absolute; left: 10px; bottom: 8px; font-size: 0.72rem; letter-spacing: 0.12em; color: var(--navy); opacity: 0; }
.ph.is-broken { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--beige-soft), var(--beige)); }
.ph.is-broken img { display: none; }
.ph.is-broken .ph__label { position: static; opacity: 0.85; font-size: 0.85rem; }

/* ============ タグ ============ */
.tag {
  display: inline-flex; align-items: center; padding: 0.22rem 0.6rem;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; border-radius: var(--radius-sm);
  border: 1px solid var(--line-2); color: var(--navy); background: var(--white);
}
.tag--today { background: var(--navy); color: var(--white); border-color: var(--navy); }
.tag--new { background: var(--beige); color: var(--stone-deep); border-color: var(--silver); }
.tag--cat { background: transparent; }

/* ============ RESERVATION PANEL（署名） ============ */
#reserve { background: var(--navy); color: var(--white); }
#reserve .eyebrow, #reserve .h2 { color: var(--white); }
#reserve .eyebrow { color: rgba(255,255,255,0.72); }
#reserve .h2 .ja { color: rgba(255,255,255,0.7); }
.reserve__inner { display: grid; gap: clamp(1.6rem, 3vw, 2.6rem); }
.reserve__intro p { color: rgba(255,255,255,0.82); font-size: var(--fs-lead); line-height: 1.8; }
.reserve__panel { background: var(--white); color: var(--navy); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }

.rsteps { display: flex; gap: 0.5rem; margin-bottom: 1.6rem; counter-reset: step; }
.rsteps li {
  flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  counter-increment: step; color: var(--stone-deep); text-align: center;
}
.rsteps li::before {
  content: counter(step);
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  border: 1px solid var(--silver); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--stone-deep);
}
.rsteps li span { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.04em; font-weight: 500; line-height: 1.3; }
.rsteps li.is-active { color: var(--navy); }
.rsteps li.is-active::before { border-color: var(--navy); background: var(--navy); color: var(--white); }
.rsteps li.is-done::before { border-color: var(--navy); background: var(--navy); color: var(--white); }

.rpanel__q { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.ropts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.7rem; }
.ropt {
  display: flex; flex-direction: column; gap: 0.2rem; text-align: left;
  padding: 0.9rem 1rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.ropt:hover { border-color: var(--navy); }
.ropt.is-active { border-color: var(--navy); background: var(--beige-soft); box-shadow: inset 0 0 0 1px var(--navy); }
.ropt__en { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em; color: var(--stone-deep); }
.ropt__ja { font-size: 1.02rem; font-weight: 600; }
.ropt__cap { font-size: 0.84rem; color: var(--slate); }

.rfields { display: grid; gap: 1rem; }
.rfield { display: flex; flex-direction: column; gap: 0.4rem; }
.rfield span { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.rfield input, .rfield select {
  min-height: 3rem; padding: 0 0.9rem; font-size: 1rem; color: var(--navy);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--white);
}
.rsummary { display: grid; gap: 0.6rem; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; }
.rsummary div { display: grid; grid-template-columns: 6.5rem minmax(0,1fr); gap: 0.6rem; }
.rsummary dt { font-size: 0.9rem; color: var(--stone-deep); font-weight: 600; }
.rsummary dd { font-size: 1.02rem; font-weight: 600; color: var(--navy); }
.rpanel__note { font-size: var(--fs-small); color: var(--slate); margin-top: 1rem; line-height: 1.7; }
.rnav { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.rnav .btn { flex: 0 0 auto; }
.rnav [data-res-next], .rnav [data-res-submit] { margin-left: auto; }

/* ============ CONCEPT ============ */
.concept__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.concept__body p { margin-top: 1rem; color: var(--slate); font-size: 1.02rem; line-height: 1.9; }
.concept__body p:first-of-type { color: var(--ink); }
.concept__media { position: relative; }
.concept__media .hero__frame { inset: 12px; }

/* ============ STAFF ============ */
.staff-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.staff-today { display: inline-flex; align-items: baseline; gap: 0.5rem; border: 1px solid var(--silver); border-radius: var(--radius-sm); padding: 0.6rem 1rem; background: var(--white); }
.staff-today strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); }
.staff-today span { font-size: 0.9rem; color: var(--slate); }
.staff__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(1rem, 2.5vw, 1.8rem); }
.staff { }
.staff__link { display: block; }
.staff__media { position: relative; overflow: hidden; }
.staff__media .tag { position: absolute; top: 10px; left: 10px; z-index: 2; }
.staff__media .ph img { transition: transform 0.9s var(--ease); }
.staff__link:hover .ph img { transform: scale(1.03); }
.staff__body { padding-top: 1rem; }
.staff__role { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.14em; color: var(--stone-deep); text-transform: uppercase; }
.staff__name { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); display: flex; align-items: baseline; gap: 0.6rem; margin-top: 0.3rem; }
.staff__reading { font-family: var(--font-body); font-size: 0.9rem; color: var(--slate); }
.staff__msg { font-size: 0.96rem; line-height: 1.8; color: var(--slate); margin-top: 0.6rem; }

/* ============ SEATS（席種比較） ============ */
.seat__cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(1.2rem, 3vw, 2.2rem); }
.seatcard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.seatcard.is-flash { box-shadow: 0 0 0 2px var(--navy), var(--shadow); }
.seatcard__body { padding: 1.2rem 1.3rem 1.5rem; }
.seatcard__en { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.16em; color: var(--stone-deep); }
.seatcard__name { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-top: 0.2rem; }
.seatcard__desc { font-size: 0.98rem; line-height: 1.8; color: var(--slate); margin-top: 0.6rem; }
.seatcard__meta { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.6rem; margin-top: 1.1rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.seatcard__meta dt { font-size: 0.76rem; letter-spacing: 0.08em; color: var(--stone-deep); }
.seatcard__meta dd { font-size: 0.98rem; font-weight: 600; color: var(--navy); margin-top: 0.15rem; }
.seatcard__good { font-size: 0.9rem; color: var(--slate); margin-top: 1rem; }
.seatcard__good span { display: block; font-size: 0.76rem; letter-spacing: 0.08em; color: var(--stone-deep); margin-bottom: 0.2rem; }

.compare { margin-top: clamp(2rem, 4vw, 3rem); }
.compare__head { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1rem; }
.compare__head h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.compare__head p { font-size: 0.9rem; color: var(--slate); }
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
#seat-compare { min-width: 640px; font-size: 0.95rem; }
#seat-compare thead th { background: var(--navy); color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.06em; padding: 0.8rem 0.9rem; white-space: nowrap; }
#seat-compare tbody th, #seat-compare tbody td { padding: 0.85rem 0.9rem; border-top: 1px solid var(--line); vertical-align: top; }
#seat-compare tbody tr { cursor: pointer; transition: background var(--dur) var(--ease); }
#seat-compare tbody tr:hover { background: var(--beige-soft); }
#seat-compare tbody tr.is-picked { background: var(--beige); box-shadow: inset 3px 0 0 var(--navy); }
.cmp__name { display: block; font-weight: 600; color: var(--navy); }
.cmp__en { display: block; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--stone-deep); }
.cmp__good { color: var(--slate); }
.compare__hint { font-size: 0.85rem; color: var(--slate); margin-top: 0.7rem; }

/* ============ SYSTEM ============ */
.sys__cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1rem, 2.5vw, 1.6rem); }
.syscard { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem 1.5rem; background: var(--white); }
.syscard__label { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.12em; color: var(--navy); display: flex; align-items: baseline; gap: 0.5rem; }
.syscard__label span { font-family: var(--font-body); font-size: 0.86rem; color: var(--stone-deep); letter-spacing: 0.04em; }
.syscard__price { margin: 0.7rem 0 0.6rem; display: flex; align-items: baseline; gap: 0.4rem; }
.syscard__price strong { font-family: var(--font-display); font-size: 2rem; color: var(--navy); }
.syscard__price span { font-size: 0.9rem; color: var(--slate); }
.syscard__desc { font-size: 0.95rem; line-height: 1.8; color: var(--slate); }
.syscard__note { font-size: var(--fs-small); color: var(--stone-deep); margin-top: 0.8rem; padding-top: 0.7rem; border-top: 1px solid var(--line); }

.sys-detail { margin-top: clamp(2rem, 4vw, 3rem); display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
.sys-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.sys-table { min-width: 460px; font-size: 0.98rem; }
.sys-table th[scope="row"] { padding: 0.9rem 1.1rem; font-weight: 600; color: var(--navy); border-top: 1px solid var(--line); }
.sys-table td { padding: 0.9rem 1.1rem; border-top: 1px solid var(--line); }
.sys-table tr:first-child th, .sys-table tr:first-child td { border-top: 0; }
.sysrow__detail { color: var(--slate); }
.sysrow__price { text-align: right; font-weight: 600; color: var(--navy); white-space: nowrap; }
.sys__notes { display: grid; gap: 0.5rem; }
.sys__notes li { position: relative; padding-left: 1.2rem; font-size: var(--fs-small); color: var(--slate); line-height: 1.7; }
.sys__notes li::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 6px; height: 6px; background: var(--silver); border-radius: 50%; }

/* ============ ETIQUETTE ============ */
.etq-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(1.2rem, 3vw, 2rem); margin-top: 1.6rem; }
.etq { display: flex; gap: 1rem; align-items: flex-start; }
.etq__no { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); border: 1px solid var(--silver); border-radius: 50%; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.etq__title { font-size: 1.12rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.etq__body p { font-size: 0.96rem; line-height: 1.8; color: var(--slate); }

/* ============ GALLERY ============ */
.gallery__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.9rem; grid-auto-flow: dense; }
.galcell { display: block; position: relative; overflow: hidden; border-radius: var(--radius-sm); text-align: left; }
.galcell .ph img { transition: transform 0.9s var(--ease); }
.galcell:hover .ph img { transform: scale(1.04); }
.galcell__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.7rem 0.9rem 0.6rem; font-size: 0.86rem; color: var(--white); background: linear-gradient(transparent, rgba(26,39,64,0.72)); }
.galcell--16x9 { grid-column: span 2; }
.galcell--4x5 { grid-row: span 2; }

/* ============ NEWS ============ */
.news-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.nrow { display: grid; gap: 0.4rem 1.6rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.nrow__meta { display: flex; align-items: center; gap: 0.8rem; }
.nrow__date { font-family: var(--font-mono); font-size: 0.84rem; color: var(--stone-deep); }
.nrow__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.nrow__body p { font-size: 0.96rem; line-height: 1.8; color: var(--slate); margin-top: 0.3rem; }

/* ============ RECRUIT band ============ */
.recruit { display: grid; gap: 1.6rem; }
.recruit__lead { font-size: var(--fs-lead); line-height: 1.85; color: var(--slate); max-width: 52ch; }
.recruit__points { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1rem,2.5vw,1.6rem); }
.rpoint { border-top: 2px solid var(--navy); padding-top: 1rem; }
.rpoint__title { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.rpoint p { font-size: 0.95rem; line-height: 1.8; color: var(--slate); }

/* ============ ACCESS ============ */
.access__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.access__map { border: 1px solid var(--silver); border-radius: var(--radius); overflow: hidden; }
.access__dl { display: grid; gap: 0; }
.access__dl div { display: grid; grid-template-columns: 7rem minmax(0,1fr); gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.access__dl dt { font-size: 0.9rem; font-weight: 600; color: var(--stone-deep); }
.access__dl dd { font-size: 1rem; color: var(--navy); line-height: 1.7; }
.access__dl a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.access__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }

/* ============ CONTACT ============ */
.contact__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.contact__side p { color: var(--slate); font-size: 1rem; line-height: 1.85; }
.contact__side .btn { margin-top: 0.6rem; }
.contact__ways { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label, .field > span { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.field .req { color: #b3402f; font-size: 0.8rem; margin-left: 0.3rem; }
.field input, .field select, .field textarea {
  min-height: 3rem; padding: 0.7rem 0.9rem; font-size: 1rem; color: var(--navy);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--white);
}
.field textarea { min-height: 6rem; resize: vertical; }
.field.is-error input, .field.is-error select, .field.is-error textarea { border-color: #b3402f; background: #fdf3f1; }
.field--check { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.field--check input { min-height: auto; width: 1.2rem; height: 1.2rem; margin-top: 0.25rem; }
.field--check label { font-weight: 400; font-size: 0.95rem; color: var(--slate); line-height: 1.6; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem; }
#contact-error { color: #b3402f; font-size: 0.92rem; font-weight: 600; }
.form-note { font-size: var(--fs-small); color: var(--slate); }

/* ============ フッター ============ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.82); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; gap: 2rem; }
.footer__brand .brand__mark { color: var(--white); }
.footer__brand .brand__sub { color: rgba(255,255,255,0.6); }
.footer__brand p { margin-top: 1rem; font-size: 0.92rem; line-height: 1.8; max-width: 32ch; }
.footer__col h3 { font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.6); margin-bottom: 0.9rem; text-transform: uppercase; }
.footer__col a, .footer__col li { display: block; font-size: 0.96rem; padding: 0.35rem 0; color: rgba(255,255,255,0.85); }
.footer__col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.16); display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; }
.footer__bottom p, .footer__bottom a { font-size: var(--fs-small); color: rgba(255,255,255,0.7); }
.footer__demo { font-size: var(--fs-small); color: rgba(255,255,255,0.66); }
.footer-space { display: none; }

/* ============ デスクトップ予約バー（署名・スクロール後） ============ */
#reserve-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: var(--navy); color: var(--white);
  transform: translateY(110%); transition: transform var(--dur) var(--ease);
  border-top: 1px solid rgba(255,255,255,0.2);
}
#reserve-bar.is-show { transform: none; }
.reserve-bar__inner { display: flex; align-items: center; gap: 1.2rem; min-height: var(--bar-h); }
.reserve-bar__info { display: flex; align-items: baseline; gap: 0.6rem; margin-right: auto; }
.reserve-bar__label { font-family: var(--font-display); letter-spacing: 0.14em; font-size: 0.86rem; color: rgba(255,255,255,0.72); }
.reserve-bar__hours { font-size: 0.98rem; font-weight: 600; }
.reserve-bar__inner .btn { --h: 2.5rem; }
.reserve-bar__inner .btn--primary { background: var(--white); color: var(--navy); }
.reserve-bar__inner .btn--primary:hover { background: var(--beige); }
.reserve-bar__inner .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ============ モバイル固定CTA（§33: TODAY / SEAT / SYSTEM / RESERVE） ============ */
.fabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 56; display: none;
  background: rgba(250,250,248,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--silver); padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.35rem;
}
.fab {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  min-height: 48px; padding: 0.3rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 0.8125rem; letter-spacing: 0.08em; color: var(--navy);
  border: 1px solid transparent;
}
.fab .fab__ja { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.02em; color: var(--stone-deep); }
.fab--primary { background: var(--navy); color: var(--white); }
.fab--primary .fab__ja { color: rgba(255,255,255,0.8); }
.fab.is-current { border-color: var(--navy); }
.fab.is-current .fab__ja { color: var(--navy); }

/* ============ ページトップ ============ */
.backtop {
  position: fixed; right: 1rem; bottom: 5.5rem; z-index: 54; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: var(--white); border: 1px solid var(--silver); color: var(--navy);
  box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.backtop.is-show { opacity: 1; visibility: visible; transform: none; }

/* ============ ライトボックス ============ */
.lightbox { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(26,39,64,0.82); }
.lightbox__inner { position: relative; z-index: 2; width: min(92vw, 980px); }
.lightbox__fig { margin: 0; }
.lightbox__img { width: 100%; max-height: 82vh; object-fit: contain; border: 1px solid var(--silver); background: var(--beige-soft); }
.lightbox__cap { margin-top: 0.7rem; color: var(--white); text-align: center; font-size: 0.95rem; }
.lightbox__close { position: absolute; top: -3rem; right: 0; width: 44px; height: 44px; font-size: 1.8rem; color: var(--white); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 2rem; color: var(--white); background: rgba(26,39,64,0.5); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; }
.lightbox__nav--prev { left: -1rem; }
.lightbox__nav--next { right: -1rem; }

/* ============ モーダル ============ */
.modal { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(26,39,64,0.6); }
.modal__panel { position: relative; z-index: 2; width: min(92vw, 460px); background: var(--white); border-radius: var(--radius); border-top: 3px solid var(--navy); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow); text-align: center; }
.modal__title { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 0.8rem; }
.modal__body { font-size: 1rem; line-height: 1.8; color: var(--slate); margin-bottom: 1.6rem; }

/* ============================================================
   下層ページ共通（cast / cast-detail / schedule / system / news /
   news-detail / gallery / access / recruit / contact / privacy）
   トップの署名（シルバー細枠・石の明るさ・ネイビー）を継承。
   ============================================================ */

/* ---- ページヘッダー（コンパクト・細枠アクセント） ---- */
.page-hero { padding-block: clamp(2rem, 5vw, 3.4rem) clamp(1.6rem, 4vw, 2.6rem); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.page-hero__inner { position: relative; }
.page-hero__eyebrow { font-family: var(--font-display); letter-spacing: 0.3em; font-size: 0.82rem; text-transform: uppercase; color: var(--ink-2); }
.page-hero__title { font-family: var(--font-display); font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--navy); line-height: 1.1; margin: 0.7rem 0 0.6rem; }
.page-hero__lead { font-size: var(--fs-lead); line-height: 1.8; color: var(--slate); max-width: 52ch; }

/* ---- パンくず ---- */
.breadcrumb { padding-top: 1.1rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: var(--stone-deep); }
.breadcrumb li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb li:not(:last-child)::after { content: "\203A"; color: var(--silver); }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb [aria-current="page"] { color: var(--stone-deep); }

/* ---- ナビ現在地 ---- */
.nav__link[aria-current="page"] { color: var(--navy); }
.nav__link[aria-current="page"]::after { width: 100%; }
.drawer__nav a[aria-current="page"] { color: var(--navy); font-weight: 700; }

/* ---- フィルターチップ / カテゴリ ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }
.chip {
  min-height: 44px; padding: 0.4rem 1.1rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--line-2); border-radius: 999px; color: var(--navy); background: var(--white);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.chip:hover { border-color: var(--navy); }
.chip.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.chip--static { pointer-events: none; background: var(--beige-soft); color: var(--stone-deep); border-color: var(--silver); font-weight: 500; }
.cast-empty, .news-empty, .sched-empty { padding: 2.5rem 1rem; text-align: center; color: var(--slate); font-size: 1rem; border: 1px dashed var(--silver); border-radius: var(--radius); }

/* ---- タブ（schedule） ---- */
.tabs { display: flex; gap: 0.4rem; border-bottom: 1px solid var(--line); margin-bottom: 1.8rem; }
.tab {
  min-height: 44px; padding: 0.6rem 1.4rem; font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em;
  color: var(--stone-deep); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tab.is-active { color: var(--navy); border-bottom-color: var(--navy); }

/* ---- schedule ---- */
.sched-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.sched-row { border-bottom: 1px solid var(--line); }
.sched-row a { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) auto; gap: 1rem; align-items: center; padding: 1rem 0.4rem; }
.sched-row a:hover { background: var(--beige-soft); }
.sched-row__name { font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.sched-row__name span { display: block; font-size: 0.85rem; font-weight: 400; color: var(--slate); }
.sched-row__role { font-size: 0.9rem; color: var(--stone-deep); }
.sched-row__time { font-family: var(--font-mono); font-size: 1rem; color: var(--navy); font-weight: 500; white-space: nowrap; }
.week-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 0.9rem; }
.week-day { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }
.week-day.is-today { border-color: var(--navy); box-shadow: inset 3px 0 0 var(--navy); }
.week-day h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.6rem; }
.week-day ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.week-day li a { display: inline-flex; align-items: baseline; gap: 0.4rem; font-size: 0.98rem; color: var(--navy); }
.week-day li a:hover { text-decoration: underline; text-underline-offset: 3px; }
.week-time { font-family: var(--font-mono); font-size: 0.82rem; color: var(--stone-deep); }
.week-off { color: var(--stone-deep); font-size: 0.95rem; }

/* ---- cast-detail ---- */
.cd { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.cd__subs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.8rem; margin-top: 0.8rem; }
.cd__role { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-deep); }
.cd__name { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); display: flex; align-items: baseline; gap: 0.7rem; margin: 0.3rem 0 0.6rem; }
.cd__reading { font-family: var(--font-body); font-size: 1rem; color: var(--slate); }
.cd__type { font-size: 1rem; color: var(--stone-deep); margin-bottom: 0.8rem; }
.cd__msg { font-size: 1.05rem; line-height: 1.9; color: var(--ink); }
.cd__profile { display: grid; gap: 0; margin: 1.4rem 0; border-top: 1px solid var(--line); }
.cd__profile div { display: grid; grid-template-columns: 8rem minmax(0,1fr); gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
.cd__profile dt { font-size: 0.9rem; color: var(--stone-deep); font-weight: 600; }
.cd__profile dd { font-size: 1rem; color: var(--navy); }
.cd__subhead { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin: 1.6rem 0 0.8rem; }
.cd__sched { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cd__sched th, .cd__sched td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
.cd__sched th { width: 9rem; color: var(--stone-deep); font-weight: 600; }
.cd__sched td { color: var(--navy); font-family: var(--font-mono); }
.cd__sched tr:last-child th, .cd__sched tr:last-child td { border-bottom: 0; }
.cd__sched tr.is-today { background: var(--beige-soft); }
.cd__sched tr.is-today th { color: var(--navy); }
.cd__note { font-size: var(--fs-small); color: var(--slate); margin-top: 0.8rem; }
.cd__sns { display: flex; align-items: center; gap: 1rem; margin: 1.4rem 0; }
.cd__sns span { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.14em; color: var(--stone-deep); }
.cd__sns a { font-size: 0.95rem; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.cd__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.6rem; }
.cd__pager { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.cd__pager a { font-size: 0.95rem; color: var(--navy); }
.cd__pager a:hover { text-decoration: underline; text-underline-offset: 3px; }
.cd__pager-list { font-weight: 700; }

/* ---- news-detail ---- */
.ndetail { max-width: 760px; }
.ndetail__meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.ndetail__title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.4rem); color: var(--navy); line-height: 1.25; margin-bottom: 1.4rem; }
.ndetail .ph { margin-bottom: 1.6rem; }
.ndetail__body p { font-size: 1.05rem; line-height: 1.95; color: var(--ink); margin-bottom: 1.1rem; }
.nrow__more { display: inline-block; margin-top: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.nrow__more::after { content: " \203A"; }
.related-head { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin: 2.4rem 0 0.6rem; }

/* ---- FAQ ---- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1.1rem 0.2rem; font-size: 1.05rem; font-weight: 600; color: var(--navy); min-height: 44px; }
.faq__q span:first-child::before { content: "Q. "; color: var(--stone-deep); font-family: var(--font-display); }
.faq__icon { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--navy); transition: transform var(--dur) var(--ease); }
.faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 0.2rem 1.2rem; }
.faq__a p { font-size: 1rem; line-height: 1.85; color: var(--slate); }
.faq__a p::before { content: "A. "; color: var(--stone-deep); font-family: var(--font-display); font-weight: 700; }

/* ---- pager ---- */
.pager { display: flex; gap: 0.4rem; justify-content: center; margin-top: 2rem; }
.pageb { min-width: 44px; min-height: 44px; padding: 0 0.6rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 1rem; color: var(--navy); }
.pageb.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- recruit ---- */
.recruit-block { margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.recruit-block h2 { font-family: var(--font-display); font-size: var(--fs-h2); color: var(--navy); margin-bottom: 1rem; }
.recruit-block > p { font-size: 1.05rem; line-height: 1.9; color: var(--slate); max-width: 60ch; }
.benefit-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.salary-note { font-size: var(--fs-small); color: var(--slate); margin-top: 0.8rem; }
.recruit-flow { display: grid; gap: 1.2rem; margin-top: 0.6rem; }

/* ---- access（外観写真） ---- */
.access__exterior { margin-top: 1.4rem; }

/* ---- privacy prose ---- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin: 2rem 0 0.7rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 1rem; line-height: 1.95; color: var(--ink); margin-bottom: 1rem; }
.prose ul { display: grid; gap: 0.4rem; margin-bottom: 1rem; padding-left: 1.2rem; }
.prose ul li { list-style: disc; font-size: 1rem; line-height: 1.8; color: var(--slate); }
