/* LOOPLINE — customer-first rewrite */
:root {
  --bg: #0B1220;
  --bg-2: #0F1828;
  --bg-3: #141F34;
  --surface: #FAF7F2;
  --surface-2: #EFE9DF;
  --fg: #F2EEE5;
  --ink: #0B1220;
  --ink-soft: #2C3244;
  --ink-dim: #5A6074;
  --dim: #7A8195;
  --cyan: #4DE8F0;
  --cyan-2: #6FF3FA;
  --cyan-deep: #0D9FA7;
  --amber: #FFB547;
  --pink: #FFB8B0;
  --line: rgba(11, 18, 32, 0.1);
  --line-d: rgba(242, 238, 229, 0.14);
  --ff-disp: 'Space Grotesk', 'Zen Kaku Gothic New', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;
  --ff-jp: 'Zen Kaku Gothic New', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--surface); color: var(--ink); overflow-x: clip; -webkit-font-smoothing: antialiased; }
body { background: var(--surface); color: var(--ink); font-family: var(--ff-jp); font-size: 15px; line-height: 1.8; letter-spacing: 0.01em; overflow-x: clip; min-height: 100svh; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--cyan); color: var(--ink); }

.is-loading { overflow: hidden; }
/* CSS safety net: auto-dismiss preloader after 4s even without JS */
.pre { animation: preAutoHide 0.8s ease-out 4s forwards; }
@keyframes preAutoHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.sample-tag { position: fixed; bottom: 10px; left: 10px; z-index: 90; padding: 0.3rem 0.65rem; background: var(--ink); color: var(--cyan); font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; pointer-events: none; }
.grain { position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: 0.025; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"); mix-blend-mode: multiply; }

/* ============ PRELOADER ============ */
.pre { position: fixed; inset: 0; z-index: 9990; background: var(--ink); display: flex; align-items: center; justify-content: center; transition: opacity 0.7s var(--ease); }
.pre__stack { width: min(380px, 82vw); display: flex; flex-direction: column; gap: 1.25rem; align-items: center; }
.pre__brand { font-family: var(--ff-disp); font-weight: 700; font-size: 28px; letter-spacing: 0.2em; color: var(--fg); }
.pre__bar { width: 100%; height: 2px; background: rgba(242,238,229,0.12); overflow: hidden; }
.pre__bar span { display: block; width: 0; height: 100%; background: var(--cyan); transition: width 0.18s linear; }

/* ============ TOP BAR ============ */
.bar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 1rem; padding: 0.7rem var(--pad-x); background: rgba(250, 247, 242, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: background 0.3s var(--ease); }
.bar.is-scrolled { background: rgba(250, 247, 242, 0.96); }
.bar__brand { display: flex; align-items: center; gap: 0.5rem; }
.bar__orb { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: pulse 2.2s ease-in-out infinite; }
.bar__name { font-family: var(--ff-disp); font-weight: 700; font-size: 15px; letter-spacing: 0.14em; color: var(--ink); }
.bar__mid { display: flex; align-items: center; justify-content: center; gap: 0.55rem; font-family: var(--ff-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.1em; }
.bar__dot { width: 7px; height: 7px; border-radius: 50%; background: #15A65F; box-shadow: 0 0 6px #15A65F; animation: pulse 1.8s ease-in-out infinite; }
.bar__state { color: var(--ink); font-weight: 500; }
.bar__clock { color: var(--cyan-deep); font-feature-settings: "tnum"; font-weight: 500; }
.bar__cta { padding: 0.55rem 0.95rem; background: var(--ink); color: var(--cyan); border-radius: 999px; font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.08em; font-weight: 500; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.bar__cta:hover { background: var(--cyan); color: var(--ink); }
.bar__menu { width: 38px; height: 38px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 50%; }
.bar__menu span { display: block; width: 14px; height: 1px; background: var(--ink); }
.bar__menu span:nth-child(2) { width: 10px; }
@media (max-width: 760px) {
  .bar { grid-template-columns: auto 1fr auto; }
  .bar__mid { display: none; }
  .bar__menu { display: flex; }
}
@media (max-width: 420px) { .bar__cta { padding: 0.5rem 0.7rem; font-size: 11px; } }

/* ============ FULLSCREEN NAV ============ */
.fnav { position: fixed; inset: 0; z-index: 55; background: var(--ink); opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s; display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 10vh, 7rem) var(--pad-x); }
.fnav.is-open { opacity: 1; visibility: visible; }
.fnav ol { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.fnav li a { font-family: var(--ff-disp); font-weight: 500; font-size: clamp(1.6rem, 6vw, 3.5rem); color: var(--fg); line-height: 1.05; display: inline-block; transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.fnav li a:hover { color: var(--cyan); transform: translateX(0.5rem); }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.95rem 1.35rem; border: 1px solid var(--ink); border-radius: 999px; font-family: var(--ff-jp); font-weight: 500; font-size: 14.5px; letter-spacing: 0.04em; color: var(--ink); transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease); white-space: nowrap; }
.btn i { font-style: normal; font-size: 15px; transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover i { transform: translateX(4px); }
.btn--primary { background: var(--ink); color: var(--cyan); }
.btn--primary:hover { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--surface); }
.btn--lg { padding: 1.1rem 1.75rem; font-size: 15.5px; }

/* ============ HEADLINES ============ */
.h2 { font-family: var(--ff-jp); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 1.25rem; }
.h2 em { font-style: normal; color: var(--cyan-deep); font-family: var(--ff-disp); font-weight: 500; letter-spacing: -0.01em; }
.p { font-family: var(--ff-jp); font-size: 15px; line-height: 2; color: var(--ink-soft); max-width: 54ch; }
.p b { color: var(--ink); font-weight: 500; }
.k { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--ff-mono); font-size: 11.5px; color: var(--cyan-deep); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.25rem; }
.k i { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--ink); color: var(--cyan); border-radius: 999px; font-style: normal; font-size: 10.5px; font-weight: 500; letter-spacing: 0.05em; }

/* ============ 01 HERO ============ */
.hero { position: relative; min-height: 100svh; padding: clamp(6rem, 11vh, 8rem) var(--pad-x) clamp(3rem, 6vh, 4.5rem); overflow: hidden; display: flex; align-items: center; }
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) saturate(1.04); }
.hero__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(250,247,242,0.95) 0%, rgba(250,247,242,0.8) 38%, rgba(250,247,242,0.15) 60%, rgba(11,18,32,0.15) 100%); }
@media (max-width: 820px) {
  .hero__veil { background: linear-gradient(180deg, rgba(250,247,242,0.7) 0%, rgba(250,247,242,0.88) 45%, rgba(250,247,242,0.75) 100%); }
}
.hero__inner { position: relative; z-index: 2; max-width: 640px; width: 100%; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.5rem 0.9rem; background: var(--ink); color: var(--fg); border-radius: 999px; font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.1em; margin-bottom: 1.75rem; }
.hero__badge-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: pulse 1.8s ease-in-out infinite; }
.hero__h { font-family: var(--ff-jp); font-weight: 700; font-size: clamp(2.4rem, 6.5vw, 5.25rem); line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1.75rem; }
.hero__h em { font-style: normal; color: var(--cyan-deep); border-bottom: 0.14em solid var(--cyan); padding-bottom: 0.02em; }
.hero__sub { font-family: var(--ff-jp); font-size: clamp(1rem, 1.15vw, 1.1rem); line-height: 2; color: var(--ink-soft); margin-bottom: 2rem; max-width: 28em; }
.hero__sub b { color: var(--ink); font-weight: 700; }
.hero__sub u { text-decoration: none; background: linear-gradient(transparent 60%, var(--cyan) 60%); font-weight: 700; padding: 0 0.1em; color: var(--ink); }
.hero__cta { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.45rem 0.75rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; font-family: var(--ff-jp); font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }
.chip em { font-style: normal; color: var(--cyan-deep); font-weight: 700; }
.hero__clock { position: absolute; bottom: 2rem; right: var(--pad-x); z-index: 3; display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; padding: 0.85rem 1.1rem; background: var(--ink); color: var(--fg); border-radius: 6px; }
.hero__clock-lbl { font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: 0.2em; color: var(--cyan); }
.hero__clock-n { font-family: var(--ff-mono); font-size: 22px; color: var(--cyan); font-feature-settings: "tnum"; letter-spacing: 0.02em; }
@media (max-width: 640px) {
  .hero__cta .btn { flex: 1 1 calc(50% - 0.4rem); }
  .hero__clock { right: 1rem; bottom: 1rem; padding: 0.6rem 0.8rem; }
  .hero__clock-n { font-size: 16px; }
}

