/* =========================================================
   KYABEL — SITE 29 Host Ice Editorial
   白いスタジオ × 氷 × 透明アクリル × メンズビューティー誌
   センターメイン型（メイン660px）・明（白×氷）・呼称 PLAYER
   可読性: 本文16px以上 / 補足14px以上 / タップ44px以上
   ========================================================= */

/* ---- tokens ---- */
:root {
  --c-white: #fcfdfe;
  --c-ice: #e8edf2;
  --c-ice-deep: #dbe3ec;
  --c-pale: #b7d3e8;
  --c-silver: #9aa8b5;
  --c-ink: #25313c;       /* 本文（対白 13:1） */
  --c-muted: #4c5a66;     /* 補足（対白 ~7:1） */
  --c-black: #16181b;
  --c-accent: #2c6699;    /* リンク・アクティブ（対白 ~6:1） */
  --c-line: rgba(37, 49, 60, 0.14);
  --c-line-soft: rgba(37, 49, 60, 0.08);

  --main: 660px;
  --rail: 280px;
  --rail-left: 264px;
  --col-gap: 40px;
  --shell-max: 1440px;

  --font-display: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --font-jp: "Noto Sans JP", system-ui, sans-serif;

  --pad: clamp(16px, 4vw, 28px);
  --radius: 0px; /* 角丸は使わない（エディトリアル） */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, p, dl, dd, ol, ul, figure { margin: 0; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c-ink); color: #fff; padding: 12px 18px; font-size: 15px;
}
.skip:focus { left: 12px; top: 12px; }

