/* ═══════════════════════════════════════════
   144 Archetype — Minimal Modern (White Base)
   ═══════════════════════════════════════════ */

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --border: #e8e8e8;
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --accent: #2d2d2d;
  --accent-soft: #f0f0f0;
  --highlight: #5b5bd6;
  --highlight-soft: #f0f0ff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --max-w: 720px;
  --font: "Hiragino Kaku Gothic ProN", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--highlight); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-weight: 700; line-height: 1.4; }
h1 { font-size: clamp(22px, 4vw, 30px); }
h2 { font-size: clamp(18px, 3vw, 22px); }
h3 { font-size: clamp(16px, 2.5vw, 18px); }

/* ─── Layout ─── */
.container {
  width: min(var(--max-w), calc(100% - 32px));
  margin: 0 auto;
}

/* ─── Header ─── */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.brand {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.header-note {
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--accent-soft);
  padding: 2px 10px;
  border-radius: 999px;
}

/* ─── Page ─── */
.page {
  padding: 32px 0 64px;
}

/* ─── Card ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card + .card,
.card + .report-shell,
.report-shell + .card {
  margin-top: 16px;
}

/* ─── Hero (Top page) ─── */
.hero {
  text-align: center;
  padding: 40px 28px;
  background: var(--surface);
  border: none;
  box-shadow: none;
}

.hero h1 {
  margin-bottom: 8px;
}

.lead {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── Eyebrow / Badge ─── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--highlight);
  background: var(--highlight-soft);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ─── Buttons ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.button-primary {
  width: 100%;
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.button-primary:hover {
  background: #333;
}

/* ─── Card center variant ─── */
.card-center {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Diagnose Form ─── */
.diagnose-form {
  display: grid;
  gap: 20px;
}

.date-input-group {
  display: flex;
  gap: 8px;
}

.date-input-group select {
  flex: 1;
  min-width: 0;
}

.form-row label {
  display: grid;
  gap: 6px;
}

.form-row label > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

input[type="date"],
input[type="email"],
select {
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  transition: border-color 0.15s ease;
}

input[type="date"]:focus,
input[type="email"]:focus,
select:focus {
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px var(--highlight-soft);
}

select {
  min-width: 80px;
  cursor: pointer;
}

.time-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-sep {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--highlight);
}

.checkbox-row span {
  font-size: 14px;
  color: var(--text-secondary);
}

.consent-text {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 1.6;
}

/* ─── Error Message ─── */
.error-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid #f5c6c6;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
}

/* ─── Report Grid (list page / ambiguous) ─── */
.report-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.report-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--surface);
  transition: box-shadow 0.15s ease;
}

.report-card:hover {
  box-shadow: var(--shadow-md);
}

.report-card h3 {
  margin: 8px 0 4px;
}

.report-id {
  font-size: 12px;
  font-weight: 700;
  color: var(--highlight);
}

.meta {
  font-size: 13px;
  color: var(--text-secondary);
}

.subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.summary {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.muted {
  color: var(--text-secondary);
  font-style: italic;
}

.small {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ─── Back Nav ─── */
.back-nav {
  margin-bottom: 20px;
}

.back-nav a {
  font-size: 14px;
  color: var(--text-secondary);
}

.back-nav a:hover {
  color: var(--text);
}

/* ─── Report Content ─── */
.report-shell {
  display: grid;
  gap: 16px;
}

/* アーキタイプ二つ名（teaser冒頭） */
.archetype-name-hero {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin: 0 0 8px;
  padding: 0;
  background: none;
  border-left: none;
  border-radius: 0;
  letter-spacing: 0.04em;
}

.report-content h1 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--text);
}

.report-content h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-top: 40px;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--text);
}

.report-content h3 {
  font-size: clamp(16px, 2vw, 18px);
  margin-top: 28px;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--highlight);
}

.report-content p,
.report-content li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

.report-content ul,
.report-content ol {
  padding-left: 20px;
}

.report-content li {
  margin-bottom: 6px;
}