/* ============ 02 WHAT ============ */
.what { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--surface); }
.what__wrap { max-width: 1200px; margin: 0 auto; }
.what__wrap > .h2 { margin-bottom: 3rem; max-width: 22ch; }
.what__grid { display: grid; grid-template-columns: 1.2fr 1fr 0.85fr; gap: 1rem; align-items: stretch; }
.wg { padding: 1.5rem 1.4rem 1.75rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; position: relative; }
.wg__no { font-family: var(--ff-mono); font-size: 11px; color: var(--cyan-deep); letter-spacing: 0.16em; font-weight: 500; display: inline-block; margin-bottom: 0.85rem; }
.wg h3 { font-family: var(--ff-jp); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.005em; line-height: 1.45; color: var(--ink); margin-bottom: 0.85rem; }
.wg p { font-family: var(--ff-jp); font-size: 14px; line-height: 1.95; color: var(--ink-soft); }
.wg p b { color: var(--ink); font-weight: 700; background: var(--cyan); padding: 0 0.2em; border-radius: 3px; }
@media (max-width: 820px) { .what__grid { grid-template-columns: 1fr; } }

/* ============ 03 MENU ============ */
.menu { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--ink); color: var(--fg); }
.menu__head { max-width: 1200px; margin: 0 auto 3rem; }
.menu__head .k i { background: var(--cyan); color: var(--ink); }
.menu__head .k { color: var(--cyan); }
.menu__head .h2 { color: var(--fg); }
.menu__head .h2 em { color: var(--cyan); }
.menu__head .p { color: rgba(242,238,229,0.75); }
.menu__head .p b { color: var(--fg); }
.menu__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr 1fr 0.9fr; gap: 1rem; align-items: stretch; }
.me { background: var(--bg-2); border: 1px solid var(--line-d); border-radius: 14px; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); display: flex; flex-direction: column; }
.me:hover { transform: translateY(-4px); border-color: var(--cyan); }
.me figure { aspect-ratio: 4/3; overflow: hidden; border-bottom: 1px solid var(--line-d); }
.me figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.me:hover figure img { transform: scale(1.05); }
.me__body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.me__no { font-family: var(--ff-mono); font-size: 10.5px; color: var(--cyan); letter-spacing: 0.16em; font-weight: 500; }
.me h3 { font-family: var(--ff-jp); font-weight: 700; font-size: 1.3rem; color: var(--fg); letter-spacing: -0.005em; }
.me__en { font-family: var(--ff-mono); font-size: 10.5px; color: var(--dim); letter-spacing: 0.2em; font-weight: 400; }
.me__d { font-family: var(--ff-jp); font-size: 13.5px; line-height: 1.85; color: rgba(242,238,229,0.75); }
.me dl { margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line-d); display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 0.75rem; }
.me dl > div:last-child { grid-column: 1 / -1; }
.me dt { font-family: var(--ff-mono); font-size: 9.5px; color: var(--dim); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.2rem; }
.me dd { font-family: var(--ff-jp); font-size: 13px; color: var(--fg); }
.me dd b { font-family: var(--ff-disp); font-weight: 500; font-size: 16px; color: var(--cyan); letter-spacing: -0.01em; }
@media (max-width: 960px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu__grid { grid-template-columns: 1fr; } }

