/* ============================================================
   FX情報商材をぶった斬る！ - メインスタイルシート
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ============================================================
   CSS カスタムプロパティ
   ============================================================ */
:root {
  /* カラーパレット */
  --navy:        #0a1628;
  --navy-light:  #1a2d50;
  --navy-mid:    #152340;
  --gold:        #c8a040;
  --gold-light:  #e6c76a;
  --gold-pale:   #f5e8c0;
  --red:         #c0392b;
  --red-light:   #e74c3c;
  --green:       #1a8a5a;
  --green-light: #27ae60;
  --orange:      #d97706;

  /* テキストカラー */
  --text-primary:   #1e2d3d;
  --text-secondary: #4a5568;
  --text-muted:     #718096;
  --text-light:     #a0aec0;

  /* 背景 */
  --bg-page:    #f4f5f7;
  --bg-white:   #ffffff;
  --bg-light:   #f8f9fb;
  --bg-dark:    #0a1628;
  --border:     #e2e8f0;
  --border-mid: #cbd5e0;

  /* フォント */
  --font: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;

  /* タイポグラフィ */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --lh-tight:  1.4;
  --lh-base:   1.8;
  --lh-loose:  2.0;

  /* スペーシング */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* シャドウ */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 28px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 48px rgba(0,0,0,.16);
  --shadow-gold: 0 4px 20px rgba(200,160,64,.25);

  /* ボーダーラジウス */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;

  /* トランジション */
  --tr-fast:   150ms ease;
  --tr-base:   250ms ease;
  --tr-slow:   400ms ease;
}

/* ============================================================
   リセット・基本スタイル
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--lh-base);
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-light);
  text-decoration: none;
  transition: color var(--tr-fast);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   レイアウト共通
   ============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--narrow {
  max-width: 860px;
}

.container--wide {
  max-width: 1320px;
}

/* グリッド */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }

/* フレックス */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  border-bottom: 2px solid var(--gold);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 var(--sp-6);
  max-width: 1120px;
  margin: 0 auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.site-header__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
}

.site-header__logo-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.site-header__logo-tagline {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-header__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.site-header__badge {
  background: linear-gradient(135deg, var(--red), #a93226);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* ============================================================
   ヒーローセクション（トップ専用）
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #1e3a6b 100%);
  position: relative;
  overflow: hidden;
  padding: var(--sp-20) 0 var(--sp-16);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,160,64,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,160,64,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.hero__eyecatch {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200,160,64,.15);
  border: 1px solid rgba(200,160,64,.4);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.hero__eyecatch::before {
  content: '⚡';
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--gold-light);
  position: relative;
}

.hero__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.hero__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.2);
}

/* ============================================================
   アラートバー
   ============================================================ */
.alert-bar {
  background: linear-gradient(90deg, #7b1113 0%, var(--red) 50%, #7b1113 100%);
  padding: var(--sp-2) var(--sp-4);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

/* ============================================================
   セクション共通
   ============================================================ */
.section {
  padding: var(--sp-16) 0;
}

.section--light {
  background: var(--bg-white);
}

.section--dark {
  background: var(--navy);
}

.section__head {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--text-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}

.section--dark .section__title {
  color: #fff;
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   記事カード
   ============================================================ */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.card__img--review { background: linear-gradient(135deg, #1a0a2e, #2d1b5c); }
.card__img--ai { background: linear-gradient(135deg, #0a1a2e, #1a3a5c); }
.card__img--method { background: linear-gradient(135deg, #0a2e1a, #1a5c3a); }
.card__img--risk { background: linear-gradient(135deg, #2e0a0a, #5c1a1a); }
.card__img--basics { background: linear-gradient(135deg, #2e2a0a, #5c541a); }

.card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  background: rgba(200,160,64,.1);
  border: 1px solid rgba(200,160,64,.3);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}

.card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-3);
  flex: 1;
}

.card__title a {
  color: inherit;
}

.card__title a:hover {
  color: var(--navy-light);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.card__meta-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-weight: 700;
}

.card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-base);
}

/* カードに「注目」バッジ */
.card--featured {
  border: 2px solid var(--gold);
  position: relative;
}

.card--featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 1;
}

/* ============================================================
   カテゴリセクション（トップ）
   ============================================================ */
.cat-section {
  padding: var(--sp-12) 0;
  border-bottom: 1px solid var(--border);
}

.cat-section:last-child {
  border-bottom: none;
}

.cat-section__header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--border);
}

.cat-section__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cat-section__icon--review { background: linear-gradient(135deg, #2d1b5c, #4a2d8a); }
.cat-section__icon--ai { background: linear-gradient(135deg, #0a1a4e, #1a3a8a); }
.cat-section__icon--method { background: linear-gradient(135deg, #0a3e1a, #1a6a3a); }
.cat-section__icon--risk { background: linear-gradient(135deg, #3e0a0a, #7a1a1a); }
.cat-section__icon--basics { background: linear-gradient(135deg, #3e3a0a, #7a6a1a); }

.cat-section__title {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--text-primary);
}

.cat-section__count {
  margin-left: auto;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================================
   おすすめ商材ブロック（トップ）
   ============================================================ */
.products-section {
  background: var(--navy);
  padding: var(--sp-16) 0;
}

.product-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,160,64,.25);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: background var(--tr-base), border-color var(--tr-base);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
}

.product-card__rank {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-lg) 0 var(--radius-md) 0;
}

.product-card__body {
  margin-top: var(--sp-8);
}

.product-card__name {
  font-size: var(--text-xl);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--sp-2);
}

.product-card__price {
  font-size: var(--text-sm);
  color: var(--gold-light);
  margin-bottom: var(--sp-4);
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.product-card__feature {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}

.product-card__feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.product-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 900;
  font-size: var(--text-sm);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  transition: opacity var(--tr-fast), transform var(--tr-fast);
  letter-spacing: 0.03em;
}

.product-card__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--navy);
}

/* ============================================================
   記事ページレイアウト
   ============================================================ */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: var(--sp-12) 0 var(--sp-8);
  border-bottom: 3px solid var(--gold);
}

.article-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.5);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb__sep {
  font-size: 0.6rem;
}

.article-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,160,64,.2);
  border: 1px solid rgba(200,160,64,.5);
  color: var(--gold-light);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.08em;
}

.article-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.01em;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.article-hero__meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
}

.article-hero__meta-item strong {
  color: rgba(255,255,255,.9);
}

/* 記事本文エリア */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-6);
  align-items: start;
}

.article-body {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-10);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  min-width: 0;
}

/* ============================================================
   記事本文タイポグラフィ
   ============================================================ */
.article-content {
  font-size: 1.0rem;
  line-height: var(--lh-loose);
  color: var(--text-primary);
}

.article-content h2 {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--navy);
  margin: var(--sp-12) 0 var(--sp-6);
  padding: var(--sp-4) var(--sp-6);
  background: linear-gradient(90deg, rgba(10,22,40,.06) 0%, transparent 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: var(--lh-tight);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-light);
  margin: var(--sp-8) 0 var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--border);
  line-height: var(--lh-tight);
}

