/* =========================================================
   KYABEL — Cabaret Rose Editorial / スタイル層
   センターメイン型（660px）・個店デモ。角丸は使用しない（雑誌紙面）。
   配色: ローズベージュ/ダスティピンク/ボルドー/オフホワイト/ブラック
   フォント: Playfair Display（display）＋ Noto Serif JP（本文・行間1.7）
   ========================================================= */

/* ---- tokens ---- */
:root {
  --rose-beige: #e9d5c9;
  --dusty-pink: #c98f97;
  --bordeaux: #722836;
  --off-white: #faf6f1;
  --black: #1d1517;
  --blush: #ddb3ac;
  --mauve: #a86a72;

  --ink: #1d1517;         /* 本文（オフホワイト背景で 4.5:1 以上） */
  --ink-soft: #4a3a3d;    /* 補足文字（4.5:1 以上を確保） */
  --line: #d8bcae;        /* 罫線 */
  --bg: #faf6f1;          /* ページ背景 */
  --bg-main: #fffdfb;     /* 中央メイン背景 */
  --bg-rail: #f1e2d8;     /* レール背景 */
  --accent: #722836;      /* リンク・アクセント */

  --main-width: 660px;
  --rail-width: 288px;
  --header-h: 60px;
  --serif-en: "Playfair Display", "Noto Serif JP", Georgia, serif;
  --serif-jp: "Noto Serif JP", "Playfair Display", serif;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
h1, h2, h3, p, ul, dl, figure, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---- a11y ---- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--bordeaux); color: #fff; padding: 10px 16px; font-size: 15px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--bordeaux); outline-offset: 3px; }

