@charset "UTF-8";
/* ==========================================================================
   ソナエバ 調査レポート（Web版）
   ヘッダー・フッター・ボタンは LP（/sonaever/css/style.css）の定義をそのまま使う。
   このファイルは style.css の後に読み込み、レポート本文の体裁だけを担当する。
   ========================================================================== */

:root {
  --gray-0: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #dfe3ea;
  --gray-400: #999999;
  --gray-600: #666666;
  --gray-700: #555555;
  --gray-900: #333333;

  --brand-10: #f6fbf9;
  --brand-50: #f4f8ff;
  --brand-100: #e8f2fe;
  --brand-200: #d1e4fd;
  --brand-300: #aecdfb;
  --brand-500: #679df2;
  --brand-700: #3669b8;
  --brand-800: #245196; /* Primary */
  --brand-900: #153a74;
  --sub-800: #2b286b;   /* Sub Primary */
  --flag: #b23c17;

  /* LP の --container(1080px) は流用せず、読み物として最適な幅を別名で持つ */
  --rp-container: 940px;

  --font-head: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-base: "Noto Sans JP", sans-serif;

  --radius: 10px;
  --shadow: 0 1px 3px rgba(21, 58, 116, .08), 0 8px 24px rgba(21, 58, 116, .06);
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption, table, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }

img {
  display: block;
  max-width: 100%;
  height: auto; /* width/height属性による縦横比崩れを防ぐ */
}

/* LPヘッダーは position:sticky なので、アンカー着地位置をヘッダー高さ分ずらす */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 1395px) {
  html { scroll-padding-top: 72px; }
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-900);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-800); }

/* ===== 共通レイアウト ===== */
.wrap {
  max-width: var(--rp-container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  background: var(--gray-0);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  margin-bottom: 24px;
}

/* ==========================================================================
   ヒーロー（LPのKV設計を踏襲）
   ・ベースは LP .kv と同じ --sub-800
   ・下端は LP セクションと同じ「140%幅＋border-bottom-radius: 50% var(--arc-depth)」の弧
   ・装飾線は LP のダーク背景セクション用 voice-arc.svg を流用
   ・見出しは Zen Kaku 900／letter-spacing .1em／line-height 1.425（LP .kv__copy と同値）
   ========================================================================== */
.hero {
  --arc-depth: 150px;
  position: relative;
  overflow: hidden;
  padding: 60px 0 calc(var(--arc-depth) * .72);
  color: var(--gray-0);
  /* 下端 --arc-depth より下は本文背景色、それより上は弧と同色 */
  background: linear-gradient(to top, var(--gray-50) var(--arc-depth), var(--sub-800) var(--arc-depth));
}
/* 弧本体 */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 140%;
  transform: translateX(-50%);
  background: var(--sub-800);
  border-bottom-left-radius: 50% var(--arc-depth);
  border-bottom-right-radius: 50% var(--arc-depth);
  z-index: 0;
}
/* 装飾のアーチ線 */
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -8%;
  right: 0;
  width: 100%;
  height: 118%;
  background: url("/sonaever/images/voice-arc.svg") no-repeat right top;
  background-size: cover;
  opacity: .5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px 48px;
  align-items: start;
}
.hero__badge {
  display: inline-block;
  padding: 5px 16px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(25px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.425;
  letter-spacing: .1em;
}
.hero__accent { color: var(--brand-400); }
.hero__sub {
  font-family: var(--font-head);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .1em;
  margin-top: 16px;
  color: var(--brand-300);
}
.hero__actions { margin-top: 30px; }

/* 主要数値パネル（KVの左コピー＋右ビジュアルの構成に合わせる） */
.hero__stats {
  display: grid;
  gap: 2px;
  padding: 22px 26px;
  min-width: 232px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
}
.hero__stat + .hero__stat { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .18); }
.hero__stat dt {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--brand-300);
  margin-bottom: 2px;
}
.hero__stat dd {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
}
.hero__stat dd small { font-size: 14px; font-weight: 700; margin-left: 2px; }

.hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: 12.5px;
  color: var(--brand-300);
}

/* ボタン本体は LP の .btn / .btn--primary / .btn--secondary を使う。
   ここではPDFの容量表記だけ添える */
.btn__note { font-size: 12px; font-weight: 500; letter-spacing: 0; opacity: .7; }

