/* =========================================================
   EVE PAGE — イベント告知ページ制作サービス LP
   フライヤー / ネオン / チケット / タイムテーブル
   ========================================================= */

:root {
  --bg: #0a0713;
  --bg-2: #0f0a1c;
  --surface: #161029;
  --surface-2: #1d1636;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink: #f6f2ff;
  --muted: #b4a9d4;
  --muted-2: #8579ac;

  --pink: #ff2e8e;
  --cyan: #24e0e8;
  --lime: #c6ff3a;
  --yellow: #ffd23f;
  --violet: #8b5cff;

  --neon-glow: 0 0 18px rgba(255, 46, 142, 0.55), 0 0 42px rgba(255, 46, 142, 0.28);
  --cyan-glow: 0 0 18px rgba(36, 224, 232, 0.5), 0 0 40px rgba(36, 224, 232, 0.25);

  --grad: linear-gradient(100deg, #ff2e8e 0%, #8b5cff 55%, #24e0e8 100%);
  --grad-2: linear-gradient(120deg, #ffd23f 0%, #ff2e8e 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1120px;

  --ff-disp: "Anton", "Arial Narrow", sans-serif;
  --ff: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* 背景の光・グリッド ------------------------------------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 40% at 15% 0%, rgba(139, 92, 255, 0.28), transparent 60%),
    radial-gradient(50% 40% at 90% 10%, rgba(255, 46, 142, 0.22), transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(36, 224, 232, 0.16), transparent 60%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  pointer-events: none;
}

/* 共通レイアウト ---------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; position: relative; }
.section.tight { padding: 68px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--cyan);
  box-shadow: var(--cyan-glow);
}

.h2 {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}
.lead { color: var(--muted); font-size: 16px; max-width: 640px; margin: 0; }

.jp-bold { font-family: var(--ff); font-weight: 900; }

/* ボタン ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  color: #16091b;
  background: var(--grad-2);
  box-shadow: 0 10px 30px rgba(255, 46, 142, 0.35);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 40px rgba(255, 46, 142, 0.5); }
.btn:active { transform: translateY(0); }
.btn.lg { font-size: 18px; padding: 19px 40px; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--cyan-glow); }
.btn .arw { font-size: 18px; }

/* ヘッダー ----------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 7, 19, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--ff-disp);
  font-size: 23px;
  letter-spacing: 0.04em;
}
.brand .dot { color: var(--pink); text-shadow: var(--neon-glow); }
.brand small {
  font-family: var(--ff);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted-2);
}
.nav .spacer { flex: 1; }
.nav-links { display: flex; gap: 24px; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  font-family: var(--ff);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #16091b;
  background: var(--grad-2);
  box-shadow: 0 6px 20px rgba(255, 46, 142, 0.35);
}
.nav-cta:hover { filter: brightness(1.07); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* =========================================================
   HERO — フライヤー
   ========================================================= */
.hero { position: relative; padding: 60px 0 70px; overflow: hidden; }
.hero-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-in { grid-template-columns: 1fr; gap: 40px; } }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 44px;
}
.ticker-track {
  display: flex;
  gap: 40px;
  padding: 10px 0;
  white-space: nowrap;
  font-family: var(--ff-disp);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  animation: ticker 26s linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 40px; }