/* ---- placeholder（SVG src ＋ フォールバック） ---- */
.ph {
  position: relative; overflow: hidden; width: 100%;
  background: linear-gradient(150deg, var(--off-white), var(--rose-beige));
  display: grid; place-items: center;
}
.ph[data-ratio="4x5"] { aspect-ratio: 4 / 5; }
.ph[data-ratio="1x1"] { aspect-ratio: 1 / 1; }
.ph[data-ratio="3x2"] { aspect-ratio: 3 / 2; }
.ph[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.ph[data-tone="2"] { background: linear-gradient(150deg, var(--rose-beige), var(--blush)); }
.ph[data-tone="3"] { background: linear-gradient(150deg, var(--dusty-pink), var(--bordeaux)); }
.ph[data-tone="4"] { background: linear-gradient(150deg, var(--off-white), var(--blush)); }
.ph[data-tone="5"] { background: linear-gradient(150deg, var(--blush), var(--dusty-pink)); }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph__label {
  font-family: var(--serif-en); font-size: 13px; letter-spacing: .16em;
  color: var(--bordeaux); opacity: .0; text-align: center; padding: 8px;
}
.ph--fallback .ph__label { opacity: .85; } /* 画像読込失敗時のみラベル表示 */

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px;
  font-family: var(--serif-jp); font-size: 16px; font-weight: 500; line-height: 1.2;
  color: var(--bordeaux); background: transparent;
  border: 1px solid var(--bordeaux); text-align: center;
  transition: background .25s, color .25s;
}
.btn:hover { background: rgba(114,40,54,.08); }
.btn--solid { background: var(--bordeaux); color: var(--off-white); border-color: var(--bordeaux); }
.btn--solid:hover { background: #5c1f2b; color: #fff; }
.btn--block { display: flex; width: 100%; }
.btn + .btn { margin-top: 0; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--serif-en); font-size: 15px; letter-spacing: .06em;
  color: var(--bordeaux); border-bottom: 1px solid currentColor; padding-bottom: 2px;
  min-height: 24px; margin-top: 18px;
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { color: var(--mauve); }

/* ---- header ---- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(250,246,241,.92); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: 1400px; margin: 0 auto;
  height: var(--header-h); padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  display: flex; align-items: center; gap: 16px;
}
.header__logo { font-family: var(--serif-en); font-size: 24px; font-weight: 600; letter-spacing: .1em; line-height: 1; }
.header__logo a { color: var(--ink); display: inline-flex; align-items: baseline; gap: 8px; }
.header__logo-sub { font-size: 12px; letter-spacing: .18em; color: var(--mauve); font-style: italic; }
.header__hours {
  margin-left: auto; font-size: 14px; color: var(--ink-soft); letter-spacing: .02em;
}
.header__toggle {
  width: 48px; height: 48px; flex: 0 0 auto; margin-left: 6px;
  background: transparent; border: 1px solid var(--line);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.header__toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .25s, opacity .25s; }
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- drawer（雑誌目次型） ---- */
.drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; }
.drawer[aria-hidden="false"] { visibility: visible; }
.drawer__backdrop {
  position: absolute; inset: 0; background: rgba(29,21,23,.5);
  opacity: 0; transition: opacity .3s;
}
.drawer[aria-hidden="false"] .drawer__backdrop { opacity: 1; }
.drawer__sheet {
  position: absolute; top: 0; right: 0; height: 100%; height: 100dvh;
  width: min(420px, 88vw); background: var(--off-white);
  border-left: 1px solid var(--line);
  padding: calc(env(safe-area-inset-top) + 24px) 28px calc(env(safe-area-inset-bottom) + 24px);
  overflow-y: auto; transform: translateX(100%); transition: transform .32s ease;
  display: flex; flex-direction: column;
}
.drawer[aria-hidden="false"] .drawer__sheet { transform: translateX(0); }
.drawer__issue {
  font-family: var(--serif-en); font-size: 13px; letter-spacing: .2em; color: var(--mauve);
  border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 8px;
}
.drawer__index { flex: 1; }
.drawer__index li { border-bottom: 1px solid var(--line); }
.drawer__index a {
  display: grid; grid-template-columns: 34px 1fr auto; align-items: baseline; gap: 12px;
  padding: 15px 2px; min-height: 44px; color: var(--ink);
}
.drawer__no { font-family: var(--serif-en); font-size: 13px; color: var(--mauve); }
.drawer__en { font-family: var(--serif-en); font-size: 19px; letter-spacing: .06em; }
.drawer__ja { font-size: 14px; color: var(--ink-soft); }
.drawer__index a:hover .drawer__en { color: var(--bordeaux); }
.drawer__foot { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.drawer__sns { font-family: var(--serif-en); font-size: 15px; letter-spacing: .08em; text-align: center; }

/* ===========================================================
   センターメイン型シェル
   =========================================================== */
.shell {
  display: grid;
  grid-template-columns:
    minmax(0, var(--rail-width))
    minmax(0, var(--main-width))
    minmax(0, var(--rail-width));
  justify-content: center;
  align-items: start;
  gap: 0;
  width: 100%;
}
.main {
  min-width: 0; width: 100%;
  background: var(--bg-main);
  border-inline: 1px solid var(--line);
  padding: 32px clamp(20px, 4vw, 40px) 64px;
}
.rail {
  position: sticky; top: var(--header-h);
  height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: var(--bg-rail);
}
.rail__inner {
  height: 100%; overflow: hidden;
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 26px;
}
.rail--left .rail__inner { align-items: flex-start; }

/* 左レール */
.rail__brand-en { font-family: var(--serif-en); font-size: 22px; letter-spacing: .22em; color: var(--bordeaux); }
.rail__brand-copy {
  font-family: var(--serif-jp); font-size: 22px; font-weight: 500; line-height: 1.6;
  color: var(--ink); margin-top: 4px;
}
.rail__brand-note { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.rail__block { border-top: 1px solid var(--line); padding-top: 18px; width: 100%; }
.rail__label {
  font-family: var(--serif-en); font-size: 13px; letter-spacing: .2em; color: var(--mauve);
  margin-bottom: 10px;
}
.rail__events li { display: grid; grid-template-columns: 52px 1fr; gap: 8px; padding: 7px 0; font-size: 14px; line-height: 1.55; }
.rail__events time { font-family: var(--serif-en); color: var(--bordeaux); font-size: 15px; }
.rail__ig { font-family: var(--serif-en); font-size: 17px; letter-spacing: .06em; color: var(--bordeaux); }
.rail__ig-note { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

/* 右レール */
.rail__block--reserve { border-top: none; padding-top: 0; }
.rail__reserve-copy { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.6; }
.rail__block--reserve .btn { margin-bottom: 10px; }
.rail__vip { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 4px; }
.rail__hours { font-family: var(--serif-en); font-size: 22px; color: var(--bordeaux); letter-spacing: .04em; }
.rail__hours-note { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

/* ===========================================================
   ヒーロー
   =========================================================== */
.hero { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.hero__masthead {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--serif-en); font-size: 13px; letter-spacing: .18em; color: var(--mauve);
  border-bottom: 1px solid var(--line); padding-bottom: 10px;
}
.hero__title {
  font-family: var(--serif-jp); font-weight: 600;
  font-size: clamp(28px, 6.4vw, 42px); line-height: 1.42; letter-spacing: .02em;
  margin: 22px 0 26px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line span, .hero__title-line { position: relative; }
.hero__title-line--em { color: var(--bordeaux); font-style: italic; }
/* 見出しのラインアニメーション（下線が伸びる） */
.hero__title[data-line]::after,
.section__head[data-line]::after {
  content: ""; display: block; height: 2px; width: 0; background: var(--bordeaux);
  margin-top: 14px; transition: width .8s ease;
}
.hero__title[data-line].is-in::after { width: 84px; }

.hero__stack { position: relative; margin: 0 0 24px; }
.hero__photo { transition: opacity .4s; }
.hero__photo--main { width: 78%; }
.hero__photo--sub {
  position: absolute; right: 0; bottom: -18px; width: 46%;
  border: 6px solid var(--off-white); box-shadow: 0 6px 22px rgba(29,21,23,.14);
}
.hero__stack.is-swapped .hero__photo--main { width: 46%; margin-left: auto; }
.hero__stack.is-swapped .hero__photo--sub {
  position: relative; right: auto; bottom: auto; width: 78%;
  order: -1; margin-bottom: 12px; border-width: 0; box-shadow: none;
}
.hero__stack.is-swapped { display: flex; flex-direction: column; }
.hero__swap {
  position: absolute; left: 0; bottom: -14px; z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 16px;
  background: var(--off-white); border: 1px solid var(--bordeaux); color: var(--bordeaux);
  font-family: var(--serif-en); font-size: 14px; letter-spacing: .06em;
}
.hero__swap-txt { font-family: var(--serif-jp); }
.hero__stack.is-swapped .hero__swap { position: static; margin-top: 6px; align-self: flex-start; }

.hero__lead { font-size: 16px; line-height: 1.85; color: var(--ink); margin: 30px 0 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__cta .btn { flex: 1 1 auto; min-width: 180px; }

/* ---- infostrip ---- */
.infostrip { margin: 28px 0; padding: 20px; background: var(--rose-beige); }
.infostrip__list { display: grid; gap: 14px; }
.infostrip__list div { display: grid; grid-template-columns: 92px 1fr; gap: 10px; align-items: baseline; }
.infostrip__list dt { font-family: var(--serif-en); font-size: 13px; letter-spacing: .12em; color: var(--bordeaux); }
.infostrip__list dd { font-size: 15px; color: var(--ink); line-height: 1.6; }

/* ===========================================================
   セクション共通
   =========================================================== */
.section { padding: 46px 0; border-bottom: 1px solid var(--line); }
.section:last-child { border-bottom: none; }
.section__head { margin-bottom: 22px; }
.section__en {
  font-family: var(--serif-en); font-size: 14px; letter-spacing: .24em; color: var(--mauve);
}
.section__ja {
  font-family: var(--serif-jp); font-size: clamp(22px, 4.6vw, 28px); font-weight: 600;
  line-height: 1.35; margin-top: 4px;
}
.section__head[data-line]::after { margin-top: 12px; }
.section__head[data-line].is-in::after { width: 64px; }
.section__count { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }
.section__intro { font-size: 16px; color: var(--ink); line-height: 1.85; margin-bottom: 22px; }
.section__note { font-size: 14px; color: var(--ink-soft); margin-top: 14px; }

/* ---- reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---- TODAY ---- */
.today { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.today__item { flex: 0 0 132px; scroll-snap-align: start; }
.today__item a { display: block; color: var(--ink); }
.today__thumb { display: block; border: 1px solid var(--line); }
.today__name { display: block; font-family: var(--serif-en); font-size: 17px; letter-spacing: .06em; margin-top: 8px; }
.today__ja { display: block; font-size: 14px; color: var(--ink-soft); }
.today__time { display: block; font-size: 15px; color: var(--bordeaux); margin-top: 2px; }

/* ---- BEAUTY STORY 段組み ---- */
.stories { columns: 2; column-gap: 22px; }
.story {
  break-inside: avoid; -webkit-column-break-inside: avoid;
  margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
  position: relative;
}
.story__no { font-family: var(--serif-en); font-size: 13px; letter-spacing: .14em; color: var(--mauve); margin-bottom: 6px; }
.story__badges { position: absolute; top: 0; right: 0; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.badge {
  font-family: var(--serif-en); font-size: 12px; letter-spacing: .1em;
  padding: 3px 8px; background: var(--bordeaux); color: var(--off-white);
}
.badge--new { background: var(--dusty-pink); color: var(--black); }
.badge--pick { background: var(--mauve); color: var(--off-white); }
.story__ph { display: block; border: 1px solid var(--line); }
.story__body { padding-top: 12px; }
.story__name {
  font-family: var(--serif-en); font-size: 22px; font-weight: 600; letter-spacing: .05em; line-height: 1.2;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
}
.story__name a { color: var(--ink); }
.story__ja { font-family: var(--serif-jp); font-size: 14px; color: var(--ink-soft); font-weight: 400; }
.story__catch { font-size: 16px; color: var(--bordeaux); margin-top: 8px; line-height: 1.6; }
.story__intro { font-size: 15px; color: var(--ink); line-height: 1.8; margin-top: 8px; }
.story__tags { font-family: var(--serif-en); font-size: 13px; color: var(--mauve); letter-spacing: .06em; margin-top: 10px; }

/* ---- EVENT ---- */
.events { display: grid; gap: 20px; }
.event-card { border: 1px solid var(--line); background: var(--off-white); }
.event-card__media { border-bottom: 1px solid var(--line); }
.event-card__head { padding: 16px 18px; }
.event-card__date { font-family: var(--serif-en); font-size: 15px; color: var(--bordeaux); letter-spacing: .06em; }
.event-card__title { font-family: var(--serif-jp); font-size: 19px; font-weight: 600; line-height: 1.4; margin-top: 4px; }
.event-card__sub { font-size: 15px; color: var(--ink-soft); margin-top: 6px; line-height: 1.6; }
.event-card__toggle {
  margin-top: 12px; min-height: 44px; padding: 8px 18px;
  background: transparent; border: 1px solid var(--bordeaux); color: var(--bordeaux);
  font-family: var(--serif-jp); font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
}
.event-card__toggle::before { content: "＋"; font-family: var(--serif-en); }
.event-card__toggle[aria-expanded="true"]::before { content: "−"; }
.event-card__toggle:hover { background: rgba(114,40,54,.08); }
.event-card__panel { padding: 0 18px 18px; }
.event-card__panel p { font-size: 15px; line-height: 1.85; color: var(--ink); }
.event-card__panel .link-arrow { margin-top: 12px; }

/* ---- SYSTEM ---- */
.system { display: grid; gap: 22px; }
.price-block { }
.price-block__head { font-family: var(--serif-en); font-size: 14px; letter-spacing: .14em; color: var(--mauve); border-bottom: 1px solid var(--line); padding-bottom: 8px; margin-bottom: 8px; }
.price-list { display: grid; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 11px 0; border-bottom: 1px dotted var(--line);
}
.price-row__name { font-size: 16px; color: var(--ink); display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.price-row__time { font-size: 14px; color: var(--ink-soft); }
.price-row__price { font-family: var(--serif-en); font-size: 18px; color: var(--bordeaux); text-align: right; min-width: 0; }
.price-note { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-top: 4px; }

/* ---- 空/定休 ---- */
.closed-note { padding: 26px; background: var(--rose-beige); text-align: center; }
.closed-note .en { font-family: var(--serif-en); font-size: 15px; letter-spacing: .2em; color: var(--bordeaux); display: block; margin-bottom: 8px; }
.closed-note p { font-size: 15px; color: var(--ink); }
.empty-note { font-size: 15px; color: var(--ink-soft); padding: 18px 0; }

/* ===========================================================
   フッター
   =========================================================== */
.footer { background: var(--black); color: var(--off-white); padding: 48px 20px calc(120px + env(safe-area-inset-bottom)); }
.footer__inner { max-width: var(--main-width); margin: 0 auto; }
.footer__logo { font-family: var(--serif-en); font-size: 30px; letter-spacing: .14em; }
.footer__tag { font-size: 14px; color: #d9c4bd; margin-top: 6px; letter-spacing: .04em; }
.footer__info { display: grid; gap: 12px; margin: 26px 0; }
.footer__info div { display: grid; grid-template-columns: 92px 1fr; gap: 12px; }
.footer__info dt { font-family: var(--serif-en); font-size: 13px; letter-spacing: .1em; color: var(--dusty-pink); }
.footer__info dd { font-size: 15px; color: var(--off-white); line-height: 1.6; }
.footer__info a { color: var(--off-white); border-bottom: 1px solid rgba(250,246,241,.4); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 22px 0; border-top: 1px solid rgba(250,246,241,.16); border-bottom: 1px solid rgba(250,246,241,.16); }
.footer__nav a { font-family: var(--serif-en); font-size: 15px; letter-spacing: .08em; color: var(--off-white); min-height: 24px; display: inline-flex; align-items: center; }
.footer__nav a:hover { color: var(--dusty-pink); }
.footer__sns { margin-top: 18px; }
.footer__sns a { font-family: var(--serif-en); font-size: 16px; letter-spacing: .08em; color: var(--off-white); border-bottom: 1px solid rgba(250,246,241,.4); }
.footer__demo { font-size: 14px; color: #cbb6b0; line-height: 1.7; margin-top: 20px; }
.footer__copy { font-family: var(--serif-en); font-size: 14px; color: #a98d88; letter-spacing: .06em; margin-top: 14px; }

/* ===========================================================
   モバイル固定CTA（右レール非表示帯で表示）
   =========================================================== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: 0;
  background: var(--off-white); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center;
  min-height: 54px; font-size: 16px; font-weight: 500;
}
.mobile-cta__tel { flex: 0 0 34%; color: var(--bordeaux); border-right: 1px solid var(--line); }
.mobile-cta__reserve { flex: 1; background: var(--bordeaux); color: var(--off-white); }

/* ---- page top ---- */
.page-top {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 70;
  width: 46px; height: 46px; background: var(--off-white); border: 1px solid var(--bordeaux); color: var(--bordeaux);
  font-size: 14px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.page-top.is-show { opacity: 1; pointer-events: auto; }

/* ---- modal ---- */
.modal { position: fixed; inset: 0; z-index: 180; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(29,21,23,.55); }
.modal__box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(440px, 90vw); background: var(--off-white); border: 1px solid var(--bordeaux);
  padding: 30px 26px; text-align: center;
}
.modal__close {
  position: absolute; right: 8px; top: 8px; width: 44px; height: 44px;
  background: transparent; border: none; color: var(--ink); font-size: 24px; line-height: 1;
}
.modal__title { font-family: var(--serif-jp); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.modal__body { font-size: 15px; line-height: 1.8; color: var(--ink); margin-bottom: 22px; text-align: left; }

/* ===========================================================
   レスポンシブ段階変化
   =========================================================== */

/* 1024–1279px : レール1本のみ（左レール畳み・右レール維持） */
@media (max-width: 1279px) {
  :root { --rail-width: 250px; }
  .shell {
    grid-template-columns: minmax(0, var(--main-width)) minmax(0, var(--rail-width));
  }
  .rail--left { display: none; }
}

/* 768–1023px : レール非表示・中央単独（最大760px）・固定CTA表示 */
@media (max-width: 1023px) {
  .shell { grid-template-columns: minmax(0, 760px); }
  .rail--right { display: none; }
  .main { border-inline: none; padding-bottom: 48px; }
  .mobile-cta { display: flex; }
  .footer { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
  .page-top { bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* 767px以下 : 完全1カラム */
@media (max-width: 767px) {
  .header__hours { display: none; }
  .main { padding: 24px 18px 44px; }
  .hero__title { margin: 20px 0 24px; }
  .hero__photo--main { width: 82%; }
  .hero__photo--sub { width: 52%; bottom: -14px; }
  .hero__cta .btn { min-width: 100%; }
  .stories { columns: 1; }
  .infostrip__list div { grid-template-columns: 84px 1fr; }
}

@media (max-width: 400px) {
  .today__item { flex-basis: 120px; }
  .header__logo { font-size: 21px; }
  .header__logo-sub { display: none; }
}

/* ===========================================================
   下層ページ共通
   =========================================================== */
.crumbs { margin-bottom: 18px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px 8px; font-size: 14px; color: var(--ink-soft); }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--mauve); }
.crumbs a { font-family: var(--serif-en); letter-spacing: .04em; color: var(--bordeaux); }
.crumbs li[aria-current="page"] { color: var(--ink-soft); max-width: 60vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.page-head { padding: 6px 0 26px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.page-head__en { font-family: var(--serif-en); font-size: 14px; letter-spacing: .24em; color: var(--mauve); }
.page-head__title { font-family: var(--serif-jp); font-size: clamp(24px, 5.2vw, 34px); font-weight: 600; line-height: 1.32; margin-top: 6px; }
.page-head__title[data-line]::after { content: ""; display: block; height: 2px; width: 0; background: var(--bordeaux); margin-top: 14px; transition: width .8s ease; }
.page-head__title[data-line].is-in::after { width: 72px; }
.page-head__lead { font-size: 16px; line-height: 1.85; color: var(--ink); margin-top: 16px; }

.page-section { padding: 0 0 40px; }
.page-section + .page-section { padding-top: 8px; }

/* ---- filterbar / tags ---- */
.filterbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filterbar__btn, .tag-btn {
  min-height: 44px; padding: 8px 16px;
  font-family: var(--serif-jp); font-size: 14px; color: var(--bordeaux);
  background: transparent; border: 1px solid var(--line); line-height: 1.2;
  transition: background .2s, border-color .2s, color .2s;
}
.filterbar__btn[aria-pressed="true"] { background: var(--bordeaux); color: var(--off-white); border-color: var(--bordeaux); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag-btn { font-family: var(--serif-en); letter-spacing: .04em; }
.tag-btn[aria-pressed="true"] { background: var(--mauve); color: var(--off-white); border-color: var(--mauve); }
.result-count { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }

/* ---- CAST 詳細 ---- */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.detail__photo { position: relative; border: 1px solid var(--line); }
.detail__zoom {
  position: absolute; right: 10px; bottom: 10px; min-height: 40px; padding: 6px 14px;
  background: var(--off-white); border: 1px solid var(--bordeaux); color: var(--bordeaux);
  font-family: var(--serif-jp); font-size: 14px;
}
.detail__badges { display: flex; gap: 6px; margin-bottom: 10px; }
.detail__name { font-family: var(--serif-en); font-size: clamp(30px, 7vw, 40px); font-weight: 600; letter-spacing: .04em; line-height: 1.1; }
.detail__name .detail__ja { display: block; font-family: var(--serif-jp); font-size: 15px; color: var(--ink-soft); font-weight: 400; margin-top: 4px; letter-spacing: normal; }
.detail__catch { font-size: 17px; color: var(--bordeaux); margin-top: 14px; line-height: 1.6; }
.detail__intro { font-size: 16px; line-height: 1.85; color: var(--ink); margin-top: 10px; }
.detail__profile { margin: 22px 0; border-top: 1px solid var(--line); }
.detail__profile > div { display: grid; grid-template-columns: 96px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.detail__profile dt { font-family: var(--serif-en); font-size: 14px; letter-spacing: .06em; color: var(--mauve); }
.detail__profile dd { font-size: 16px; color: var(--ink); }
.detail__profile-wide { grid-template-columns: 1fr !important; }
.detail__days { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.day-chip { font-family: var(--serif-en); font-size: 14px; padding: 5px 10px; background: var(--rose-beige); color: var(--ink); }
.day-chip--today { background: var(--bordeaux); color: var(--off-white); }
.detail__comment { font-size: 16px; line-height: 1.85; color: var(--ink); background: var(--rose-beige); padding: 16px 18px; margin: 4px 0 18px; }
.detail__tags { font-family: var(--serif-en); font-size: 14px; color: var(--mauve); letter-spacing: .04em; }
.detail__sns { display: flex; gap: 12px; margin: 16px 0; }
.detail__sns a { font-family: var(--serif-en); font-size: 15px; letter-spacing: .06em; border: 1px solid var(--line); min-height: 44px; padding: 8px 18px; display: inline-flex; align-items: center; }
.detail__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.detail__actions .btn { flex: 1 1 auto; min-width: 200px; }

.detail-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); }
.detail-nav__link { display: flex; flex-direction: column; gap: 2px; min-height: 44px; justify-content: center; color: var(--ink); }
.detail-nav__link--next { text-align: right; }
.detail-nav__en { font-family: var(--serif-en); font-size: 13px; letter-spacing: .1em; color: var(--mauve); }
.detail-nav__link span:last-child { font-family: var(--serif-en); font-size: 18px; letter-spacing: .04em; }

/* ---- SCHEDULE ---- */
.sched-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 20px; -webkit-overflow-scrolling: touch; }
.sched-tabs__btn {
  flex: 0 0 auto; min-width: 60px; min-height: 60px; padding: 8px 12px;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.sched-tabs__btn[aria-selected="true"] { background: var(--bordeaux); border-color: var(--bordeaux); }
.sched-tabs__btn[aria-selected="true"] .sched-tabs__dow,
.sched-tabs__btn[aria-selected="true"] .sched-tabs__dnum { color: var(--off-white); }
.sched-tabs__dow { font-size: 14px; }
.sched-tabs__dow.sun { color: var(--bordeaux); }
.sched-tabs__dnum { font-family: var(--serif-en); font-size: 20px; }
.sched-tabs__btn.is-closed { opacity: .55; }
.sched-day-label { font-family: var(--serif-en); font-size: 18px; letter-spacing: .06em; color: var(--bordeaux); margin-bottom: 16px; }
.sched-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sched-card { display: flex; gap: 12px; align-items: center; border: 1px solid var(--line); padding: 10px; color: var(--ink); }
.sched-card__ph { flex: 0 0 64px; }
.sched-card__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sched-card__name { font-family: var(--serif-en); font-size: 17px; letter-spacing: .04em; }
.sched-card__ja { font-size: 14px; color: var(--ink-soft); }
.sched-card__time { font-size: 15px; color: var(--bordeaux); }

/* ---- SYSTEM フル ---- */
.sys-block { margin-bottom: 30px; }
.sys-block__head { font-family: var(--serif-en); font-size: 18px; letter-spacing: .1em; color: var(--bordeaux); border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 6px; }
.sys-summary { font-size: 16px; color: var(--ink); margin: 8px 0; }
.sys-inline { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.sys-inline li { font-size: 15px; padding: 6px 14px; background: var(--rose-beige); color: var(--ink); }
.sys-notes { display: grid; gap: 10px; }
.sys-notes li { font-size: 15px; line-height: 1.7; color: var(--ink); padding-left: 18px; position: relative; }
.sys-notes li::before { content: "—"; position: absolute; left: 0; color: var(--mauve); }

/* ---- NEWS 一覧 ---- */
.news-list { display: grid; gap: 4px; }
.news-row { display: grid; grid-template-columns: 118px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.news-row__date { font-family: var(--serif-en); font-size: 14px; color: var(--bordeaux); letter-spacing: .04em; padding-top: 3px; }
.news-row__cat { display: inline-block; font-family: var(--serif-en); font-size: 12px; letter-spacing: .1em; padding: 3px 10px; background: var(--rose-beige); color: var(--bordeaux); margin-bottom: 8px; }
.news-row__cat--event { background: var(--bordeaux); color: var(--off-white); }
.news-row__title { font-family: var(--serif-jp); font-size: 18px; font-weight: 600; line-height: 1.5; }
.news-row__title a { color: var(--ink); }
.news-row__title a:hover { color: var(--bordeaux); }
.news-row__excerpt { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-top: 6px; }
.pager { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.pager__btn { min-width: 44px; min-height: 44px; font-family: var(--serif-en); font-size: 15px; background: transparent; border: 1px solid var(--line); color: var(--bordeaux); }
.pager__btn[aria-current="page"] { background: var(--bordeaux); color: var(--off-white); border-color: var(--bordeaux); }

/* ---- ARTICLE（news 詳細） ---- */
.article__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.article__meta time { font-family: var(--serif-en); font-size: 15px; color: var(--bordeaux); }
.article__cat { font-family: var(--serif-en); font-size: 12px; letter-spacing: .1em; padding: 3px 10px; background: var(--rose-beige); color: var(--bordeaux); }
.article__cat--event { background: var(--bordeaux); color: var(--off-white); }
.article__title { font-family: var(--serif-jp); font-size: clamp(24px, 5.4vw, 32px); font-weight: 600; line-height: 1.4; }
.article__sub { font-size: 16px; color: var(--ink-soft); margin-top: 10px; }
.article__photo { margin: 22px 0; border: 1px solid var(--line); }
.article__body p { font-size: 16px; line-height: 1.95; color: var(--ink); }
.article__cta { margin-top: 26px; }
.article__cta .btn { min-width: 240px; }
.article__nav { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.article__nav a { font-family: var(--serif-jp); font-size: 15px; color: var(--bordeaux); min-height: 44px; display: inline-flex; align-items: center; }

/* ---- EVENT 特集 ---- */
.feature { margin-bottom: 40px; padding-bottom: 34px; border-bottom: 2px solid var(--bordeaux); }
.feature__kicker { font-family: var(--serif-en); font-size: 14px; letter-spacing: .2em; color: var(--mauve); margin-bottom: 12px; }
.feature__media { border: 1px solid var(--line); margin-bottom: 16px; }
.feature__date { font-family: var(--serif-en); font-size: 16px; color: var(--bordeaux); }
.feature__title { font-family: var(--serif-jp); font-size: clamp(24px, 5.4vw, 32px); font-weight: 600; line-height: 1.4; margin-top: 6px; }
.feature__sub { font-size: 16px; color: var(--ink-soft); margin-top: 8px; }
.feature__body { font-size: 16px; line-height: 1.95; color: var(--ink); margin-top: 14px; }
.feature__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.feature__actions .btn { flex: 1 1 auto; min-width: 200px; }
.events-heading { font-family: var(--serif-en); font-size: 16px; letter-spacing: .14em; color: var(--bordeaux); margin-bottom: 16px; }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-item { position: relative; display: block; padding: 0; border: 1px solid var(--line); background: transparent; }
.gallery-item__cat { position: absolute; left: 0; bottom: 0; font-family: var(--serif-en); font-size: 12px; letter-spacing: .08em; padding: 4px 10px; background: rgba(29,21,23,.72); color: var(--off-white); }

/* ---- ライトボックス ---- */
.lb { position: fixed; inset: 0; z-index: 190; display: none; }
.lb.is-open { display: block; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(29,21,23,.82); }
.lb__stage { position: absolute; inset: 0; display: grid; place-items: center; padding: 40px 16px calc(40px + env(safe-area-inset-bottom)); }
.lb__figure { max-width: min(560px, 92vw); margin: 0; }
.lb__ph { width: 100%; }
.lb__ph .ph { border: 1px solid rgba(250,246,241,.3); }
.lb__cap { font-family: var(--serif-en); font-size: 14px; color: var(--off-white); text-align: center; margin-top: 12px; letter-spacing: .04em; }
.lb__close { position: absolute; right: 12px; top: calc(12px + env(safe-area-inset-top)); width: 48px; height: 48px; background: transparent; border: 1px solid rgba(250,246,241,.5); color: var(--off-white); font-size: 24px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(29,21,23,.5); border: 1px solid rgba(250,246,241,.4); color: var(--off-white); font-size: 24px; }
.lb__nav--prev { left: 12px; }
.lb__nav--next { right: 12px; }

/* ---- MERIT / RECRUIT ---- */
.merits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.merit { border: 1px solid var(--line); padding: 18px; background: var(--off-white); }
.merit__no { font-family: var(--serif-en); font-size: 13px; letter-spacing: .12em; color: var(--mauve); }
.merit__title { font-family: var(--serif-jp); font-size: 18px; font-weight: 600; margin: 6px 0 8px; line-height: 1.4; }
.merit__body { font-size: 15px; line-height: 1.75; color: var(--ink); }
.recruit-trial { font-size: 16px; line-height: 1.85; color: var(--ink); background: var(--rose-beige); padding: 18px; }

/* ---- ACCORDION（FAQ） ---- */
.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: transparent; border: none; text-align: left; font-family: var(--serif-jp); font-size: 16px; font-weight: 500; color: var(--ink); }
.acc__icon { position: relative; flex: 0 0 16px; height: 16px; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--bordeaux); }
.acc__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.acc__icon::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform .25s; }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__panel { padding: 0 4px 16px; }
.acc__panel p { font-size: 15px; line-height: 1.85; color: var(--ink); }

/* ---- FORM ---- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 7px; }
.form__label { font-size: 15px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.form__label .req { font-size: 14px; letter-spacing: .06em; padding: 2px 8px; background: var(--bordeaux); color: var(--off-white); }
.form__label .opt { font-size: 14px; letter-spacing: .06em; padding: 2px 8px; background: var(--rose-beige); color: var(--bordeaux); }
.form input, .form select, .form textarea {
  width: 100%; min-height: 48px; padding: 11px 14px;
  font-family: var(--serif-jp); font-size: 16px; color: var(--ink);
  background: var(--off-white); border: 1px solid var(--line);
}
.form textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--bordeaux); outline-offset: 1px; border-color: var(--bordeaux); }
.form__check { display: flex; align-items: flex-start; gap: 10px; }
.form__check input { width: 22px; min-height: 22px; height: 22px; flex: 0 0 auto; margin-top: 3px; }
.form__check label { font-size: 15px; line-height: 1.7; color: var(--ink); }
.form__note { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.form__actions { margin-top: 6px; }
.confirm { border: 1px solid var(--bordeaux); padding: 22px 20px; }
.confirm__title { font-family: var(--serif-jp); font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.confirm__list { display: grid; gap: 2px; margin-bottom: 20px; }
.confirm__row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.confirm__row dt { font-size: 14px; color: var(--mauve); }
.confirm__row dd { font-size: 16px; color: var(--ink); word-break: break-word; }
.confirm__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.confirm__actions .btn { flex: 1 1 auto; min-width: 160px; }

/* ---- ACCESS ---- */
.access-map { border: 1px solid var(--line); margin: 8px 0 20px; }
.access-info { display: grid; gap: 14px; margin-bottom: 26px; }
.access-info div { display: grid; grid-template-columns: 108px 1fr; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.access-info dt { font-family: var(--serif-en); font-size: 14px; letter-spacing: .06em; color: var(--mauve); }
.access-info dd { font-size: 16px; color: var(--ink); line-height: 1.7; }
.access-info a { color: var(--bordeaux); border-bottom: 1px solid currentColor; }
.route-steps { display: grid; gap: 14px; counter-reset: step; }
.route-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; font-size: 16px; line-height: 1.7; color: var(--ink); }
.route-steps li::before { counter-increment: step; content: counter(step); font-family: var(--serif-en); font-size: 16px; color: var(--off-white); background: var(--bordeaux); width: 32px; height: 32px; display: grid; place-items: center; }

/* ---- PRIVACY / 長文 ---- */
.prose h2 { font-family: var(--serif-jp); font-size: 20px; font-weight: 600; margin: 28px 0 10px; color: var(--bordeaux); }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; line-height: 1.9; color: var(--ink); margin-bottom: 14px; }
.prose ul.prose-list { display: grid; gap: 8px; margin: 0 0 16px; padding-left: 20px; list-style: disc; }
.prose ul.prose-list li { font-size: 16px; line-height: 1.8; color: var(--ink); }
.prose .note-box { font-size: 15px; line-height: 1.85; color: var(--ink); background: var(--rose-beige); padding: 18px; margin-bottom: 18px; }

/* ---- 下層レスポンシブ ---- */
@media (max-width: 767px) {
  .detail { grid-template-columns: 1fr; gap: 20px; }
  .detail__photo { max-width: 340px; margin: 0 auto; width: 100%; }
  .detail__actions .btn { min-width: 100%; }
  .merits { grid-template-columns: 1fr; }
  .sched-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .news-row { grid-template-columns: 1fr; gap: 8px; }
  .news-row__date { padding-top: 0; }
  .confirm__row { grid-template-columns: 100px 1fr; }
  .access-info div { grid-template-columns: 92px 1fr; }
}