/* ---- placeholders ---- */
.ph {
  position: relative; display: block; width: 100%; overflow: hidden;
  background: linear-gradient(160deg, var(--c-white), var(--c-ice));
}
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph[data-ratio="hero"] { aspect-ratio: 3 / 2; }
.ph[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.ph[data-ratio="4x5"] { aspect-ratio: 4 / 5; }
.ph[data-ratio="3x4"] { aspect-ratio: 3 / 4; }
.ph[data-ratio="1x1"] { aspect-ratio: 1 / 1; }
.ph__label {
  position: absolute; right: 12px; bottom: 10px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--c-ink); opacity: 0.55;
}
.ph[data-tone="1"] { background: linear-gradient(155deg, #fcfdfe 0%, #e8edf2 100%); }
.ph[data-tone="2"] { background: linear-gradient(155deg, #fdfefe 0%, #dfe8f0 100%); }
.ph[data-tone="3"] { background: linear-gradient(155deg, #fbfdfe 0%, #d9e4ef 100%); }
.ph[data-tone="4"] { background: linear-gradient(155deg, #fefeff 0%, #e2ebf3 100%); }
.ph[data-tone="5"] { background: linear-gradient(155deg, #fafcff 0%, #dde8f1 100%); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em; line-height: 1.2; text-align: center;
  border: 1.5px solid var(--c-ink); color: var(--c-ink); background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--solid { background: var(--c-black); border-color: var(--c-black); color: #fff; }
.btn--solid:hover { background: #000; }
.btn--ghost:hover { background: var(--c-ice); }
.btn--block { display: flex; width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(252, 253, 254, 0.9);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.hdr__inner {
  display: flex; align-items: center; gap: 20px;
  max-width: var(--shell-max); margin: 0 auto;
  padding: 12px var(--pad); min-height: 60px;
}
.hdr__logo { display: flex; align-items: baseline; gap: 8px; }
.hdr__logo-en { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.16em; color: var(--c-ink); }
.hdr__logo-sub { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 0.28em; color: var(--c-accent); }
.hdr__nav { display: flex; gap: 20px; margin-left: auto; }
.hdr__nav a {
  font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--c-muted); padding: 8px 2px; position: relative;
}
.hdr__nav a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 1.5px; background: var(--c-accent); transition: width 0.25s var(--ease); }
.hdr__nav a:hover { color: var(--c-ink); }
.hdr__nav a:hover::after { width: 100%; }
.hdr__cta {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  background: var(--c-black); color: #fff; font-family: var(--font-display);
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
}
.hdr__toggle { display: none; }

/* ---- drawer ---- */
.drawer { position: fixed; inset: 0; z-index: 120; visibility: hidden; overflow: hidden; }
.drawer[aria-hidden="false"] { visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(22, 24, 27, 0.34); border: 0; opacity: 0; transition: opacity 0.3s var(--ease); }
.drawer[aria-hidden="false"] .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100dvh; width: min(88vw, 380px);
  background: var(--c-white); border-left: 1px solid var(--c-line);
  padding: 20px var(--pad) calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto; transform: translateX(100%); transition: transform 0.34s var(--ease);
  display: flex; flex-direction: column; gap: 18px;
}
.drawer[aria-hidden="false"] .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; }
.drawer__brand { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.16em; }
.drawer__close { border: 0; background: none; font-size: 30px; line-height: 1; width: 44px; height: 44px; color: var(--c-ink); }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex; flex-direction: column; gap: 2px; padding: 14px 4px;
  border-bottom: 1px solid var(--c-line-soft);
  font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: 0.08em; color: var(--c-ink);
}
.drawer__nav a small { font-family: var(--font-jp); font-size: 14px; font-weight: 400; letter-spacing: 0; color: var(--c-muted); }
.drawer__info { font-size: 14px; color: var(--c-muted); }
.drawer__info strong { display: block; font-family: var(--font-display); font-size: 18px; letter-spacing: 0.1em; color: var(--c-ink); margin-bottom: 6px; }
.drawer__info p { margin: 4px 0; }
.drawer__tel a { color: var(--c-accent); text-decoration: underline; font-weight: 600; }

/* =========================================================
   SHELL (center-main grid)
   ========================================================= */
.shell {
  display: grid;
  grid-template-columns: minmax(0, var(--rail-left)) minmax(0, var(--main)) minmax(0, var(--rail));
  justify-content: center;
  column-gap: var(--col-gap);
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  align-items: start;
  min-height: 100svh;
}
.main { min-width: 0; width: 100%; padding: 32px 0 64px; }

/* ---- rails ---- */
.rail {
  position: sticky; top: 60px; height: calc(100svh - 60px);
  overflow: hidden; padding: 28px 0;
  display: flex; flex-direction: column;
}
.rail--left { border-right: 1px solid var(--c-line-soft); padding-right: 20px; }
.rail--right { border-left: 1px solid var(--c-line-soft); padding-left: 20px; }
.rail[hidden] { display: none; }

/* ---- panels ---- */
.panel { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.panel + .panel { margin-top: 26px; }
.panel__head { display: flex; flex-direction: column; gap: 4px; }
.panel__en, .block__en { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-accent); }
.panel__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 0.06em; color: var(--c-ink); }
.panel__note { font-size: 14px; line-height: 1.6; color: var(--c-muted); }

/* right-rail internal tabs (fit 100svh) */
.rail__tabs { display: flex; gap: 6px; margin-bottom: 18px; }
.rail__tab {
  flex: 1; min-height: 44px; border: 1px solid var(--c-line); background: transparent;
  font-family: var(--font-jp); font-size: 14px; font-weight: 500; color: var(--c-muted);
  transition: all 0.2s var(--ease);
}
.rail__tab[aria-selected="true"] { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
/* only tabbed while panels live in the rail; relocated panels always show */
#rail-right[data-active] > .panel { display: none; }
#rail-right[data-active="price"] > #panel-price,
#rail-right[data-active="flow"] > #panel-flow,
#rail-right[data-active="faq"] > #panel-faq { display: flex; }
.rail--right .panel + .panel { margin-top: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.hero__ph { position: relative; }
.hero__body { padding: 26px 4px 0; }
.hero__en { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 12px; }
.hero__title {
  font-family: var(--font-display); font-weight: 300; font-size: clamp(34px, 7vw, 52px);
  line-height: 1.18; letter-spacing: 0.02em; color: var(--c-ink); margin-bottom: 18px;
}
.hero__lead { font-size: 16px; line-height: 1.85; color: var(--c-muted); max-width: 46ch; margin-bottom: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   BLOCKS (center sections)
   ========================================================= */
.block { padding: 34px 0; border-top: 1px solid var(--c-line-soft); }
.block__head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.block__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 4.4vw, 34px); letter-spacing: 0.06em; color: var(--c-ink); }
.block__note { font-size: 14px; line-height: 1.6; color: var(--c-muted); }
.block__lead { font-size: 16px; line-height: 1.85; color: var(--c-muted); margin-bottom: 20px; }
.slot:empty { display: none; }
.slot { margin: 8px 0; }

/* first visit points */
.fv-points { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--c-line); }
.fv-points li { display: flex; gap: 14px; padding: 16px 18px; font-size: 15px; line-height: 1.7; color: var(--c-ink); border-bottom: 1px solid var(--c-line-soft); }
.fv-points li:last-child { border-bottom: 0; }
.fv-points__k { flex: 0 0 68px; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.1em; color: var(--c-accent); }

/* =========================================================
   PLAYER INDEX (left rail + mobile strip)
   ========================================================= */
.idx__list { display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.idx__item {
  display: grid; grid-template-columns: 34px 46px 1fr; align-items: center; gap: 12px;
  width: 100%; min-height: 60px; padding: 8px 10px 8px 4px; text-align: left;
  background: transparent; border: 1px solid transparent; border-bottom: 1px solid var(--c-line-soft);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.idx__item:hover { background: var(--c-white); border-color: var(--c-line); }
.idx__item.is-active { background: var(--c-ice); border-color: var(--c-pale); }
.idx__no { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--c-silver); text-align: center; }
.idx__item.is-active .idx__no { color: var(--c-accent); }
.idx__thumb { width: 46px; }
.idx__thumb .ph { border: 1px solid var(--c-line-soft); }
.idx__thumb .ph__label { display: none; }
.idx__meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.idx__name { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: 0.05em; color: var(--c-ink); }
.idx__ja { font-size: 14px; color: var(--c-muted); }
.idx__badge { align-self: flex-start; margin-top: 3px; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--c-accent); }
.idx__badge--pick { color: var(--c-muted); }

/* mobile horizontal strip */
.panel--strip .panel__note { display: none; }
.panel--strip .idx__list {
  flex-direction: row; gap: 12px; overflow-x: auto; overflow-y: hidden;
  padding-bottom: 8px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  min-width: 0; max-width: 100%;
  contain: content; /* flex内スクロール領域がルートscrollWidthへ波及するのを遮断 */
}
.panel--strip .idx__item {
  flex: 0 0 132px; grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 8px;
  border: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  padding: 10px; scroll-snap-align: start; min-height: 0;
}
.panel--strip .idx__no { position: absolute; }
.panel--strip .idx__thumb { width: 100%; }
.panel--strip .idx__thumb .ph { aspect-ratio: 4 / 5; }
.panel--strip .idx__meta { align-items: flex-start; }

/* =========================================================
   PLAYER STAGE (center)
   ========================================================= */
.stage { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.stage__photo { position: relative; }
.stage__photo .ph { border: 1px solid var(--c-line); }
.stage__no {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--c-ink); background: rgba(252, 253, 254, 0.86); padding: 4px 10px; border: 1px solid var(--c-line);
}
.stage__body { min-width: 0; }
.stage__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; padding: 5px 10px; border: 1px solid var(--c-line); color: var(--c-muted); }
.badge--today { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.badge--new { border-color: var(--c-pale); color: var(--c-accent); }
.badge--pick { color: var(--c-ink); }
.stage__catch { font-family: var(--font-display); font-weight: 400; font-size: 19px; line-height: 1.5; color: var(--c-ink); margin-bottom: 8px; }
.stage__name { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: 0.06em; color: var(--c-ink); display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.stage__ja { font-family: var(--font-jp); font-size: 15px; font-weight: 400; color: var(--c-muted); }
.stage__profile { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0 20px; border-top: 1px solid var(--c-line); margin-bottom: 16px; }
.stage__profile > div { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--c-line-soft); }
.stage__profile dt { flex: 0 0 64px; font-size: 14px; color: var(--c-muted); }
.stage__profile dd { font-size: 15px; color: var(--c-ink); }
.stage__comment { font-size: 15px; line-height: 1.8; color: var(--c-ink); margin-bottom: 14px; }
.stage__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag { font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--c-muted); border: 1px solid var(--c-line); padding: 4px 9px; }
.stage__sched { margin-bottom: 20px; }
.stage__sched-label { font-size: 14px; font-weight: 500; color: var(--c-muted); margin-bottom: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 14px; font-weight: 500; color: var(--c-ink); background: var(--c-ice); padding: 5px 10px; border: 1px solid var(--c-line-soft); }
.chip--today { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.stage__nosched { font-size: 14px; color: var(--c-muted); }
.stage__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   PRICE (segment toggle)
   ========================================================= */
.seg { display: flex; gap: 8px; }
.seg__btn {
  flex: 1; display: flex; flex-direction: column; gap: 2px; align-items: center; justify-content: center;
  min-height: 60px; padding: 8px; border: 1.5px solid var(--c-line); background: transparent;
  transition: all 0.2s var(--ease);
}
.seg__btn[aria-selected="true"] { border-color: var(--c-accent); background: var(--c-ice); }
.seg__min { font-size: 14px; color: var(--c-muted); }
.seg__price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--c-ink); }
.seg__btn[aria-selected="true"] .seg__price { color: var(--c-accent); }
.price-detail { margin-top: 14px; border: 1px solid var(--c-line); }
.price-detail__head { display: flex; flex-direction: column; gap: 3px; padding: 12px 14px; background: var(--c-ice); border-bottom: 1px solid var(--c-line); font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--c-ink); }
.price-detail__head span { font-family: var(--font-jp); font-size: 14px; font-weight: 400; color: var(--c-muted); }
.price-lines { padding: 4px 14px 10px; }
.price-lines li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--c-line-soft); font-size: 15px; }
.price-lines li:last-child { border-bottom: 0; }
.price-lines__name { color: var(--c-muted); }
.price-lines__val { color: var(--c-ink); font-weight: 500; text-align: right; }
.price-notes { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.price-notes li { position: relative; padding-left: 16px; font-size: 14px; line-height: 1.6; color: var(--c-muted); }
.price-notes li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--c-pale); }
.price-foot { margin-top: 12px; font-size: 14px; color: var(--c-muted); }

/* =========================================================
   FLOW
   ========================================================= */
.flow { display: flex; flex-direction: column; }
.flow__item { display: grid; grid-template-columns: 64px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--c-line-soft); }
.flow__item:last-child { border-bottom: 0; }
.flow__step { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--c-accent); padding-top: 2px; }
.flow__title { font-size: 15px; font-weight: 600; color: var(--c-ink); margin-bottom: 3px; }
.flow__desc { font-size: 14px; line-height: 1.65; color: var(--c-muted); }

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.acc { border-bottom: 1px solid var(--c-line-soft); }
.acc__h { margin: 0; }
.acc__btn { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; min-height: 52px; padding: 12px 2px; background: none; border: 0; text-align: left; font-size: 15px; font-weight: 500; color: var(--c-ink); }
.acc__icon { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--c-accent); transition: transform 0.25s var(--ease); }
.acc__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.acc__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__panel { padding: 0 2px 14px; }
.acc__panel p { font-size: 14px; line-height: 1.75; color: var(--c-muted); }