.ticker-track b { color: var(--lime); }
@keyframes ticker { to { transform: translateX(-50%); } }

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(198, 255, 58, 0.4);
  color: var(--lime);
  background: rgba(198, 255, 58, 0.07);
  margin-bottom: 22px;
}
.badge-live .blink {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

.hero h1 {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: clamp(34px, 6.2vw, 62px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  word-break: keep-all;
}
.hero h1 .neon {
  color: #fff;
  text-shadow: var(--neon-glow);
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}
.hero .sub {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 560px;
  margin: 0 0 32px;
}
.hero .sub strong { color: var(--ink); font-weight: 800; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-2);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { content: "✓"; color: var(--lime); font-weight: 900; }

/* フライヤーチケット（ヒーロー右） ------------------------ */
.flyer {
  position: relative;
  perspective: 1200px;
}
.ticket {
  position: relative;
  background: linear-gradient(160deg, #1c1338 0%, #120c22 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), var(--neon-glow);
  transform: rotate(-3deg);
  overflow: hidden;
}
.ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0.09;
  mix-blend-mode: screen;
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line-strong);
  margin-bottom: 16px;
}
.ticket-top .kv { font-size: 11px; letter-spacing: 0.2em; color: var(--cyan); font-weight: 800; }
.ticket-top .title { font-family: var(--ff-disp); font-size: 27px; line-height: 1.05; margin-top: 4px; }
.ticket-top .adm {
  font-family: var(--ff-disp);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border: 1px solid var(--pink);
  color: var(--pink);
  border-radius: 6px;
  transform: rotate(4deg);
  white-space: nowrap;
}
.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  padding: 7px 0;
}
.ticket-row .k { color: var(--muted-2); font-weight: 700; }
.ticket-row .v { color: var(--ink); font-weight: 700; text-align: right; }
.ticket-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px dashed var(--line-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ticket-foot .barcode {
  height: 34px;
  flex: 1;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px);
  opacity: 0.85;
  margin-right: 14px;
  border-radius: 2px;
}
.ticket-foot .no { font-family: var(--ff-disp); font-size: 15px; color: var(--muted); letter-spacing: 0.1em; }
/* チケットの切り込み（左右の丸穴） */
.ticket .notch { position: absolute; width: 22px; height: 22px; background: var(--bg); border-radius: 50%; top: 50%; transform: translateY(-50%); }
.ticket .notch.l { left: -11px; }
.ticket .notch.r { right: -11px; }

.stub {
  position: absolute;
  right: -14px;
  bottom: -22px;
  background: var(--grad-2);
  color: #16091b;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: 12px;
  transform: rotate(6deg);
  box-shadow: 0 12px 28px rgba(255, 46, 142, 0.4);
}

/* =========================================================
   課題提起
   ========================================================= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.pain {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.15s ease, border-color 0.2s ease;
}
.pain:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.pain .q {
  font-family: var(--ff-disp);
  font-size: 30px;
  color: var(--pink);
  opacity: 0.55;
  line-height: 1;
}
.pain p { margin: 10px 0 0; font-size: 15px; font-weight: 700; color: var(--ink); }
.pain .bubble-tail { position: absolute; bottom: -9px; left: 30px; width: 18px; height: 18px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(45deg); }

/* =========================================================
   特徴
   ========================================================= */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.feat {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.feat::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: var(--grad);
  filter: blur(50px);
  opacity: 0.35;
}
.feat .ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  margin-bottom: 16px;
}
.feat h3 { font-size: 17px; font-weight: 900; margin: 0 0 8px; }
.feat p { margin: 0; font-size: 14px; color: var(--muted); }

/* =========================================================
   イベント例（ラインナップ）
   ========================================================= */
.lineup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.lineup .chip {
  font-family: var(--ff-disp);
  font-size: 19px;
  letter-spacing: 0.03em;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  transition: all 0.18s ease;
}
.lineup .chip small { font-family: var(--ff); font-size: 11px; color: var(--muted-2); margin-left: 7px; letter-spacing: 0; }
.lineup .chip:hover { border-color: transparent; background: var(--grad); color: #16091b; transform: translateY(-3px); }
.lineup .chip:hover small { color: rgba(0,0,0,0.6); }

/* =========================================================
   制作の流れ（タイムテーブル）
   ========================================================= */
.timetable {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.tt-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-disp);
  letter-spacing: 0.1em;
  font-size: 15px;
  color: var(--muted);
}
.tt-head .tt-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.tt-row {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease;
}
.tt-row:last-child { border-bottom: none; }
.tt-row:hover { background: rgba(139, 92, 255, 0.06); }
.tt-time {
  font-family: var(--ff-disp);
  font-size: 22px;
  color: var(--cyan);
  letter-spacing: 0.04em;
}
.tt-time small { display: block; font-family: var(--ff); font-size: 11px; color: var(--muted-2); letter-spacing: 0.14em; font-weight: 700; }
.tt-main h3 { margin: 0 0 5px; font-size: 18px; font-weight: 900; }
.tt-main p { margin: 0; font-size: 14px; color: var(--muted); }
.tt-tag {
  font-family: var(--ff-disp);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .tt-row { grid-template-columns: 84px 1fr; }
  .tt-tag { display: none; }
}

/* =========================================================
   制作実績（ミニフライヤー）
   ========================================================= */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.work {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.16s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.work:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4); }
