/* =========================================================
   KYABEL — SITE 32 / Cabaret Grand Nuit
   大型キャバクラ・没入ダイジェスト型（暗・ノワール×カッパー）
   シグネチャ: 店内写真の全面背景テクスチャに中央パネルが浮かぶ没入構成。
   :root デザイントークン → BEM。センターメイン型シェル・body スクロールのみ。
   ========================================================= */

:root {
  --noir: #0c0b0a;
  --panel: #110e0d;          /* 中央パネル基色 */
  --panel-2: #171210;        /* カード面 */
  --bordeaux: #3a1c22;       /* 深ボルドー面 */
  --copper: #b4714b;         /* カッパー（線・装飾・大文字） */
  --copper-lt: #d59a6e;      /* インタラクティブ文字（4.5:1確保用） */
  --ivory: #eee3cd;          /* シャンパンアイボリー本文 */
  --smoke: #585048;          /* スモーク（面） */
  --muted: #c6b6a3;          /* 補助文字（暗背景で4.5:1以上） */
  --line: rgba(180, 113, 75, 0.30);
  --line-soft: rgba(198, 182, 163, 0.16);

  --main-width: 720px;
  --rail-width: 284px;
  --gutter: 30px;
  --radius: 3px;
  --fab-h: 54px;
  --safe-b: env(safe-area-inset-bottom, 0px);

  --serif: "Cinzel", "Times New Roman", serif;
  --sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory);
  background: var(--noir);
  overflow-x: hidden;
  word-break: break-word;
}
img { max-width: 100%; display: block; }
a { color: var(--copper-lt); text-underline-offset: 3px; }
h1, h2, h3 { margin: 0; line-height: 1.3; font-weight: 600; }
:focus-visible { outline: 2px solid var(--copper-lt); outline-offset: 2px; }