/* =========================================================
   SCHEDULE
   ========================================================= */
.sched-tabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 18px; -webkit-overflow-scrolling: touch; min-width: 0; max-width: 100%; contain: content; }
.sched-tab { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 60px; min-height: 60px; padding: 8px 10px; border: 1px solid var(--c-line); background: transparent; transition: all 0.2s var(--ease); }
.sched-tab[aria-selected="true"] { background: var(--c-ink); border-color: var(--c-ink); }
.sched-tab[aria-selected="true"] .sched-tab__dow, .sched-tab[aria-selected="true"] .sched-tab__num { color: #fff; }
.sched-tab__dow { font-size: 14px; color: var(--c-muted); }
.sched-tab__dow.is-sun { color: #b5566a; }
.sched-tab__num { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--c-ink); }
.sched-tab.is-closed { opacity: 0.5; }
.sched-daylabel { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.06em; color: var(--c-muted); margin-bottom: 14px; }
.sched-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 14px; }
.sched-card { display: flex; flex-direction: column; gap: 6px; padding: 0; border: 1px solid var(--c-line); background: var(--c-white); text-align: left; transition: border-color 0.2s var(--ease); }
.sched-card:hover { border-color: var(--c-pale); }
.sched-card__ph { display: block; }
.sched-card__ph .ph__label { display: none; }
.sched-card__name { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: 0.04em; color: var(--c-ink); padding: 8px 10px 0; }
.sched-card__time { font-size: 14px; color: var(--c-accent); padding: 0 10px 10px; }
.empty { padding: 28px 16px; text-align: center; border: 1px dashed var(--c-line); }
.empty__en { display: block; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.2em; color: var(--c-silver); margin-bottom: 8px; }
.empty p { font-size: 15px; color: var(--c-muted); }

