/* ============================================================
   style.css — 2FACED LAUNCH DAY 09.11 企画提案書
   設計方針:
   - 各 .page = A4横(297:210)。container-type:inline-size を持ち、
     内部の文字・余白はすべて cqw(ページ幅の%) で指定。
     → 画面でも印刷(A4横)でもレイアウト比率が完全に一致する。
   - 資料そのものが COURT × STREET を体現する。
     昼のパート(Gallery2)＝白い面 / 夜のパート(Kinetics)＝黒い面。
   - 色は 黒 / 白 / シルバー / CONVERSE RED の4色のみ。
   ============================================================ */

:root {
  /* 夜 */
  --ink:      #08080c;
  --ink-2:    #14141a;
  /* 昼 */
  --paper:    #ffffff;
  --paper-2:  #f2f1ee;
  --paper-3:  #e4e2dd;
  /* 文字（昼の面） */
  --fg:       #08080c;
  --fg-2:     #4b4b52;
  --fg-3:     #8a8a91;
  --line:     #dcdad5;
  --line-2:   #edecea;
  /* 文字（夜の面） */
  --dfg:      #f4f4f2;
  --dfg-2:    #a0a0a6;
  --dfg-3:    #5e5e66;
  --dline:    rgba(255,255,255,.16);
  --dline-2:  rgba(255,255,255,.08);
  /* アクセント */
  --red:      #e01f26;
  --red-deep: #a4141a;
  --silver:   #a8a9ad;

  --en: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont,
        'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;

  --page-max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--jp);
  color: var(--fg);
  background: #b9b9b6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================ ページ枠 ============================ */
.sheet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 74px 16px 88px;
}

.page {
  position: relative;
  width: 100%;
  max-width: var(--page-max);
  aspect-ratio: 297 / 210;
  background: var(--paper);
  container-type: inline-size;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

/* 夜の面 */
.page.dark {
  background: var(--ink);
  --fg: var(--dfg);
  --fg-2: var(--dfg-2);
  --fg-3: var(--dfg-3);
  --line: var(--dline);
  --line-2: var(--dline-2);
  --paper: var(--ink);
  --paper-2: var(--ink-2);
  color: var(--dfg);
}

.pad {
  position: absolute;
  inset: 0;
  padding: 4.2cqw 5.2cqw 3.8cqw;
  display: flex;
  flex-direction: column;
}
.pad.wide { padding-left: 3.8cqw; padding-right: 3.8cqw; }

/* ------------------------ ページ見出し ------------------------ */
.phead {
  display: flex;
  align-items: flex-end;
  gap: 1.4cqw;
  padding-bottom: 1cqw;
  border-bottom: .18cqw solid currentColor;
  flex: 0 0 auto;
}
.phead .pnum {
  font-family: var(--en);
  font-weight: 700;
  font-size: 1.3cqw;
  letter-spacing: .08em;
  color: var(--red);
  line-height: 1;
  padding-bottom: .14cqw;
}
.phead .peng {
  font-family: var(--en);
  font-weight: 900;
  font-size: 2.05cqw;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}
.phead .ptitle {
  font-size: 1.24cqw;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--fg-2);
  line-height: 1;
  padding-bottom: .16cqw;
}
.phead .pright {
  margin-left: auto;
  font-family: var(--en);
  font-size: 1cqw;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--fg-3);
  line-height: 1;
  padding-bottom: .2cqw;
  text-transform: uppercase;
}

.folio {
  position: absolute;
  right: 3.2cqw;
  bottom: 1.8cqw;
  font-family: var(--en);
  font-weight: 600;
  font-size: .95cqw;
  letter-spacing: .2em;
  color: var(--fg-3);
  z-index: 4;
}