/* ===== 全面背景テクスチャ（シグネチャ・固定・クロスフェード） ===== */
.bgfield { position: fixed; inset: 0; z-index: -2; background: var(--noir); overflow: hidden; }
.bgfield__layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2.4s ease-in-out;
}
.bgfield__layer.is-active { opacity: 1; }
.bgfield__veil {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(180,113,75,0.10), transparent 55%),
    linear-gradient(180deg, rgba(8,7,6,0.78), rgba(8,7,6,0.9));
}
@media (prefers-reduced-motion: reduce) {
  .bgfield__layer { transition: none; }
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 11px 22px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ivory); background: transparent;
  border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; text-decoration: none; text-align: center; transition: background .2s, border-color .2s, color .2s;
}
.btn:hover { border-color: var(--copper); color: var(--copper-lt); }
.btn--primary { background: linear-gradient(120deg, var(--copper), #93582f); border-color: var(--copper); color: #170f0a; }
.btn--primary:hover { color: #170f0a; filter: brightness(1.07); }
.btn--ghost { background: rgba(255,255,255,0.02); }
.btn--sm { min-height: 44px; padding: 9px 16px; font-size: 14px; }

/* ===== モバイル/タブレットヘッダー（<1024px） ===== */
.topbar {
  display: none;
  position: sticky; top: 0; z-index: 40;
  align-items: center; justify-content: space-between;
  padding: 12px 18px;
  background: rgba(12,11,10,0.86); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar__brand { font-family: var(--serif); font-size: 18px; letter-spacing: 0.16em; color: var(--ivory); text-decoration: none; }
.hamburger {
  width: 46px; height: 46px; font-size: 22px; line-height: 1;
  color: var(--ivory); background: transparent; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}

/* ===== シェル ===== */
.shell {
  display: grid;
  grid-template-columns: minmax(0, var(--rail-width)) minmax(0, var(--main-width)) minmax(0, var(--rail-width));
  justify-content: center; gap: 26px;
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 26px 22px 60px;
  min-height: 100svh;
}

/* ===== レール ===== */
.rail { position: sticky; top: 22px; height: calc(100svh - 44px); overflow: hidden;
  display: flex; flex-direction: column; gap: 15px; padding-right: 4px; }
.rail__brand { font-family: var(--serif); font-size: 21px; letter-spacing: 0.14em; color: var(--ivory);
  text-decoration: none; display: block; padding-bottom: 4px; }
.rail__brand small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; color: var(--copper-lt); margin-top: 6px; }
.rail__block { border-top: 1px solid var(--line-soft); padding-top: 13px; }
.rail__ttl { margin: 0 0 12px; font-family: var(--serif); font-size: 13px; letter-spacing: 0.2em; color: var(--copper-lt); }
.rail__ttl span { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); margin-left: 8px; }

/* 左レール 縦ナビ（2列コンパクト・EN主体・可読14px以上・出勤等はドロワーで日本語併記） */
.lnav { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 3px 12px; }
.lnav a { display: flex; align-items: center; min-height: 44px; padding: 4px 0;
  color: var(--ivory); text-decoration: none; border-bottom: 1px solid var(--line-soft); }
.lnav a:hover { color: var(--copper-lt); }
.lnav .en { font-family: var(--serif); font-size: 14px; letter-spacing: 0.1em; }
.lnav a[aria-current="page"] { color: var(--copper-lt); }
.lnav a[aria-current="page"] .en { border-bottom: 1px solid var(--copper); }

/* レール内店舗情報 */
.infolist { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.infolist li { display: grid; grid-template-columns: 62px 1fr; gap: 8px; font-size: 14px; }
.infolist .k { font-family: var(--serif); font-size: 11.5px; letter-spacing: 0.14em; color: var(--copper-lt); padding-top: 2px; }
.infolist .v { color: var(--ivory); }
.infolist a.v { color: var(--copper-lt); }

.rail__sns { display: flex; gap: 8px; flex-wrap: wrap; }
.rail__sns a { min-width: 44px; min-height: 40px; display: inline-flex; align-items: center; justify-content: center;
  padding: 4px 12px; font-size: 13px; letter-spacing: 0.08em; color: var(--ivory); text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--radius); }
.rail__sns a:hover { border-color: var(--copper); color: var(--copper-lt); }
.railcta { display: grid; gap: 9px; }

/* 右レール 系列店バナー */
.series { display: grid; gap: 12px; padding-right: 2px; }
.series__soongroup { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 10px 12px; background: rgba(20,15,13,0.4); }
.series__grouplbl { margin: 0 0 8px; font-family: var(--serif); font-size: 11px; letter-spacing: 0.16em; color: var(--copper-lt); }
.series__soonrow { display: flex; flex-direction: column; padding: 6px 0; border-top: 1px solid var(--line-soft); }
.series__soonrow:first-of-type { border-top: none; }
.series__soonrow b { font-family: var(--serif); font-size: 13.5px; letter-spacing: 0.06em; color: var(--ivory); }
.series__soonrow span { font-size: 12.5px; color: var(--muted); }
.series__item { display: block; text-decoration: none; color: var(--ivory);
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: rgba(20,15,13,0.5);
  transition: border-color .2s, transform .2s; }
.series__item:hover { border-color: var(--copper); }
a.series__item:hover { transform: translateY(-2px); }
.series__item--current { border-color: var(--copper); box-shadow: inset 0 0 0 1px var(--line); }
.series__banner { position: relative; aspect-ratio: 16/9; }
.series__banner img { width: 100%; height: 100%; object-fit: cover; }
.series__area { position: absolute; top: 8px; left: 8px; font-family: var(--serif); font-size: 11px; letter-spacing: 0.16em;
  color: var(--ivory); background: rgba(12,11,10,0.7); padding: 3px 8px; border-radius: 2px; }
.series__meta { padding: 9px 12px 12px; }
.series__name { font-family: var(--serif); font-size: 14.5px; letter-spacing: 0.08em; }
.series__note { font-size: 12.5px; color: var(--muted); margin: 3px 0 0; }
.series__here { display: inline-block; margin-top: 6px; font-size: 12px; letter-spacing: 0.1em; color: var(--copper-lt); }
.series__soon { display: inline-block; margin-top: 6px; font-size: 12px; letter-spacing: 0.1em; color: var(--muted); }

/* ===== 中央パネル（浮遊） ===== */
.main {
  min-width: 0; width: 100%;
  background: linear-gradient(180deg, rgba(17,14,13,0.94), rgba(12,11,10,0.96));
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* ===== HERO（動画スロット） ===== */
.hero { position: relative; }
.hero__media { position: relative; margin: 0; aspect-ratio: 16/9; overflow: hidden; background: var(--noir); }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.32) 0%, rgba(12,11,10,0.55) 55%, rgba(12,11,10,0.94) 100%); }
.hero__inner { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 var(--gutter) 26px; }
.hero__eyebrow { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.16em; color: var(--copper-lt); }
.hero__eyebrow b { color: var(--ivory); font-weight: 600; }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 6vw, 46px); letter-spacing: 0.04em; color: var(--ivory); }
.hero h1 .accent { color: var(--copper-lt); }
.hero__sub { margin: 14px 0 0; font-size: 15.5px; color: var(--ivory); max-width: 34em; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 14px 0 0; font-size: 14px; color: var(--muted); }
.hero__meta b { color: var(--copper-lt); font-weight: 600; margin-right: 4px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ===== セクション ===== */
.section { padding: 34px var(--gutter); border-top: 1px solid var(--line-soft); }
.section:first-child { border-top: none; }
.section__head { margin-bottom: 20px; }
.section__en { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: 0.14em; color: var(--ivory); }
.section__ja { display: inline-block; margin-left: 10px; font-size: 13.5px; letter-spacing: 0.08em; color: var(--copper-lt); }
.section__note { margin: 10px 0 0; font-size: 14.5px; color: var(--muted); }

/* ===== 日付タブ（本日の出勤） ===== */
.daytabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.daytab { flex: 0 0 auto; min-width: 62px; min-height: 62px; padding: 8px 6px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--panel-2); color: var(--ivory);
  border: 1px solid var(--line-soft); border-radius: var(--radius); }