/* =========================================================
   EVENT
   ========================================================= */
.event { border: 1px solid var(--c-line); }
.event__ph .ph__label { opacity: 0.5; }
.event__body { padding: 22px; }
.event__date { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; color: var(--c-accent); margin-bottom: 10px; }
.event__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: 0.04em; color: var(--c-ink); margin-bottom: 10px; }
.event__text { font-size: 15px; line-height: 1.8; color: var(--c-muted); margin-bottom: 18px; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot { border-top: 1px solid var(--c-line); background: var(--c-ice); }
.foot__inner { max-width: var(--shell-max); margin: 0 auto; padding: 44px var(--pad) 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.foot__logo { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: 0.16em; color: var(--c-ink); margin-bottom: 12px; }
.foot__logo span { color: var(--c-accent); font-size: 14px; letter-spacing: 0.28em; }
.foot__concept { font-size: 14px; line-height: 1.8; color: var(--c-muted); max-width: 40ch; }
.foot__info { display: flex; flex-direction: column; gap: 0; }
.foot__info > div { display: flex; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--c-line-soft); font-size: 14px; }
.foot__info dt { flex: 0 0 54px; color: var(--c-muted); }
.foot__info dd { color: var(--c-ink); }
.foot__info a { color: var(--c-accent); text-decoration: underline; }
.foot__nav { display: flex; flex-direction: column; gap: 10px; }
.foot__nav a { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.06em; color: var(--c-muted); }
.foot__nav a:hover { color: var(--c-ink); }
.foot__demo { max-width: var(--shell-max); margin: 0 auto; padding: 0 var(--pad); font-size: 14px; line-height: 1.7; color: var(--c-muted); }
.foot__copy { max-width: var(--shell-max); margin: 0 auto; padding: 14px var(--pad) calc(30px + env(safe-area-inset-bottom)); font-family: var(--font-display); font-size: 14px; letter-spacing: 0.06em; color: var(--c-muted); }

/* =========================================================
   FIXED CTA (mobile) + PAGE TOP + MODAL
   ========================================================= */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
  gap: 10px; padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(252, 253, 254, 0.95); border-top: 1px solid var(--c-line);
  backdrop-filter: blur(8px);
}
.cta-bar__btn { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 52px; font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0.06em; }
.cta-bar__btn--line { border: 1.5px solid var(--c-ink); color: var(--c-ink); }
.cta-bar__btn--solid { background: var(--c-black); color: #fff; }

.page-top { position: fixed; right: 18px; bottom: 88px; z-index: 70; width: 46px; height: 46px; border: 1px solid var(--c-line); background: var(--c-white); color: var(--c-ink); font-size: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.page-top.is-show { opacity: 1; pointer-events: auto; }

.modal { position: fixed; inset: 0; z-index: 150; display: none; align-items: center; justify-content: center; padding: var(--pad); }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(22, 24, 27, 0.4); border: 0; }
.modal__panel { position: relative; z-index: 1; width: min(460px, 100%); background: var(--c-white); border: 1px solid var(--c-line); padding: 30px 26px 26px; display: flex; flex-direction: column; gap: 14px; }
.modal__close { position: absolute; top: 8px; right: 8px; width: 44px; height: 44px; border: 0; background: none; font-size: 26px; color: var(--c-ink); }
.modal__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 0.04em; }
.modal__body { font-size: 15px; line-height: 1.8; color: var(--c-muted); }

