/* ===========================
   report.css — 詳細レポートページ専用スタイル
   =========================== */

/* ===== HERO ===== */
.rp-hero {
  background: linear-gradient(160deg, #1A1A2E 0%, #16213E 100%);
  padding: 72px 20px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.rp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(65,201,180,.18), transparent 60%);
  pointer-events: none;
}
.rp-hero-inner {
  max-width: 640px; margin: 0 auto;
  position: relative; z-index: 1;
}
.rp-hero-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900; color: #fff;
  margin: 16px 0 16px; line-height: 1.3;
}
.rp-hero-desc {
  font-size: 15px; color: rgba(255,255,255,.7);
  line-height: 1.85; margin-bottom: 32px;
}
.rp-price-wrap {
  margin-bottom: 24px;
}
.rp-price-num {
  font-size: 46px; font-weight: 900; color: var(--gold);
}
.rp-price-unit {
  font-size: 15px; color: rgba(255,255,255,.5); margin-left: 6px;
}
.btn-rp-cta {
  display: inline-block;
  background: #fff;
  border: none;
  color: #1A1A2E;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-size: 15px; font-weight: 800; font-family: var(--font);
  cursor: pointer;
  letter-spacing: .04em;
  margin-bottom: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-rp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
/* ヒーロー内ボタン：一番下と同じLINEグリーン */
.rp-cta-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,199,85,.4);
}
.rp-cta-line:hover {
  background: #05b34c;
  box-shadow: 0 8px 28px rgba(6,199,85,.45);
}
.rp-hero-note {
  font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6;
}

/* ===== SECTION 共通 ===== */
.rp-section { padding: 72px 20px; }
.rp-section--gray { background: var(--bg); }
.rp-inner { max-width: 860px; margin: 0 auto; }
.rp-inner--center { text-align: center; }

.rp-eyebrow {
  display: block; text-align: center;
  font-size: 11px; font-weight: 900;
  color: var(--note-green); letter-spacing: .2em;
  margin-bottom: 10px;
}
.rp-section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900; text-align: center;
  margin-bottom: 12px; color: var(--text-main);
}
.rp-section-desc {
  text-align: center; font-size: 14px;
  color: var(--text-sub); line-height: 1.8;
  margin-bottom: 48px;
}

/* ===== CARDS ===== */
.rp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.rp-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.rp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--note-green);
}
.rp-card-num {
  font-size: 11px; font-weight: 900;
  color: var(--note-green); letter-spacing: .15em;
  margin-bottom: 8px;
}
.rp-card-icon { font-size: 32px; margin-bottom: 12px; }
.rp-card-title {
  font-size: 16px; font-weight: 700;
  color: var(--text-main); margin-bottom: 10px;
}
.rp-card-desc {
  font-size: 13px; color: var(--text-sub);
  line-height: 1.75; margin-bottom: 16px;
}
.rp-check-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
}
.rp-check-list li {
  font-size: 13px; color: var(--text-main);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.rp-check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--note-green); font-weight: 700; font-size: 12px;
}

/* ===== COMPARE TABLE ===== */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface);
  font-size: 14px;
}
.compare-table thead tr {
  background: var(--text-main); color: #fff;
}
.compare-table th {
  padding: 16px 20px; text-align: center;
  font-size: 13px; font-weight: 700; line-height: 1.5;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #f9fafb; }

.col-free  { text-align: center; color: var(--text-sub); }
.col-paid  {
  text-align: center;
  color: var(--note-green-d); font-weight: 700;
  background: rgba(65,201,180,.05);
}
.compare-table thead .col-paid {
  background: var(--note-green); color: #fff;
}
.compare-table thead .col-free {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
}
.compare-table small {
  display: block; font-size: 12px;
  opacity: .8; font-weight: 400; margin-top: 2px;
}

/* ===== ヘッダー現在地ハイライト ===== */
.active-nav {
  border-color: var(--note-green) !important;
  color: var(--note-green-d) !important;
}

/* ===== BOTTOM CTA ===== */
.rp-bottom-cta {
  background: linear-gradient(160deg, #f0fdfb 0%, #f7f8fa 100%);
  padding: 72px 20px;
  border-top: 1px solid var(--border);
}
.rp-bottom-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900; margin: 16px 0 12px;
  color: var(--text-main);
}
.rp-bottom-desc {
  font-size: 15px; color: var(--text-sub);
  line-height: 1.8; margin-bottom: 32px;
}
/* ボトムCTA内のLINEボタン */
.rp-bottom-cta .btn-rp-cta {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,199,85,.35);
  margin-bottom: 16px;
}
.rp-bottom-cta .btn-rp-cta:hover {
  background: #05b34c;
  box-shadow: 0 8px 28px rgba(6,199,85,.4);
}
.btn-go-free {
  display: inline-block;
  background: var(--note-green);
  color: #fff; text-decoration: none;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(65,201,180,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-go-free:hover {
  background: var(--note-green-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(65,201,180,.45);
}