/* ------------------------ 共通タイポ ------------------------ */
.display {
  font-family: var(--en);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .86;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--en);
  font-weight: 800;
  letter-spacing: -.028em;
  line-height: .94;
  text-transform: uppercase;
}
.mono {
  font-family: var(--en);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.num {
  font-family: var(--en);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.055em;
  line-height: .8;
}

.lead {
  font-size: 1.34cqw;
  line-height: 1.92;
  color: var(--fg-2);
  letter-spacing: .02em;
  margin: 1.5cqw 0 0;
  max-width: 64cqw;
}
.lead b { color: var(--fg); font-weight: 700; }
.lead .r { color: var(--red); font-weight: 700; }

.body {
  font-size: 1.12cqw;
  line-height: 1.95;
  color: var(--fg-2);
  letter-spacing: .015em;
}
.body b { color: var(--fg); font-weight: 700; }
.h3 {
  font-size: 1.4cqw;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.45;
  margin: 0;
}
.kicker {
  font-family: var(--en);
  font-size: .92cqw;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}
.note {
  font-size: .94cqw;
  line-height: 1.78;
  color: var(--fg-3);
  border-left: .2cqw solid var(--line);
  padding-left: .9cqw;
}
.note.warn { border-left-color: var(--red); color: var(--fg-2); }

.tbd {
  display: inline-block;
  font-family: var(--en);
  font-size: .72cqw;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: .12cqw .5cqw;
  vertical-align: .12em;
  margin-left: .35cqw;
}

.grow { flex: 1 1 auto; min-height: 0; }
.mt1 { margin-top: 1cqw; } .mt2 { margin-top: 2cqw; } .mt3 { margin-top: 3cqw; }
.rule { height: 1px; background: var(--line); }
.r { color: var(--red); }

.cols { display: grid; gap: 2cqw; }
.c2 { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.c3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.c-7-5 { grid-template-columns: minmax(0,7fr) minmax(0,5fr); }
.c-5-7 { grid-template-columns: minmax(0,5fr) minmax(0,7fr); }
.c-6-6 { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }

/* ============================ 表紙 ============================ */
.page.cover { background: var(--ink); color: var(--dfg); }
.cover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
  z-index: 0;
}
.cover .scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(8,8,12,.95) 0%, rgba(8,8,12,.72) 44%, rgba(8,8,12,.2) 78%),
    linear-gradient(0deg, rgba(8,8,12,.8) 0%, rgba(8,8,12,0) 46%);
}
.cover-body {
  position: absolute; inset: 0; z-index: 3;
  padding: 4.4cqw 5.2cqw 4cqw;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--dfg);
}
.cover-top { display: flex; align-items: flex-start; justify-content: space-between; }
.cover-logo { height: 1.5cqw; width: auto; display: block; }
.cover-date { font-family: var(--en); font-weight: 600; font-size: .95cqw; letter-spacing: .2em; color: rgba(255,255,255,.55); text-align: right; line-height: 1.8; }

.cover-num { display: flex; align-items: center; }
.cover-num .n { font-family: var(--en); font-weight: 900; font-size: 15cqw; line-height: .78; letter-spacing: -.06em; }
.cover-num .dot { width: 1.5cqw; height: 1.5cqw; border-radius: 50%; background: var(--red); margin: 0 .5cqw; align-self: center; }
.cover h1 { font-family: var(--en); font-weight: 900; font-size: 5.6cqw; line-height: .9; letter-spacing: -.035em; margin: 1.4cqw 0 0; text-transform: uppercase; }
.cover h1 .thin { font-weight: 300; }
.cover .sub { font-size: 1.35cqw; font-weight: 500; letter-spacing: .14em; margin-top: 1.4cqw; color: rgba(255,255,255,.88); }
.cover .crule { width: 8cqw; height: .26cqw; background: var(--red); margin: 1.8cqw 0 1.4cqw; }
.cover .venues { font-family: var(--en); font-weight: 600; font-size: 1.1cqw; letter-spacing: .13em; color: rgba(255,255,255,.72); }
.cover-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 1.2cqw;
}
.cover-foot .by { font-size: .95cqw; letter-spacing: .1em; color: rgba(255,255,255,.55); }
.cover-foot .tag { font-family: var(--en); font-weight: 600; font-size: .85cqw; letter-spacing: .22em; color: rgba(255,255,255,.38); text-transform: uppercase; }