/* ===== 本文レイアウト（PC=左に追従目次＋右に本文） ===== */
.rp-layout {
  max-width: 1260px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.rp-main { min-width: 0; }

.rp-side {
  position: sticky;
  top: 84px; /* LPヘッダー(sticky/64px)の下に収める */
  align-self: start;
  max-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
}

/* ===== 目次 ===== */
.toc {
  background: var(--gray-0);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 8px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.toc__title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-800);
  letter-spacing: .1em;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.toc__list {
  counter-reset: toc;
  overflow-y: auto;
  min-height: 0;
  padding-right: 10px;
  scrollbar-width: thin;
}
.toc__list a {
  display: flex;
  gap: 9px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 8px;
  transition: opacity .3s ease, background-color .3s ease, color .3s ease;
}
.toc__list a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-300);
  padding-top: .15em;
  transition: color .3s ease;
}
/* ホバーはLP共通の opacity: 0.6 に合わせる */
.toc__list a:hover { opacity: .6; }

/* 現在地（JSが aria-current="true" を付与）。
   LPの「選択されたものは面を塗る」表現（swiperのページネーション・おすすめプラン）に合わせる */
.toc__list a[aria-current="true"] {
  background: var(--brand-800);
  color: var(--gray-0);
  font-weight: 700;
}
.toc__list a[aria-current="true"]::before { color: rgba(255, 255, 255, .6); }

/* ===== 見出し ===== */
.h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  line-height: 1.45;
  color: var(--brand-900);
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--brand-800);
}
.h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-800);
  margin: 30px 0 12px;
}
.lead {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 700;
  line-height: 1.7;
  color: var(--sub-800);
  padding: 14px 18px;
  background: var(--brand-50);
  border-left: 4px solid var(--brand-800);
  border-radius: 0 6px 6px 0;
  margin-bottom: 22px;
}
.body-text { margin-bottom: 16px; }
.body-text:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--brand-900); }

/* 箇条書き */
.bullets > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-size: 15px;
}
.bullets > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
}
.bullets--note > li { font-size: 13.5px; color: var(--gray-700); line-height: 1.8; }
.bullets--note > li::before { background: var(--gray-400); }

/* ===== 要点カード ===== */
.keypoints { display: grid; gap: 18px; }
.keypoint {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  background: var(--brand-50);
  border-radius: var(--radius);
}
.keypoint__num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-800);
  text-align: center;
  padding-top: 4px;
  border-right: 1px solid var(--brand-200);
}
.keypoint__num small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--brand-500); margin-bottom: 6px; }
.keypoint__head {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sub-800);
  margin-bottom: 8px;
}
.keypoint__text { font-size: 14.5px; line-height: 1.8; }

/* ===== 引用・解釈ボックス ===== */
.callout {
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 22px 0;
}
.callout--hypo { background: var(--sub-800); color: var(--gray-0); }
.callout--hypo strong { color: var(--gray-0); }
.callout--read { background: var(--gray-50); border: 1px solid var(--gray-200); }
.callout__label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 8px;
  opacity: .85;
}
.callout--read .callout__label { color: var(--flag); opacity: 1; }
.callout p { font-size: 14.5px; line-height: 1.85; }

/* ===== 棒グラフ ===== */
.chart { margin: 24px 0 0; }
.chart__note {
  font-size: 12px;
  color: var(--gray-600);
  text-align: right;
  margin-bottom: 10px;
}
.bars { display: grid; gap: 9px; }
.bar {
  display: grid;
  grid-template-columns: minmax(0, 15em) 1fr 4.6em;
  gap: 14px;
  align-items: center;
}
.bar__label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--gray-700);
  text-align: right;
}
.bar__track {
  position: relative;
  height: 22px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.bar__fill {
  display: block;
  height: 100%;
  width: calc(var(--v) / var(--max, 100) * 100%);
  background: var(--brand-800);
  border-radius: 3px;
}
.bar__value {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-900);
  text-align: right;
  white-space: nowrap;
}
.bar__value small { font-size: 11px; font-weight: 500; color: var(--gray-600); margin-left: 1px; }
/* 強調行 */
.bar.is-key .bar__fill { background: linear-gradient(90deg, var(--brand-800), var(--brand-700)); }
.bar.is-key .bar__label { color: var(--gray-900); font-weight: 700; }
/* 参考行（「特にない」等） */
.bar.is-muted .bar__fill { background: var(--gray-400); }