.work .poster {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #0d0a18;
}
/* 背景写真 */
.work .p-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* 写真に重ねるジャンル別のネオン色（半透明） */
.work .poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* 下部の暗がり（テキスト可読性） */
.work .poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 3, 12, 0.82) 0%, rgba(5, 3, 12, 0.15) 52%, rgba(5, 3, 12, 0.42) 100%);
}
.work .p-cat {
  position: relative;
  z-index: 2;
  font-family: var(--ff-disp);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.work .p-title {
  position: relative;
  z-index: 2;
  font-family: var(--ff-disp);
  font-size: 25px;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}
.work .p-stamp {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-family: var(--ff-disp);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  border-radius: 5px;
  transform: rotate(6deg);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.18);
}
/* ポスターの配色バリエーション（写真の上のネオンティント） */
.work:nth-child(6n+1) .poster::before { background: linear-gradient(150deg, rgba(255, 46, 142, 0.44), rgba(139, 92, 255, 0.38)); }
.work:nth-child(6n+2) .poster::before { background: linear-gradient(150deg, rgba(36, 224, 232, 0.42), rgba(26, 127, 224, 0.4)); }
.work:nth-child(6n+3) .poster::before { background: linear-gradient(150deg, rgba(139, 92, 255, 0.42), rgba(36, 224, 232, 0.36)); }
.work:nth-child(6n+4) .poster::before { background: linear-gradient(150deg, rgba(255, 122, 46, 0.42), rgba(255, 46, 142, 0.4)); }
.work:nth-child(6n+5) .poster::before { background: linear-gradient(150deg, rgba(198, 255, 58, 0.38), rgba(36, 185, 138, 0.42)); }
.work:nth-child(6n+6) .poster::before { background: linear-gradient(150deg, rgba(255, 210, 63, 0.4), rgba(255, 46, 142, 0.4)); }

.work .w-body { padding: 16px 18px 18px; }
.work .w-title { font-size: 15px; font-weight: 900; margin: 0 0 6px; }
.work .w-meta { font-size: 12px; color: var(--muted-2); display: flex; gap: 10px; flex-wrap: wrap; }
.work .w-meta span { display: inline-flex; align-items: center; gap: 5px; }
.work .w-result {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.work .w-result .rk { font-size: 12px; color: var(--muted); font-weight: 700; }
.work .w-result .rv { font-family: var(--ff-disp); font-size: 22px; color: var(--lime); letter-spacing: 0.02em; }
.works-note { text-align: center; color: var(--muted-2); font-size: 12px; margin-top: 26px; }

/* =========================================================
   料金（チケット3種）
   ========================================================= */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
/* 2プラン構成のとき（中央寄せ） */
.plans.plans-2 {
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
}
@media (max-width: 860px) { .plans, .plans.plans-2 { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; margin-top: 40px; } }

.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.plan.pop {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 60px rgba(139, 92, 255, 0.28);
}
.plan .pop-flag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 900; letter-spacing: 0.1em;
  padding: 6px 16px; border-radius: 999px;
  background: var(--grad-2); color: #16091b;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 46, 142, 0.4);
}
.plan .pname { font-family: var(--ff-disp); font-size: 22px; letter-spacing: 0.05em; color: var(--cyan); }
.plan.pop .pname { color: var(--pink); }
.plan .price {
  font-family: var(--ff-disp);
  font-size: 46px;
  line-height: 1;
  margin: 14px 0 4px;
}
.plan .price span { font-family: var(--ff); font-size: 15px; font-weight: 800; color: var(--muted); }
.plan .pdesc { font-size: 14px; color: var(--muted); margin: 8px 0 20px; min-height: 42px; }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.plan li { font-size: 14px; display: flex; gap: 10px; color: var(--ink); }
.plan li::before { content: "◎"; color: var(--lime); font-weight: 900; }
.plan .plan-cut {
  border-top: 2px dashed var(--line-strong);
  margin: 0 -26px 20px;
}
.plan .btn { width: 100%; margin-top: auto; }
.plan:not(.pop) .btn { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); box-shadow: none; }
.plan:not(.pop) .btn:hover { border-color: var(--cyan); color: var(--cyan); }
.price-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 24px; }

/* =========================================================
   会場導線（アクセス風）
   ========================================================= */