/* ============================ 02 サマリー ============================ */
.bigstate {
  background: var(--ink); color: var(--dfg);
  padding: 2.4cqw 2.6cqw; margin-top: 1.8cqw;
  display: flex; align-items: center; gap: 2.6cqw;
}
.bigstate .bs-l {
  font-family: var(--en); font-weight: 900; font-size: 3.7cqw;
  line-height: .95; letter-spacing: -.03em; text-transform: uppercase; white-space: nowrap;
}
.bigstate .bs-l em { font-style: normal; color: var(--red); }
.bigstate .bs-r { font-size: 1.14cqw; line-height: 2; color: rgba(255,255,255,.78); }
.bigstate .bs-r b { color: #fff; }

.sum { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; }
.sum-cell { padding: 1.6cqw 1.5cqw 1.4cqw 0; border-top: .18cqw solid var(--fg); display: flex; flex-direction: column; }
.sum-cell + .sum-cell { padding-left: 1.5cqw; }
.sum-cell .sk { font-family: var(--en); font-weight: 700; font-size: .86cqw; letter-spacing: .18em; color: var(--red); text-transform: uppercase; }
.sum-cell .sv { font-size: 1.42cqw; font-weight: 700; margin-top: .7cqw; line-height: 1.5; }
.sum-cell .sd { font-size: .95cqw; line-height: 1.8; color: var(--fg-2); margin-top: .9cqw; }

/* ============================ 03 二部構成 ============================ */
.faces { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 0; flex: 1 1 auto; }
.face { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 2.2cqw 2.4cqw; }
.face.day { background: var(--paper-2); color: var(--fg); }
.face.night { background: var(--ink); color: var(--dfg); }
.face .fbg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.face.day .fbg { opacity: .13; }
.face.night .fbg { opacity: .22; filter: grayscale(.4) contrast(1.1); }
.face .ftop { position: relative; display: flex; align-items: baseline; justify-content: space-between; }
.face .ftime { font-family: var(--en); font-weight: 700; font-size: .92cqw; letter-spacing: .2em; color: var(--red); }
.face .fvenue { font-family: var(--en); font-weight: 600; font-size: .9cqw; letter-spacing: .12em; opacity: .6; }
.face .fmain { position: relative; }
.face .fkey { font-family: var(--en); font-weight: 900; font-size: 5.6cqw; letter-spacing: -.045em; line-height: .9; }
.face .fverb { font-family: var(--en); font-weight: 900; font-size: 2.1cqw; letter-spacing: -.01em; margin-top: .5cqw; }
.face.day .fverb { color: var(--red); }
.face.night .fverb { color: var(--red); }
.face .fbody { font-size: 1cqw; line-height: 1.95; margin-top: 1cqw; max-width: 34ch; opacity: .78; }
.face .flist { position: relative; margin-top: 1.4cqw; padding-top: 1cqw; border-top: 1px solid currentColor; }
.face .flist span { display: inline-block; font-size: .92cqw; letter-spacing: .04em; margin-right: 1.2cqw; opacity: .82; }

/* ============================ 05 タイムライン ============================ */
.tl { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 0; flex: 1 1 auto; }
.tl-step { position: relative; padding: 0 1cqw 0 0; display: flex; flex-direction: column; }
.tl-step .bar { height: .32cqw; background: var(--line); position: relative; }
.tl-step.day .bar { background: var(--fg-3); }
.tl-step.dusk .bar { background: #b06a2c; }
.tl-step.night .bar { background: var(--red); }
.tl-step .bar::after {
  content: ''; position: absolute; left: 0; top: -.4cqw;
  width: 1.05cqw; height: 1.05cqw; border-radius: 50%;
  background: var(--paper); border: .24cqw solid var(--line);
}
.tl-step.day .bar::after { border-color: var(--fg-3); background: var(--fg-3); }
.tl-step.dusk .bar::after { border-color: #b06a2c; background: #b06a2c; }
.tl-step.night .bar::after { border-color: var(--red); background: var(--red); }
.tl-step .tno { font-family: var(--en); font-weight: 900; font-size: 1.9cqw; margin-top: 1.1cqw; letter-spacing: -.04em; }
.tl-step .ttime { font-family: var(--en); font-weight: 700; font-size: .78cqw; letter-spacing: .16em; margin-top: .5cqw; }
.tl-step.day .ttime { color: var(--fg-3); }
.tl-step.dusk .ttime { color: #b06a2c; }
.tl-step.night .ttime { color: var(--red); }
.tl-step .ttl { font-family: var(--en); font-weight: 800; font-size: 1.16cqw; letter-spacing: -.01em; margin-top: .5cqw; line-height: 1.15; }
.tl-step .tja { font-size: .92cqw; font-weight: 700; margin-top: .45cqw; letter-spacing: .03em; }
.tl-step .tb { font-size: .84cqw; line-height: 1.85; color: var(--fg-2); margin-top: .5cqw; }
.tl-step .tplace { font-family: var(--en); font-size: .74cqw; font-weight: 600; letter-spacing: .1em; color: var(--fg-3); margin-top: auto; padding-top: .8cqw; }

.daynight-bar { display: flex; margin-top: 1.4cqw; height: 1.1cqw; }
.daynight-bar div { flex: 1; display: flex; align-items: center; justify-content: center; font-family: var(--en); font-weight: 700; font-size: .7cqw; letter-spacing: .2em; }
.daynight-bar .d1 { background: var(--paper-3); color: var(--fg-2); flex: 3; }
.daynight-bar .d2 { background: #b06a2c; color: #fff; flex: 1; }
.daynight-bar .d3 { background: var(--ink); color: #fff; flex: 2; }

/* ============================ 会場ページ ============================ */
.venue-hero { display: flex; align-items: flex-end; gap: 1.4cqw; }
.venue-hero .vname { font-family: var(--en); font-weight: 900; font-size: 4.6cqw; letter-spacing: -.04em; line-height: .9; }
.venue-hero .vfloor { font-family: var(--en); font-weight: 900; font-size: 2.4cqw; color: var(--red); letter-spacing: -.03em; }
.verb-mark { font-family: var(--en); font-weight: 900; font-size: 6.4cqw; letter-spacing: -.05em; line-height: .9; }
.verb-mark.hollow { color: transparent; -webkit-text-stroke: .1cqw var(--fg-3); }

.vmenu { width: 100%; }
.vmenu li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.2cqw;
  border-bottom: 1px solid var(--line-2); padding: .8cqw 0; list-style: none;
}
.vmenu li:first-child { border-top: 1px solid var(--line-2); }
.vmenu .t { font-size: 1.06cqw; font-weight: 700; letter-spacing: .04em; }
.vmenu .d { font-size: .88cqw; color: var(--fg-3); text-align: right; line-height: 1.7; }
.vmenu { margin: 0; padding: 0; }

.factrow { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; border-top: .18cqw solid var(--fg); margin-top: 1.6cqw; }
.factrow > div { padding: 1.1cqw 1.2cqw 0 0; }
.factrow > div + div { padding-left: 1.2cqw; border-left: 1px solid var(--line); }
.factrow .fk { font-family: var(--en); font-weight: 700; font-size: .8cqw; letter-spacing: .18em; color: var(--fg-3); }
.factrow .fv { font-family: var(--en); font-weight: 800; font-size: 1.5cqw; margin-top: .5cqw; letter-spacing: -.01em; }

/* ============================ 表 ============================ */
.tbl { width: 100%; border-collapse: collapse; font-size: 1.02cqw; }
.tbl th, .tbl td {
  text-align: left; padding: .78cqw .8cqw;
  border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.68;
}
.tbl thead th {
  font-family: var(--en); font-size: .86cqw; font-weight: 700; letter-spacing: .1em;
  color: var(--fg-3); border-bottom: .16cqw solid var(--fg);
  text-transform: uppercase; white-space: nowrap;
}
.tbl td.num, .tbl th.num {
  text-align: right; font-family: var(--en); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl .tot td { border-top: .16cqw solid var(--fg); border-bottom: none; font-weight: 700; }
.tbl .tot td.num { color: var(--red); }

/* ============================ カード ============================ */
.cards { display: grid; gap: 1.3cqw; flex: 1 1 auto; grid-auto-rows: 1fr; }
.card {
  border: 1px solid var(--line);
  padding: 1.2cqw 1.3cqw;
  display: flex; flex-direction: column; gap: .5cqw; justify-content: center;
}
.card .cn { font-family: var(--en); font-weight: 900; font-size: 1.05cqw; color: var(--red); letter-spacing: .04em; }
.card .ct { font-family: var(--en); font-weight: 800; font-size: 1.24cqw; letter-spacing: -.01em; }
.card .cj { font-size: .95cqw; font-weight: 700; letter-spacing: .03em; }
.card .cd { font-size: .9cqw; line-height: 1.9; color: var(--fg-2); }
.card .cmeta {
  margin-top: auto; padding-top: .9cqw; border-top: 1px solid var(--line-2);
  display: flex; gap: 1.4cqw;
}
.card .cmeta div { font-size: .76cqw; color: var(--fg-3); }
.card .cmeta b { display: block; font-size: .9cqw; color: var(--fg); font-weight: 700; margin-top: .16cqw; }
.card .cf {
  align-self: flex-start; font-family: var(--en); font-weight: 700; font-size: .7cqw;
  letter-spacing: .14em; color: #fff; background: var(--fg); padding: .12cqw .5cqw;
}
.card.night { background: var(--ink); border-color: var(--ink); color: var(--dfg); }
.card.night .cd { color: var(--dfg-2); }
.card.night .cmeta { border-top-color: var(--dline-2); }
.card.night .cmeta div { color: var(--dfg-3); }
.card.night .cmeta b { color: var(--dfg); }
.card.night .cf { background: var(--red); }

/* ============================ Creators ============================ */
.crew { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.3cqw; }
.crew-item {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  padding: 1.4cqw 1.5cqw;
  min-height: 15cqw;
  display: flex; flex-direction: column; justify-content: space-between;
}
.crew-item .cbg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .12; }
.crew-item .crole { position: relative; font-family: var(--en); font-weight: 700; font-size: .8cqw; letter-spacing: .18em; color: var(--red); }
.crew-item .cname { position: relative; font-family: var(--en); font-weight: 900; font-size: 2cqw; letter-spacing: -.03em; margin-top: 1cqw; }
.crew-item .cname.jp { font-family: var(--jp); font-size: 1.7cqw; letter-spacing: .02em; }
.crew-item .cbody { position: relative; font-size: .88cqw; line-height: 1.9; color: var(--fg-2); margin-top: .6cqw; }
.crew-item.tbd-item { background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(224,31,38,.06) 10px 20px); }

/* ============================ フェーズ ============================ */
.phase { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; flex: 1 1 auto; }
.phase > div { padding: 1.5cqw 1.6cqw 0 0; border-top: .18cqw solid var(--fg); display: flex; flex-direction: column; }
.phase > div + div { padding-left: 1.6cqw; }
.phase .pn { font-family: var(--en); font-weight: 700; font-size: .82cqw; letter-spacing: .18em; color: var(--red); }
.phase .pt { font-size: 1.32cqw; font-weight: 700; margin-top: .5cqw; letter-spacing: .03em; }
.phase ul { margin: 1cqw 0 0; padding-left: 1.1cqw; }
.phase li { font-size: .96cqw; line-height: 1.95; color: var(--fg-2); margin-bottom: .2cqw; }
.phase .paim {
  margin-top: auto; padding-top: 1cqw; margin-right: 1.6cqw;
  border-top: 1px solid var(--line);
  font-size: .9cqw; line-height: 1.8; color: var(--fg-2);
}
.phase .paim b { display: block; color: var(--red); margin-bottom: .25cqw; }

/* ============================ KPI ============================ */
.kpis { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5cqw; }
.kpi { border-top: .22cqw solid var(--fg); padding-top: 1.1cqw; }
.kpi.main { border-top-color: var(--red); }
.kpi .kk { font-size: 1cqw; font-weight: 700; letter-spacing: .03em; }
.kpi .kv { font-family: var(--en); font-weight: 900; font-size: 2.8cqw; letter-spacing: -.04em; color: var(--red); line-height: 1.1; margin-top: .4cqw; }
.kpi .kv small { font-size: .95cqw; font-weight: 700; letter-spacing: .02em; }
.kpi .kd { font-size: .9cqw; line-height: 1.85; color: var(--fg-2); margin-top: .4cqw; }

/* ============================ ガント ============================ */
.gantt { width: 100%; border-collapse: collapse; font-size: .96cqw; }
.gantt th, .gantt td { border: 1px solid var(--line); padding: .95cqw .7cqw; }
.gantt thead th {
  font-family: var(--en); font-size: .84cqw; letter-spacing: .1em;
  color: var(--fg-3); background: var(--paper-2); text-align: center; font-weight: 700;
}
.gantt td.lb { text-align: left; width: 25%; font-weight: 500; }
.gantt td.bar { padding: 0; }
.gantt td.bar span { display: block; height: 2.4cqw; }
.gantt td.bar span.on  { background: var(--red); }
.gantt td.bar span.on2 { background: #e8878b; }
.gantt td.bar span.on3 { background: var(--ink); }

/* ============================ 写真 ============================ */
.ph { position: relative; overflow: hidden; background: var(--paper-2); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph .cap {
  position: absolute; left: 0; bottom: 0;
  background: rgba(8,8,12,.8); color: #fff;
  font-family: var(--en); font-weight: 600;
  font-size: .74cqw; letter-spacing: .12em; padding: .35cqw .7cqw;
}
.figcap { font-size: .86cqw; color: var(--fg-3); margin-top: .5cqw; letter-spacing: .02em; }

/* ============================ チェック ============================ */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4cqw 2.6cqw; }
.check { display: grid; grid-template-columns: 1.3cqw 1fr; gap: .8cqw; align-items: start; }
.check .cb { width: 1.3cqw; height: 1.3cqw; border: .15cqw solid currentColor; margin-top: .12cqw; }
.check .ck { font-size: 1.08cqw; font-weight: 700; letter-spacing: .03em; line-height: 1.45; }
.check .cv { font-size: .92cqw; line-height: 1.8; color: var(--fg-2); margin-top: .18cqw; }

.closing-title { font-family: var(--en); font-weight: 900; font-size: 5.6cqw; line-height: .94; letter-spacing: -.04em; text-transform: uppercase; }

/* ============================ 画面用 UI ============================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; height: 54px; z-index: 100;
  background: rgba(8,8,12,.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; color: #fff;
}
.tb-title { font-size: 13px; letter-spacing: .06em; color: rgba(255,255,255,.75); }
.tb-title b { color: #fff; font-weight: 700; }
.tb-right { display: flex; align-items: center; gap: 14px; }
.tb-pos { font-family: var(--en); font-size: 12px; letter-spacing: .14em; color: rgba(255,255,255,.5); }
.btn {
  font-family: var(--jp); font-size: 12px; letter-spacing: .06em;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.3);
  background: transparent; color: #fff; cursor: pointer; border-radius: 2px;
}
.btn.primary { background: var(--red); border-color: var(--red); font-weight: 700; }
.btn:hover { opacity: .85; }
.progress { position: fixed; top: 54px; left: 0; height: 2px; background: var(--red); z-index: 101; width: 0; }

@media (max-width: 640px) {
  .sheet { padding: 66px 8px 40px; }
  .tb-title { font-size: 11px; }
  .tb-pos { display: none; }
}

/* ---- 写真の帯（ページ下部を締める） ---- */
.strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8cqw; flex: 1 1 auto; min-height: 0; }
.strip .ph { height: 100%; }

/* ---- 3分割の補足バンド ---- */
.band { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0; flex: 1 1 auto; align-content: end; }
.band > div { padding: 1.3cqw 1.6cqw 0 0; border-top: .18cqw solid var(--fg); }
.band > div + div { padding-left: 1.6cqw; }
.band .bt { font-family: var(--en); font-weight: 700; font-size: .84cqw; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }
.band .bj { font-size: 1.08cqw; font-weight: 700; letter-spacing: .04em; margin-top: .45cqw; }
.band .bb { font-size: .95cqw; line-height: 1.9; color: var(--fg-2); margin-top: .6cqw; }

/* ------------------------------------------------------------
   一時的に出さないページ。マークアップは残してあるので、
   is-hidden を外すだけで元に戻せる。
   （現在: Operation / Measurement / Schedule / Budget）
   ------------------------------------------------------------ */
.page.is-hidden { display: none !important; }

/* ------------------------------------------------------------
   装飾案の差し込み枠。ビジュアルが上がったら .slot ごと
   <div class="ph"><img …></div> に置き換える。
   ------------------------------------------------------------ */
.slots { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.2cqw; flex: 1 1 auto; }
.slot { display: flex; flex-direction: column; }
.slot .box {
  position: relative; flex: 1 1 auto; min-height: 0;
  border: .16cqw dashed var(--fg-3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5cqw;
}
.slot .box .mark {
  font-family: var(--en); font-weight: 700; font-size: .78cqw;
  letter-spacing: .2em; color: var(--fg-3); text-transform: uppercase;
}
.slot .box .no { font-family: var(--en); font-weight: 900; font-size: 2.4cqw; color: var(--line); letter-spacing: -.04em; }
.slot .st { font-size: 1cqw; font-weight: 700; letter-spacing: .03em; margin-top: .8cqw; }
.slot .sd { font-size: .86cqw; line-height: 1.75; color: var(--fg-3); margin-top: .3cqw; }