/* ランキング（2系列） */
.bar--rank { grid-template-columns: minmax(0, 17em) 1fr 4.6em 3.6em; }
.bar--rank .bar__track { background: var(--gray-100); }
.bar__fill--sub {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  width: calc(var(--v2) / var(--max, 100) * 100%);
  background: var(--brand-300);
  border-radius: 3px;
}
.bar__fill--main { position: relative; z-index: 1; background: var(--brand-800); }
.bar__value--sub { font-size: 13px; color: var(--brand-700); }
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: flex-end;
  font-size: 12px;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 12px; height: 12px; border-radius: 2px; }
.legend .i-main { background: var(--brand-800); }
.legend .i-sub { background: var(--brand-300); }

/* ===== テーブル ===== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
th, td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
thead th {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-0);
  background: var(--brand-800);
  white-space: nowrap;
  border-bottom: none;
}
tbody th { font-weight: 700; color: var(--sub-800); white-space: nowrap; }
/* 項目／内容の2列表はテキストが折り返せるので横スクロール不要 */
.table--spec { min-width: 0; }
.table--spec tbody th { width: 26%; background: var(--brand-50); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: none; }
.num { text-align: right; font-family: var(--font-head); font-weight: 700; white-space: nowrap; }

/* ヒートマップ */
.table--heat { min-width: 640px; }
.table--heat td.heat {
  text-align: right;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-900);
  background: rgba(36, 81, 150, var(--h, 0));
}
.table--heat th[scope="row"] { font-size: 13.5px; }
.table--heat thead th small { display: block; font-weight: 500; font-size: 11px; opacity: .85; }
.table--heat tbody tr.is-sub th { padding-left: 28px; font-weight: 500; color: var(--gray-700); }

/* ===== 利用条件 ===== */
.terms { background: var(--gray-50); border: 1px solid var(--gray-200); box-shadow: none; }
.terms .h2 { font-size: 18px; border-bottom-width: 1px; }
.credit {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--gray-0);
  border: 1px dashed var(--brand-300);
  border-radius: 6px;
  font-size: 13.5px;
}
.credit__label { font-weight: 700; color: var(--brand-800); display: block; margin-bottom: 4px; }

/* ===== CTA ===== */
/* LP の .cta-banner をそのまま使う。前後の余白だけ足す */
.cta-banner { margin-bottom: 24px; }

/* ===== フッター ===== */
/* LP の .footer / .footer__copyright をそのまま使う。上の余白だけ足す */
.footer { margin-top: 8px; border-top: 1px solid var(--gray-200); background: var(--gray-0); }

/* ===== レスポンシブ ===== */
/* LPと同じ br-sp（SPでのみ改行する）ユーティリティ */
.br-sp { display: none; }

/* サイドバーが成立しない幅では、目次を本文上部の通常カードに戻す */
@media (max-width: 1023px) {
  .rp-layout {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: var(--rp-container);
  }
  .rp-side {
    position: static;
    max-height: none;
    margin-bottom: 24px;
  }
  .toc { padding: 26px 22px; }
  .toc__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0 20px;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .br-sp { display: inline; }
  .section, .toc { padding: 24px 18px; }

  .hero { --arc-depth: 64px; padding: 36px 0 30px; }
  .hero::before { opacity: .35; background-size: 200% auto; }
  /* minmax(0,1fr) にしないと、LPの .btn(white-space:nowrap) の min-content で列が広がる */
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .hero__title { letter-spacing: .06em; }
  .hero__stats { min-width: 0; padding: 18px 20px; }
  .hero__stat + .hero__stat { margin-top: 12px; padding-top: 12px; }
  .hero__stat dd { font-size: 26px; }
  .hero__meta { gap: 4px 14px; font-size: 12px; margin-top: 24px; }

  /* 棒グラフ：ラベルを上に出して横幅を確保する */
  .bar, .bar--rank {
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
  }
  .bar__label {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 13px;
  }
  .bar__value--sub { grid-column: 2; }

  .keypoint { grid-template-columns: 1fr; gap: 12px; }
  .keypoint__num {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid var(--brand-200);
    padding: 0 0 10px;
  }
  .keypoint__num small { margin: 0; }

  /* 長いラベルを折り返せるようにする（LPの .btn は nowrap のため） */
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
    padding: 12px 20px;
  }
  .hero__actions .btn::after { flex-shrink: 0; }
  .btn__note { display: block; }
  .toc__list { grid-template-columns: 1fr; }
}