/* ============ 04 COMPARE ============ */
.cmp { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--surface-2); }
.cmp__head { max-width: 960px; margin: 0 auto 2.5rem; text-align: center; }
.cmp__head .k { display: inline-flex; }
.cmp__table { max-width: 900px; margin: 0 auto; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); }
.cmp__row { display: grid; grid-template-columns: 1.1fr 1.1fr 1fr; align-items: stretch; }
.cmp__row + .cmp__row { border-top: 1px solid var(--line); }
.cmp__row > * { padding: 0.95rem 1.1rem; display: flex; align-items: center; font-family: var(--ff-jp); font-size: 14.5px; color: var(--ink); }
.cmp__lbl { font-family: var(--ff-mono); font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; background: var(--surface-2); }
.cmp__col { justify-content: center; text-align: center; }
.cmp__col--us { background: var(--ink); color: var(--cyan); font-weight: 500; position: relative; }
.cmp__col--us b { font-family: var(--ff-disp); font-weight: 500; font-size: 18px; color: var(--cyan); letter-spacing: -0.01em; }
.cmp__row--h .cmp__col--us { font-family: var(--ff-disp); font-weight: 700; font-size: 16px; letter-spacing: 0.1em; }
.cmp__row--h .cmp__col { font-family: var(--ff-jp); font-weight: 500; color: var(--ink); background: var(--surface-2); }
.cmp__row--sum .cmp__save { color: var(--cyan); }
.cmp__row--sum .cmp__save b { color: var(--cyan); font-size: 22px; }
.cmp__row--sum .cmp__lbl { background: var(--ink); color: var(--cyan); }
.cmp__row--sum > * { font-size: 16px; }
.cmp__note { max-width: 900px; margin: 1rem auto 0; font-family: var(--ff-mono); font-size: 10.5px; color: var(--ink-dim); letter-spacing: 0.08em; text-align: center; }
@media (max-width: 560px) {
  .cmp__row { grid-template-columns: 1fr 1fr 1fr; }
  .cmp__row > * { padding: 0.7rem 0.5rem; font-size: 12.5px; }
  .cmp__lbl { font-size: 10px; }
}