.report-content strong {
  color: var(--text);
  background: linear-gradient(transparent 60%, #fef08a 60%);
  padding: 0 2px;
}

.report-content blockquote {
  margin: 20px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--highlight);
  background: var(--highlight-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.report-content blockquote p {
  margin: 0;
}

.report-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* リンクをレポート内で非表示（CTAボタンに置き換えるため） */
.report-content a[href*="mi68.jp"] {
  display: none;
}

/* ─── Gate (Teaser Lock) ─── */
.gate-card {
  overflow: hidden;
}

.gate-mask {
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--accent-soft) 0%, #f5f5f5 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 24px;
  min-height: 160px;
}

.gate-mask-inner {
  max-width: 480px;
}

.gate-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* ─── Register Form (in teaser) ─── */
.form-panel {
  margin-top: 24px;
}

.register-form {
  display: grid;
  gap: 16px;
}

.register-form label {
  display: grid;
  gap: 6px;
}

/* ─── Success Card (full report) ─── */
.success-card {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
}

/* ─── Result pages ─── */
.result-hero {
  text-align: center;
  padding: 40px 28px;
}

.result-hero .sign-label {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  margin: 12px 0 4px;
  letter-spacing: 0.02em;
}

.result-hero .sign-sub {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ─── Glossary ─── */
.glossary-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.warning-card {
  border-color: #fde68a;
  background: #fefce8;
}

.warning-card code {
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
}

/* ─── Zodiac Icon ─── */
.zodiac-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.zodiac-icon svg {
  width: 52px;
  height: 52px;
}

.zodiac-icon-sun {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.25);
}

.zodiac-icon-moon {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #3730a3;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
}

/* ─── Result Reveal (演出ページ) ─── */
.result-reveal {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 200px);
  text-align: center;
  padding: 40px 20px;
}

.result-reveal-inner {
  max-width: 520px;
}

