:root {
  --bg: #0E0D12;
  --surface: #16151C;
  --surface2: #1E1D26;
  --line: #26252F;
  --line-strong: #373640;
  --ink: #F4F3F7;
  --muted: #9A97A6;
  --faint: #605E6C;
  --accent: #FF5A94;
  --wrap: 680px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont,
    "Hiragino Sans", "Noto Sans JP", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  font-size: 15px;
}
img, svg { max-width: 100%; }
.num { font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }
.eyebrow {
  font-size: 11px; letter-spacing: .16em; color: var(--muted);
  font-weight: 600; margin: 0 0 16px; text-transform: uppercase;
}
h1 {
  font-size: clamp(34px, 9vw, 60px); line-height: 1.12;
  letter-spacing: -.035em; font-weight: 800; margin: 0 0 20px;
}
h2 {
  font-size: clamp(22px, 5vw, 30px); line-height: 1.25;
  letter-spacing: -.03em; font-weight: 800; margin: 0 0 14px;
}
h3 { font-size: 17px; letter-spacing: -.02em; margin: 0 0 6px; }
.lead { color: var(--muted); margin: 0 0 30px; font-size: 16px; }
.note { color: var(--muted); font-size: 12px; line-height: 1.7; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(14, 13, 18, .86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -.02em; }
.logo i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); display: block;
}
.tag {
  font-size: 10px; letter-spacing: .14em; color: var(--muted);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 5px 10px; font-weight: 600;
}

/* ---------- hero ---------- */
.hero { padding-top: 56px; }
.penlights { display: flex; gap: 6px; margin: 0 0 22px; }
.penlights i { width: 26px; height: 5px; border-radius: 3px; display: block; }

/* ---------- ticket ---------- */
.ticket {
  --band: 178px;
  position: relative; margin: 8px 0 0;
  border-radius: 14px; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.band {
  height: var(--band); background: var(--accent); color: #fff;
  padding: 18px 20px; display: flex; flex-direction: column;
}
.band-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 700;
}
.band-top .k { font-size: 10px; letter-spacing: .16em; opacity: .8; }
.band h3 {
  margin: auto 0 10px; font-size: clamp(20px, 5.4vw, 27px);
  line-height: 1.16; letter-spacing: -.03em; font-weight: 800;
}
.band .when { margin: 0; font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.stub { position: relative; padding: 20px; }
.stub::before, .stub::after {
  content: ""; position: absolute; top: -10px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--bg);
}
.stub::before { left: -10px; }
.stub::after { right: -10px; }
.perf {
  height: 1px; margin: 0 0 18px;
  background: repeating-linear-gradient(
    to right, var(--line-strong) 0 5px, transparent 5px 11px);
}
.stub-grid { display: flex; gap: 18px; align-items: flex-start; }
.specs { flex: 1; min-width: 0; display: grid; gap: 12px; }
.spec .label {
  display: block; font-size: 10px; letter-spacing: .14em;
  color: var(--faint); font-weight: 600;
}
.spec b { font-size: 14px; font-weight: 700; }
.count { text-align: right; flex: none; }
.count em {
  display: block; font-style: normal; font-weight: 800;
  font-size: 48px; line-height: .95; letter-spacing: -.05em;
  color: var(--accent);
}
.count span {
  font-size: 10px; letter-spacing: .14em; color: var(--muted); font-weight: 600;
}
.bar { height: 3px; border-radius: 3px; background: var(--line); margin: 20px 0 10px; }
.bar i { display: block; height: 100%; border-radius: 3px; background: var(--accent); }
.bar-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.stub-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px;
}
.barcode {
  width: 84px; height: 22px;
  background: repeating-linear-gradient(
    to right,
    var(--line-strong) 0 2px, transparent 2px 4px,
    var(--line-strong) 4px 5px, transparent 5px 8px,
    var(--line-strong) 8px 11px, transparent 11px 12px);
}
.stub-foot .label { font-size: 10px; letter-spacing: .12em; color: var(--faint); font-weight: 600; }

/* ---------- release ---------- */
.release { margin: 34px 0 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--accent); color: var(--accent);
  border-radius: 999px; padding: 7px 14px;
  font-size: 11px; letter-spacing: .16em; font-weight: 700;
}
.badge i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  display: block;
}
.stores { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.chip {
  border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 11px 15px; font-size: 13px; font-weight: 700; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.chip.off { opacity: .55; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 12px; padding: 14px 20px;
  font-weight: 800; font-size: 14px;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
}
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }

/* ---------- feature list ---------- */
.steps { list-style: none; padding: 0; margin: 0; }
.steps li {
  display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line);
}
.steps li:first-child { border-top: 0; padding-top: 0; }
.steps .n {
  width: 34px; flex: none; color: var(--faint);
  font-size: 12px; letter-spacing: .12em; font-weight: 700; padding-top: 4px;
}
.steps p { color: var(--muted); margin: 4px 0 0; font-size: 14px; }
.grid2 { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .grid2 { grid-template-columns: 1fr; } }
.tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px;
}
.tile b { display: block; font-size: 15px; margin-bottom: 4px; }
.tile p { color: var(--muted); font-size: 13px; margin: 0; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line); padding: 30px 0 44px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  justify-content: space-between;
}
footer a { color: var(--muted); font-size: 12px; text-decoration: none; }
footer a:hover { color: var(--ink); }
footer .small { color: var(--faint); font-size: 12px; }

/* ---------- shared: /e/ page ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 4px 18px; margin: 0 0 12px;
}
.row { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.row:first-child { border-top: 0; }
.row .label {
  width: 58px; flex: none; font-size: 10px; letter-spacing: .12em;
  color: var(--muted); font-weight: 600; padding-top: 4px;
}
.row .value { font-weight: 700; font-size: 14px; }
.row .caption { color: var(--muted); font-size: 12px; font-weight: 400; margin-top: 2px; }
.time { width: 52px; flex: none; font-weight: 700; font-variant-numeric: tabular-nums; }
.dayhead {
  font-size: 11px; letter-spacing: .12em; color: var(--muted);
  font-weight: 600; margin: 22px 0 8px 2px;
}
.hero-title {
  font-size: clamp(24px, 6vw, 32px); line-height: 1.2;
  letter-spacing: -.03em; font-weight: 800; margin: 10px 0 20px;
}
.oshi { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.state { color: var(--muted); padding: 44px 0; text-align: center; }