/* ============ 05 FLOW ============ */
.flow { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--surface); }
.flow__head { max-width: 1200px; margin: 0 auto 3rem; }
.flow__list { max-width: 1100px; margin: 0 auto; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: f; }
.fl { position: relative; padding: 2rem 1.75rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); display: flex; flex-direction: column; gap: 1rem; }
.fl:hover { border-color: var(--cyan); transform: translateY(-4px); }
.fl__no { font-family: var(--ff-disp); font-weight: 400; font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--cyan-deep); line-height: 1; letter-spacing: -0.03em; }
.fl__body h3 { font-family: var(--ff-jp); font-weight: 700; font-size: clamp(1.2rem, 1.7vw, 1.45rem); color: var(--ink); margin-bottom: 0.6rem; }
.fl__body p { font-family: var(--ff-jp); font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); }
.fl__tag { display: inline-block; margin-top: 0.8rem; padding: 0.35rem 0.65rem; background: var(--ink); color: var(--cyan); border-radius: 999px; font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.1em; font-weight: 500; align-self: flex-start; }
@media (max-width: 820px) { .flow__list { grid-template-columns: 1fr; } }

/* ============ 06 PRICE ============ */
.price { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--surface-2); }
.price__head { max-width: 900px; margin: 0 auto 2.75rem; text-align: center; }
.price__head .k { display: inline-flex; }
.price__head .p { margin: 0 auto; }
.price__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.pl { position: relative; padding: 1.75rem 1.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; gap: 1.1rem; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.pl:hover { transform: translateY(-4px); border-color: var(--ink); }
.pl--hot { border: 2px solid var(--ink); background: var(--ink); color: var(--fg); transform: translateY(-6px); box-shadow: 0 20px 60px -20px rgba(11,18,32,0.35); }
.pl--hot::before { content: "人気 No.1"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 0.35rem 0.95rem; background: var(--cyan); color: var(--ink); font-family: var(--ff-jp); font-weight: 700; font-size: 11.5px; letter-spacing: 0.08em; border-radius: 999px; white-space: nowrap; }
.pl header { display: flex; flex-direction: column; gap: 0.4rem; padding-bottom: 1rem; border-bottom: 1px dashed var(--line); }
.pl--hot header { border-bottom-color: var(--line-d); }
.pl__tag { font-family: var(--ff-mono); font-size: 10.5px; color: var(--cyan-deep); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.pl--hot .pl__tag { color: var(--cyan); }
.pl h3 { font-family: var(--ff-jp); font-weight: 700; font-size: 1.35rem; color: inherit; letter-spacing: -0.005em; }
.pl__price { font-family: var(--ff-disp); display: flex; align-items: baseline; gap: 0.15em; color: inherit; }
.pl__price em { font-style: normal; font-weight: 400; font-size: 1.4rem; opacity: 0.6; }
.pl__price b { font-weight: 500; font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1; letter-spacing: -0.03em; font-feature-settings: "tnum"; }
.pl__price i { font-style: normal; font-size: 13px; opacity: 0.6; margin-left: 0.25em; }
.pl__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-family: var(--ff-jp); font-size: 13.5px; }
.pl__list li { padding-left: 1.1rem; position: relative; line-height: 1.7; }
.pl__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 10px; height: 2px; background: var(--cyan); }
.pl__list li b { font-weight: 700; }
.pl__cta { margin-top: auto; padding: 0.95rem 1rem; border: 1px solid currentColor; border-radius: 999px; text-align: center; font-family: var(--ff-jp); font-weight: 500; font-size: 13.5px; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.pl__cta:hover { background: currentColor; }
.pl__cta:hover { color: var(--surface); }
.pl--hot .pl__cta { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }
.pl--hot .pl__cta:hover { background: var(--cyan-2); color: var(--ink); }
.price__note { max-width: 900px; margin: 1.5rem auto 0; text-align: center; font-family: var(--ff-mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.08em; }
@media (max-width: 820px) { .price__grid { grid-template-columns: 1fr; } .pl--hot { transform: none; } }

/* ============ 07 VOICE ============ */
.voice { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--surface); }
.voice__head { max-width: 1200px; margin: 0 auto 2.75rem; }
.voice__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.vx { background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform 0.3s var(--ease); }
.vx:hover { transform: translateY(-4px); }
.vx figure { aspect-ratio: 4/3; overflow: hidden; }
.vx figure img { width: 100%; height: 100%; object-fit: cover; }
.vx__body { padding: 1.5rem 1.4rem 1.65rem; }
.vx__quote { font-family: var(--ff-jp); font-size: 15.5px; line-height: 1.85; color: var(--ink); font-weight: 500; margin-bottom: 1rem; position: relative; padding-left: 1.2rem; }
.vx__quote::before { content: "“"; position: absolute; left: 0; top: -0.25em; font-family: var(--ff-disp); font-size: 2.25rem; line-height: 1; color: var(--cyan); font-weight: 500; }
.vx__meta { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 1rem; border-top: 1px dashed var(--line); font-family: var(--ff-jp); font-size: 12.5px; color: var(--ink-soft); }
.vx__meta b { font-weight: 700; color: var(--ink); font-size: 14px; }
.vx__meta b em { font-style: normal; font-weight: 400; color: var(--ink-dim); font-size: 12px; }
.vx__stars { color: var(--amber); font-size: 14px; letter-spacing: 0.2em; font-weight: 500; }
@media (max-width: 820px) { .voice__grid { grid-template-columns: 1fr; } }

/* ============ 08 LIVE ============ */
.live { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--ink); color: var(--fg); }
.live__head { max-width: 1200px; margin: 0 auto 2.5rem; }
.live__head .k i { background: var(--cyan); color: var(--ink); }
.live__head .k { color: var(--cyan); }
.live__head .h2 { color: var(--fg); }
.live__head .h2 em { color: var(--cyan); }
.live__head .p { color: rgba(242,238,229,0.7); }
.live__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; border: 1px solid var(--line-d); padding: 0.85rem; background: var(--bg-2); border-radius: 10px; }
.live__cell { aspect-ratio: 1; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem; background: rgba(242,238,229,0.04); border-radius: 4px; transition: background 0.3s var(--ease); }
.live__cell span { font-family: var(--ff-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.06em; font-feature-settings: "tnum"; }
.live__cell i { font-style: normal; font-family: var(--ff-mono); font-size: 9px; color: var(--fg); opacity: 0.6; }
.live__cell.is-ok { background: rgba(77,232,240,0.15); }
.live__cell.is-ok span { color: var(--cyan); }
.live__cell.is-mid { background: rgba(255,181,71,0.15); }
.live__cell.is-mid span { color: var(--amber); }
.live__cell.is-full { background: rgba(242,238,229,0.02); opacity: 0.4; }
.live__cell.is-cur { outline: 2px solid var(--cyan); background: rgba(77,232,240,0.25); }
.live__cell.is-cur::after { content: ""; position: absolute; top: 4px; right: 4px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); animation: pulse 1.5s ease-in-out infinite; }
.live__legend { max-width: 1200px; margin: 1rem auto 0; display: flex; flex-wrap: wrap; gap: 1rem; font-family: var(--ff-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.06em; }
.lg { display: inline-flex; align-items: center; gap: 0.45rem; }
.sw { display: inline-block; width: 12px; height: 12px; border-radius: 3px; background: rgba(242, 238, 229, 0.05); }
.sw--ok { background: rgba(77,232,240,0.3); }
.sw--mid { background: rgba(255,181,71,0.3); }
.sw--full { background: rgba(242,238,229,0.08); }
.sw--cur { background: var(--cyan); }
@media (max-width: 820px) { .live__grid { grid-template-columns: repeat(8, 1fr); } }
@media (max-width: 520px) { .live__grid { grid-template-columns: repeat(6, 1fr); } }

/* ============ 09 FAQ ============ */
.faq { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--surface); }
.faq__head { max-width: 900px; margin: 0 auto 2.75rem; text-align: center; }
.faq__head .k { display: inline-flex; }
.faq__list { max-width: 900px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.3s var(--ease); }
.qa summary::-webkit-details-marker { display: none; }
.qa__q { font-family: var(--ff-jp); font-weight: 500; font-size: 16px; color: var(--ink); letter-spacing: 0.005em; }
.qa__ic { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--ff-mono); font-size: 15px; color: var(--ink); transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); flex-shrink: 0; }
.qa[open] .qa__ic { transform: rotate(45deg); background: var(--ink); color: var(--cyan); border-color: var(--ink); }
.qa__a { padding: 0 0 1.5rem; font-family: var(--ff-jp); font-size: 14.5px; line-height: 2; color: var(--ink-soft); max-width: 72ch; }