.result-reveal-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.result-reveal-signs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.result-sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.result-sign-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.result-sign-name {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.result-sign-x {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 40px;
}

.result-reveal-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.result-reveal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.result-reveal-btn {
  max-width: 280px;
  margin: 0 auto;
}

.result-share {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.result-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* ─── CTA Card ─── */
.cta-card {
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0ff 100%);
  border: 1px solid var(--border);
  margin-top: 16px;
}

.cta-inner {
  max-width: 520px;
  margin: 0 auto;
}

.cta-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.cta-card h2 {
  font-size: clamp(18px, 3vw, 22px);
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.button-cta {
  background: var(--highlight);
  color: #fff;
  border-color: var(--highlight);
  padding: 0 32px;
  font-size: 15px;
}

.button-cta:hover {
  background: #4a4ad4;
  text-decoration: none;
}

/* ─── Share Card ─── */
.share-card {
  text-align: center;
  padding: 28px;
  margin-top: 16px;
}

.share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.15s ease;
}

.share-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.share-x { background: #000; }
.share-fb { background: #1877f2; }
.share-line { background: #06c755; }

.share-download {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 16px auto 0;
  height: 44px;
  background: linear-gradient(135deg, #e040fb 0%, #536dfe 100%);
  font-size: 14px;
  text-align: center;
  line-height: 44px;
}
.share-download-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 6px;
}
.share-direct-link {
  text-align: center;
  margin-top: 16px;
}
.share-direct-anchor {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: underline;
}

/* ─── Referral Banner (LP) ─── */
.lp-referral-banner {
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 100%);
  color: #fff;
  text-align: center;
  padding: 32px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-referral-label {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
}
.lp-referral-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.lp-referral-signs {
  font-size: 16px;
  opacity: 0.6;
  margin-bottom: 12px;
}
.lp-referral-cta {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.9;
  color: #7b9ff0;
}

/* ─── Full Report Header ─── */
.report-header-card {
  text-align: center;
  padding: 48px 28px 40px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border: none;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
}

.report-header-inner {
  max-width: 520px;
  margin: 0 auto;
}

.report-header-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0071E3;
  background: rgba(0,113,227,0.06);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.report-header-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.report-header-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.report-header-meta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.report-header-badge {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}

.report-header-badge-moon {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #3730a3;
}

/* ─── Full Report CTA ─── */
.report-cta-card {
  text-align: center;
  padding: 56px 28px;
  margin-top: 16px;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0ff 50%, #fef9f0 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.report-cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.report-cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0071E3;
  margin-bottom: 16px;
}

.report-cta-card h2 {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.report-cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.report-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 36px;
  background: #0071E3;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.15s ease;
}

.report-cta-btn:hover {
  background: #0077ED;
  transform: scale(1.01);
  text-decoration: none;
}

/* ─── Full Report Share ─── */
.report-share-card {
  text-align: center;
  padding: 32px 28px;
  margin-top: 16px;
}

.report-share-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.report-share-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 48px;
  padding: 20px 0;
}

.site-footer p {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.footer-links {
  text-align: center;
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 12px;
}
.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ─── Legal Pages ─── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0 60px;
}
.legal-page h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.legal-page h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
}
.legal-page p,
.legal-page li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}
.legal-page ul {
  padding-left: 1.5em;
  margin: 8px 0 16px;
}
.legal-page li {
  margin-bottom: 4px;
}
.legal-page a {
  color: var(--highlight);
}

/* ─── Legal Table (特商法) ─── */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.legal-table th {
  width: 200px;
  font-weight: 600;
  background: var(--accent-soft);
  white-space: nowrap;
}
.legal-table a {
  color: var(--highlight);
}
@media (max-width: 600px) {
  .legal-table th {
    width: 120px;
    font-size: 13px;
    white-space: normal;
  }
  .legal-table td {
    font-size: 13px;
  }
}

/* ─── Form legal links ─── */
.form-legal-links {
  text-align: center;
  margin-top: 12px;
}
.form-legal-links a {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: underline;
}

/* ─── Result V3 Hero (Gradient Glow) ─── */
.rv3-hero {
  background: #000;
  text-align: center;
  padding: clamp(48px, 10vw, 80px) 24px;
  position: relative;
  overflow: hidden;
  margin: -32px calc((100% - var(--max-w)) / -2 - 16px) 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.rv3-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: radial-gradient(circle, rgba(10,132,255,0.45) 0%, rgba(88,86,214,0.22) 35%, rgba(175,82,222,0.06) 55%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.rv3-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.rv3-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.rv3-signs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.rv3-sign-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.rv3-sign-x {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.2);
}

.rv3-pre-text {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.rv3-archetype-name {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 8px;
}

.rv3-archetype-en {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.28);
}

/* Report版: 上マージン調整 */
.rv3-hero--report {
  margin-top: -32px;
  margin-bottom: 24px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ─── Catchphrase ─── */
.rv3-catchphrase-section {
  text-align: center;
  padding: 28px 20px 0;
  max-width: 520px;
  margin: 0 auto;
}

.rv3-catchphrase {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: 0.01em;
}

.unified-share {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 20px 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.unified-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .card {
    padding: 20px;
    border-radius: 16px;
  }

  .hero {
    padding: 28px 20px;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    height: 48px;
  }

  .brand {
    font-size: 13px;
  }
}


/* ═══════════════════════════════════════════════
   LP — Landing Page (diagnose.html)
   ═══════════════════════════════════════════════ */

.en { font-family: 'Outfit', -apple-system, sans-serif; }

/* ─── LP Fade-in on scroll ─── */
.lp-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.lp-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.lp-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.lp-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.lp-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LP HERO ─── */
.lp-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  background: var(--bg);
}

.lp-hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #86868B;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.lp-hero-hook {
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.lp-hero h1 {
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.lp-num {
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a 20%, #0071E3 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
}

.lp-hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.lp-hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #1B873F;
  background: rgba(27,135,63,0.06);
  padding: 6px 16px;
  border-radius: 100px;
  margin-top: 28px;
}

/* ─── LP COMPARISON ─── */
.lp-comparison {
  padding: 120px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}

.lp-section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #0071E3;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.lp-section-headline {
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.lp-section-body {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.lp-compare-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.lp-compare-row {
  display: grid;
  grid-template-columns: 130px 1fr 56px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lp-compare-row:last-child { border-bottom: none; }

.lp-compare-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: right;
}

.lp-highlight .lp-compare-name {
  color: var(--text);
  font-weight: 700;
}

.lp-compare-track {
  height: 8px;
  background: #F5F5F7;
  border-radius: 4px;
  overflow: hidden;
}

.lp-compare-fill {
  height: 100%;
  border-radius: 4px;
  background: #D2D2D7;
}

.lp-fill-accent {
  background: #0071E3;
}

.lp-compare-count {
  font-size: 22px;
  font-weight: 700;
  color: #86868B;
  text-align: right;
}

.lp-highlight .lp-compare-count {
  color: #0071E3;
  font-size: 28px;
}

.lp-tags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.lp-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  background: #F5F5F7;
  color: var(--text-secondary);
}

.lp-tag-negative {
  color: #BF4040;
  background: #FDF2F2;
}

.lp-callout {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 20px;
  background: rgba(0,113,227,0.04);
  border-radius: 12px;
  margin-top: 8px;
  line-height: 1.8;
}

/* ─── LP MID CTA ─── */
.lp-mid-cta {
  text-align: center;
  padding: 0 24px 120px;
  max-width: 720px;
  margin: 0 auto;
}

.lp-mid-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 36px;
  background: #0071E3;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.15s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.lp-mid-cta-btn:hover {
  background: #0077ED;
  transform: scale(1.01);
  text-decoration: none;
}

.lp-mid-cta-btn:active {
  transform: scale(0.995);
}

.lp-mid-cta-note {
  font-size: 12px;
  color: #86868B;
  margin-top: 12px;
}

/* ─── LP HOW IT WORKS ─── */
.lp-how-section {
  padding: 120px 24px;
  background: #F5F5F7;
}

.lp-how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.lp-step-card {
  background: #fff;
  padding: 40px 28px;
  text-align: center;
}

.lp-step-card:first-child { border-radius: 24px 0 0 24px; }
.lp-step-card:last-child { border-radius: 0 24px 24px 0; }

.lp-step-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #86868B;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lp-step-icon { font-size: 32px; margin-bottom: 16px; }

.lp-step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.lp-step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── LP SAMPLE PREVIEW ─── */
.lp-sample-section {
  padding: 120px 24px;
  max-width: 680px;
  margin: 0 auto;
}

.lp-sample-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.lp-sample-top-bar {
  padding: 16px 24px;
  background: #F5F5F7;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-sample-top-bar h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-sample-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0,113,227,0.08);
  color: #0071E3;
}

.lp-sample-content {
  padding: 36px 32px;
  position: relative;
  min-height: 380px;
}

.lp-sample-arch-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lp-sample-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,113,227,0.06), rgba(123,45,255,0.06));
  border: 1px solid rgba(0,113,227,0.1);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 16px;
}

