/* ============================================================
   Meetnize LP — アプリ本体 (src/App.css) のデザイントークンを流用。
   紙白背景 + アイリスバイオレット + ブランドグラデーション。
   ============================================================ */

:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --surface-soft: #f2f0ea;
  --border: rgba(24, 23, 29, 0.08);
  --border-strong: rgba(24, 23, 29, 0.15);
  --text: #1a191f;
  --text-secondary: #55535e;
  --text-faint: #8b8994;
  --ink: #1a191f;
  --ink-hover: #34323c;
  --ink-contrast: #ffffff;

  --accent: #5b57e9;
  --accent-hover: #4a46d6;
  --accent-contrast: #ffffff;
  --accent-soft: rgba(91, 87, 233, 0.09);
  --accent-soft-strong: rgba(91, 87, 233, 0.17);
  --accent-text: #4f4bde;
  --accent-other: #b26205;
  --other-soft: rgba(178, 98, 5, 0.1);

  --danger: #e5484d;
  --danger-soft: rgba(229, 72, 77, 0.1);
  --ok: #1f9e63;
  --ok-soft: rgba(31, 158, 99, 0.12);

  --grad-brand: linear-gradient(135deg, #6e5bff 0%, #a55bff 55%, #ff6b5e 115%);

  --radius-card: 14px;
  --radius-control: 10px;
  --shadow-card: 0 1px 2px rgba(22, 20, 31, 0.05);
  --shadow-hover: 0 2px 6px rgba(22, 20, 31, 0.05),
    0 12px 32px -16px rgba(22, 20, 31, 0.16);
  --shadow-pop: 0 4px 12px rgba(22, 20, 31, 0.07),
    0 32px 72px -24px rgba(22, 20, 31, 0.28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI Variable", "Segoe UI", "Hiragino Sans", "Noto Sans JP",
    "Yu Gothic UI", sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt", "cv05", "cv08";
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: var(--accent-text);
  text-decoration: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--ink-contrast);
}

.btn-primary:hover {
  background: var(--ink-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-brand {
  background: var(--grad-brand);
  color: #ffffff;
}

.btn-brand:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

.btn-large {
  padding: 15px 30px;
  font-size: 16px;
}

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand img {
  width: 26px;
  height: 26px;
}

.site-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

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

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

.header-cta {
  padding: 8px 16px;
  font-size: 13.5px;
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }

  .site-header .container {
    justify-content: space-between;
  }
}

/* ---------- ヒーロー ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 130%;
  background:
    radial-gradient(560px 380px at 18% 22%, rgba(110, 91, 255, 0.13), transparent 70%),
    radial-gradient(520px 360px at 82% 12%, rgba(255, 107, 94, 0.09), transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-strong);
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 600;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  margin: 22px auto 0;
  font-size: clamp(30px, 5.4vw, 52px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.hero h1 .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 16.5px;
  color: var(--text-secondary);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 22px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-point svg {
  flex: none;
  color: var(--ok);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- ヒーロー: アプリのモック ---------- */

.app-mock {
  max-width: 860px;
  margin: 54px auto 0;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.mock-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.mock-rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 11.5px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mock-rec .rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.mock-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.mock-pane {
  padding: 18px 20px;
}

.mock-pane + .mock-pane {
  border-left: 1px solid var(--border);
}

.mock-pane-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.mock-utterance {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.speaker-chip {
  flex: none;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.speaker-you {
  background: var(--accent-soft);
  color: var(--accent-text);
}

.speaker-other {
  background: var(--other-soft);
  color: var(--accent-other);
}

.mock-utterance p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* テキスト選択 → 図解生成の因果を見せるための擬似選択とツールバー */
.mock-selection {
  background: rgba(91, 87, 233, 0.18);
  color: var(--text);
  border-radius: 3px;
  padding: 0 1px;
}

.mock-selection-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px 46px;
  padding: 6px 11px;
  background: var(--ink);
  color: #fff;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-pop);
}

.mock-toolbar-chip {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 600;
}

.mock-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.mock-tab {
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
}

.mock-tab.active {
  background: var(--accent-soft);
  color: var(--accent-text);
}

.mock-diagram {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.mock-diagram-caption {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--text-faint);
  text-align: center;
}

@media (max-width: 720px) {
  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-pane + .mock-pane {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

/* ---------- 対応ツール ---------- */

.tools-block {
  margin-top: 48px;
  text-align: center;
}

.tools-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-size: 13.5px;
  font-weight: 600;
}

.tool-chip svg {
  flex: none;
}

.tools-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ---------- セクション共通 ---------- */

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-text);
  text-transform: uppercase;
}

.section-title {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.section-lead {
  max-width: 620px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--text-secondary);
}

/* ---------- 三本柱 ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 26px;
}

.section-alt .pillar {
  background: var(--bg);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text);
  margin-bottom: 18px;
}

.pillar h3 {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

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

@media (max-width: 860px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ---------- ボット型との比較表 ---------- */

.compare-wrap {
  overflow-x: auto;
  margin-top: 44px;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.6;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.compare-table thead th.compare-hl {
  color: var(--accent-text);
  font-size: 14.5px;
  font-weight: 800;
}

.compare-table tbody th,
.compare-table tbody td {
  border-top: 1px solid var(--border);
}

.compare-table tbody th {
  width: 20%;
  font-weight: 700;
  color: var(--text);
}

.compare-table tbody td {
  color: var(--text-secondary);
}

.compare-table td.compare-hl {
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 600;
}

.mark-ok {
  color: var(--ok);
  font-weight: 700;
  margin-right: 4px;
}

.mark-no {
  color: var(--text-faint);
  margin-right: 4px;
}

/* ---------- 機能グリッド (時間軸グループ) ---------- */

.feature-timeline {
  display: grid;
  gap: 40px;
  margin-top: 48px;
}

.feature-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 16px;
}

.feature-group-badge {
  padding: 4px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 12.5px;
  font-weight: 700;
}

.feature-group-head h3 {
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
}

.section-alt .feature {
  background: var(--bg);
}

.feature-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-text);
}