/* ---- reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* 1024–1279px: 左INDEXレールのみ / 右は中央スロットへ移設 */
@media (max-width: 1279px) {
  .shell { grid-template-columns: minmax(0, var(--rail-left)) minmax(0, var(--main)); column-gap: 32px; }
  .rail--right { display: none; }
  #slot-price .panel, #slot-flow .panel, #slot-faq .panel { display: flex; }
}

/* 768–1023px: レールなし・中央単独（最大760px） */
@media (max-width: 1023px) {
  .shell { grid-template-columns: minmax(0, 760px); justify-content: center; }
  .rail--left { display: none; }
  .main { max-width: 760px; margin: 0 auto; }
  .hdr__nav { display: none; }
  .hdr__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--c-line); background: var(--c-white);
  }
  .hdr__toggle span { display: block; width: 22px; height: 2px; background: var(--c-ink); margin: 0 auto; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
  .hdr__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hdr__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hdr__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hdr__cta { display: none; }
  .cta-bar { display: flex; }
  body { padding-bottom: 80px; }
  .stage { grid-template-columns: 260px 1fr; gap: 22px; }
}

/* slot panels styling when inlined */
.slot .panel { border: 1px solid var(--c-line); padding: 20px 18px; }
.slot--index { margin: 4px 0 0; }
.slot--index .panel { border: 0; padding: 0; }
#slot-index .panel__head { margin-bottom: 12px; }