.article-content h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--sp-6) 0 var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.article-content h4::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--gold);
  border-radius: 2px;
}

.article-content p {
  margin-bottom: var(--sp-4);
}

.article-content ul,
.article-content ol {
  margin: var(--sp-4) 0 var(--sp-6) 0;
  padding-left: var(--sp-8);
}

.article-content ul li {
  list-style: disc;
  color: var(--text-primary);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-2);
}

.article-content ol li {
  list-style: decimal;
  color: var(--text-primary);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-2);
}

.article-content li:last-child {
  margin-bottom: 0;
}

.article-content strong {
  font-weight: 700;
  color: var(--navy);
}

.article-content em {
  font-style: normal;
  background: linear-gradient(transparent 60%, var(--gold-pale) 60%);
  padding: 0 2px;
}

/* テーブル */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-6) 0;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-content table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  letter-spacing: 0.04em;
}

.article-content table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.article-content table tr:nth-child(even) td {
  background: var(--bg-light);
}

.article-content table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   記事内特殊ブロック
   ============================================================ */

/* ボックス内リストの二重インデント解消 */
.box-point ul, .box-point ol,
.box-warning ul, .box-warning ol,
.box-check ul, .box-check ol {
  padding-left: var(--sp-5);
  margin-bottom: 0;
}

/* 注目ボックス */
.box-point {
  background: linear-gradient(135deg, rgba(200,160,64,.08), rgba(200,160,64,.04));
  border: 1px solid rgba(200,160,64,.4);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
}

.box-point__title {
  font-size: var(--text-sm);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.box-point__title::before {
  content: '★';
}

/* 警告ボックス */
.box-warning {
  background: rgba(192,57,43,.06);
  border: 1px solid rgba(192,57,43,.3);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
}

.box-warning__title {
  font-size: var(--text-sm);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.box-warning__title::before {
  content: '⚠';
}

/* チェックボックス */
.box-check {
  background: rgba(26,138,90,.06);
  border: 1px solid rgba(26,138,90,.3);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
}

.box-check__title {
  font-size: var(--text-sm);
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.box-check__title::before {
  content: '✓';
}

/* 評価スコア */
.rating-block {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
}

.rating-block__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
  text-align: center;
}

.rating-block__overall {
  text-align: center;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.rating-block__score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.rating-block__score-max {
  font-size: var(--text-lg);
  color: var(--text-muted);
}

.rating-block__stars {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: var(--sp-2);
}

.rating-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.rating-item {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  align-items: center;
  gap: var(--sp-3);
}

.rating-item__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.rating-item__bar {
  height: 8px;
  background: var(--bg-page);
  border-radius: 4px;
  overflow: hidden;
}

.rating-item__fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1s ease;
}

.rating-item__num {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}

/* 商材レビューCTA */
.product-recommend {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  margin: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}

.product-recommend::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,160,64,.12) 0%, transparent 70%);
  pointer-events: none;
}

