*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, a, [onclick] { touch-action: manipulation; }

:root {
  --color-on: #ff8e55;
  --color-on-soft: #ffe3d0;
  --color-off: #7e88b0;
  --color-off-soft: #dee2ec;
  --bg: #ffffff;
  --surface: #ffffff;
  --bg-band: #f0f0f0;
  --bg-band-strong: #bababa;
  --border: #e8e6e2;
  --text: #1a1817;
  --text-sub: #4a4640;
  --text-mute: #8c8880;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', system-ui, sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: var(--text);
}

/* ── HEADER ── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
}
.hdr-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.site-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* ── MAIN ── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 36px;
}

.card {
  background: transparent;
  border-radius: 0;
  border: none;
  width: 100%;
  max-width: 720px;
}

.screen { display: none; }
.screen.active { display: block; }

/* ── START ── */
.start-head {
  padding: 40px 32px 32px;
  position: relative;
}
.hero-char {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 180px;
  height: 220px;
  pointer-events: none;
}
.hero-char-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-char-img.is-active { opacity: 1; }
@media (max-width: 600px) {
  .hero-char {
    width: 35vw;
    height: 35vw;
    top: 0;
    right: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-char-img { transition: none; }
}
.start-tag {
  display: inline-block;
  background: var(--bg-band);
  color: var(--text-sub);
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 2px; margin-bottom: 14px;
}
.start-title {
  font-size: 34px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.25; margin-bottom: 12px;
}
.start-title span { color: var(--text); }
.start-sub { font-size: 16px; color: var(--text-sub); line-height: 1.8; }

.start-body { padding: 24px 24px 28px; }

.mode-label {
  font-size: 14px; font-weight: 700; text-align: center;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}

/* ── MODE SWITCH (logo-derived toggle illustration) ── */
.mode-switch {
  width: 88px; height: auto; display: block;
  margin: 8px auto 16px;
  cursor: pointer;
  outline: none;
}
.mode-switch:focus-visible { outline: 2px solid var(--text-mute); outline-offset: 4px; border-radius: 999px; }
.ms-track { fill: var(--bg-band-strong); transition: fill 0.35s; }
.ms-knob  {
  fill: #ffffff;
  transition: transform 0.4s cubic-bezier(.4,.2,.2,1);
}
.mode-switch[data-mode="on"]  .ms-track { fill: var(--color-on); }
.mode-switch[data-mode="on"]  .ms-knob  { transform: translateX(92.07px); }
.mode-switch[data-mode="off"] .ms-track { fill: var(--color-off); }
.mode-switch[data-mode="off"] .ms-knob  { transform: translateX(0); }

.mode-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.mode-card {
  border: 2px solid var(--border); border-radius: 12px;
  padding: 18px 16px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--surface); text-align: left;
}
.mode-card:hover { border-color: var(--text-mute); background: #fafafa; }
#card-work.selected { border-color: var(--color-on); background: var(--color-on-soft); }
#card-private.selected { border-color: var(--color-off); background: var(--color-off-soft); }
.mode-icon {
  font-size: 22px; margin-bottom: 8px; display: block; color: var(--text-mute);
}
#card-work.selected .mode-icon { color: var(--color-on); }
#card-private.selected .mode-icon { color: var(--color-off); }
.mode-name { font-size: 16px; font-weight: 800; margin-bottom: 4px; display: flex; align-items: baseline; gap: 6px; }
.mode-name-sub { font-size: 12px; font-weight: 600; color: var(--text-mute); }
#card-work.selected .mode-name { color: var(--color-on); }
#card-private.selected .mode-name { color: var(--color-off); }
#card-work.selected .mode-name-sub { color: var(--color-on); opacity: 0.7; }
#card-private.selected .mode-name-sub { color: var(--color-off); opacity: 0.7; }
.mode-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ── MODE PILL (ON/OFF badge used on result/compare) ── */
.mode-pill {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 900; letter-spacing: 0.08em;
  color: white;
}
.mode-pill--on  { background: var(--color-on); }
.mode-pill--off { background: var(--color-off); }

.info-row { display: flex; gap: 10px; margin-bottom: 20px; }
.info-chip {
  flex: 1; background: var(--bg-band); border-radius: 0;
  padding: 12px 10px; text-align: center;
}
.info-chip-num { font-size: 20px; font-weight: 900; color: var(--text); }
.info-chip-lbl { font-size: 12px; color: var(--text-sub); margin-top: 3px; }

.start-btn {
  width: 100%; padding: 18px;
  background: var(--text); color: white;
  border: none; border-radius: 12px;
  font-size: 16px; font-weight: 800; cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.15s, transform 0.12s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.start-btn:hover { background: #000; }
.start-btn:active { transform: scale(0.99); }
.start-btn:disabled {
  background: var(--border); color: var(--text-mute); cursor: not-allowed;
}
.start-note {
  text-align: center; font-size: 13px; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* ── GENDER ── */
.gender-wrap {
  padding: 40px 24px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.gender-title { font-size: 20px; font-weight: 800; text-align: center; }
.gender-note { font-size: 13px; color: var(--text-sub); text-align: center; line-height: 1.7; }
.gender-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; width: 100%;
}
.gender-card {
  border: 2px solid var(--border); border-radius: 12px;
  padding: 20px 10px; cursor: pointer;
  background: var(--surface); font-size: 15px; font-weight: 700;
  transition: border-color 0.15s, background 0.15s;
}
.gender-card:hover { border-color: var(--text); background: var(--bg-band); }
.gender-card--skip {
  border-style: dashed; color: var(--text-mute); font-weight: 600;
}
.gender-card--skip:hover { border-color: var(--text-mute); background: #fafafa; color: var(--text-sub); }
.gender-card:disabled { opacity: 0.45; cursor: not-allowed; }
.gender-card:disabled:hover { border-color: var(--border); background: var(--surface); }
.gender-badge-soon { display: block; font-size: 11px; font-weight: 600; color: #999; margin-top: 4px; }
.follow-link--soon { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ── QUIZ ── */
.quiz-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.back-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border); border-radius: 12px;
  background: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-sub); flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.back-btn:hover { background: var(--bg-band); border-color: var(--text-mute); }
.back-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.quiz-head-center { flex: 1; }
.quiz-meta {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 7px;
}
.quiz-mode-badge {
  font-size: 12px; font-weight: 700;
  padding: 3px 9px; border-radius: 2px;
  background: var(--bg-band); color: var(--text-sub);
  display: inline-flex; align-items: center; gap: 4px;
}
.quiz-mode-badge.mode-on  { background: var(--color-on-soft);  color: var(--color-on);  }
.quiz-mode-badge.mode-off { background: var(--color-off-soft); color: var(--color-off); }
.quiz-counter { font-size: 13px; color: var(--text-sub); font-weight: 600; }
.prog-bar {
  height: 4px; background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.prog-fill {
  height: 100%; background: var(--text-mute);
  border-radius: 2px; transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.prog-fill.mode-on { background: var(--color-on); }
.prog-fill.mode-off { background: var(--color-off); }
.off-note {
  margin: 10px 18px 0;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 12px; color: var(--color-off); line-height: 1.6;
  display: flex; align-items: flex-start; gap: 6px;
  border:1px var(--color-off) solid;
}
.off-note i { font-size: 13px; margin-top: 1px; flex-shrink: 0; color: var(--color-off); }

.q-wrap { padding: 12px 18px 4px; }
.q-num { font-size: 12px; font-weight: 700; color: var(--text-mute); margin-bottom: 6px; letter-spacing: 0.06em; }
.q-text { font-size: 20px; font-weight: 800; line-height: 1.5; letter-spacing: -0.01em; }

.options {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px 18px 24px;
}
.opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--border); border-radius: 4px;
  background: var(--surface); cursor: pointer; text-align: left;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}

@media (hover: hover) {
  .opt:hover { border-color: var(--text); background: var(--bg-band); }
  body.mode-on .opt:hover { border-color: var(--color-on); background: var(--color-on-soft); }
  body.mode-off .opt:hover { border-color: var(--color-off); background: var(--color-off-soft); }
}
.opt:active {
  transform: scale(0.99);
  border-color: var(--text);
  background: var(--bg-band);
}
body.mode-on .opt:active { border-color: var(--color-on); background: var(--color-on-soft); }
body.mode-off .opt:active { border-color: var(--color-off); background: var(--color-off-soft); }
body.mode-on .opt:active .opt-badge { color: var(--color-on); }
body.mode-off .opt:active .opt-badge { color: var(--color-off); }
.opt-badge {
  min-width: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: var(--text-mute);
  flex-shrink: 0; transition: color 0.15s;
}
@media (hover: hover) {
  .opt:hover .opt-badge { color: var(--text); }
  body.mode-on .opt:hover .opt-badge { color: var(--color-on); }
  body.mode-off .opt:hover .opt-badge { color: var(--color-off); }
}
.opt-text { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.5; }

/* ── RESULT ── */
.result-head {
  padding: 26px 24px 26px;
  display: flex; align-items: flex-start; gap: 16px;
  align-items: center;
}
.result-icon-block {
  width: 150px; height: 150px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; flex-shrink: 0; overflow: hidden;
}
.r-char-img {
  width: 100%; height: 100%; object-fit: cover;
}
.r-mode-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 5px;
}
.r-code {
  font-size: 38px; font-weight: 900; letter-spacing: 0.1em;
  line-height: 1; margin-bottom: 4px;
}
.r-name { font-size: 18px; font-weight: 700; color: var(--text-sub); margin-bottom: 8px; }
.r-tagline { font-size: 15px; color: var(--text-sub); line-height: 1.8; }

.result-body { padding: 20px 22px 26px; }
.sec { margin-bottom: 34px; }
.sec:last-child { margin-bottom: 0; }
.sec-title {
  font-size: 11px; font-weight: 800; color: var(--text-mute);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 5px;
}

/* ── DOT BARS ── */
.dim-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.dim-row:last-child { margin-bottom: 0; }
.d-end {
  display: flex; flex-direction: column;
  width: 56px; flex-shrink: 0;
}
.d-end-l { align-items: flex-start; }
.d-end-r { align-items: flex-end; }
.d-lbl {
  font-size: 14px; font-weight: 800; color: var(--text-mute);
  line-height: 1.15;
}
.d-lbl.dom { font-size: 15px; }
.d-sub {
  font-size: 10px; color: var(--text-mute);
  line-height: 1; margin-top: 2px;
}
.d-pct {
  font-size: 12px; font-weight: 700; color: var(--text-mute);
  line-height: 1; margin-top: 3px;
}

.d-track {
  flex: 1; height: 10px; border-radius: 5px;
  position: relative; overflow: visible;
}
.d-seg-l {
  position: absolute; top: 0; left: 0; height: 100%;
  border-radius: 5px 0 0 5px;
  transition: width 0.9s cubic-bezier(.4,0,.2,1);
}
.d-seg-r {
  position: absolute; top: 0; right: 0; height: 100%;
  border-radius: 0 5px 5px 0;
  transition: width 0.9s cubic-bezier(.4,0,.2,1);
}
.d-dot {
  position: absolute; top: 50%;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; border: 3px solid var(--text-mute);
  transform: translate(-50%, -50%); z-index: 3;
  transition: left 0.9s cubic-bezier(.4,0,.2,1);
}

/* traits */
.trait-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.trait-tag {
  padding: 5px 12px; border-radius: 2px;
  font-size: 13px; font-weight: 700; color: white;
}

.desc-text { font-size: 16px; color: var(--text-sub); line-height: 1.9; }

.str-list { list-style: none; }
.str-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 16px; color: var(--text); line-height: 1.6;
}
.str-list li:last-child { border-bottom: none; }
.si { flex-shrink: 0; font-size: 13px; margin-top: .5em; }

.famous-text { font-size: 15px; color: var(--text-sub); line-height: 1.95; white-space: pre-line; }

/* compare */
.compare-banner {
  margin-bottom: 18px;
  background: var(--bg-band); border: 1.5px solid var(--border);
  border-radius: 4px; padding: 16px 14px;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; text-align: center;
}
.compare-icon {
  font-size: 20px; color: var(--text); margin-bottom: 4px;
}
.compare-text { width: 100%; }
.compare-title {
  font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 3px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.compare-sub { font-size: 13px; color: var(--text-sub); }
.compare-btn {
  width: 100%; margin-top: 12px;
  padding: 12px; background: var(--text); color: white;
  border: none; border-radius: 12px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background 0.15s;
}
.compare-btn:hover { background: #000; }
.compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.compare-card {
  border: 1.5px solid var(--border);
  padding: 16px; text-align: center;
}
.cc-mode {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.cc-char-wrap {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 6px auto 4px; overflow: hidden;
}
.cc-char-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cc-type { font-size: 24px; font-weight: 900; letter-spacing: 0.08em; }
.cc-name { font-size: 13px; color: var(--text-sub); margin-top: 4px; }
.same-badge {
  text-align: center; font-size: 13px; font-weight: 700;
  padding: 10px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.same-badge.same { background: var(--bg-band); color: var(--text-sub); }
.same-badge.diff { border:1px solid var(--border); color: var(--text-sub); }

/* actions */
.actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; margin-bottom: 24px;}
.btn-primary {
  width: 100%; padding: 15px;
  background: var(--text); color: white;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.btn-primary:hover { background: #000; }
.btn-outline {
  width: 100%; padding: 14px;
  background: white; color: var(--text);
  border: 1.5px solid var(--text); border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.btn-outline:hover { background: var(--bg-band); }
.btn-ghost {
  width: 100%; padding: 12px;
  background: transparent;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  color: var(--text-mute);
}
.btn-ghost:hover { background: var(--bg-band); color: var(--text-sub); }

/* ── FOLLOW CTA ── */
.follow-cta {
  padding: 20px;
  background: var(--bg-band);
  border-radius: 0;
  border: 1px solid var(--border);
  margin-top: 20px;
}
.follow-cta-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}
.follow-cta-links {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 10px;
}
.follow-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.follow-link i { font-size: 22px; margin-bottom: 4px; color: var(--text); }
.follow-link-yt i { color: #ff0000; }
.follow-link-note i { color: var(--text); }
.follow-link:hover { border-color: var(--text); background: #fafafa; }
.follow-link-main { font-size: 14px; font-weight: 800; color: var(--text); }
.follow-link-sub { font-size: 13px; color: var(--text-sub); line-height: 1.4; }

/* toast */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--text); color: white;
  padding: 12px 22px; border-radius: 2px;
  font-size: 14px; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 999; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── IMAGE MODAL ── */
.img-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 16px;
}
.img-modal.active { display: flex; }
.img-modal-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  max-width: 420px; width: 100%;
}
.img-modal-hint {
  color: white; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.img-modal-inner img {
  width: 100%; border-radius: 4px; display: block;
}
.img-modal-close {
  background: white; border: none; border-radius: 12px;
  padding: 12px 30px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}
.ftr-links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 4px 18px;
  margin-bottom: 10px;
}
.ftr-links a {
  font-size: 13px; color: var(--text-sub);
  text-decoration: none;
  transition: color 0.15s;
}
.ftr-links a:hover { color: var(--text); }
.ftr-copy { font-size: 12px; color: var(--text-mute); line-height: 1.6; }
.ftr-copy a { color: var(--text-sub); text-decoration: none; transition: color 0.15s; }
.ftr-copy a:hover { color: var(--text); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp-br { display: none; }
@media (max-width: 460px) {
  .sp-br { display: inline; }
  .start-title { font-size: 28px; }
  .q-text { font-size: 18px; }
  .result-head { flex-direction: column; gap: 12px; }
  .r-mode-tag {justify-content: center;}
  .r-code { font-size: 34px; text-align: center;}
  .r-name { text-align: center;}
}

@media (min-width: 680px) {
  main { padding: 36px 24px 48px; }
  .card { max-width: 760px; }
  .hdr-name { font-size: 15px; }
  .start-title { font-size: 38px; }
  .q-text { font-size: 22px; }
  .desc-text { font-size: 17px; }
  .str-list li { font-size: 17px; }
}

@media (min-width: 1024px) {
  main { padding: 48px 40px 64px; }
  .card {
    max-width: 820px;
  }
  .hdr-inner { max-width: 960px; padding: 12px 32px; }
  .hdr-name { font-size: 16px; }
  .start-title { font-size: 44px; }
  .start-sub { font-size: 18px; }
  .q-text { font-size: 24px; }
  .opt { padding: 18px 22px; }
  .desc-text { font-size: 18px; line-height: 2.0; }
  .str-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }
  .str-list li { border-bottom: 1px solid var(--border); font-size: 17px; }
  .str-list li:last-child { border-bottom: 1px solid var(--border); }
  .cc-type { font-size: 28px; }
  .site-footer { padding: 24px 40px; }
}

/* ── RESULT DISCLAIMER (簡易診断チップ) ── */
.result-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  background: var(--bg-band);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-sub);
  font-size: 12.5px;
  line-height: 1.5;
}
.result-disclaimer i { color: #999; flex-shrink: 0; }

/* ── NOTE CTA CARD (強化版誘導 / 色はJSでタイプ連動) ── */
.note-cta-card {
  margin-top: 16px;
  padding: 24px 22px;
  background: var(--bg-band);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.note-cta-head {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  text-align: center;
}
.note-cta-lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-sub);
  margin: 0 0 16px;
}
.note-cta-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.note-cta-perks li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.note-cta-perks li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--bullet-color, var(--text-mute));
  border-radius: 50%;
}
.note-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: #2a2a2a;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  transition: filter 0.15s;
}
.note-cta-button:hover { filter: brightness(1.1); }
.note-cta-button i { color: #fff; }

/* ── BRE NOTE (比較画面のブレ説明) ── */
.bre-note {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--bg-band);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.bre-note-text {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-sub);
}
.bre-note-links {
  display: grid;
  gap: 8px;
}
.bre-note-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.bre-note-link:hover { border-color: var(--text); background: #fafafa; }