/* 767px以下: 完全1カラム・スマホ最優先 */
@media (max-width: 767px) {
  :root { --pad: 16px; }
  .shell { padding: 0 var(--pad); min-height: 0; }
  .main { padding: 20px 0 48px; }
  .hero { margin-bottom: 28px; }
  .hero__body { padding-top: 20px; }
  .hero__title { font-size: clamp(30px, 9vw, 40px); }
  .stage { grid-template-columns: 1fr; gap: 18px; }
  .stage__photo { max-width: 320px; }
  .stage__profile { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr; gap: 24px; }
  .block { padding: 26px 0; }
  .sched-grid { grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
}

@media (max-width: 380px) {
  .hero__actions .btn, .stage__actions .btn { width: 100%; }
  .seg__price { font-size: 18px; }
}

/* =========================================================
   下層ページ共通
   ========================================================= */
.main--sub { padding-top: 26px; }
.crumb { margin-bottom: 20px; }
.crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.crumb li { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--c-muted); }
.crumb li:not(:last-child)::after { content: "›"; color: var(--c-silver); }
.crumb a { color: var(--c-accent); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.crumb [aria-current="page"] span { color: var(--c-ink); }

/* left nav-rail */
.nav-rail { gap: 2px; }
.nav-rail > .panel__en { margin-bottom: 10px; }
.nav-rail a { display: flex; flex-direction: column; gap: 1px; padding: 10px 8px; border-bottom: 1px solid var(--c-line-soft); font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0.06em; color: var(--c-ink); }
.nav-rail a span { font-family: var(--font-jp); font-size: 14px; font-weight: 400; letter-spacing: 0; color: var(--c-muted); }
.nav-rail a:hover { color: var(--c-accent); }
.nav-rail a[aria-current="page"] { color: var(--c-accent); border-left: 2px solid var(--c-accent); padding-left: 12px; }
.nav-rail__info { margin-top: 24px; gap: 6px; }
.nav-rail__store { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: 0.08em; color: var(--c-ink); }
.nav-rail__meta { font-size: 14px; color: var(--c-muted); }

/* filterbar */
.filterbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filterbar__btn { min-height: 44px; padding: 0 16px; border: 1px solid var(--c-line); background: transparent; font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: var(--c-muted); transition: all 0.2s var(--ease); }
.filterbar__btn[aria-pressed="true"] { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
.count-note { font-size: 14px; color: var(--c-muted); margin-bottom: 16px; }

/* PLAYER grid (cast.html) */
.pgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.pcard { border: 1px solid var(--c-line); background: var(--c-white); }
.pcard__link { display: block; position: relative; }
.pcard__no { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--c-ink); background: rgba(252,253,254,0.86); padding: 3px 8px; border: 1px solid var(--c-line); }
.pcard__ph .ph__label { opacity: 0.4; }
.pcard__body { padding: 14px 16px 18px; }
.pcard__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; min-height: 22px; }
.pcard__name { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 0.05em; color: var(--c-ink); display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.pcard__name span { font-family: var(--font-jp); font-size: 14px; font-weight: 400; color: var(--c-muted); }
.pcard__catch { font-size: 15px; line-height: 1.6; color: var(--c-ink); margin-bottom: 8px; }
.pcard__tags { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.04em; color: var(--c-accent); }

/* CAST detail */
.detail { display: grid; grid-template-columns: 320px 1fr; gap: 30px; align-items: start; }
.detail__photos { position: sticky; top: 80px; }
.detail__main { position: relative; display: block; width: 100%; padding: 0; border: 1px solid var(--c-line); background: none; cursor: zoom-in; }
.detail__subs { display: flex; gap: 10px; margin-top: 10px; }
.detail__sub { flex: 1; padding: 0; border: 1px solid var(--c-line); background: none; cursor: zoom-in; }
.detail__sub .ph__label, .detail__main .ph__label { display: none; }
.detail__nonote { font-size: 14px; color: var(--c-muted); margin-top: 10px; line-height: 1.6; }
.detail__body { min-width: 0; }
.detail__name { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 5vw, 38px); letter-spacing: 0.05em; color: var(--c-ink); display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.detail__name .stage__ja { font-family: var(--font-jp); font-size: 15px; font-weight: 400; }
.detail-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; border-top: 1px solid var(--c-line); padding-top: 20px; }
.detail-nav__link { display: flex; flex-direction: column; gap: 3px; font-family: var(--font-display); font-size: 14px; color: var(--c-muted); }
.detail-nav__link--next { text-align: right; }
.detail-nav__link small { font-family: var(--font-jp); font-size: 16px; color: var(--c-ink); }
.detail-nav__link:hover { color: var(--c-accent); }