/* ============ 10 BOOK ============ */
.book { padding: clamp(5rem, 9vh, 7rem) var(--pad-x); background: var(--ink); color: var(--fg); }
.book__wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.book__cta .k i { background: var(--cyan); color: var(--ink); }
.book__cta .k { color: var(--cyan); }
.book__cta .h2 { color: var(--fg); }
.book__cta .h2 em { color: var(--cyan); }
.book__cta .p { color: rgba(242,238,229,0.75); }
.book__cta .p b { color: var(--fg); }
.book__btns { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem; max-width: 360px; }
.book__btns .btn--primary { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }
.book__btns .btn--primary:hover { background: var(--cyan-2); }
.book__btns .btn--ghost { color: var(--fg); border-color: rgba(242,238,229,0.3); }
.book__btns .btn--ghost:hover { background: var(--fg); color: var(--ink); border-color: var(--fg); }
.book__trust { margin-top: 1.25rem; font-family: var(--ff-jp); font-size: 13.5px; color: rgba(242,238,229,0.7); letter-spacing: 0.02em; }
.book__trust span { color: var(--amber); margin: 0 0.35em; }
.book__info dl { display: flex; flex-direction: column; gap: 0.9rem; }
.book__info dl > div { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; padding-bottom: 0.9rem; border-bottom: 1px dashed var(--line-d); }
.book__info dt { font-family: var(--ff-mono); font-size: 10.5px; color: var(--cyan); letter-spacing: 0.14em; font-weight: 500; padding-top: 0.2em; }
.book__info dd { font-family: var(--ff-jp); font-size: 14px; line-height: 1.7; color: rgba(242,238,229,0.9); }
.book__info dd b { color: var(--fg); font-weight: 700; }
.book__info dd small { font-size: 12px; color: rgba(242,238,229,0.6); }
@media (max-width: 820px) { .book__wrap { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.fin { background: var(--surface-2); border-top: 1px solid var(--line); }
.fin__mq { overflow: hidden; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.fin__mq span { display: inline-block; white-space: nowrap; font-family: var(--ff-disp); font-weight: 500; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.01em; color: var(--ink); will-change: transform; }
.fin__grid { max-width: 1200px; margin: 0 auto; padding: 2.5rem var(--pad-x); display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 2rem; align-items: start; }
.fin__brand { display: block; font-family: var(--ff-disp); font-weight: 700; font-size: 22px; letter-spacing: 0.18em; color: var(--ink); margin-bottom: 0.55rem; }
.fin__say { font-family: var(--ff-jp); font-size: 12.5px; color: var(--ink-soft); }
.fin__nav { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-family: var(--ff-jp); font-size: 13.5px; }
.fin__nav a { color: var(--ink); opacity: 0.75; transition: color 0.3s var(--ease), opacity 0.3s var(--ease); }
.fin__nav a:hover { color: var(--cyan-deep); opacity: 1; }
.fin__meta { display: flex; flex-direction: column; gap: 0.4rem; font-family: var(--ff-mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.05em; }
.fin__meta span:nth-child(2) { color: var(--cyan-deep); font-feature-settings: "tnum"; }
@media (max-width: 820px) { .fin__grid { grid-template-columns: 1fr; } }

/* ============ ANIMATIONS ============ */
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.55; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
