/* =========================================================
   KYABEL — LOUNGE / SKY SALON (SITE 44)
   個店・ホテル／シティビュー型ラウンジ・横長パノラマ＋予約主導（左右固定ではない）
   スカイグレー×トワイライトブルー×シャンパン×ホワイト／display=Prata（明朝セリフ）＋Noto Serif JP
   シグネチャ = DAY / SUNSET / NIGHT 表示切替（空の色・スカイライン・メニュー・営業案内が連動）。
   06 Midnight Hotel の色違いにしない — 「窓と空」が主役の明色基調。時間帯で表情が変わる。
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --sky: #dfe3e8;         /* スカイグレー（地・面） */
  --sky-soft: #eef1f4;    /* 淡スカイ（区切り面） */
  --white: #fcfcfd;       /* ホワイト（カード地） */
  --panel: #ffffff;
  --twi: #37517a;         /* トワイライトブルー（アクセント・リンク・見出し罫） */
  --twi-deep: #2b4066;    /* 濃トワイライト（ボタン地・強調） */
  --twi-ink: #202a3c;     /* 見出し・本文（濃・高コントラスト） */
  --cha: #d8c294;         /* シャンパン（細線・装飾・面） */
  --cha-deep: #8a6f33;    /* シャンパン濃（白地で4.5:1確保の文字用） */
  --text: #33404f;        /* 本文 */
  --muted: #566173;       /* 補足（白/スカイ地で4.5:1確保） */
  --line: #dce1e7;        /* 罫線 */
  --line-strong: #c6cdd6; /* 罫線（濃） */

  --wrap: 1120px;
  --wrap-wide: 1360px;
  --radius: 16px;
  --radius-sm: 10px;

  --display: "Prata", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --topbar-h: 64px;
  --mcta-h: 62px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 14px 40px rgba(32, 42, 60, .12);
  --shadow-sm: 0 6px 18px rgba(32, 42, 60, .08);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--sky);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--mcta-h) + env(safe-area-inset-bottom));
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
:focus-visible { outline: 3px solid var(--twi); outline-offset: 2px; border-radius: 4px; }
body.is-locked { overflow: hidden; }
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* ---------- skip link ---------- */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  background: var(--twi-ink); color: #fff;
  padding: 10px 18px; font-size: 15px; font-weight: 700; border-radius: 4px;
  transform: translateY(-180%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 50px; padding: 13px 28px;
  font-family: var(--serif);
  font-size: 16px; font-weight: 600; letter-spacing: .04em;
  border: 1.5px solid transparent; border-radius: 4px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s, border-color .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--twi-deep); color: #fff; }