.access {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 760px) { .access { grid-template-columns: 1fr; } }
.access .map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 30%, rgba(36,224,232,0.12), transparent 55%),
    var(--surface);
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.access .route {
  display: grid;
  gap: 12px;
}
.route-step {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.route-step .num {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--ff-disp);
  background: var(--grad); color: #16091b;
}
.route-step b { font-size: 15px; }
.route-step p { margin: 2px 0 0; font-size: 13px; color: var(--muted); }

/* =========================================================
   最終CTA
   ========================================================= */
.final {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 50% 100%, rgba(255,46,142,0.28), transparent 60%),
    radial-gradient(50% 80% at 50% 0%, rgba(36,224,232,0.2), transparent 60%);
  z-index: -1;
}
.final .stage-lights {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  box-shadow: 0 0 24px rgba(255, 46, 142, 0.6);
}
.final h2 {
  font-family: var(--ff-disp);
  font-size: clamp(34px, 7vw, 66px);
  line-height: 1.02;
  margin: 0 0 20px;
}
.final h2 .neon { color: #fff; text-shadow: var(--neon-glow); }
.final p { color: var(--muted); font-size: 16.5px; max-width: 560px; margin: 0 auto 34px; }

/* フッター ----------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--bg-2);
}
.footer-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 13px;
}

/* リビール ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   HEARING（ヒアリング画面）
   ========================================================= */
.hearing-body { background: var(--bg); }

.hr-top {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(10, 7, 19, 0.8);
  border-bottom: 1px solid var(--line);
}
.hr-top-in {
  max-width: 960px; margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; gap: 14px;
}
.hr-back { font-size: 13.5px; font-weight: 700; color: var(--muted); }
.hr-back:hover { color: var(--cyan); }

.progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress i { display: block; height: 100%; width: 0; background: var(--grad); transition: width 0.4s ease; box-shadow: var(--neon-glow); }

.hr-main { max-width: 720px; margin: 0 auto; padding: 46px 22px 90px; }

.hr-step-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-disp); letter-spacing: 0.12em;
  color: var(--muted-2); font-size: 14px; margin-bottom: 14px;
}
.hr-step-meta .num { color: var(--cyan); font-size: 20px; }

.hr-q h2 {
  font-size: clamp(22px, 4.6vw, 30px);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 8px;
}
.hr-q .hint { color: var(--muted); font-size: 14.5px; margin: 0 0 26px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.field label .opt { color: var(--muted-2); font-weight: 700; font-size: 12px; margin-left: 8px; }
.input, .textarea, select.input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--ff);
  font-size: 15.5px;
  padding: 14px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input:focus, .textarea:focus, select.input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: var(--cyan-glow);
}
.textarea { min-height: 110px; resize: vertical; line-height: 1.7; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

/* チェックチップ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chk {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  transition: all 0.15s ease;
  user-select: none;
}
.chk input { display: none; }
.chk:hover { border-color: var(--line-strong); color: var(--ink); }
.chk.on { border-color: transparent; background: var(--grad); color: #16091b; }

/* トーン＆マナー選択（単一選択） */
.tone-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .tone-opts { grid-template-columns: 1fr; } }
.tone-opt {
  display: flex; align-items: center; gap: 14px;
  text-align: left; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: 14px; padding: 14px 16px; color: var(--ink);
  font-family: var(--ff); transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.tone-opt:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.tone-opt.on { border-color: transparent; box-shadow: 0 0 0 2px var(--cyan) inset, var(--cyan-glow); }
.tone-opt .sw { width: 42px; height: 42px; border-radius: 11px; flex: none; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45); }
.tone-opt .tx { display: flex; flex-direction: column; }
.tone-opt .tx b { font-size: 14.5px; font-weight: 800; }
.tone-opt .tx em { font-style: normal; font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }

.hr-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.hr-actions .btn { flex: 1; }
.hr-actions .btn.back { flex: 0 0 auto; background: transparent; color: var(--muted); border: 1.5px solid var(--line); box-shadow: none; }
.hr-actions .btn.back:hover { color: var(--ink); border-color: var(--line-strong); }

/* =========================================================
   結果（構成案 + 簡易イメージ）
   ========================================================= */
.result-head { text-align: center; margin-bottom: 40px; }
.result-head .done {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--lime);
  border: 1px solid rgba(198,255,58,0.4);
  background: rgba(198,255,58,0.07);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.result-head h1 {
  font-family: var(--ff-disp); font-size: clamp(30px, 6vw, 48px);
  line-height: 1.05; margin: 0 0 10px;
}
.result-head p { color: var(--muted); margin: 0; }