/* SYSTEM */
.sys-block { padding: 24px 0; border-top: 1px solid var(--c-line-soft); }
.sys-block:first-child { border-top: 0; }
.sys-block__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: 0.05em; color: var(--c-ink); margin-bottom: 16px; }
.sys-table { width: 100%; border-collapse: collapse; }
.sys-table th, .sys-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--c-line-soft); font-size: 16px; }
.sys-table th { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; color: var(--c-muted); font-weight: 600; }
.sys-table .price { text-align: right; font-weight: 600; color: var(--c-ink); white-space: nowrap; }
.sys-cards { display: none; flex-direction: column; gap: 10px; }
.sys-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--c-line); padding: 14px 16px; }
.sys-card__name { font-size: 16px; font-weight: 600; color: var(--c-ink); }
.sys-card__sub { font-size: 14px; color: var(--c-muted); }
.sys-card__price { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--c-ink); }
.sys-inline { display: flex; flex-wrap: wrap; gap: 8px; }
.sys-inline li { font-size: 15px; color: var(--c-ink); border: 1px solid var(--c-line); padding: 6px 12px; }
.sys-summary { font-size: 15px; color: var(--c-muted); margin-top: 12px; }
.sys-notes { display: flex; flex-direction: column; gap: 8px; }
.sys-notes li { position: relative; padding-left: 16px; font-size: 15px; line-height: 1.7; color: var(--c-ink); }
.sys-notes li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--c-pale); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* NEWS list */
.news-row { display: grid; grid-template-columns: 160px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--c-line-soft); align-items: start; }
.news-row__ph .ph__label { opacity: 0.4; }
.news-row__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.news-row__meta time { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.04em; color: var(--c-muted); }
.news-row__cat { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--c-muted); border: 1px solid var(--c-line); padding: 3px 8px; }
.news-row__cat.is-event { color: var(--c-accent); border-color: var(--c-pale); }
.news-row__title { font-size: 17px; font-weight: 600; color: var(--c-ink); line-height: 1.5; margin-bottom: 6px; }
.news-row__excerpt { font-size: 14px; line-height: 1.7; color: var(--c-muted); }
.news-row:hover .news-row__title { color: var(--c-accent); }
.pager { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pager__btn { min-width: 44px; min-height: 44px; border: 1px solid var(--c-line); background: transparent; font-family: var(--font-display); font-size: 14px; color: var(--c-muted); }
.pager__btn[aria-current="page"] { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }

/* ARTICLE */
.article__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.article__meta time { font-family: var(--font-display); font-size: 14px; color: var(--c-muted); }
.article__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 4.6vw, 34px); line-height: 1.35; letter-spacing: 0.03em; color: var(--c-ink); margin-bottom: 18px; }
.article__photo { margin-bottom: 22px; border: 1px solid var(--c-line); }
.article__body { font-size: 16px; line-height: 1.9; color: var(--c-ink); }
.article__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; border-top: 1px solid var(--c-line); padding-top: 20px; font-family: var(--font-display); font-size: 14px; }
.article__nav a { color: var(--c-accent); }
.article__nav a:hover { text-decoration: underline; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gitem { position: relative; padding: 0; border: 1px solid var(--c-line); background: none; cursor: zoom-in; overflow: hidden; }
.gitem .ph { transition: transform 0.5s var(--ease); }
.gitem:hover .ph, .gitem:focus-visible .ph { transform: scale(1.04); }
.gitem__cat { position: absolute; left: 8px; bottom: 8px; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--c-ink); background: rgba(252,253,254,0.86); padding: 3px 8px; border: 1px solid var(--c-line); }

/* ACCESS */
.access-map { border: 1px solid var(--c-line); margin-bottom: 22px; }
.access-list { border-top: 1px solid var(--c-line); margin-bottom: 26px; }
.access-list > div { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--c-line-soft); }
.access-list dt { flex: 0 0 96px; font-size: 15px; color: var(--c-muted); }
.access-list dd { font-size: 16px; color: var(--c-ink); }
.access-list a { color: var(--c-accent); text-decoration: underline; }
.access-note p { font-size: 16px; line-height: 1.85; color: var(--c-ink); }

/* RECRUIT */
.merits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 8px; }
.merit { border: 1px solid var(--c-line); padding: 18px; }
.merit__no { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--c-accent); margin-bottom: 8px; }
.merit__title { font-size: 17px; font-weight: 600; color: var(--c-ink); margin-bottom: 8px; }
.merit__body { font-size: 15px; line-height: 1.75; color: var(--c-muted); }
.rec-block { padding: 24px 0; border-top: 1px solid var(--c-line-soft); }
.deflist { border-top: 1px solid var(--c-line); }
.deflist li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--c-line-soft); }
.deflist__k { font-size: 16px; font-weight: 600; color: var(--c-ink); }
.deflist__v { font-size: 15px; color: var(--c-muted); text-align: right; }
.rec-trial { font-size: 15px; line-height: 1.8; color: var(--c-ink); margin-top: 14px; }

