/* =========================================================
   KYABEL VINYL AFTERGLOW (SITE 35) — リスニングバー
   横方向エディトリアル＋通常スクロール / 暗（紺黒）
   トークン: レコードブラック#12100f / ネイビー#1d2a44 / アンバー#d99a3d / クリーム#f4e9d2
   フォント: Archivo(display) + Noto Sans JP
   シグネチャ = ドラッグスクロール棚＋時間帯で照度が変わるデモ
   ※ 21〜33・31のCSS/レイアウトは複製せず独自実装。
   ========================================================= */

/* ---- reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
:root {
  --black: #12100f;
  --navy: #1d2a44;
  --deep: #0c1524;
  --panel: #171b28;
  --amber: #d99a3d;
  --amber-soft: #e6b768;
  --cream: #f4e9d2;
  --muted: #aab4c6;
  --line: rgba(244,233,210,.14);
  --line-strong: rgba(244,233,210,.28);
  --shadow: 0 18px 50px rgba(0,0,0,.5);
  --disp: "Archivo", "Noto Sans JP", sans-serif;
  --sidebar: 236px;
  --maxw: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.2; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: normal; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
body.is-locked { overflow: hidden; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1200;
  background: var(--amber); color: #1a1200; padding: 10px 16px; font-weight: 700;
  border-radius: 4px; transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; font-family: var(--disp);
  font-size: 15px; font-weight: 600; letter-spacing: .04em; line-height: 1.2;
  border: 1px solid transparent; border-radius: 2px; cursor: pointer;
  text-decoration: none; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn--solid { background: var(--amber); color: #1a1200; }
.btn--solid:hover { background: var(--amber-soft); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-soft); }
.btn--block { width: 100%; }

/* ---- placeholders ---- */
.ph { position: relative; overflow: hidden; background: linear-gradient(150deg, #1a2233, #0d0c0b); border-radius: 3px; }
.ph[data-ratio="1x1"] { aspect-ratio: 1 / 1; }
.ph[data-ratio="3x4"] { aspect-ratio: 3 / 4; }
.ph[data-ratio="4x5"] { aspect-ratio: 4 / 5; }
.ph[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.ph[data-ratio="3x2"] { aspect-ratio: 3 / 2; }
.ph[data-ratio="2x3"] { aspect-ratio: 2 / 3; }
.ph[data-ratio="wave"] { aspect-ratio: 4 / 1; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph__label { position: absolute; inset: 0; display: none; align-items: flex-end; padding: 12px; font-size: 12px; letter-spacing: .1em; color: var(--muted); }
.ph.is-broken img { display: none; }
.ph.is-broken .ph__label { display: flex; }

/* ---- reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; } }

/* =========================================================
   モバイルヘッダー / ドロワー
   ========================================================= */
.topbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(12,10,9,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; gap: 12px; height: 60px; padding: 0 14px; max-width: 720px; margin: 0 auto; }
.topbar__toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; background: none; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }
.topbar__toggle span { display: block; width: 20px; height: 2px; background: var(--cream); }
.topbar__logo { flex: 1; margin: 0; font-family: var(--disp); font-weight: 700; letter-spacing: .06em; font-size: 16px; }
.topbar__logo a { text-decoration: none; }
.topbar__reserve { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; background: var(--amber); color: #1a1200; font-weight: 700; text-decoration: none; border-radius: 3px; font-size: 15px; }

.drawer { position: fixed; inset: 0; z-index: 1100; background: rgba(6,6,10,.72); visibility: hidden; opacity: 0; transition: opacity .25s var(--ease), visibility .25s var(--ease); }
.drawer[aria-hidden="false"] { visibility: visible; opacity: 1; }
.drawer__panel { position: absolute; top: 0; left: 0; height: 100%; width: min(84vw, 340px); overflow-y: auto; background: var(--deep); border-right: 1px solid var(--line-strong); padding: 26px 22px calc(26px + env(safe-area-inset-bottom)); transform: translateX(-102%); transition: transform .28s var(--ease); }
.drawer[aria-hidden="false"] .drawer__panel { transform: none; }
@media (prefers-reduced-motion: reduce) { .drawer, .drawer__panel { transition: none; } }
.drawer__brand { font-family: var(--disp); font-weight: 800; font-size: 20px; letter-spacing: .05em; margin-bottom: 22px; }
.drawer__brand span { display: block; font-size: 12px; font-weight: 500; letter-spacing: .18em; color: var(--amber); margin-top: 4px; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a { display: flex; align-items: baseline; gap: 12px; padding: 13px 6px; min-height: 48px; border-bottom: 1px solid var(--line); text-decoration: none; }
.drawer__nav .en { font-family: var(--disp); font-size: 15px; letter-spacing: .06em; color: var(--amber-soft); min-width: 104px; }
.drawer__nav .ja { font-size: 15px; }
.drawer__info { margin-top: 22px; font-size: 15px; line-height: 1.9; color: var(--muted); }
.drawer__tel { font-family: var(--disp); font-size: 22px; color: var(--cream); text-decoration: none; letter-spacing: .04em; }
.drawer__sns { display: flex; gap: 14px; margin-top: 18px; }
.drawer__sns a { font-size: 14px; color: var(--amber-soft); text-decoration: underline; text-underline-offset: 3px; min-height: 44px; display: inline-flex; align-items: center; }

/* =========================================================
   デスクトップ サイドバー（横組みエディトリアル）
   ========================================================= */
.sidebar { display: none; }
@media (min-width: 1024px) {
  .topbar { display: none; }
  .sidebar {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; width: var(--sidebar); height: 100vh;
    padding: 34px 26px; border-right: 1px solid var(--line);
    background: linear-gradient(180deg, var(--deep), var(--black));
    z-index: 800;
  }
  .sidebar__logo { margin: 0; font-family: var(--disp); font-weight: 800; font-size: 27px; line-height: 1.02; letter-spacing: .02em; }
  .sidebar__logo a { text-decoration: none; }
  .sidebar__tag { margin: 12px 0 0; font-size: 12px; letter-spacing: .2em; color: var(--amber); text-transform: uppercase; }
  .sidebar__nav { display: flex; flex-direction: column; margin-top: 30px; gap: 2px; flex: 1; }
  .sidebar__nav a { display: flex; flex-direction: column; padding: 8px 0; text-decoration: none; border-bottom: 1px solid transparent; }
  .sidebar__nav a:hover .en, .sidebar__nav a:focus-visible .en { color: var(--amber-soft); }
  .sidebar__nav .en { font-family: var(--disp); font-size: 16px; font-weight: 600; letter-spacing: .03em; color: var(--cream); transition: color .2s var(--ease); }
  .sidebar__nav .ja { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
  .sidebar__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
  .sidebar__now { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
  .sidebar__now b { color: var(--amber-soft); font-family: var(--disp); }
  .site-shell { margin-left: var(--sidebar); }
}
@media (min-width: 1440px) { :root { --sidebar: 280px; } }

/* =========================================================
   共通レイアウト
   ========================================================= */
.site-main { width: 100%; }
.band { padding: 60px 20px; max-width: calc(var(--maxw) + 40px); margin: 0 auto; }
@media (min-width: 1024px) { .band { padding: 84px 48px; } }
.band__head { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.kicker { display: inline-block; font-family: var(--disp); font-size: 13px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.band__title { font-family: var(--disp); font-size: clamp(28px, 5vw, 44px); letter-spacing: .01em; }
.band__lead { margin-top: 16px; color: var(--muted); font-size: 16px; }
.band__more { text-align: center; margin-top: 34px; }
.lead { font-size: 17px; line-height: 1.85; }
.note { margin-top: 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.empty-note { padding: 28px; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: 4px; font-size: 15px; }
.closed-note { padding: 30px; text-align: center; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--panel); }
.closed-note .en { font-family: var(--disp); font-size: 14px; letter-spacing: .3em; color: var(--amber); display: block; margin-bottom: 8px; }

/* editorial 2カラム */
.editorial { display: grid; gap: 30px; }
@media (min-width: 900px) { .editorial { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr); gap: 48px; align-items: start; } }
.editorial__title { font-family: var(--disp); font-size: clamp(26px, 4vw, 40px); line-height: 1.15; }
.editorial__side .kicker { margin-bottom: 16px; }

/* =========================================================
   HERO（時間帯で照度が変わるデモ）
   ========================================================= */
.hero {
  position: relative; padding: 46px 20px 40px;
  --glow: .28;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(217,154,61,var(--glow)), transparent 60%),
    linear-gradient(180deg, var(--deep), var(--black));
  transition: background 1.8s var(--ease);
  overflow: hidden;
}
.hero[data-phase="dusk"] { --glow: .34; }
.hero[data-phase="night"] { --glow: .2; }
.hero[data-phase="late"] { --glow: .1; }
@media (prefers-reduced-motion: reduce) { .hero { transition: none; } }
@media (min-width: 1024px) { .hero { padding: 76px 48px 56px; } }
.hero__grid { display: grid; gap: 32px; max-width: var(--maxw); margin: 0 auto; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 44px; } }
.hero__eyebrow { display: inline-block; font-family: var(--disp); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.hero__title { font-family: var(--disp); font-weight: 800; font-size: clamp(44px, 9vw, 84px); line-height: .94; letter-spacing: -.015em; }
.hero__title em { color: var(--amber); }
.hero__copy { margin-top: 20px; font-size: 18px; font-weight: 500; color: var(--cream); }
.hero__lead { margin-top: 14px; font-size: 16px; line-height: 1.85; color: var(--muted); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__lighting { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 14px; color: var(--muted); padding: 8px 14px; border: 1px solid var(--line); border-radius: 100px; }
.hero__lighting-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(217,154,61,.2); }
@media (prefers-reduced-motion: no-preference) { .hero__lighting-dot { animation: pulse 3.4s var(--ease) infinite; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(217,154,61,.12); } 50% { box-shadow: 0 0 0 7px rgba(217,154,61,.28); } }

.hero__media { position: relative; }
.hero__interior { box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero__jacket { position: absolute; right: -6px; bottom: -22px; width: 42%; max-width: 220px; border: 2px solid var(--black); box-shadow: var(--shadow); }
@media (max-width: 560px) { .hero__jacket { width: 38%; bottom: -14px; } }
.hero__wave { margin: 30px auto 0; max-width: var(--maxw); border: 1px solid var(--line); opacity: .92; }

/* =========================================================
   OPEN STATUS
   ========================================================= */
.band--status { padding-top: 0; padding-bottom: 0; }
.status {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  border: 1px solid var(--line-strong); border-radius: 8px; background: var(--panel);
}
.status__badge { font-family: var(--disp); font-size: 14px; font-weight: 700; letter-spacing: .14em; padding: 7px 14px; border-radius: 100px; }
.status__badge.is-open { background: var(--amber); color: #1a1200; }
.status__badge.is-closed { background: #3a2530; color: #f2c6d4; }
.status__badge.is-soon { background: transparent; color: var(--amber-soft); border: 1px solid var(--line-strong); }
.status__msg { font-size: 16px; font-weight: 500; }
.status__theme { width: 100%; font-size: 14px; color: var(--amber-soft); border-top: 1px solid var(--line); padding-top: 12px; }

/* =========================================================
   CONCEPT
   ========================================================= */
.concept-points { margin-top: 22px; display: flex; flex-direction: column; gap: 18px; }
.concept-points li { position: relative; padding-left: 62px; font-size: 15px; color: var(--muted); line-height: 1.8; }
.concept-points__n { position: absolute; left: 0; top: 0; font-family: var(--disp); font-size: 15px; font-weight: 700; color: var(--amber); border: 1px solid var(--line-strong); border-radius: 50%; width: 42px; height: 42px; display: grid; place-content: center; }
.concept-points__t { display: block; font-family: var(--disp); font-size: 17px; font-weight: 700; color: var(--cream); letter-spacing: .02em; margin-bottom: 2px; }

/* =========================================================
   THE SHELF（シグネチャ：ドラッグスクロール棚）
   ========================================================= */
.band--shelf { max-width: none; background: linear-gradient(180deg, var(--black), #14131a); }
.band--shelf .band__head, .band--shelf .shelf-detail { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.shelf { position: relative; margin: 0 auto; }
.shelf__track {
  display: flex; gap: 18px; overflow-x: auto; overflow-y: hidden;
  padding: 20px max(20px, calc((100vw - var(--maxw)) / 2)) 26px;
  scroll-snap-type: x proximity; cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--amber) transparent;
}
@media (min-width: 1024px) { .shelf__track { padding-left: max(48px, calc((100vw - var(--sidebar) - var(--maxw)) / 2 + 48px)); } }
.shelf__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.shelf__track::-webkit-scrollbar { height: 8px; }
.shelf__track::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }
.shelf__track:focus-visible { outline-offset: -3px; }
.sleeve {
  flex: 0 0 auto; width: 210px; scroll-snap-align: center;
  background: transparent; border: none; padding: 0; cursor: pointer; text-align: left;
  color: inherit; transition: transform .3s var(--ease);
}
.sleeve__ph { border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(0,0,0,.45); transition: box-shadow .3s var(--ease), border-color .3s var(--ease); pointer-events: none; }
.sleeve__meta { display: block; margin-top: 12px; }
.sleeve__title { display: block; font-family: var(--disp); font-size: 16px; font-weight: 600; color: var(--cream); }
.sleeve__artist { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }
.sleeve.is-current { transform: translateY(-8px); }
.sleeve.is-current .sleeve__ph { border-color: var(--amber); box-shadow: 0 16px 34px rgba(217,154,61,.28); }
.sleeve.is-current .sleeve__title { color: var(--amber-soft); }
@media (prefers-reduced-motion: reduce) { .sleeve, .shelf__track { transition: none; scroll-behavior: auto; } .sleeve.is-current { transform: none; } }

.shelf__hint { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 6px; }
.shelf__hint-text { font-size: 13px; letter-spacing: .1em; color: var(--muted); }
.shelf__arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--panel); color: var(--cream); font-size: 22px; line-height: 1; cursor: pointer; transition: border-color .2s var(--ease), color .2s var(--ease); }
.shelf__arrow:hover { border-color: var(--amber); color: var(--amber-soft); }

.shelf-detail { margin-top: 26px; }
.shelf-detail__card { border: 1px solid var(--line-strong); border-radius: 10px; background: var(--panel); padding: 26px 28px; box-shadow: var(--shadow); }
.shelf-detail__kicker { font-family: var(--disp); font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--amber); }
.shelf-detail__title { font-family: var(--disp); font-size: clamp(22px, 3.4vw, 30px); margin-top: 8px; }
.shelf-detail__artist { font-size: 16px; color: var(--amber-soft); margin-top: 4px; }
.shelf-detail__meta { display: grid; gap: 4px 26px; margin: 18px 0; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 620px) { .shelf-detail__meta { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.shelf-detail__meta div { border-top: 1px solid var(--line); padding-top: 10px; }
.shelf-detail__meta dt { font-size: 13px; color: var(--muted); letter-spacing: .06em; }
.shelf-detail__meta dd { margin: 2px 0 0; font-size: 16px; font-weight: 500; }
.shelf-detail__note { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* =========================================================
   PLAYLIST
   ========================================================= */
.playlist__theme { text-align: center; font-family: var(--disp); font-size: 18px; letter-spacing: .06em; color: var(--amber-soft); margin-bottom: 26px; }
.playlist__sets { display: grid; gap: 18px; }
@media (min-width: 820px) { .playlist__sets { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pl-set { border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(180deg, var(--panel), #12141d); padding: 22px 22px 24px; }
.pl-set.is-now { border-color: var(--amber); box-shadow: 0 12px 30px rgba(217,154,61,.16); }
.pl-set__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pl-set__key { font-family: var(--disp); font-size: 14px; font-weight: 700; letter-spacing: .16em; color: var(--amber); }
.pl-set__time { font-size: 14px; color: var(--muted); }
.pl-set__now { font-family: var(--disp); font-size: 11px; letter-spacing: .12em; background: var(--amber); color: #1a1200; padding: 3px 8px; border-radius: 100px; margin-left: auto; }
.pl-set__label { font-family: var(--disp); font-size: 20px; font-weight: 700; margin-top: 12px; }
.pl-set__mood { font-size: 15px; color: var(--muted); margin-top: 6px; line-height: 1.7; }
.pl-set__tracks { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.pl-set__tracks li { font-size: 15px; display: flex; gap: 8px; align-items: baseline; padding-top: 8px; border-top: 1px solid var(--line); }
.pl-set__disc { color: var(--amber); font-size: 12px; }

/* =========================================================
   DRINK / FOOD
   ========================================================= */
.menu-sig { display: grid; gap: 18px; margin-bottom: 40px; }
@media (min-width: 760px) { .menu-sig { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sig-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel); }
.sig-card__ph .ph { border-radius: 0; }
.sig-card__body { padding: 20px 20px 24px; }
.sig-card__kind { font-family: var(--disp); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); }
.sig-card__name { font-family: var(--disp); font-size: 21px; margin-top: 6px; }
.sig-card__price { font-family: var(--disp); font-size: 18px; font-weight: 700; color: var(--amber-soft); margin-top: 6px; }
.sig-card__desc { font-size: 15px; color: var(--muted); margin-top: 10px; line-height: 1.8; }
.menu-lists { display: grid; gap: 26px; }
@media (min-width: 700px) { .menu-lists { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 44px; } }
.menu-group__h { font-family: var(--disp); font-size: 17px; letter-spacing: .1em; color: var(--amber); border-bottom: 1px solid var(--line-strong); padding-bottom: 8px; }
.menu-group__list { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.menu-group__list li { display: flex; justify-content: space-between; gap: 16px; font-size: 16px; }
.menu-group__name { color: var(--cream); }
.menu-group__price { color: var(--amber-soft); font-weight: 500; white-space: nowrap; }
.is-price-hidden .menu-group__price, .is-price-hidden .sig-card__price { display: none; }

/* =========================================================
   SELECTORS
   ========================================================= */
.selectors { display: grid; gap: 18px; }
@media (min-width: 640px) { .selectors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .selectors { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.selector { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel); }
.selector__body { padding: 18px 18px 22px; }
.selector__role { font-size: 13px; letter-spacing: .08em; color: var(--amber); }
.selector__name { font-family: var(--disp); font-size: 24px; margin-top: 4px; display: flex; align-items: baseline; gap: 8px; }
.selector__ja { font-size: 14px; color: var(--muted); font-family: "Noto Sans JP", sans-serif; letter-spacing: .04em; }
.selector__genres { font-size: 13px; color: var(--amber-soft); margin-top: 8px; letter-spacing: .02em; }
.selector__quote { font-size: 15px; color: var(--muted); margin-top: 12px; line-height: 1.8; }

/* =========================================================
   SEATS
   ========================================================= */
.seats { display: grid; gap: 18px; }
@media (min-width: 760px) { .seats { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.seat-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel); }
.seat-card__body { padding: 18px 20px 22px; }
.seat-card__title { font-family: var(--disp); font-size: 20px; }
.seat-card__body p { font-size: 15px; color: var(--muted); margin-top: 8px; line-height: 1.8; }

/* =========================================================
   EVENTS
   ========================================================= */
.events { display: grid; gap: 18px; }
@media (min-width: 760px) { .events { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.event { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel); display: flex; flex-direction: column; }
.event__body { padding: 18px 20px 22px; }
.event__meta { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.event__meta time { color: var(--cream); font-weight: 500; }
.event__kind { font-family: var(--disp); font-size: 11px; letter-spacing: .12em; color: #1a1200; background: var(--amber); padding: 3px 8px; border-radius: 100px; }
.event__title { font-family: var(--disp); font-size: 19px; margin-top: 10px; line-height: 1.3; }
.event__desc { font-size: 15px; color: var(--muted); margin-top: 10px; line-height: 1.8; }

/* =========================================================
   RESERVATION FORM
   ========================================================= */
.reserve-info { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.reserve-info div { display: flex; gap: 14px; border-top: 1px solid var(--line); padding-top: 10px; font-size: 15px; }
.reserve-info dt { min-width: 60px; color: var(--muted); }
.reserve-info dd { margin: 0; }
.reserve-info a { color: var(--amber-soft); text-decoration: underline; text-underline-offset: 3px; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row--2 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.form__row--2 > div { display: flex; flex-direction: column; gap: 8px; }
.form__label { font-size: 15px; font-weight: 500; color: var(--cream); }
.req { font-size: 12px; font-weight: 700; color: #1a1200; background: var(--amber); padding: 2px 7px; border-radius: 3px; margin-left: 8px; letter-spacing: .04em; }
.form__input { width: 100%; min-height: 48px; padding: 12px 14px; font-size: 16px; font-family: inherit; color: var(--cream); background: #10131c; border: 1px solid var(--line-strong); border-radius: 4px; }
textarea.form__input { min-height: 92px; resize: vertical; line-height: 1.7; }
.form__input:focus-visible { border-color: var(--amber); outline: 2px solid var(--amber); outline-offset: 1px; }
.form__input::placeholder { color: #6f7890; }
.form__row--check { flex-direction: row; }
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--muted); line-height: 1.7; cursor: pointer; }
.form__check input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--amber); flex: 0 0 auto; }
.form__check a { color: var(--amber-soft); text-decoration: underline; text-underline-offset: 3px; }
.form__actions { margin-top: 4px; }
.form__note { font-size: 14px; color: var(--muted); line-height: 1.7; }
.confirm { border: 1px solid var(--amber); border-radius: 10px; padding: 24px; background: var(--panel); }
.confirm__title { font-family: var(--disp); font-size: 20px; margin-bottom: 16px; }
.confirm__list { display: flex; flex-direction: column; gap: 0; margin: 0 0 20px; }
.confirm__row { display: flex; gap: 14px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 15px; }
.confirm__row dt { min-width: 108px; color: var(--muted); }
.confirm__row dd { margin: 0; font-weight: 500; }
.confirm__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   ACCESS
   ========================================================= */
.access { display: grid; gap: 26px; }
@media (min-width: 860px) { .access { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: start; gap: 40px; } }
.access__map { border: 1px solid var(--line); box-shadow: var(--shadow); }
.access__info div { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 15px; }
.access__info div:first-child { border-top: none; }
.access__info dt { color: var(--amber-soft); font-family: var(--disp); font-size: 14px; letter-spacing: .04em; }
.access__info dd { margin: 0; line-height: 1.7; }
.access__info a { color: var(--amber-soft); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { border-top: 1px solid var(--line-strong); padding: 48px 20px calc(120px + env(safe-area-inset-bottom)); max-width: calc(var(--maxw) + 40px); margin: 0 auto; }
@media (min-width: 1024px) { .site-footer { padding: 60px 48px 72px; } }
.site-footer__logo { font-family: var(--disp); font-size: 22px; font-weight: 800; letter-spacing: .04em; }
.site-footer__tag { font-size: 14px; color: var(--muted); margin-top: 6px; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 26px 0; }
.site-footer__nav a { font-family: var(--disp); font-size: 14px; letter-spacing: .06em; color: var(--muted); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.site-footer__nav a:hover { color: var(--amber-soft); }
.site-footer__demo { font-size: 14px; color: var(--muted); line-height: 1.8; border-top: 1px solid var(--line); padding-top: 20px; }
.site-footer__copy { font-size: 14px; color: var(--muted); margin-top: 14px; }

/* =========================================================
   モバイル固定CTA（BAR: MENU / BOOK / MAP）
   ========================================================= */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(12,10,9,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 1024px) { .mcta { display: none; } }
.mcta__btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 56px; text-decoration: none; color: var(--cream); font-size: 13px; border-left: 1px solid var(--line); }
.mcta__btn:first-child { border-left: none; }
.mcta__ic { font-size: 18px; line-height: 1; color: var(--amber); }
.mcta__t { font-family: var(--disp); font-size: 13px; letter-spacing: .1em; }
.mcta__btn--primary { background: var(--amber); color: #1a1200; }
.mcta__btn--primary .mcta__ic { color: #1a1200; }

.page-top {
  position: fixed; right: 16px; bottom: 76px; z-index: 940;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: var(--panel); color: var(--cream); font-family: var(--disp); font-size: 12px; letter-spacing: .06em;
  cursor: pointer; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.page-top.is-show { opacity: 1; visibility: visible; }
@media (min-width: 1024px) { .page-top { bottom: 24px; } }
@media (prefers-reduced-motion: reduce) { .page-top { transition: none; } }

/* =========================================================
   モーダル
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 1300; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4,4,8,.74); }
.modal__panel { position: relative; width: min(94vw, 460px); background: var(--panel); border: 1px solid var(--line-strong); border-radius: 12px; padding: 30px 28px 26px; box-shadow: var(--shadow); }
.modal__close-x { position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; background: none; border: none; color: var(--muted); font-size: 26px; cursor: pointer; line-height: 1; }
.modal__close-x:hover { color: var(--cream); }
.modal__title { font-family: var(--disp); font-size: 20px; }
.modal__body { font-size: 15px; color: var(--muted); line-height: 1.8; margin-top: 12px; }
.modal__actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 22px; }

/* =========================================================
   下層ページ共通（page-hero / crumb / prose / spec / chips / FAQ / selector詳細）
   ========================================================= */
.page-hero { padding: 36px 20px 4px; max-width: calc(var(--maxw) + 40px); margin: 0 auto; }
@media (min-width: 1024px) { .page-hero { padding: 60px 48px 8px; } }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; letter-spacing: .04em; color: var(--muted); margin-bottom: 18px; }
.crumb a { color: var(--amber-soft); text-decoration: none; }
.crumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.page-hero__title { font-family: var(--disp); font-size: clamp(30px, 6vw, 52px); line-height: 1.08; letter-spacing: .005em; margin-top: 10px; }
.page-hero__lead { margin-top: 14px; font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 60ch; }

.prose { font-size: 16px; line-height: 1.9; color: #ccd2dd; margin-top: 14px; }
.prose-doc { max-width: 760px; margin: 0 auto; }
.prose-doc h2 { font-family: var(--disp); font-size: 20px; margin: 28px 0 8px; letter-spacing: .02em; }
.prose-doc h2:first-child { margin-top: 0; }
.prose-doc p { font-size: 16px; line-height: 1.9; color: #ccd2dd; margin-top: 4px; }
.prose-doc a { color: var(--amber-soft); text-decoration: underline; text-underline-offset: 3px; }

.spec { margin: 26px auto 0; max-width: 760px; }
.spec div { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; }
.spec dt { color: var(--amber-soft); font-family: var(--disp); font-size: 14px; letter-spacing: .03em; }
.spec dd { margin: 0; line-height: 1.7; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chips li { font-size: 14px; padding: 8px 15px; border: 1px solid var(--line-strong); border-radius: 100px; color: var(--cream); }

.acc-list { max-width: 760px; margin: 20px auto 0; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__heading { margin: 0; }
.acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 56px; padding: 14px 4px; background: none; border: none; color: var(--cream); font-family: inherit; font-size: 16px; font-weight: 500; text-align: left; cursor: pointer; }
.acc__icon { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--amber); }
.acc__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc__icon::after { top: 0; left: 7px; width: 2px; height: 16px; transition: transform .2s var(--ease); }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
@media (prefers-reduced-motion: reduce) { .acc__icon::after { transition: none; } }
.acc__panel { padding: 0 4px 18px; }
.acc__panel p { font-size: 15px; color: var(--muted); line-height: 1.8; }

.selector--detail .selector__meta { display: flex; gap: 26px; margin-top: 14px; }
.selector--detail .selector__meta div { border-top: 1px solid var(--line); padding-top: 8px; }
.selector--detail .selector__meta dt { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.selector--detail .selector__meta dd { margin: 2px 0 0; font-size: 15px; }
.selector--detail .selector__bio { font-size: 15px; color: #ccd2dd; line-height: 1.85; margin-top: 12px; }
@media (min-width: 1024px) { body[data-page="selectors"] .selectors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