.result-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.panel-h {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.panel-h .k { font-family: var(--ff-disp); letter-spacing: 0.1em; font-size: 15px; }
.panel-h .badge { margin-left: auto; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--cyan); border: 1px solid var(--line-strong); padding: 3px 10px; border-radius: 6px; }
.panel-body { padding: 22px; }

/* 構成案アウトライン */
.outline { display: grid; gap: 10px; }
.ol-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.ol-item.is-focus { border-color: rgba(198, 255, 58, 0.4); background: rgba(198, 255, 58, 0.05); }
.ol-item .n {
  font-family: var(--ff-disp); font-size: 16px; color: var(--cyan);
  flex: none; width: 30px; text-align: center; padding-top: 2px;
}
.ol-item b { font-size: 15px; }
.ol-focus {
  display: inline-block; margin-left: 8px; vertical-align: middle;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em;
  color: #16091b; background: var(--lime);
  padding: 2px 8px; border-radius: 999px;
}
.ol-item p { margin: 3px 0 0; font-size: 13px; color: var(--muted); }

/* 簡易イメージ画面（スマホプレビュー） */
.preview-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
@media (max-width: 720px) { .preview-wrap { grid-template-columns: 1fr; } .phone { margin: 0 auto; } }

.phone {
  width: 300px;
  border: 10px solid #241a3d;
  border-radius: 40px;
  background: #05030c;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; border-radius: 999px; background: #241a3d; z-index: 5;
}
.pv { height: 560px; overflow-y: auto; font-family: var(--pv-font, var(--ff)); }
.pv::-webkit-scrollbar { width: 0; }
.pv-hero {
  padding: 40px 20px 26px;
  background: var(--pv-hero,
    radial-gradient(70% 60% at 50% 0%, rgba(255,46,142,0.4), transparent 60%) 0 0 / cover,
    linear-gradient(160deg, #1c1338, #0a0713));
  text-align: center;
}
.pv-hero .kk { font-size: 10px; letter-spacing: 0.2em; color: var(--pv-accent, var(--cyan)); font-weight: 800; }
.pv-hero h3 { font-family: var(--pv-titlefont, var(--ff-disp)); font-size: 26px; line-height: 1.08; margin: 8px 0 12px; text-shadow: var(--pv-glow, var(--neon-glow)); }
.pv-hero .meta { font-size: 12px; color: var(--muted); display: grid; gap: 4px; }
.pv-hero .meta b { color: var(--ink); }
.pv-btn { margin-top: 16px; display: inline-block; font-size: 12px; font-weight: 800; padding: 10px 22px; border-radius: 999px; background: var(--pv-btn, var(--grad-2)); color: #16091b; }
.pv-sec { padding: 20px; border-top: 1px solid var(--line); }
.pv-sec .st { font-family: var(--pv-titlefont, var(--ff-disp)); font-size: 14px; letter-spacing: 0.08em; color: var(--pv-accent2, var(--pink)); margin-bottom: 12px; }
.pv-tt { display: grid; gap: 8px; }
.pv-tt-row { display: grid; grid-template-columns: 46px 1fr; gap: 10px; font-size: 11.5px; }
.pv-tt-row .t { color: var(--pv-accent, var(--cyan)); font-weight: 800; }
.pv-tt-row .d { color: var(--muted); }
.pv-info { font-size: 11.5px; color: var(--muted); display: grid; gap: 6px; }
.pv-info div { display: flex; justify-content: space-between; gap: 8px; border-bottom: 1px dashed var(--line); padding-bottom: 5px; }
.pv-info .k { color: var(--muted-2); }
.pv-tag { display: inline-block; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--muted); margin: 0 5px 5px 0; }

.preview-note { color: var(--muted); font-size: 14px; }
.preview-note h3 { font-size: 17px; margin: 0 0 10px; color: var(--ink); }
.preview-note ul { padding-left: 18px; margin: 0 0 20px; display: grid; gap: 7px; }

.result-cta {
  margin-top: 34px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
}
.result-cta h2 { font-family: var(--ff-disp); font-size: 30px; margin: 0 0 10px; }
.result-cta p { color: var(--muted); margin: 0 auto 24px; max-width: 480px; }
.result-cta .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.print-only { display: none; }