/* FORM */
.form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 15px; font-weight: 600; color: var(--c-ink); }
.req { display: inline-block; margin-left: 8px; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: #fff; background: var(--c-accent); padding: 2px 7px; vertical-align: middle; }
.form__input { width: 100%; min-height: 48px; padding: 10px 14px; border: 1px solid var(--c-line); background: var(--c-white); font-family: var(--font-jp); font-size: 16px; color: var(--c-ink); }
.form__input:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 1px; border-color: var(--c-accent); }
textarea.form__input { min-height: 108px; resize: vertical; line-height: 1.7; }
.form__row--check { flex-direction: row; }
.form__check { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.6; color: var(--c-ink); cursor: pointer; }
.form__check input { width: 22px; height: 22px; margin-top: 1px; accent-color: var(--c-accent); }
.form__note { font-size: 14px; line-height: 1.7; color: var(--c-muted); }
.confirm { border: 1px solid var(--c-line); padding: 22px; margin-top: 8px; }
.confirm__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 16px; color: var(--c-ink); }
.confirm__list { display: flex; flex-direction: column; }
.confirm__row { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--c-line-soft); }
.confirm__row dt { flex: 0 0 116px; font-size: 14px; color: var(--c-muted); }
.confirm__row dd { font-size: 15px; color: var(--c-ink); word-break: break-word; }
.confirm__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }

/* PROSE (privacy) */
.prose { font-size: 16px; line-height: 1.9; color: var(--c-ink); }
.prose__demo { border: 1px solid var(--c-pale); background: var(--c-ice); padding: 16px 18px; font-size: 15px; line-height: 1.8; color: var(--c-ink); margin-bottom: 22px; }
.prose h2 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: 0.03em; color: var(--c-ink); margin: 26px 0 8px; }
.prose p { margin-bottom: 10px; }
.prose a { color: var(--c-accent); text-decoration: underline; }

/* FIRST VISIT page */
.fv-sec { padding: 24px 0; border-top: 1px solid var(--c-line-soft); }
.fv-sec:first-of-type { border-top: 0; }
.fv-agenote { font-size: 15px; line-height: 1.8; color: var(--c-muted); margin-top: 14px; }
.fv-faqlink { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--c-line); }
.fv-faqlink p { font-size: 16px; line-height: 1.8; color: var(--c-ink); margin-bottom: 16px; }

/* FAQ page */
.faqpage .acc__btn { font-size: 16px; min-height: 56px; }
.faqpage .acc__panel p { font-size: 15px; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lb { position: fixed; inset: 0; z-index: 160; display: none; align-items: center; justify-content: center; padding: 24px; }
.lb.is-open { display: flex; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(22, 24, 27, 0.78); border: 0; }
.lb__stage { position: relative; z-index: 1; max-width: min(560px, 92vw); }
.lb__figure { margin: 0; }
.lb__ph { border: 1px solid rgba(255,255,255,0.3); }
.lb__ph .ph { max-height: 78vh; }
.lb__ph .ph__label { display: none; }
.lb__cap { margin-top: 10px; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.04em; color: #f4f4f2; text-align: center; }
.lb__close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.4); background: rgba(22,24,27,0.5); color: #fff; font-size: 26px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.4); background: rgba(22,24,27,0.5); color: #fff; font-size: 26px; }
.lb__nav--prev { left: 12px; }
.lb__nav--next { right: 12px; }

/* =========================================================
   下層ページ レスポンシブ
   ========================================================= */
@media (max-width: 1023px) {
  .detail { grid-template-columns: 300px 1fr; gap: 22px; }
}
@media (max-width: 767px) {
  .sys-table { display: none; }
  .sys-cards { display: flex; }
  .pgrid { gap: 14px; }
  .detail { grid-template-columns: 1fr; gap: 18px; }
  .detail__photos { position: static; max-width: 340px; }
  .merits { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 110px 1fr; gap: 12px; }
  .confirm__row { flex-direction: column; gap: 2px; }
  .confirm__row dt { flex-basis: auto; }
  .cta-row .btn, .contact-cta .btn { width: 100%; }
}
@media (max-width: 440px) {
  .pgrid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