.lp-sample-type-icon {
  font-size: 28px;
  line-height: 1;
}

.lp-sample-type-label {
  text-align: left;
}

.lp-signs {
  font-size: 11px;
  color: #86868B;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.lp-archname {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-sample-arch-en {
  font-size: 13px;
  color: #86868B;
  font-weight: 400;
  margin-top: 8px;
}

.lp-sample-block { margin-bottom: 20px; }

.lp-sample-block-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0071E3;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lp-sample-block p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.lp-sample-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}

.lp-sample-fade-text {
  font-size: 14px;
  color: #0071E3;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── LP CTA SECTION ─── */
.lp-cta-section {
  padding: 120px 24px 140px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.lp-cta-free-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #1B873F;
  background: rgba(27,135,63,0.06);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.lp-cta-section h2 {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.lp-cta-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.8;
}

.lp-form-container {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  text-align: left;
  border: 1px solid rgba(0,0,0,0.04);
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.lp-field select,
.lp-field input {
  padding: 14px 16px;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  height: auto;
}

.lp-field select:focus,
.lp-field input:focus {
  outline: none;
  border-color: #0071E3;
  box-shadow: 0 0 0 3px rgba(0,113,227,0.12);
}

.lp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2386868B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lp-time-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lp-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0071E3;
}

.lp-checkbox-row span {
  font-size: 14px;
  color: var(--text-secondary);
}

.lp-time-fields {
  /* container for time inputs */
}

.lp-time-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-time-input-group select {
  padding: 14px 16px;
  border: 1px solid #D2D2D7;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2386868B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  min-width: 100px;
  height: auto;
}

.lp-time-input-group select:focus {
  outline: none;
  border-color: #0071E3;
  box-shadow: 0 0 0 3px rgba(0,113,227,0.12);
}

.lp-time-sep {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.lp-submit-btn {
  width: 100%;
  padding: 16px;
  background: #0071E3;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.15s ease;
  letter-spacing: 0.01em;
}

.lp-submit-btn:hover {
  background: #0077ED;
  transform: scale(1.005);
}

.lp-submit-btn:active { transform: scale(0.995); }

.lp-form-footnote {
  font-size: 12px;
  color: #86868B;
  text-align: center;
  margin-top: 0;
  line-height: 1.8;
}

/* ─── LP Hero CTA ─── */
.lp-hero-cta {
  margin-top: 32px;
}

/* ─── LP Report Contents List ─── */
.lp-report-contents {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: left;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.lp-report-contents-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.lp-report-contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-report-contents-list li {
  font-size: 15px;
  line-height: 1.8;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.lp-report-contents-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #0071E3;
  font-size: 12px;
  top: 10px;
}

.lp-report-contents-list li:last-child {
  border-bottom: none;
}

.lp-report-contents-note {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #1B873F;
  margin-top: 16px;
}

/* ─── LP FOOTER ─── */
.lp-footer {
  padding: 28px 24px;
  text-align: center;
  font-size: 12px;
  color: #86868B;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ─── LP Responsive ─── */
@media (max-width: 640px) {
  .lp-hero { padding: 80px 24px 60px; }

  .lp-steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lp-step-card { border-radius: 0 !important; }
  .lp-step-card:first-child { border-radius: 24px 24px 0 0 !important; }
  .lp-step-card:last-child { border-radius: 0 0 24px 24px !important; }

  .lp-compare-row {
    grid-template-columns: 90px 1fr 44px;
    gap: 12px;
    padding: 14px 0;
  }

  .lp-compare-name { font-size: 13px; }
  .lp-compare-count { font-size: 18px; }
  .lp-highlight .lp-compare-count { font-size: 24px; }

  .lp-form-fields { gap: 8px; }
  .lp-form-container { padding: 28px 20px 24px; }

  .lp-sample-content { padding: 28px 24px; }

  .lp-sample-type-badge { padding: 10px 16px; }
  .lp-archname { font-size: 16px; }

  .lp-comparison { padding: 100px 24px 60px; }
  .lp-mid-cta { padding: 0 24px 100px; }
  .lp-how-section { padding: 100px 24px; }
  .lp-sample-section { padding: 100px 24px; }
  .lp-cta-section { padding: 100px 24px 120px; }
}