.feature h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 会議後の活用 (Q&A・図解ショーケース) ---------- */

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 26px;
}

.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 18px;
}

.chat {
  display: grid;
  gap: 10px;
}

.chat-bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.65;
}

.chat-q {
  justify-self: end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-a {
  justify-self: start;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}

.chat-a strong {
  color: var(--text);
}

.mini-steps {
  display: grid;
  gap: 14px;
}

.mini-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mini-step p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.mini-step p strong {
  color: var(--text);
}

.mini-step-num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

.showcase-note {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12.5px;
  color: var(--text-faint);
}

@media (max-width: 860px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- ユースケース ---------- */

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.usecase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 20px;
}

.usecase-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 12px 0 6px;
}

.usecase-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 860px) {
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .usecase-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 使い方 3ステップ ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 26px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-secondary);
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- 料金 ---------- */

.cycle-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  margin: 40px auto 0;
  padding: 4px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.cycle-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
}

.cycle-toggle button.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.cycle-save {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ok-soft);
  color: var(--ok);
  font-size: 11px;
  font-weight: 700;
}

/* 月払い / 年払いの出し分け (#pricing の data-cycle 属性で切替) */
#pricing[data-cycle="monthly"] [data-show="yearly"],
#pricing[data-cycle="yearly"] [data-show="monthly"] {
  display: none;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 26px 26px;
}

.plan-card-muted {
  background: var(--surface-soft);
}

.plan-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-hover);
}

.plan-badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.plan-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--ok-soft);
  color: var(--ok);
  font-size: 11.5px;
  font-weight: 700;
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
}

.plan-tagline {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-secondary);
  min-height: 2.6em;
}

.plan-price {
  margin-top: 14px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.plan-price-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 4px;
}

.plan-price-sub {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  min-height: 1.9em;
}

.plan-save-chip {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ok-soft);
  color: var(--ok);
  font-size: 11px;
  font-weight: 700;
}

.plan-features {
  list-style: none;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
}

.plan-features .mark {
  flex: none;
  margin-top: 3px;
  color: var(--ok);
}

.plan-features li.off {
  color: var(--text-faint);
}

.plan-features li.off .mark {
  color: var(--text-faint);
}

.plan-fineprint {
  max-width: 640px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
}

.pricing-cta {
  margin-top: 36px;
  text-align: center;
}

.pricing-cta p {
  margin-bottom: 16px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

@media (max-width: 860px) {
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- 安心要素 ---------- */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 40px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--ok);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 44px auto 0;
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-faint);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---------- 最終CTA ---------- */

.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px 0;
  background: var(--ink);
  color: #fff;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px 320px at 22% 20%, rgba(110, 91, 255, 0.35), transparent 70%),
    radial-gradient(480px 320px at 78% 80%, rgba(255, 107, 94, 0.22), transparent 70%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
}

.cta-final h2 {
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.cta-final p {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.cta-final .btn {
  margin-top: 32px;
}

.cta-final .cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-steps span strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

/* ---------- フッター ---------- */

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.footer-brand img {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
  font-size: 13px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  width: 100%;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ---------- 法務ページ (terms.html / privacy.html) ---------- */

.legal-main {
  padding: 56px 0 88px;
}

.legal-container {
  max-width: 760px;
}

.legal-container h1 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 6px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.legal-note {
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-strong);
  border-radius: var(--radius-control);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.legal-container h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.legal-container p {
  margin: 10px 0;
}

.legal-container ul,
.legal-container ol {
  margin: 10px 0;
  padding-left: 24px;
}

.legal-container li {
  margin-bottom: 6px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 14px 0;
}

.legal-container table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
}

.legal-container th,
.legal-container td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.legal-container th {
  background: var(--surface-soft);
  font-weight: 650;
  font-size: 13px;
  color: var(--text-secondary);
}

.legal-container tbody tr:last-child td {
  border-bottom: none;
}

/* 特商法ページの項目テーブル (左列 = 項目名) */
.legal-dl-table th {
  width: 30%;
  min-width: 140px;
  vertical-align: top;
  background: var(--surface-soft);
  font-weight: 650;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.legal-dl-table td {
  font-size: 14px;
}

.legal-container h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 22px 0 8px;
}