.daytab .dow { font-size: 13px; letter-spacing: 0.06em; color: var(--muted); }
.daytab .dnum { font-family: var(--serif); font-size: 20px; }
.daytab[aria-selected="true"] { border-color: var(--copper); background: var(--bordeaux); }
.daytab[aria-selected="true"] .dow { color: var(--copper-lt); }
.daytab.is-closed { opacity: 0.55; }

/* ===== キャストカード（3列・SNSアイコン枠） ===== */
.castgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.castcard { display: flex; flex-direction: column; text-decoration: none; color: var(--ivory);
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, transform .2s; }
.castcard:hover { border-color: var(--copper); }
a.castcard:hover { transform: translateY(-3px); }
.castcard__media { position: relative; aspect-ratio: 4/5; }
.castcard__badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 5px; }
.badge { font-family: var(--serif); font-size: 11px; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 2px;
  background: rgba(12,11,10,0.72); color: var(--ivory); border: 1px solid var(--line); }
.badge--today { background: var(--copper); color: #170f0a; border-color: var(--copper); }
.badge--new { color: var(--copper-lt); }
.castcard__sns { position: absolute; right: 8px; bottom: 8px; display: flex; gap: 6px; }
.snsicon { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0; color: var(--ivory);
  background: rgba(12,11,10,0.78); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.snsicon:hover { border-color: var(--copper); color: var(--copper-lt); }
.castcard__body { padding: 13px 14px 15px; display: flex; flex-direction: column; gap: 7px; }
.castcard__name { font-family: var(--serif); font-size: 18px; letter-spacing: 0.06em; }
.castcard__name span { font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin-left: 8px; letter-spacing: 0.04em; }
.castcard__catch { margin: 0; font-size: 14px; color: var(--ivory); }
.castcard__meta { font-size: 14px; color: var(--muted); }
.castcard__meta b { color: var(--copper-lt); }
.castcard__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 14px; letter-spacing: 0.02em; padding: 2px 10px; color: var(--muted);
  border: 1px solid var(--line-soft); border-radius: 20px; }

.emptybox { grid-column: 1 / -1; padding: 22px; text-align: center; font-size: 15px; color: var(--muted);
  background: var(--panel-2); border: 1px dashed var(--line-soft); border-radius: var(--radius); }

/* ===== NEWS / EVENT カード ===== */
.events { display: grid; gap: 16px; }
.eventcard { display: grid; grid-template-columns: 200px 1fr; gap: 16px; text-decoration: none; color: var(--ivory);
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s; }
.eventcard:hover { border-color: var(--copper); }
.eventcard__media { aspect-ratio: 16/9; }
.eventcard__body { padding: 14px 16px 15px; display: flex; flex-direction: column; gap: 6px; }
.eventcard__cat { align-self: flex-start; font-family: var(--serif); font-size: 11px; letter-spacing: 0.12em;
  color: #170f0a; background: var(--copper); padding: 2px 9px; border-radius: 2px; }
.eventcard__cat--news { background: transparent; color: var(--copper-lt); border: 1px solid var(--line); }
.eventcard__date { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }
.eventcard__t { font-family: var(--serif); font-size: 17px; letter-spacing: 0.04em; }
.eventcard__b { margin: 0; font-size: 14.5px; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== 求人バナー ===== */
.banner { position: relative; display: block; text-decoration: none; color: var(--ivory);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.banner__media { aspect-ratio: 3/1; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  gap: 6px; padding: 20px var(--gutter);
  background: linear-gradient(90deg, rgba(12,11,10,0.9) 40%, rgba(12,11,10,0.25)); }
.banner__label { font-family: var(--serif); font-size: 12px; letter-spacing: 0.16em; color: var(--copper-lt); }
.banner__ttl { font-family: var(--serif); font-size: clamp(19px, 3.4vw, 24px); letter-spacing: 0.04em; }
.banner__pay { font-size: 15px; color: var(--ivory); }
.banner__pay b { color: var(--copper-lt); font-size: 17px; }
.banner__cta { margin-top: 6px; }

/* ===== SHOP INFO / 料金カード ===== */
.shopinfo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pricecard { background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 16px 18px; }
.pricecard h3 { font-family: var(--serif); font-size: 15px; letter-spacing: 0.1em; color: var(--copper-lt); margin-bottom: 12px; }
.pricerow { display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.pricerow:last-child { border-bottom: none; }
.pricerow .p { font-family: var(--serif); font-size: 16px; color: var(--ivory); white-space: nowrap; }
.pricecard__note { margin: 12px 0 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.paylist { display: flex; flex-wrap: wrap; gap: 8px; }
.paylist span { font-size: 14px; padding: 4px 12px; border: 1px solid var(--line-soft); border-radius: 20px; color: var(--ivory); }
.sysnote-list { margin: 0; padding-left: 1.1em; }
.sysnote-list li { font-size: 14.5px; color: var(--muted); margin-bottom: 6px; }

/* ===== RECRUIT（トップ内） ===== */
.recruit__lead { font-size: 15.5px; color: var(--ivory); margin: 0 0 16px; }
.recruit__merits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.recruit__merit { background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 13px 15px; font-size: 14.5px; color: var(--muted); }
.recruit__merit b { display: block; font-family: var(--serif); font-size: 15px; color: var(--copper-lt); margin-bottom: 4px; letter-spacing: 0.04em; }

/* ===== FOOTER ===== */
.footer { padding: 32px var(--gutter) 40px; border-top: 1px solid var(--line); }
.footer__brand { font-family: var(--serif); font-size: 20px; letter-spacing: 0.16em; color: var(--ivory); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 16px 0; }
.footer__nav a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer__nav a:hover { color: var(--copper-lt); }
.footer__series { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; margin: 6px 0 18px;
  padding: 14px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.footer__series a, .footer__series span { display: block; font-size: 13.5px; color: var(--muted); text-decoration: none; }
.footer__series b { display: block; font-family: var(--serif); font-size: 14px; color: var(--ivory); letter-spacing: 0.06em; }
.footer__series a:hover b { color: var(--copper-lt); }
.footer__sns { display: flex; gap: 10px; margin-bottom: 14px; }
.footer__sns a { font-size: 14px; color: var(--ivory); text-decoration: none; min-height: 40px; display: inline-flex; align-items: center; padding: 0 8px; }
.footer__demo { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 8px; }
.footer__copy { font-size: 14px; color: var(--muted); margin: 0; }
.footer__copy .warm-txt { color: var(--copper-lt); }

/* ===== 下層ページ共通 ===== */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 18px var(--gutter) 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--copper-lt); text-decoration: none; }
.breadcrumb .sep { color: var(--line); }
.page-head { padding: 12px var(--gutter) 0; }
.page-head h1 { font-family: var(--serif); font-size: clamp(26px, 5vw, 36px); letter-spacing: 0.1em; color: var(--ivory); }
.page-head .ja { display: block; margin-top: 6px; font-size: 14px; letter-spacing: 0.06em; color: var(--copper-lt); }
.page-lead { padding: 0 var(--gutter); margin: 14px 0 0; font-size: 15.5px; color: var(--muted); }
.page { padding: 24px var(--gutter) 8px; }
.prose { font-size: 15.5px; color: var(--ivory); }
.prose h2 { font-family: var(--serif); font-size: 18px; letter-spacing: 0.06em; color: var(--copper-lt); margin: 22px 0 8px; }
.prose p, .prose ul { margin: 0 0 12px; color: var(--muted); }
.prose a { color: var(--copper-lt); }
.demo-box { background: var(--bordeaux); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; font-size: 14.5px; color: var(--ivory); margin-bottom: 18px; }

/* CAST DETAIL */
.detail { display: grid; grid-template-columns: 320px 1fr; gap: 24px; }
.detail__media { position: relative; }
.detail__media .ph { aspect-ratio: 4/5; }
.detail__name { font-family: var(--serif); font-size: 30px; letter-spacing: 0.06em; color: var(--ivory); }
.detail__name span { font-family: var(--sans); font-size: 15px; color: var(--muted); margin-left: 10px; }
.detail__catch { font-size: 16px; color: var(--copper-lt); margin: 10px 0; }
.detail__comment { font-size: 15.5px; color: var(--ivory); margin: 0 0 16px; }
.profile { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.profile li { display: grid; grid-template-columns: 84px 1fr; gap: 10px; font-size: 15px; padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.profile .k { font-family: var(--serif); font-size: 12px; letter-spacing: 0.12em; color: var(--copper-lt); padding-top: 2px; }
.detail__sns { display: flex; gap: 8px; margin-bottom: 16px; }
.detail__sns .snsicon { position: static; width: 40px; height: 40px; font-size: 13px; }
.detail__sched h2 { font-family: var(--serif); font-size: 15px; letter-spacing: 0.1em; color: var(--copper-lt); margin-bottom: 10px; }
.schedchips { display: flex; flex-wrap: wrap; gap: 8px; }
.schedchip { font-size: 14px; padding: 6px 12px; border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--ivory); }
.schedchip b { color: var(--copper-lt); margin-right: 6px; }
.prevnext { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }

/* SCHEDULE list */
.schedlist { display: grid; gap: 10px; }
.schedrow { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center;
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 10px 14px; }
.schedrow__ph { display: block; }
.schedrow__ph .ph { aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; }
.schedrow__name { font-family: var(--serif); font-size: 17px; color: var(--ivory); text-decoration: none; }
.schedrow__name span { font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin-left: 8px; }
.schedrow__time { font-family: var(--serif); font-size: 16px; color: var(--copper-lt); white-space: nowrap; }
.sched-empty { padding: 22px; text-align: center; font-size: 15px; color: var(--muted);
  background: var(--panel-2); border: 1px dashed var(--line-soft); border-radius: var(--radius); }

/* GALLERY */
.gallerygrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallerygrid button { padding: 0; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; cursor: pointer; background: none; }
.gallerygrid button:hover { border-color: var(--copper); }
.gallerygrid .ph { aspect-ratio: 16/9; }

/* ACCESS */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.access-map .ph { aspect-ratio: 16/9; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.access-note { font-size: 14px; color: var(--muted); margin-top: 18px; }

/* RECRUIT page */
.recruit-block { margin-bottom: 26px; }
.recruit-block h2 { font-family: var(--serif); font-size: 17px; letter-spacing: 0.08em; color: var(--copper-lt); margin-bottom: 12px; }
.salary { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.salary li { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 12px 15px; font-size: 15px; }
.salary .role { font-family: var(--serif); color: var(--copper-lt); letter-spacing: 0.06em; }
.chiplist { display: flex; flex-wrap: wrap; gap: 8px; }
.chiplist span { font-size: 14px; padding: 5px 13px; border: 1px solid var(--line-soft); border-radius: 20px; color: var(--ivory); }

/* FAQ */
.faq__item { border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--panel-2); }
.faq__q { width: 100%; display: flex; justify-content: space-between; gap: 12px; align-items: center;
  min-height: 52px; padding: 12px 16px; font-size: 15.5px; text-align: left; color: var(--ivory);
  background: none; border: none; cursor: pointer; font-family: var(--sans); }
.faq__mark { font-family: var(--serif); color: var(--copper-lt); font-size: 18px; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 16px;
  font-size: 14.5px; color: var(--muted); }
.faq__a.is-open { max-height: 340px; padding: 0 16px 14px; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* FORM */
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 14px; color: var(--copper-lt); margin-bottom: 6px; letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; font-size: 16px; font-family: var(--sans);
  color: var(--ivory); background: var(--noir); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); outline: none; }
.field input.invalid { border-color: #d9736b; }
.field__err { display: block; font-size: 13px; color: #e0897f; margin-top: 5px; min-height: 1px; }
.confirm-list { list-style: none; margin: 0 0 16px; padding: 0; }
.confirm-list li { display: grid; grid-template-columns: 92px 1fr; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.confirm-list .k { font-family: var(--serif); font-size: 12px; letter-spacing: 0.08em; color: var(--copper-lt); }

/* プレースホルダー figure */
.ph { position: relative; margin: 0; overflow: hidden; background: linear-gradient(135deg, var(--bordeaux), var(--noir)); }
.ph[data-ratio="4x5"] { aspect-ratio: 4/5; }
.ph[data-ratio="16x9"] { aspect-ratio: 16/9; }
.ph[data-ratio="3x4"] { aspect-ratio: 3/4; }
.ph[data-ratio="1x1"] { aspect-ratio: 1/1; }
.ph[data-ratio="3x1"] { aspect-ratio: 3/1; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph__label { position: absolute; left: 10px; bottom: 8px; font-family: var(--serif); font-size: 11px; letter-spacing: 0.14em; color: var(--ivory); opacity: 0.5; }
.ph img + .ph__label { display: none; }

/* ===== フローティング（1024–1279px 右レール代替） ===== */
.floating { display: none; position: fixed; right: 18px; bottom: 22px; z-index: 35; }

/* ===== モバイル固定CTA（<1024px） ===== */
.fabbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 38;
  gap: 8px; padding: 8px 12px calc(8px + var(--safe-b));
  background: rgba(12,11,10,0.94); backdrop-filter: blur(8px); border-top: 1px solid var(--line); }
.fabbar .btn { flex: 1; min-height: var(--fab-h); }

/* ===== ページトップ ===== */
.pagetop { position: fixed; right: 16px; bottom: 78px; z-index: 34; width: 46px; height: 46px;
  font-size: 20px; color: var(--ivory); background: rgba(12,11,10,0.85); border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .25s; }
.pagetop.is-visible { opacity: 1; pointer-events: auto; }

/* ===== ドロワー ===== */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(6,5,4,0.72); opacity: 0; transition: opacity .25s; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 340px);
  background: var(--panel); border-left: 1px solid var(--line); padding: 20px; overflow-y: auto;
  transform: translateX(100%); transition: transform .28s ease; }
.drawer.is-open .drawer__panel { transform: none; }
@media (prefers-reduced-motion: reduce) { .drawer__scrim, .drawer__panel { transition: none; } }
.drawer__close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; font-size: 22px;
  color: var(--ivory); background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.drawer__link { display: flex; align-items: baseline; gap: 10px; min-height: 48px; padding: 8px 0;
  border-bottom: 1px solid var(--line-soft); color: var(--ivory); text-decoration: none; }
.drawer__en { font-family: var(--serif); font-size: 16px; letter-spacing: 0.12em; }
.drawer__link small { font-size: 12.5px; color: var(--muted); }
.drawer__nav { margin-top: 40px; }

/* ===== モーダル / ライトボックス ===== */
.modal, .lightbox { position: fixed; inset: 0; z-index: 70; visibility: hidden; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open, .lightbox.is-open { visibility: visible; }
.modal__scrim, .lightbox__scrim { position: absolute; inset: 0; background: rgba(6,5,4,0.78); }
.modal__panel { position: relative; width: min(94vw, 460px); max-height: 88svh; overflow-y: auto;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.modal__panel h2 { font-family: var(--serif); font-size: 19px; letter-spacing: 0.06em; color: var(--ivory); margin-bottom: 14px; }
.modal__panel p { font-size: 14.5px; color: var(--muted); }
.modal__close, .lightbox__close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; font-size: 22px;
  color: var(--ivory); background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; z-index: 2; }
.lightbox__stage { position: relative; width: min(94vw, 900px); }
.lightbox__stage .ph { max-height: 82svh; }
.lightbox__cap { text-align: center; color: var(--muted); font-size: 14px; margin-top: 10px; }

/* ===== レスポンシブ ===== */
/* 1024–1279px: 右レールをフローティングに退避、左レールのみ */
@media (max-width: 1279px) and (min-width: 1024px) {
  .shell { grid-template-columns: minmax(0, 250px) minmax(0, var(--main-width)); gap: 22px; }
  .rail--right { display: none; }
  .floating { display: block; }
  /* 狭幅レンジではレール高さ厳守: SNS/予約ブロックはフローティングCTA＋フッターSNSで代替 */
  .rail--left .rail__block:last-child { display: none; }
}

/* 768–1023px: レール非表示・中央単独 */
@media (max-width: 1023px) {
  .topbar { display: flex; }
  .shell { grid-template-columns: minmax(0, min(760px, 100%)); padding: 16px 16px calc(var(--fab-h) + 30px); }
  .rail { display: none; }
  .floating { display: none; }
  .fabbar { display: flex; }
}

/* 767px以下: 完全1カラム */
@media (max-width: 767px) {
  :root { --gutter: 18px; }
  .shell { padding: 12px 12px calc(var(--fab-h) + 26px); }
  .castgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shopinfo { grid-template-columns: 1fr; }
  .recruit__merits { grid-template-columns: 1fr; }
  .eventcard { grid-template-columns: 1fr; }
  .eventcard__media { aspect-ratio: 16/9; }
  .detail { grid-template-columns: 1fr; }
  .detail__media { max-width: 320px; }
  .access-grid { grid-template-columns: 1fr; }
  .gallerygrid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 3/4; }
}

@media (max-width: 400px) {
  .castgrid { grid-template-columns: 1fr; }
  .castcard__media { aspect-ratio: 4/5; }
}