.product-recommend__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(200,160,64,.15);
  border: 1px solid rgba(200,160,64,.4);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: var(--sp-4);
}

.product-recommend__title {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.product-recommend__price {
  font-size: var(--text-sm);
  color: var(--gold-light);
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.product-recommend__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,.8);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}

.product-recommend__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}

.product-recommend__feature {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.product-recommend__feature::before {
  content: '▶';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.product-recommend__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 900;
  font-size: var(--text-base);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-lg);
  transition: opacity var(--tr-fast), transform var(--tr-fast);
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

.product-recommend__btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: var(--navy);
  box-shadow: 0 6px 28px rgba(200,160,64,.4);
}

.product-recommend__caution {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  margin-top: var(--sp-4);
  position: relative;
  z-index: 1;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  padding: var(--sp-4) var(--sp-6);
  background: var(--bg-light);
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  line-height: var(--lh-tight);
  user-select: none;
}

.faq-question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-question__arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: transform var(--tr-base);
  flex-shrink: 0;
}

.faq-item.is-open .faq-question__arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--sp-6);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow), padding var(--tr-slow);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-base);
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: var(--sp-5) var(--sp-6);
}

.faq-answer::before {
  content: '';
}

/* 目次 */
.toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin: var(--sp-6) 0 var(--sp-8);
}

.toc__title {
  font-size: var(--text-sm);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.toc__title::before {
  content: '≡';
  font-size: 1.2rem;
}

.toc__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  counter-reset: toc;
}

.toc__item {
  counter-increment: toc;
}

.toc__link {
  font-size: var(--text-sm);
  color: var(--navy-light);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: 5px 0;
  line-height: var(--lh-tight);
  transition: color var(--tr-fast);
}

.toc__link::before {
  content: counter(toc) '.';
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 20px;
}

.toc__link:hover {
  color: var(--gold);
}

/* ============================================================
   サイドバー
   ============================================================ */
.sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.sidebar-block {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.sidebar-block__head {
  background: var(--navy);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.sidebar-block__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.sidebar-block__body {
  padding: var(--sp-5);
}

/* サイドバー商材カード */
.side-product {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}

.side-product:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.side-product__rank {
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}

.side-product__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-tight);
}

.side-product__price {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.side-product__btn {
  display: block;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: background var(--tr-fast);
  letter-spacing: 0.03em;
}

.side-product__btn:hover {
  background: var(--navy-light);
  color: #fff;
}

/* ============================================================
   著者ボックス
   ============================================================ */
.author-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-5);
  margin: var(--sp-8) 0;
}

.author-box__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.author-box__info {}

.author-box__role {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}

.author-box__name {
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.author-box__bio {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-base);
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: var(--sp-12) 0 var(--sp-6);
  border-top: 2px solid rgba(200,160,64,.3);
}

.site-footer__disclaimer {
  max-width: 860px;
  margin: 0 auto var(--sp-8);
  padding: 0 var(--sp-6);
}

.site-footer__disclaimer-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
  text-align: center;
}

.site-footer__disclaimer-text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
  line-height: 1.9;
  text-align: justify;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-6);
  text-align: center;
}

.site-footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
  letter-spacing: 0.04em;
}

/* ============================================================
   ユーティリティ
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.badge--gold { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(200,160,64,.4); }
.badge--red  { background: rgba(192,57,43,.1); color: var(--red); border: 1px solid rgba(192,57,43,.3); }
.badge--green { background: rgba(26,138,90,.1); color: var(--green); border: 1px solid rgba(26,138,90,.3); }
.badge--navy { background: rgba(10,22,40,.1); color: var(--navy); border: 1px solid rgba(10,22,40,.2); }

.text-gold { color: var(--gold); }
.text-red  { color: var(--red); }
.text-green { color: var(--green); }
.text-center { text-align: center; }
.text-sm { font-size: var(--text-sm); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp-8) 0;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
  }

  .site-header__inner {
    height: 60px;
  }

  .site-header__logo-name {
    font-size: 0.9rem;
  }

  .site-header__badge {
    display: none;
  }

  .hero {
    padding: var(--sp-12) 0 var(--sp-10);
  }

  .hero__stats {
    gap: var(--sp-4);
  }

  .hero__divider {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: var(--sp-6) var(--sp-4);
  }

  .article-content h2 {
    font-size: var(--text-xl);
    padding: var(--sp-3) var(--sp-4);
  }

  .rating-item {
    grid-template-columns: 100px 1fr 40px;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-recommend {
    padding: var(--sp-6);
  }

  .product-recommend__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-4);
  }

  .article-hero__title {
    font-size: 1.4rem;
  }

  .cat-section__header {
    flex-wrap: wrap;
  }
}

/* ============================================================
   アニメーション
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}

/* ============================================================
   印刷スタイル
   ============================================================ */
@media print {
  .site-header,
  .sidebar,
  .product-recommend,
  .site-footer {
    display: none;
  }
  .article-layout {
    display: block;
  }
  .article-body {
    box-shadow: none;
    border: none;
  }
}