.btn--solid:hover { background: #223757; box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--twi-deep); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--twi); background: rgba(55, 81, 122, .05); }
.btn--block { width: 100%; }

/* ============================================================
   ヘッダー
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--topbar-h);
  background: rgba(252, 252, 253, .88);
  backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.topbar__inner {
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 14px;
  width: min(100% - 32px, var(--wrap-wide)); margin: 0 auto;
}
.topbar__toggle { width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; border-radius: 8px; }
.topbar__toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--twi-ink); transition: transform .3s, opacity .3s; }
.topbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.topbar__logo {
  font-family: var(--display); font-size: 23px; letter-spacing: .06em; color: var(--twi-ink);
  display: flex; align-items: baseline; gap: 9px; line-height: 1;
}
.topbar__logo span { font-family: var(--serif); font-size: 11px; font-weight: 600; letter-spacing: .22em; color: var(--twi); }
.mainnav { display: none; }
.topbar__reserve {
  margin-left: auto;
  min-height: 44px; display: inline-flex; align-items: center; padding: 0 20px;
  font-size: 15px; font-weight: 600; letter-spacing: .04em;
  background: var(--twi-deep); color: #fff; border-radius: 4px;
}
.topbar__reserve:hover { background: #223757; }

@media (min-width: 980px) {
  .topbar__toggle { display: none; }
  .mainnav { display: flex; align-items: center; gap: 2px; margin-left: 26px; }
  .mainnav a {
    padding: 8px 14px; min-height: 40px; display: inline-flex; align-items: center;
    font-size: 14px; font-weight: 500; letter-spacing: .06em; color: var(--text); border-radius: 4px;
    transition: background .2s, color .2s;
  }
  .mainnav a:hover { background: var(--sky-soft); color: var(--twi-deep); }
  .mainnav a[aria-current="page"] { color: var(--twi-deep); font-weight: 600; box-shadow: inset 0 -2px 0 var(--cha); }
  .topbar__logo { font-size: 25px; }
}

/* ============================================================
   ドロワー
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 150; background: rgba(32, 42, 60, .4); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.drawer[aria-hidden="false"] { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(88vw, 384px);
  background: var(--white);
  padding: calc(env(safe-area-inset-top) + 26px) 26px calc(env(safe-area-inset-bottom) + 26px);
  overflow-y: auto; transform: translateX(-100%); transition: transform .34s var(--ease);
  display: flex; flex-direction: column; gap: 20px;
}
.drawer[aria-hidden="false"] .drawer__panel { transform: translateX(0); }
.drawer__brand { font-family: var(--display); font-size: 26px; letter-spacing: .05em; color: var(--twi-ink); line-height: 1.25; }
.drawer__brand span { display: block; font-family: var(--serif); font-size: 12px; font-weight: 500; letter-spacing: .08em; color: var(--muted); margin-top: 8px; }
.drawer__nav { list-style: none; display: flex; flex-direction: column; }
.drawer__nav a { display: flex; align-items: baseline; gap: 14px; padding: 12px 4px; min-height: 48px; border-bottom: 1px solid var(--line); }
.drawer__nav .en { font-family: var(--display); font-size: 16px; letter-spacing: .06em; color: var(--twi-ink); min-width: 108px; }
.drawer__nav .ja { font-size: 14px; color: var(--text); }
.drawer__nav a[aria-current="page"] .en { color: var(--twi); }
.drawer__info { font-size: 15px; color: var(--text); line-height: 1.9; }
.drawer__tel { font-family: var(--display); font-size: 22px; color: var(--twi-deep); }
.drawer__sns { display: flex; gap: 10px; }
.drawer__sns a { padding: 9px 16px; min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; border: 1px solid var(--line-strong); border-radius: 4px; }

/* ============================================================
   共通 セクション・見出し・プレースホルダー
   ============================================================ */
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--time { background: var(--white); }
.section--menu { background: var(--sky-soft); }
.section--seats { background: var(--white); }
.section--program { background: var(--sky-soft); }
.section--occasion { background: var(--white); }
.section--guide { background: var(--sky-soft); }
.section--reserve { background: var(--white); }
.section--access { background: var(--sky-soft); }

.sec-head { margin-bottom: clamp(26px, 4vw, 42px); }
.sec-head__en { font-size: 12px; font-weight: 600; letter-spacing: .28em; color: var(--twi); margin-bottom: 10px; }
.sec-head__ja { font-family: var(--display); font-size: clamp(26px, 4.4vw, 40px); font-weight: 400; letter-spacing: .02em; color: var(--twi-ink); line-height: 1.35; }
.sec-head__note { margin-top: 14px; font-size: 15px; color: var(--muted); line-height: 1.85; max-width: 46em; }

.ph { position: relative; overflow: hidden; background: var(--sky-soft); border-radius: var(--radius-sm); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph__label { position: absolute; left: 10px; bottom: 8px; font-size: 11px; letter-spacing: .08em; color: var(--muted); opacity: 0; pointer-events: none; }
.ph.is-broken { display: grid; place-content: center; }
.ph.is-broken img { display: none; }
.ph.is-broken .ph__label { opacity: .7; position: static; font-size: 13px; }
.ph[data-ratio="21x9"] { aspect-ratio: 21 / 9; }
.ph[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.ph[data-ratio="3x2"] { aspect-ratio: 3 / 2; }
.ph[data-ratio="4x5"] { aspect-ratio: 4 / 5; }
.ph[data-ratio="1x1"] { aspect-ratio: 1 / 1; }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s 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 !important; }
}

/* ============================================================
   HERO（横長パノラマ＋時間帯シグネチャ）
   ============================================================ */
.hero { position: relative; padding-top: var(--topbar-h); }
.hero__sky { position: relative; width: 100%; }
.hero__ph { border-radius: 0; }
.hero__ph[data-ratio="21x9"] { max-height: min(64vh, 620px); }
.hero__ph.ph { background: var(--sky); }
/* 時間帯クロスフェード（reduce時はJSが is-swap を付けない） */
@keyframes skyfade { from { opacity: .35; } to { opacity: 1; } }
.hero__sky.is-swap .hero__ph img { animation: skyfade .5s var(--ease); }
.hero__scrim {
  position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  pointer-events: none; transition: background .6s var(--ease);
}
body[data-tod="day"] .hero__scrim { background: linear-gradient(to top, rgba(239, 242, 245, .95), rgba(239, 242, 245, 0)); }
body[data-tod="sunset"] .hero__scrim { background: linear-gradient(to top, rgba(236, 227, 214, .95), rgba(230, 200, 154, 0)); }
body[data-tod="night"] .hero__scrim { background: linear-gradient(to top, rgba(224, 229, 236, .95), rgba(55, 81, 122, 0)); }

.hero__panel {
  position: relative; z-index: 2;
  width: min(100% - 32px, var(--wrap));
  margin: -13% auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cha);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.hero__eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .12em; color: var(--twi); margin-bottom: 14px; }
.hero__title { font-family: var(--display); font-size: clamp(30px, 6vw, 56px); font-weight: 400; line-height: 1.3; letter-spacing: .03em; color: var(--twi-ink); }
.hero__lead { margin-top: 18px; font-size: 16px; line-height: 1.95; color: var(--text); max-width: 42em; }

/* 時間帯スイッチ */
.tod { margin-top: 26px; padding: 20px; background: var(--sky-soft); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.tod__label { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.tod__label-en { font-size: 11px; font-weight: 600; letter-spacing: .24em; color: var(--twi); }
.tod__label-ja { font-size: 14px; color: var(--muted); }
.tod__switch { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.tod__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: 66px; padding: 8px 6px;
  background: var(--panel); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s, transform .15s var(--ease), box-shadow .2s;
}
.tod__btn:hover { border-color: var(--twi); transform: translateY(-1px); }
.tod__btn-en { font-family: var(--display); font-size: 16px; letter-spacing: .08em; color: var(--twi-ink); }
.tod__btn-ja { font-size: 12px; color: var(--muted); }
.tod__btn-time { font-size: 11px; letter-spacing: .04em; color: var(--muted); }
.tod__btn.is-active { border-color: var(--twi-deep); background: var(--twi-deep); box-shadow: var(--shadow-sm); }
.tod__btn.is-active .tod__btn-en { color: #fff; }
.tod__btn.is-active .tod__btn-ja, .tod__btn.is-active .tod__btn-time { color: rgba(255, 255, 255, .82); }
.tod__now { margin-top: 12px; font-size: 14px; color: var(--text); line-height: 1.7; }

.hero__status { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; font-size: 15px; color: var(--text); }
.hero__status b { font-family: var(--display); font-size: 17px; color: var(--twi-ink); letter-spacing: .02em; }
.hero__status-open { font-size: 13px; font-weight: 600; letter-spacing: .08em; color: #fff; background: #2f6b4f; padding: 4px 14px; border-radius: 999px; }
.hero__status-open.is-closed { background: var(--muted); }
.hero__status-lo { color: var(--muted); }
.hero__cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

@media (min-width: 900px) {
  .hero__panel { margin-top: -9%; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); column-gap: clamp(30px, 4vw, 56px); align-items: start; }
  .hero__eyebrow, .hero__title, .hero__lead { grid-column: 1; }
  .tod { grid-column: 2; grid-row: 1 / span 5; margin-top: 0; }
  .hero__status { grid-column: 1; }
  .hero__cta { grid-column: 1; }
}

/* ============================================================
   TIME 時間帯カード
   ============================================================ */
.timeband { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.tband {
  display: flex; flex-direction: column; gap: 8px; text-align: left;
  padding: 22px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--cha);
  border-radius: var(--radius-sm); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.tband:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tband__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.tband__en { font-family: var(--display); font-size: 22px; letter-spacing: .08em; color: var(--twi-ink); }
.tband__time { font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.tband__tagline { font-family: var(--display); font-size: 17px; color: var(--twi-deep); line-height: 1.5; }
.tband__serving { font-size: 14px; color: var(--text); line-height: 1.7; }
.tband__go { margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--twi); }
.tband.is-active { border-color: var(--twi-deep); border-left-color: var(--twi-deep); background: linear-gradient(180deg, var(--sky-soft), var(--white)); box-shadow: var(--shadow-sm); }
.tband.is-active .tband__go::after { content: "（表示中）"; color: var(--cha-deep); }

.hours-note { margin-top: 28px; padding: 22px 24px; background: var(--sky-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.hours-note__list { display: grid; gap: 8px; }
.hours-note__list > div { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-note__list > div:last-child { border-bottom: 0; }
.hours-note__list dt { font-size: 14px; font-weight: 600; color: var(--muted); }
.hours-note__list dd { font-size: 16px; color: var(--twi-ink); }
@media (min-width: 640px) { .hours-note__list { grid-template-columns: repeat(3, minmax(0, 1fr)); } .hours-note__list > div { grid-template-columns: 1fr; gap: 4px; border-bottom: 0; } }

/* ============================================================
   MENU 時間帯別
   ============================================================ */
.menu-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; padding: 6px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 20px; }
.mtab { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; padding: 8px 12px; border-radius: 999px; transition: background .2s, color .2s; }
@media (min-width: 560px) { .menu-tabs { display: inline-grid; grid-auto-flow: column; grid-template-columns: none; } .mtab { padding: 8px 22px; } }
.mtab__en { font-family: var(--display); font-size: 15px; letter-spacing: .06em; color: var(--twi-ink); }
.mtab__ja { font-size: 12px; color: var(--muted); }
.mtab.is-active { background: var(--twi-deep); }
.mtab.is-active .mtab__en { color: #fff; }
.mtab.is-active .mtab__ja { color: rgba(255, 255, 255, .8); }

.menu-serving { margin-bottom: 22px; }
.menu-serving__lead { font-size: 16px; color: var(--text); line-height: 1.85; }
.menu-serving__tag { display: inline-block; font-family: var(--display); font-size: 14px; letter-spacing: .06em; color: #fff; background: var(--twi); padding: 3px 14px; border-radius: 999px; margin-right: 12px; }
.menu-serving__lead b { font-weight: 600; color: var(--twi-ink); }

.menu-list { display: grid; gap: 30px; }
.mcat__name { font-family: var(--display); font-size: 21px; font-weight: 400; letter-spacing: .03em; color: var(--twi-ink); padding-bottom: 10px; border-bottom: 1.5px solid var(--cha); margin-bottom: 6px; }
.mcat__items { list-style: none; display: grid; gap: 2px; }
.mitem { padding: 14px 0; border-bottom: 1px solid var(--line); }
.mitem__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.mitem__name { font-size: 17px; font-weight: 600; color: var(--twi-ink); }
.mitem__price { font-family: var(--display); font-size: 18px; color: var(--twi-deep); white-space: nowrap; letter-spacing: .02em; }
.mitem__price small { font-family: var(--serif); font-size: 12px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.mitem__desc { margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 52em; }
.menu-service { margin-top: 22px; font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (min-width: 720px) { .menu-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 44px; } }

/* ============================================================
   SEATS 席比較
   ============================================================ */
.seat-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.seatcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.seatcard__media .ph { border-radius: 0; }
.seatcard__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.seatcard__sub { font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--twi); }
.seatcard__name { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--twi-ink); letter-spacing: .02em; }
.seatcard__lead { font-family: var(--display); font-size: 16px; color: var(--twi-deep); }
.seatcard__features { list-style: none; display: grid; gap: 6px; margin-top: 2px; }
.seatcard__features li { position: relative; padding-left: 18px; font-size: 14px; color: var(--text); line-height: 1.7; }
.seatcard__features li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--cha); }
.seatcard__best { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); line-height: 1.7; }
.seatcard__best span { display: block; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--twi); margin-bottom: 2px; }

.seat-compare { margin-top: 30px; }
.seat-compare__title { font-family: var(--display); font-size: 19px; font-weight: 400; color: var(--twi-ink); margin-bottom: 14px; }
.seat-compare__scroll, .guide-card__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.seat-compare__table, .guide-table { width: 100%; border-collapse: collapse; min-width: 460px; background: var(--white); }
.seat-compare__table th, .seat-compare__table td, .guide-table th, .guide-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.seat-compare__table thead th, .guide-table thead th { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: #fff; background: var(--twi-deep); }
.seat-compare__table tbody th, .guide-table tbody th { font-weight: 600; color: var(--twi-ink); }
.seat-compare__table td, .guide-table td { color: var(--text); }
.seat-compare__table tbody tr:nth-child(even), .guide-table tbody tr:nth-child(even) { background: var(--sky-soft); }

/* ============================================================
   PROGRAM 生演奏
   ============================================================ */
.program { display: grid; gap: 30px; }
.program__media .ph { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.program__list { list-style: none; display: grid; gap: 12px; margin-top: 6px; }
.pslot { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 16px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.pslot__time { font-family: var(--display); font-size: 19px; color: var(--twi-deep); letter-spacing: .02em; }
.pslot__title { font-size: 16px; font-weight: 600; color: var(--twi-ink); }
.pslot__desc { margin-top: 4px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.pslot.is-now { border-color: var(--twi-deep); border-left: 3px solid var(--cha); background: linear-gradient(180deg, var(--sky-soft), var(--white)); }
.pslot.is-now .pslot__title::after { content: "　いまの時間帯"; font-family: var(--serif); font-size: 12px; font-weight: 600; color: var(--cha-deep); }
@media (min-width: 860px) { .program { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; gap: 48px; } }

/* ============================================================
   OCCASION 記念日・法人・貸切
   ============================================================ */
.occasion-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.occ { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.occ__media .ph { border-radius: 0; }
.occ__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.occ__sub { font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--twi); }
.occ__title { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--twi-ink); }
.occ__desc { font-size: 15px; color: var(--text); line-height: 1.85; }
.occ__points { list-style: none; display: grid; gap: 6px; }
.occ__points li { position: relative; padding-left: 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.occ__points li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--cha); }
.occ__cta { margin-top: auto; align-self: flex-start; }

/* ============================================================
   GUIDE ドレスコード・年齢・キャンセル
   ============================================================ */
.guide-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.guide-card { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--twi); border-radius: var(--radius-sm); padding: 24px; }
.guide-card--wide { grid-column: 1 / -1; }
.guide-card__title { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--twi-ink); margin-bottom: 10px; }
.guide-card__body { font-size: 15px; color: var(--text); line-height: 1.85; }
.guide-card__cols { display: grid; gap: 14px; margin-top: 16px; }
.guide-col__label { font-size: 12px; font-weight: 600; letter-spacing: .08em; margin-bottom: 6px; }
.guide-col--ok .guide-col__label { color: #2f6b4f; }
.guide-col--ng .guide-col__label { color: #a2412f; }
.guide-col ul { list-style: none; display: grid; gap: 5px; }
.guide-col li { position: relative; padding-left: 18px; font-size: 14px; color: var(--text); line-height: 1.7; }
.guide-col--ok li::before { content: "○"; position: absolute; left: 0; color: #2f6b4f; font-size: 12px; }
.guide-col--ng li::before { content: "×"; position: absolute; left: 0; color: #a2412f; font-size: 12px; }
.guide-card__notes { list-style: none; display: grid; gap: 6px; margin-top: 14px; }
.guide-card__notes li { position: relative; padding-left: 16px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.guide-card__notes li::before { content: "※"; position: absolute; left: 0; }
.guide-card .guide-table { margin-top: 14px; min-width: 320px; }
.guide-smoking { margin-top: 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (min-width: 640px) { .guide-card__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================================================
   RESERVATION フォーム
   ============================================================ */
.reserve { display: grid; gap: 28px; }
.reserve__aside { background: var(--twi-ink); color: #fff; border-radius: var(--radius); padding: 28px; }
.reserve__tel { display: block; margin-bottom: 8px; }
.reserve__tel-label { display: block; font-size: 12px; letter-spacing: .12em; color: rgba(255, 255, 255, .7); }
.reserve__tel-num { display: block; font-family: var(--display); font-size: 27px; color: #fff; letter-spacing: .03em; margin-top: 4px; }
.reserve__hours { font-size: 14px; color: rgba(255, 255, 255, .78); margin-bottom: 16px; }
.reserve__notes { list-style: none; display: grid; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .16); }
.reserve__notes li { position: relative; padding-left: 16px; font-size: 13px; color: rgba(255, 255, 255, .8); line-height: 1.7; }
.reserve__notes li::before { content: "※"; position: absolute; left: 0; color: var(--cha); }

.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 8px; }
.form__row--split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form__row--split > div { display: grid; gap: 8px; }
.form__label { font-size: 15px; font-weight: 600; color: var(--twi-ink); }
.req { font-size: 12px; font-weight: 600; color: #fff; background: var(--twi); padding: 2px 8px; border-radius: 4px; margin-left: 6px; }
.form__input {
  width: 100%; font-family: var(--serif); font-size: 16px; color: var(--twi-ink);
  background: var(--white); border: 1px solid var(--line-strong); border-radius: 6px; padding: 13px 16px; min-height: 50px;
  transition: border-color .2s, box-shadow .2s;
}
.form__input:focus { outline: none; border-color: var(--twi); box-shadow: 0 0 0 3px rgba(55, 81, 122, .16); }
textarea.form__input { min-height: 120px; line-height: 1.7; resize: vertical; }
select.form__input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }
.form__row--check { margin-top: 4px; }
.check { display: flex; align-items: flex-start; gap: 12px; min-height: 44px; cursor: pointer; }
.check input { width: 22px; height: 22px; accent-color: var(--twi-deep); flex: none; margin-top: 2px; }
.check span { font-size: 15px; color: var(--text); line-height: 1.7; }
.form__note { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 4px; }

.confirm { background: var(--sky-soft); border-radius: var(--radius); padding: clamp(20px, 3.4vw, 30px); }
.confirm__title { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--twi-ink); margin-bottom: 16px; }
.confirm__list { display: grid; gap: 2px; margin-bottom: 20px; }
.confirm__row { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-strong); }
.confirm__row dt { font-size: 14px; font-weight: 600; color: var(--muted); }
.confirm__row dd { font-size: 16px; color: var(--twi-ink); }
.confirm__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 860px) { .reserve { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); align-items: start; gap: 40px; } }

/* ============================================================
   ACCESS
   ============================================================ */
.access { display: grid; gap: 28px; }
.access__list { display: grid; gap: 2px; margin-top: 8px; }
.access__list > div { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.access__list dt { font-size: 14px; font-weight: 600; color: var(--muted); }
.access__list dd { font-size: 16px; color: var(--text); }
.access__tel { font-family: var(--display); font-size: 20px; color: var(--twi-deep); }
.access__cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.access__media .ph { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.access__mapnote { margin-top: 10px; font-size: 14px; color: var(--muted); }
@media (min-width: 860px) { .access { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: start; gap: 48px; } }

/* ============================================================
   フッター
   ============================================================ */
.site-foot { background: var(--twi-ink); color: var(--white); padding: clamp(40px, 6vw, 64px) 0 28px; }
.site-foot__inner { display: grid; gap: 30px; }
.site-foot__logo { font-family: var(--display); font-size: 24px; letter-spacing: .05em; }
.site-foot__logo span { font-size: 12px; font-weight: 600; letter-spacing: .2em; color: var(--cha); margin-left: 8px; }
.site-foot__desc { font-size: 15px; line-height: 1.85; color: rgba(252, 252, 253, .74); margin-top: 12px; max-width: 30em; }
.site-foot__sns { display: flex; gap: 10px; margin-top: 16px; }
.site-foot__sns a { padding: 9px 16px; min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; border: 1px solid rgba(252, 252, 253, .3); border-radius: 4px; }
.site-foot__sns a:hover { border-color: var(--cha); color: var(--cha); }
.site-foot__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 20px; }
.site-foot__nav a { padding: 11px 2px; min-height: 44px; display: flex; align-items: center; font-size: 15px; color: rgba(252, 252, 253, .82); border-bottom: 1px solid rgba(252, 252, 253, .12); }
.site-foot__nav a:hover { color: var(--cha); }
.site-foot__tel { font-family: var(--display); font-size: 24px; color: var(--white); }
.site-foot__contact p { font-size: 14px; color: rgba(252, 252, 253, .74); margin-top: 8px; line-height: 1.7; }
.site-foot__notes { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(252, 252, 253, .14); }
.site-foot__notes p { font-size: 14px; line-height: 1.7; color: rgba(252, 252, 253, .6); margin-bottom: 8px; }
.site-foot__copy { margin-top: 12px; font-size: 14px; letter-spacing: .04em; }
@media (min-width: 820px) {
  .site-foot__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
  .site-foot__nav { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   モバイル固定CTA（MENU / BOOK / DRESS / MAP）
   ============================================================ */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  height: calc(var(--mcta-h) + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(252, 252, 253, .96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.mcta__item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: var(--mcta-h); border-right: 1px solid var(--line); color: var(--twi-ink); }
.mcta__item:last-child { border-right: 0; }
.mcta__ja { font-size: 14px; font-weight: 600; }
.mcta__en { font-size: 10px; letter-spacing: .1em; color: var(--muted); }
.mcta__item--book { background: var(--twi-deep); color: #fff; }
.mcta__item--book .mcta__en { color: rgba(255, 255, 255, .72); }
@media (min-width: 768px) { .mcta { display: none; } }

/* ============================================================
   ページトップ・モーダル・ユーティリティ
   ============================================================ */
.page-top {
  position: fixed; right: 16px; bottom: calc(var(--mcta-h) + env(safe-area-inset-bottom) + 16px); z-index: 70;
  width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 1px solid var(--line-strong);
  color: var(--twi-ink); font-size: 20px; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s, transform .2s;
}
.page-top.is-show { opacity: 1; visibility: visible; }
.page-top:hover { transform: translateY(-2px); border-color: var(--twi); }
@media (min-width: 768px) { .page-top { bottom: 24px; } }

.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20, 28, 42, .55); backdrop-filter: blur(2px); }
.modal__panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(92vw, 460px); max-height: 88vh; overflow-y: auto;
  background: var(--white); border-radius: var(--radius); border-top: 3px solid var(--cha);
  padding: clamp(24px, 4vw, 34px); box-shadow: 0 24px 60px rgba(20, 28, 42, .3);
}
.modal__close-x { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; display: grid; place-content: center; font-size: 24px; color: var(--muted); border-radius: 8px; }
.modal__close-x:hover { background: var(--sky-soft); color: var(--twi-ink); }
.modal__media { margin-bottom: 18px; }
.modal__title { font-family: var(--display); font-size: 21px; font-weight: 400; color: var(--twi-ink); padding-right: 40px; }
.modal__body { margin-top: 12px; font-size: 16px; line-height: 1.85; color: var(--text); }
.modal__actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }

.empty-note { font-size: 15px; color: var(--muted); text-align: center; padding: 24px; }

/* ============================================================
   下層ページ 共通（V4-3）
   ============================================================ */
.ph { margin: 0; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 460px; background: var(--white); }
.table-wrap th, .table-wrap td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.table-wrap thead th { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: #fff; background: var(--twi-deep); }
.table-wrap tbody th { font-weight: 600; color: var(--twi-ink); }
.table-wrap td { color: var(--text); }
.table-wrap tbody tr:nth-child(even) { background: var(--sky-soft); }

/* ページ見出し（下層ヒーロー） */
.pagehead { position: relative; padding-top: var(--topbar-h); background: var(--twi-ink); overflow: hidden; }
.pagehead__sky { position: absolute; inset: var(--topbar-h) 0 0 0; opacity: .5; }
.pagehead__sky .ph { height: 100%; border-radius: 0; }
.pagehead__sky .ph img { height: 100%; object-fit: cover; }
.pagehead__inner { position: relative; z-index: 1; width: min(100% - 40px, var(--wrap)); margin: 0 auto; padding: clamp(40px, 7vw, 72px) 0; }
.pagehead__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .26em; color: var(--cha); margin-bottom: 12px; }
.pagehead__title { font-family: var(--display); font-size: clamp(28px, 5vw, 46px); font-weight: 400; letter-spacing: .03em; color: #fff; line-height: 1.3; }
.pagehead__lead { margin-top: 16px; font-size: 16px; line-height: 1.9; color: rgba(252, 252, 253, .82); max-width: 44em; }
.pagehead__crumb { margin-top: 18px; font-size: 13px; color: rgba(252, 252, 253, .66); }
.pagehead__crumb a { color: var(--cha); }

.prose p { font-size: 16px; line-height: 1.95; color: var(--text); margin-bottom: 14px; max-width: 46em; }
.lead-big { font-family: var(--display); font-size: clamp(20px, 3.2vw, 28px); font-weight: 400; color: var(--twi-deep); line-height: 1.55; margin-bottom: 20px; }

/* 必須情報の再掲ストリップ */
.infostrip { display: grid; gap: 8px; padding: 20px 24px; background: var(--sky-soft); border: 1px solid var(--line); border-left: 3px solid var(--cha); border-radius: var(--radius-sm); margin-top: 8px; }
.infostrip div { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 12px; font-size: 15px; }
.infostrip dt { font-weight: 600; color: var(--muted); }
.infostrip dd { color: var(--twi-ink); }
@media (max-width: 520px) { .infostrip div { grid-template-columns: 1fr; gap: 2px; } }

/* CONCEPT values */
.concept-values { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); margin-top: 28px; }
.valcard { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--twi); border-radius: var(--radius-sm); padding: 24px; }
.valcard__title { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--twi-ink); margin-bottom: 10px; }
.valcard p { font-size: 15px; color: var(--text); line-height: 1.85; }

/* ARTISTS */
.artsec { padding: 22px 0; border-bottom: 1px solid var(--line); }
.artsec__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; margin-bottom: 8px; }
.artsec__title { font-family: var(--display); font-size: 21px; font-weight: 400; color: var(--twi-ink); }
.artsec__when { font-size: 14px; font-weight: 600; color: var(--twi); letter-spacing: .02em; }
.artsec p { font-size: 15px; color: var(--text); line-height: 1.9; max-width: 50em; }
.artsec-note { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* EVENTS */
.events-list { display: grid; gap: 20px; }
.evcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: grid; }
.evcard__media .ph { border-radius: 0; }
.evcard__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.evcard__tag { align-self: flex-start; font-size: 12px; font-weight: 600; letter-spacing: .06em; color: #fff; background: var(--twi); padding: 3px 12px; border-radius: 999px; }
.evcard__title { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--twi-ink); }
.evcard__when { font-size: 14px; font-weight: 600; color: var(--cha-deep); }
.evcard__desc { font-size: 15px; color: var(--text); line-height: 1.85; }
@media (min-width: 760px) { .evcard { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr); align-items: stretch; } .evcard__media .ph { height: 100%; } }

/* GALLERY */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.galcell { position: relative; display: block; text-align: left; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.galcell .ph { border-radius: 0; }
.galcell__cap { display: block; padding: 12px 14px; font-size: 14px; color: var(--text); }
.galcell:hover { box-shadow: var(--shadow-sm); }
.galcell:hover .ph img, .galcell:focus-visible .ph img { transform: scale(1.03); }
.galcell .ph img { transition: transform .3s var(--ease); }
@media (prefers-reduced-motion: reduce) { .galcell .ph img { transition: none; } }

/* FAQ / RECRUIT アコーディオン（native details） */
.qa-list { display: grid; gap: 10px; }
.qa { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.qa__q { list-style: none; cursor: pointer; padding: 16px 46px 16px 20px; font-size: 16px; font-weight: 600; color: var(--twi-ink); position: relative; min-height: 44px; display: flex; align-items: center; }
.qa__q::-webkit-details-marker { display: none; }
.qa__q::after { content: "＋"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--twi); font-size: 18px; }
.qa[open] .qa__q::after { content: "−"; }
.qa__a { padding: 0 20px 18px; }
.qa__a p { font-size: 15px; color: var(--text); line-height: 1.85; }

/* RECRUIT */
.recruit-positions { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.poscard { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--twi); border-radius: var(--radius-sm); padding: 22px; }
.poscard__role { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--twi-ink); }
.poscard__employ { font-size: 13px; font-weight: 600; color: var(--twi); margin: 6px 0 10px; }
.poscard__work { font-size: 14px; color: var(--text); line-height: 1.8; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chips li { font-size: 14px; color: var(--twi-deep); background: var(--sky-soft); border: 1px solid var(--line-strong); padding: 6px 14px; border-radius: 999px; }
.bullets { list-style: none; display: grid; gap: 8px; }
.bullets li { position: relative; padding-left: 20px; font-size: 15px; color: var(--text); line-height: 1.8; }
.bullets li::before { content: ""; position: absolute; left: 4px; top: .75em; width: 6px; height: 6px; border-radius: 50%; background: var(--cha); }
.sal-list { display: grid; gap: 2px; }
.salrow { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.salrow dt { font-size: 15px; font-weight: 600; color: var(--twi-ink); }
.salrow dd { font-size: 15px; color: var(--text); }
@media (max-width: 560px) { .salrow { grid-template-columns: 1fr; gap: 2px; } }
.rflow-list { list-style: none; display: grid; gap: 12px; }
.rflow { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 16px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.rflow__no { font-family: var(--display); font-size: 22px; color: var(--cha-deep); }
.rflow__title { font-size: 16px; font-weight: 600; color: var(--twi-ink); }
.rflow__body p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-top: 4px; }
.recruit-op { display: grid; gap: 6px; margin-top: 8px; }
.recruit-op div { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 12px; font-size: 15px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.recruit-op dt { font-weight: 600; color: var(--muted); }
.recruit-op dd { color: var(--twi-ink); }
@media (max-width: 520px) { .recruit-op div { grid-template-columns: 1fr; gap: 2px; } }

/* サブページ セクション余白トーン */
.sub .section:nth-of-type(even) { background: var(--sky-soft); }
.sub .section:nth-of-type(odd) { background: var(--white); }

/* PRIVACY */
.policy { margin-bottom: 26px; }
.policy__title { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--twi-ink); margin-bottom: 10px; }
.policy p { font-size: 15px; color: var(--text); line-height: 1.9; margin-bottom: 8px; max-width: 48em; }
.privacy-meta { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
