/**
 * 1%の複利則 — compound-growth.css
 *
 * 設計思想:
 *   - #cg-root 配下のみ完全独立デザイン
 *   - Cocoon / entry-content / article 干渉を完全排除
 *   - CSSカスタムプロパティで全色・全値を管理
 *   - モバイルファースト + clamp() 流体タイポグラフィ
 *   - アニメーションは opacity / transform / filter のみ使用
 *   - カラーパレット: Deep Navy（#080b14〜#233151）× Gold（#c9a961〜#e9cd8c）
 *                    × Emerald（#2fa87f〜#4fd3a5）× Red-Dim（#c1685f）
 *   - フォント: Noto Serif JP（見出し/明朝）+ Noto Sans JP（本文）+ Spectral（数字ディスプレイ）
 *   - 行間設計: デバイス別 line-height 完全最適化（Section 5.10）
 *   - 配色アクセシビリティ: コントラスト比 4.5:1 以上保証（Section 5.8）
 *   - テキスト中央配置: Flexboxラッパー構造（Section 5.9）
 *   - リスト干渉排除: Cocoon li::before の完全無効化（Section 5.12）
 *
 * @package cocoon-child-master
 */


/* ================================================================
   1. COCOON 干渉リセット
   ================================================================ */
.compound-growth .article,
.compound-growth .entry-content,
.compound-growth .main,
.compound-growth .content,
.compound-growth .wrap,
.compound-growth #main,
.compound-growth #body-in,
.compound-growth #container,
.compound-growth #container-in,
.compound-growth #contents,
.compound-growth #contents-in {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
  position: static !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
}

.compound-growth #sidebar,
.compound-growth .sidebar,
.compound-growth #sidebar-scroll,
.compound-growth .sidebar-top,
.compound-growth .sidebar-bottom {
  display: none !important;
}

.compound-growth #footer:not(.tp-footer),
.compound-growth .site-footer:not(.tp-footer),
.compound-growth .footer:not(.tp-footer) {
  display: none !important;
}


/* ================================================================
   2. CSSカスタムプロパティ（全色・全値）
   ================================================================ */
#cg-root {
  /* ─ カラーパレット（Deep Navy） ─ */
  --cg-bg:          #080b14;
  --cg-bg-2:        #0c1220;
  --cg-bg-3:        #111a2c;
  --cg-bg-card:     #131c30;
  --cg-bg-elev:     rgba(255, 255, 255, 0.028);
  --cg-line:        rgba(201, 169, 97, 0.16);
  --cg-line-strong: rgba(201, 169, 97, 0.32);
  --cg-card-line:   rgba(255, 255, 255, 0.08);

  /* ─ アクセント（Gold + Emerald + Red-Dim） ─ */
  --cg-gold:         #c9a961;
  --cg-gold-bright:  #e9cd8c;
  --cg-gold-light:   #f0e4b8;
  --cg-emerald:      #2fa87f;
  --cg-emerald-bright:#4fd3a5;
  --cg-red-dim:      #c1685f;

  /* ─ テキスト ─ */
  --cg-text:      #eef1f7;
  --cg-text-2:    #aab4c8;
  --cg-text-3:    #71809c;
  --cg-text-mute: #5b6b87;

  /* ─ ボーダー ─ */
  --cg-border:      rgba(201, 169, 97, 0.20);
  --cg-border-soft: rgba(255, 255, 255, 0.06);

  /* ─ タイポグラフィ ─ */
  --cg-font-sans:    'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic UI', sans-serif;
  --cg-font-serif:   'Noto Serif JP', 'Shippori Mincho', 'Yu Mincho', serif;
  --cg-font-display: 'Spectral', 'Noto Serif JP', serif;
  --cg-font-num:     'Spectral', 'Noto Serif JP', serif;

  /* ─ 行間設計（モバイル基準値） ─ */
  --cg-lh-body:     1.9;
  --cg-lh-lead:     2.0;
  --cg-lh-h1:       1.25;
  --cg-lh-h2:       1.3;
  --cg-lh-h3:       1.4;
  --cg-lh-caption:  1.7;

  /* ─ 文字間隔（モバイル基準値） ─ */
  --cg-ls-body:     0.03em;
  --cg-ls-heading:  -0.01em;
  --cg-ls-display:  0.05em;
  --cg-ls-caption:  0.02em;

  /* ─ スペーシング ─ */
  --cg-section-py:    clamp(4rem, 8vw, 7.5rem);
  --cg-container-max: 920px;
  --cg-container-wide:1120px;
  --cg-radius:        3px;
  --cg-radius-sm:     2px;
  --cg-radius-lg:     6px;

  /* ─ 段落・見出し余白 ─ */
  --cg-p-gap:      1.25em;
  --cg-heading-mb: 0.85em;
  --cg-list-gap:   0.5em;

  /* ─ トランジション ─ */
  --cg-transition:      0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --cg-transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ================================================================
   3. GLOBAL RESET — #cg-root スコープ
   ================================================================ */
#cg-root,
#cg-root *,
#cg-root *::before,
#cg-root *::after {
  box-sizing: border-box;
}

#cg-root h1,
#cg-root h2,
#cg-root h3,
#cg-root h4,
#cg-root h5,
#cg-root h6,
#cg-root p,
#cg-root ul,
#cg-root ol,
#cg-root li,
#cg-root figure,
#cg-root blockquote,
#cg-root dl,
#cg-root dd {
  margin: 0;
  padding: 0;
}

#cg-root ul,
#cg-root ol {
  list-style: none;
}

#cg-root {
  background-color: var(--cg-bg);
  color: var(--cg-text-2);
  font-family: var(--cg-font-sans);
  font-weight: 300;
  line-height: var(--cg-lh-body, 1.9);
  letter-spacing: var(--cg-ls-body, 0.03em);
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  word-break: auto-phrase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 環境光: 上部にゴールド、右上にエメラルドの微光 */
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -5%,  rgba(201, 169, 97, 0.09), transparent 60%),
    radial-gradient(ellipse 900px 600px at 100% 10%, rgba(47, 168, 127, 0.07), transparent 55%);
}

#cg-root ::selection { background: rgba(201, 169, 97, 0.30); color: #fff; }
#cg-root ::-moz-selection { background: rgba(201, 169, 97, 0.30); color: #fff; }


/* ================================================================
   4. ベースコンポーネント
   ================================================================ */
#cg-root .cg-container {
  max-width: var(--cg-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 2.5rem);
  position: relative;
}

#cg-root .cg-container--wide {
  max-width: var(--cg-container-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 2.5rem);
  position: relative;
}

/* セクション共通 */
#cg-root .cg-section {
  padding-block: var(--cg-section-py);
  position: relative;
  border-bottom: 1px solid var(--cg-line);
}
#cg-root .cg-section:last-of-type { border-bottom: none; }

/* 交互背景 */
#cg-root .cg-section--alt {
  background-color: var(--cg-bg-2);
}


/* ================================================================
   5. スクロールリビール（IntersectionObserver 連携）
   ================================================================ */
#cg-root .cg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
#cg-root .cg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#cg-root .cg-reveal[data-delay="1"] { transition-delay: 0.10s; }
#cg-root .cg-reveal[data-delay="2"] { transition-delay: 0.20s; }
#cg-root .cg-reveal[data-delay="3"] { transition-delay: 0.30s; }
#cg-root .cg-reveal[data-delay="4"] { transition-delay: 0.40s; }


/* ================================================================
   6. カバー（ファーストビュー）
   ================================================================ */
#cg-root .cg-cover {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 14vw, 11rem);
  border-bottom: 1px solid var(--cg-line);
  isolation: isolate;
}

#cg-root .cg-cover__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
#cg-root .cg-cover__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: saturate(0.85) contrast(1.05) brightness(0.75);
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
#cg-root .cg-cover__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 20% 40%, rgba(8, 11, 20, 0.35), transparent 60%),
    linear-gradient(180deg,
      rgba(8, 11, 20, 0.55) 0%,
      rgba(8, 11, 20, 0.65) 40%,
      rgba(8, 11, 20, 0.85) 100%);
}
#cg-root .cg-cover__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 20%, transparent 80%);
}

#cg-root .cg-cover__content {
  max-width: 780px;
  width: 100%;
  padding-inline: clamp(1.25rem, 4.5vw, 2.5rem);
  text-align: left;
  position: relative;
}

#cg-root .cg-cover__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(11px, 1.4vw, 12.5px);
  letter-spacing: 0.32em;
  color: var(--cg-gold);
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}
#cg-root .cg-cover__eyebrow-dot {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--cg-gold), transparent);
}

#cg-root .cg-cover__title {
  font-family: var(--cg-font-serif);
  font-weight: 900;
  color: var(--cg-text);
  font-size: clamp(30px, 5.6vw, 58px);
  line-height: var(--cg-lh-h1);
  letter-spacing: var(--cg-ls-heading);
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}
#cg-root .cg-cover__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--cg-gold-bright) 0%, var(--cg-emerald-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-inline: 0.05em;
}

#cg-root .cg-cover__sub {
  font-size: clamp(15px, 1.9vw, 17.5px);
  color: var(--cg-text-2);
  max-width: 640px;
  line-height: var(--cg-lh-lead);
  font-weight: 300;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
#cg-root .cg-cover__sub-accent {
  display: inline-block;
  color: var(--cg-text);
  font-weight: 500;
  border-bottom: 1px solid var(--cg-line-strong);
  padding-bottom: 2px;
}

/* Hero デュアルパネル */
#cg-root .cg-hero-chart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cg-card-line);
  border: 1px solid var(--cg-card-line);
  border-radius: var(--cg-radius-sm);
  overflow: hidden;
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#cg-root .cg-hero-chart__panel {
  background: rgba(12, 18, 32, 0.72);
  padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.2rem, 2.4vw, 1.75rem) clamp(1.2rem, 2.4vw, 1.6rem);
  position: relative;
  transition: background var(--cg-transition);
}
#cg-root .cg-hero-chart__panel::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 2px;
}
#cg-root .cg-hero-chart__panel--up::before {
  background: linear-gradient(90deg, transparent, var(--cg-emerald-bright), transparent);
}
#cg-root .cg-hero-chart__panel--down::before {
  background: linear-gradient(90deg, transparent, var(--cg-red-dim), transparent);
}
#cg-root .cg-hero-chart__label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--cg-text-3);
  margin-bottom: 6px;
  font-weight: 500;
}
#cg-root .cg-hero-chart__formula {
  font-family: var(--cg-font-num);
  font-size: clamp(14px, 1.7vw, 15.5px);
  color: var(--cg-text-2);
  margin-bottom: 14px;
  font-style: italic;
}
#cg-root .cg-hero-chart__result {
  font-family: var(--cg-font-num);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1;
  letter-spacing: -0.01em;
}
#cg-root .cg-hero-chart__unit {
  font-size: 0.62em;
  font-weight: 500;
  margin-left: 2px;
  opacity: 0.85;
}
#cg-root .cg-hero-chart__panel--up .cg-hero-chart__result {
  color: var(--cg-emerald-bright);
  text-shadow: 0 0 24px rgba(79, 211, 165, 0.25);
}
#cg-root .cg-hero-chart__panel--down .cg-hero-chart__result {
  color: var(--cg-red-dim);
  text-shadow: 0 0 24px rgba(193, 104, 95, 0.20);
}
#cg-root .cg-hero-chart__spark {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: 16px;
}

/* スクロールヒント */
#cg-root .cg-cover__scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--cg-text-3);
  text-transform: uppercase;
  margin: 0;
}
#cg-root .cg-cover__scroll-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--cg-text-3), transparent);
  animation: cg-scroll-hint 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes cg-scroll-hint {
  0%   { transform: translateX(0);    opacity: 0.6; }
  50%  { transform: translateX(10px); opacity: 1;   }
  100% { transform: translateX(0);    opacity: 0.6; }
}


/* ================================================================
   7. セクションヘッダー
   ================================================================ */
#cg-root .cg-chapter-mark {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(0.9rem, 2vw, 1.4rem);
}
#cg-root .cg-chapter-mark__no {
  font-family: var(--cg-font-num);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--cg-gold);
  letter-spacing: 0.06em;
}
#cg-root .cg-chapter-mark__sub {
  font-size: clamp(11px, 1.35vw, 12.5px);
  letter-spacing: 0.18em;
  color: var(--cg-text-3);
  text-transform: uppercase;
  font-weight: 500;
}
#cg-root .cg-section-title {
  font-family: var(--cg-font-serif);
  font-weight: 700;
  color: var(--cg-text);
  font-size: clamp(22px, 3.6vw, 34px);
  line-height: var(--cg-lh-h2);
  letter-spacing: var(--cg-ls-heading);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 780px;
}


/* ================================================================
   8. 本文タイポグラフィ
   ================================================================ */
#cg-root .cg-prose {
  max-width: 720px;
  margin-block: 0;
}
#cg-root .cg-prose p {
  font-size: clamp(15px, 1.85vw, 16.5px);
  color: var(--cg-text-2);
  max-width: 720px;
}
#cg-root .cg-prose p strong,
#cg-root .cg-section p strong {
  color: var(--cg-text);
  font-weight: 600;
}
#cg-root .cg-prose + .cg-prose,
#cg-root .cg-prose + .cg-figure,
#cg-root .cg-figure + .cg-prose,
#cg-root .cg-formula-card + .cg-prose,
#cg-root .cg-scurve + .cg-figure,
#cg-root .cg-blockquote-center-wrap + .cg-figure {
  margin-top: clamp(1.4rem, 2.6vw, 1.8rem);
}

#cg-root .cg-sub-title {
  font-family: var(--cg-font-serif);
  font-weight: 700;
  color: var(--cg-text);
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: var(--cg-lh-h3);
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1rem, 2vw, 1.4rem);
}
#cg-root .cg-note {
  font-size: 13.5px;
  color: var(--cg-text-3);
  max-width: 720px;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.85;
}


/* ================================================================
   9. 数式カード / 数値カード
   ================================================================ */
#cg-root .cg-formula-card {
  position: relative;
  background: var(--cg-bg-elev);
  border: 1px solid var(--cg-card-line);
  border-radius: var(--cg-radius);
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.5rem, 3vw, 2.2rem);
  margin: clamp(1.8rem, 3.6vw, 2.4rem) 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
  max-width: 820px;
}
#cg-root .cg-formula-card__accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cg-gold), transparent);
}
#cg-root .cg-formula-card__main {
  font-family: var(--cg-font-num);
  font-size: clamp(19px, 2.5vw, 24px);
  color: var(--cg-gold-bright);
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 500;
}
#cg-root .cg-formula-card__eq,
#cg-root .cg-formula-card__paren {
  color: var(--cg-gold);
  margin-inline: 0.15em;
}
#cg-root .cg-formula-card__legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--cg-text-3);
  font-family: var(--cg-font-sans);
}
#cg-root .cg-formula-card__legend span b {
  color: var(--cg-gold-bright);
  font-family: var(--cg-font-num);
  font-weight: 700;
  font-style: italic;
  margin-right: 6px;
}


/* Duo-grid 統計カード */
#cg-root .cg-duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.4rem);
  margin: clamp(2rem, 4vw, 2.5rem) 0;
  max-width: 820px;
}
#cg-root .cg-stat-card {
  background: var(--cg-bg-elev);
  border: 1px solid var(--cg-card-line);
  border-radius: var(--cg-radius);
  padding: clamp(1.4rem, 2.6vw, 1.85rem) clamp(1.4rem, 2.6vw, 1.75rem);
  position: relative;
  overflow: hidden;
  transition: transform var(--cg-transition), border-color var(--cg-transition), background var(--cg-transition);
}
#cg-root .cg-stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 2px;
}
#cg-root .cg-stat-card--pos::before {
  background: linear-gradient(90deg, transparent, var(--cg-emerald), transparent);
}
#cg-root .cg-stat-card--neg::before {
  background: linear-gradient(90deg, transparent, var(--cg-red-dim), transparent);
}
#cg-root .cg-stat-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}
#cg-root .cg-stat-card--pos:hover {
  border-color: rgba(79, 211, 165, 0.32);
  box-shadow: 0 12px 40px -20px rgba(79, 211, 165, 0.35);
}
#cg-root .cg-stat-card--neg:hover {
  border-color: rgba(193, 104, 95, 0.28);
  box-shadow: 0 12px 40px -20px rgba(193, 104, 95, 0.30);
}
#cg-root .cg-stat-card__key {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--cg-text-3);
  margin-bottom: 12px;
  font-weight: 500;
}
#cg-root .cg-stat-card__value {
  font-family: var(--cg-font-num);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 44px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
#cg-root .cg-stat-card__unit {
  font-size: 0.62em;
  font-weight: 500;
  margin-left: 3px;
  opacity: 0.85;
}
#cg-root .cg-stat-card--pos .cg-stat-card__value {
  color: var(--cg-emerald-bright);
  text-shadow: 0 0 32px rgba(79, 211, 165, 0.25);
}
#cg-root .cg-stat-card--neg .cg-stat-card__value {
  color: var(--cg-red-dim);
  text-shadow: 0 0 32px rgba(193, 104, 95, 0.20);
}
#cg-root .cg-stat-card__desc {
  font-size: 13.5px;
  color: var(--cg-text-2);
  line-height: 1.85;
}
#cg-root .cg-stat-card__desc strong { color: var(--cg-text); }


/* ================================================================
   10. figure（図解・写真）
   ================================================================ */
#cg-root .cg-figure {
  margin: clamp(2rem, 4vw, 3rem) 0;
  max-width: 920px;
}
#cg-root .cg-figure__frame {
  position: relative;
  border-radius: var(--cg-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--cg-bg-3);
  border: 1px solid var(--cg-card-line);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
#cg-root .cg-figure__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
#cg-root .cg-figure__frame-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 60%, rgba(8, 11, 20, 0.35) 100%),
    linear-gradient(0deg, transparent 85%, rgba(201, 169, 97, 0.06) 100%);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
#cg-root .cg-figure__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(201, 169, 97, 0.32), transparent 35%, transparent 65%, rgba(79, 211, 165, 0.20)) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
#cg-root .cg-figure:hover .cg-figure__frame {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}
#cg-root .cg-figure:hover .cg-figure__img {
  transform: scale(1.03);
}
#cg-root .cg-figure--soft .cg-figure__img { filter: saturate(0.92) brightness(0.95); }
#cg-root .cg-figure--dawn .cg-figure__img { filter: saturate(1.05) contrast(1.03); }
#cg-root .cg-figure__caption {
  font-size: 13px;
  color: var(--cg-text-3);
  line-height: 1.85;
  margin-top: clamp(0.9rem, 2vw, 1.25rem);
  padding-inline: 4px;
  max-width: 780px;
}
#cg-root .cg-figure__caption strong { color: var(--cg-gold-bright); font-weight: 600; }
#cg-root .cg-figure__caption-mark {
  display: inline-block;
  font-family: var(--cg-font-num);
  font-style: italic;
  color: var(--cg-gold);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--cg-line);
  vertical-align: baseline;
}


/* ================================================================
   11. S字曲線ラッパー
   ================================================================ */
#cg-root .cg-scurve {
  background: var(--cg-bg-elev);
  border: 1px solid var(--cg-card-line);
  border-radius: var(--cg-radius);
  padding: clamp(1.6rem, 3.2vw, 2.2rem) clamp(1.2rem, 2.6vw, 1.85rem) clamp(1.2rem, 2.4vw, 1.5rem);
  margin: clamp(2rem, 4vw, 2.5rem) 0;
  overflow: hidden;
}
#cg-root .cg-scurve svg {
  width: 100%;
  height: auto;
  display: block;
}
#cg-root .cg-scurve__line {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}
#cg-root .cg-reveal.is-visible .cg-scurve__line,
#cg-root .cg-scurve.is-visible .cg-scurve__line {
  stroke-dashoffset: 0;
}
#cg-root .cg-scurve__legend {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  margin-top: 1rem;
}
#cg-root .cg-scurve__legend div {
  font-size: 12.5px;
  color: var(--cg-text-3);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
}
#cg-root .cg-scurve__legend span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}


/* ================================================================
   12. Micro-band + Roadmap Steps
   ================================================================ */
#cg-root .cg-micro-band {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.6rem, 1.4vw, 0.9rem);
  margin: clamp(2rem, 4vw, 2.8rem) 0;
}
#cg-root .cg-micro-chip {
  background: var(--cg-bg-3);
  border: 1px solid var(--cg-card-line);
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--cg-text);
  transition: border-color var(--cg-transition), background var(--cg-transition), transform var(--cg-transition);
}
#cg-root .cg-micro-chip:hover {
  border-color: var(--cg-line-strong);
  background: rgba(47, 168, 127, 0.06);
  transform: translateY(-2px);
}
#cg-root .cg-micro-chip b {
  color: var(--cg-emerald-bright);
  font-weight: 700;
  font-family: var(--cg-font-num);
  font-style: italic;
  padding-inline: 2px;
}

#cg-root .cg-roadmap {
  margin: clamp(2rem, 4vw, 2.8rem) 0;
}
#cg-root .cg-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: clamp(1.2rem, 2.4vw, 1.6rem) 0;
  border-top: 1px solid var(--cg-card-line);
  transition: background var(--cg-transition), padding-inline var(--cg-transition);
}
#cg-root .cg-step:last-child { border-bottom: 1px solid var(--cg-card-line); }
#cg-root .cg-step:hover {
  background: rgba(201, 169, 97, 0.03);
  padding-inline: 8px;
}
#cg-root .cg-step__no {
  font-family: var(--cg-font-num);
  font-style: italic;
  font-weight: 600;
  color: var(--cg-gold);
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.3;
}
#cg-root .cg-step__title {
  font-family: var(--cg-font-serif);
  color: var(--cg-text);
  font-size: clamp(15.5px, 1.9vw, 17px);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.55;
}
#cg-root .cg-step__body p {
  margin: 0;
  font-size: 14px;
  max-width: 620px;
  color: var(--cg-text-2);
}


/* ================================================================
   13. Closing / Commit / CTA
   ================================================================ */
#cg-root .cg-section--closing {
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(201, 169, 97, 0.09), transparent 65%),
    var(--cg-bg);
}
#cg-root .cg-closing-lines {
  font-family: var(--cg-font-serif);
  font-size: clamp(18px, 2.6vw, 24px);
  color: var(--cg-text);
  line-height: 1.9;
  max-width: 780px;
  margin: clamp(1.8rem, 3.6vw, 2.4rem) 0 clamp(2rem, 4vw, 2.5rem);
  padding-left: clamp(1rem, 2vw, 1.4rem);
  border-left: 2px solid var(--cg-line-strong);
}
#cg-root .cg-closing-lines p { margin: 0.6em 0; }
#cg-root .cg-closing-lines__model {
  color: var(--cg-text-3);
  font-size: 0.92em;
}
#cg-root .cg-closing-lines__fact {
  color: var(--cg-emerald-bright);
  font-weight: 500;
  text-shadow: 0 0 24px rgba(79, 211, 165, 0.20);
}

#cg-root .cg-commit {
  border: 1px solid var(--cg-gold);
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201, 169, 97, 0.09), transparent 60%),
    rgba(201, 169, 97, 0.05);
  border-radius: var(--cg-radius);
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.6rem, 3vw, 2.2rem);
  max-width: 780px;
  margin: clamp(2rem, 4vw, 2.8rem) 0;
  position: relative;
  overflow: hidden;
}
#cg-root .cg-commit::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
#cg-root .cg-commit__label {
  font-size: 11.5px;
  letter-spacing: 0.20em;
  color: var(--cg-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
  font-family: var(--cg-font-num);
  font-style: italic;
  position: relative;
}
#cg-root .cg-commit__body {
  margin: 0;
  font-size: clamp(14.5px, 1.9vw, 15.5px);
  color: var(--cg-text);
  font-family: var(--cg-font-serif);
  line-height: 1.95;
  position: relative;
}
#cg-root .cg-commit__body strong {
  color: var(--cg-gold-bright);
  font-weight: 700;
}
#cg-root .cg-commit__body em {
  font-style: normal;
  border-bottom: 1px solid var(--cg-line-strong);
  padding-bottom: 1px;
}

#cg-root .cg-disclaimer {
  font-size: 12px;
  color: var(--cg-text-mute);
  line-height: 1.85;
  max-width: 780px;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--cg-line);
}
#cg-root .cg-disclaimer code {
  font-family: var(--cg-font-num);
  color: var(--cg-gold);
  background: transparent !important;
  padding: 0;
  font-style: italic;
}


/* ================================================================
   14. CTA ボタン
   ================================================================ */
#cg-root .cg-cta-btn-outer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: clamp(2rem, 4vw, 3rem) 0;
}
#cg-root .cg-cta-btn-wrap {
  text-align: left;
  width: fit-content;
  max-width: 100%;
}
#cg-root .cg-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px clamp(1.8rem, 3.4vw, 2.6rem);
  background-color: var(--cg-emerald);
  color: #fff !important;
  font-family: var(--cg-font-sans);
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 16.5px);
  letter-spacing: 0.04em;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--cg-radius);
  transition: transform var(--cg-transition), box-shadow var(--cg-transition), background-color var(--cg-transition);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px -6px rgba(0, 0, 0, 0.5),
    0 0 0 0 rgba(201, 169, 97, 0);
  will-change: transform;
}
#cg-root .cg-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
#cg-root .cg-cta-btn:hover {
  box-shadow:
    0 16px 40px -12px rgba(0, 0, 0, 0.6),
    0 0 0 4px rgba(201, 169, 97, 0.14);
}
#cg-root .cg-cta-btn:hover::before { transform: translateX(100%); }
#cg-root .cg-cta-btn__label { display: inline-block; }
#cg-root .cg-cta-btn__arrow {
  display: inline-flex;
  align-items: center;
  transition: transform var(--cg-transition);
}
#cg-root .cg-cta-btn:hover .cg-cta-btn__arrow { transform: translateX(3px); }
#cg-root .cg-cta-btn__sub {
  margin-top: 12px;
  font-size: 12px;
  color: var(--cg-text-3);
  letter-spacing: 0.06em;
  line-height: var(--cg-lh-caption);
}


/* ================================================================
   15. line-clamp helpers / BR utilities
   ================================================================ */
#cg-root .cg-br-mobile   { display: inline; }
#cg-root .cg-br-tablet   { display: none; }
#cg-root .cg-br-desktop  { display: none; }


/* ================================================================
   ★★★★★ Section 5.8: アクセシビリティ配色仕様（省略禁止） ★★★★★
   Cocoonテーブルストライプ背景の強制リセット
   ================================================================ */
#cg-root .entry-content table,
#cg-root table {
  background-color: transparent !important;
  border-collapse: collapse;
}

#cg-root .entry-content table tr,
#cg-root .entry-content table tr:nth-of-type(even),
#cg-root .entry-content table tr:nth-of-type(odd),
#cg-root table tr,
#cg-root table tr:nth-of-type(even),
#cg-root table tr:nth-of-type(odd) {
  background-color: var(--cg-bg-card) !important;
  color: var(--cg-text) !important;
}

#cg-root .entry-content table th,
#cg-root .entry-content table td,
#cg-root table th,
#cg-root table td {
  color: inherit !important;
  border-color: var(--cg-border) !important;
}

/* Cocoonが注入した白背景 blockquote を安全なグレーに強制置換 */
#cg-root blockquote:not([class*="cg-"]),
body.compound-growth .entry-content blockquote {
  background-color: #F0F0F0 !important;
  color:            #1A1A1A !important;
  border-left:  4px solid #555555 !important;
  border-right: none       !important;
  border-top:   none       !important;
  border-bottom:none       !important;
  padding:  1.25rem 1.5rem !important;
  margin:   0              !important;
  box-shadow: none         !important;
}

/* Cocoon白背景 table を安全なグレーに強制置換 */
#cg-root table:not([class*="cg-"]) th,
body.compound-growth .entry-content table:not([class*="cg-"]) th {
  background-color: #E8E8E8 !important;
  color:            #111111 !important;
  border-color:     #C0C0C0 !important;
}
#cg-root table:not([class*="cg-"]) td,
body.compound-growth .entry-content table:not([class*="cg-"]) td {
  background-color: #F5F5F5 !important;
  color:            #222222 !important;
  border-color:     #D0D0D0 !important;
}

/* code / pre のCocoon白抜き上書き */
#cg-root code:not([class]) {
  background-color: #EBEBEB !important;
  color:            #1E1E1E !important;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.875em;
}
#cg-root pre:not([class]) {
  background-color: #EBEBEB !important;
  color:            #1E1E1E !important;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 0.875em;
}


/* ================================================================
   LP専用テーブル（.cg-table）— ダーク配色で上書き
   ================================================================ */
#cg-root .cg-table-outer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: clamp(1.8rem, 3.6vw, 2.4rem) 0 clamp(0.6rem, 1.4vw, 1rem);
}
#cg-root .cg-table-wrap {
  overflow-x: auto;
  border-radius: var(--cg-radius);
  border: 1px solid var(--cg-card-line);
  max-width: 100%;
  background: var(--cg-bg-elev);
  -webkit-overflow-scrolling: touch;
}
#cg-root .cg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(13.5px, 1.7vw, 14.5px);
  background: transparent !important;
  min-width: 480px;
}
#cg-root .cg-table thead th,
#cg-root .cg-table thead tr th,
#cg-root .cg-table thead tr:nth-of-type(even) th,
#cg-root .cg-table thead tr:nth-of-type(odd) th {
  background: var(--cg-bg-3) !important;
  color: var(--cg-text-3) !important;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--cg-card-line) !important;
  border-color: var(--cg-card-line) !important;
  line-height: 1.5;
}
#cg-root .cg-table tbody td,
#cg-root .cg-table tbody tr td,
#cg-root .cg-table tbody tr:nth-of-type(even) td,
#cg-root .cg-table tbody tr:nth-of-type(odd) td {
  background: transparent !important;
  padding: 14px 18px;
  border-bottom: 1px solid var(--cg-card-line) !important;
  border-color: var(--cg-card-line) !important;
  color: var(--cg-text-2) !important;
  font-family: var(--cg-font-num);
  vertical-align: middle;
  line-height: 1.6;
}
#cg-root .cg-table tbody tr,
#cg-root .cg-table tbody tr:nth-of-type(even),
#cg-root .cg-table tbody tr:nth-of-type(odd) {
  background: transparent !important;
}
#cg-root .cg-table tbody tr:hover td { background: rgba(201, 169, 97, 0.05) !important; }
#cg-root .cg-table tbody tr:last-child td { border-bottom: none !important; }

/* ハイライト行（+1.0%） */
#cg-root .cg-table tbody tr.cg-table__row-hi,
#cg-root .cg-table tbody tr.cg-table__row-hi:nth-of-type(even),
#cg-root .cg-table tbody tr.cg-table__row-hi:nth-of-type(odd) {
  background: linear-gradient(90deg, rgba(201, 169, 97, 0.08), transparent 70%) !important;
}
#cg-root .cg-table tbody tr.cg-table__row-hi td {
  color: var(--cg-gold-bright) !important;
  font-weight: 700;
  font-size: 15.5px;
}


/* ================================================================
   ★★★★★ Section 5.9: テキストブロック中央配置（Flexboxラッパー） ★★★★★
   ================================================================ */
#cg-root .cg-align-center-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#cg-root .cg-align-center-wrapper .cg-content-block {
  max-width: var(--cg-container-max);
  text-align: center;
  width: 100%;
}
#cg-root .cg-align-center-wrapper .cg-content-block--wide {
  max-width: var(--cg-container-wide);
  text-align: center;
  width: 100%;
}
/* カバー：中央寄せラッパー配下でも left 揃えを許容する例外 */
#cg-root .cg-align-center-wrapper .cg-cover__content { text-align: left; }

#cg-root .cg-section-header-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
#cg-root .cg-section-header {
  text-align: left;
  max-width: 100%;
  width: 100%;
}
#cg-root .cg-section-eyebrow {
  text-align: left;
  display: block;
  width: fit-content;
}

/* blockquote 中央配置 */
#cg-root .cg-blockquote-center-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: clamp(1.8rem, 3.6vw, 2.4rem) 0;
}
#cg-root .cg-blockquote-center-wrap blockquote,
#cg-root .cg-blockquote-center-wrap .cg-blockquote {
  text-align: left !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* 補助ユーティリティ */
#cg-root .cg-text-center { text-align: center !important; }
#cg-root .cg-block-center {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--cg-container-max);
}


/* ================================================================
   LP専用 blockquote（Evidence デザイン）
   ================================================================ */
#cg-root .cg-blockquote {
  background: var(--cg-bg-elev) !important;
  color: var(--cg-text) !important;
  border-left: 3px solid var(--cg-gold) !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: clamp(1.4rem, 2.8vw, 1.85rem) clamp(1.4rem, 2.8vw, 2rem) !important;
  border-radius: 0 var(--cg-radius) var(--cg-radius) 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  max-width: 820px;
  position: relative;
  overflow: hidden;
}
#cg-root .cg-blockquote--evidence {
  background:
    linear-gradient(90deg, rgba(201, 169, 97, 0.08), transparent 65%),
    var(--cg-bg-elev) !important;
}
#cg-root .cg-blockquote::before,
#cg-root .cg-blockquote::after { display: none !important; content: none !important; }

#cg-root .cg-blockquote__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cg-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--cg-font-num);
  font-style: italic;
  font-weight: 600;
}
#cg-root .cg-blockquote p {
  margin: 0;
  font-size: clamp(15px, 1.9vw, 16.5px);
  color: var(--cg-text) !important;
  font-family: var(--cg-font-serif);
  line-height: 1.9;
}
#cg-root .cg-blockquote p strong { color: var(--cg-gold-bright); font-weight: 700; }
#cg-root .cg-blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--cg-text-3);
  font-style: normal;
  font-family: var(--cg-font-sans);
}


/* ================================================================
   ★★★★★ Section 5.10: 行間設計・デバイス別最適化 ★★★★★
   ================================================================ */

/* ── 10.1 モバイル基準値（デフォルト: 〜767px） ── */
#cg-root p,
#cg-root li {
  line-height: var(--cg-lh-body, 1.9);
  letter-spacing: var(--cg-ls-body, 0.03em);
  overflow-wrap: break-word;
  word-break: auto-phrase;
}
#cg-root .cg-cover__sub,
#cg-root .cg-lead {
  line-height: var(--cg-lh-lead, 2.0);
  letter-spacing: 0.04em;
  overflow-wrap: break-word;
}
#cg-root h1,
#cg-root .cg-cover__title {
  line-height: var(--cg-lh-h1, 1.25);
  letter-spacing: var(--cg-ls-heading, -0.01em);
  overflow-wrap: break-word;
  word-break: auto-phrase;
}
#cg-root h2,
#cg-root .cg-section-title {
  line-height: var(--cg-lh-h2, 1.3);
  letter-spacing: var(--cg-ls-heading, -0.01em);
  overflow-wrap: break-word;
  word-break: auto-phrase;
}
#cg-root h3,
#cg-root .cg-sub-title {
  line-height: var(--cg-lh-h3, 1.4);
  letter-spacing: -0.005em;
  overflow-wrap: break-word;
}
#cg-root h4,
#cg-root h5,
#cg-root h6 {
  line-height: 1.45;
  letter-spacing: -0.005em;
}
#cg-root small,
#cg-root .cg-caption,
#cg-root .cg-note,
#cg-root .cg-figure__caption,
#cg-root .cg-cta-btn__sub {
  line-height: var(--cg-lh-caption, 1.7);
  letter-spacing: var(--cg-ls-caption, 0.02em);
}
#cg-root .cg-chapter-mark__sub,
#cg-root .cg-cover__eyebrow,
#cg-root [class*="cg-en-"] {
  letter-spacing: var(--cg-ls-display, 0.05em);
  line-height: 1.4;
}

/* ── 10.2 段落間・見出し後スペーシング ── */
#cg-root p + p { margin-top: var(--cg-p-gap, 1.25em); }
#cg-root h2 + p,
#cg-root h2 + .cg-prose,
#cg-root h3 + p { margin-top: 0.75em; }
#cg-root p + ul,
#cg-root p + ol { margin-top: 0.75em; }
#cg-root li + li { margin-top: var(--cg-list-gap, 0.5em); }
#cg-root h2:not(:first-child),
#cg-root h3:not(:first-child) { margin-top: 2em; }
#cg-root h2,
#cg-root h3 { margin-bottom: var(--cg-heading-mb, 0.85em); }

/* ── 10.3 タブレット最適化（768px〜1023px） ── */
@media (min-width: 768px) {
  #cg-root {
    --cg-lh-body:    1.88;
    --cg-lh-lead:    1.95;
    --cg-lh-h1:      1.20;
    --cg-lh-h2:      1.28;
    --cg-lh-h3:      1.35;
    --cg-ls-body:    0.025em;
    --cg-p-gap:      1.3em;
  }
  #cg-root .cg-container p,
  #cg-root .cg-section-header p { max-width: 100%; }

  #cg-root .cg-hero-chart { grid-template-columns: 1fr 1fr; max-width: 720px; }

  #cg-root .cg-duo-grid   { grid-template-columns: 1fr 1fr; }
  #cg-root .cg-formula-card__legend { grid-template-columns: 1fr 1fr; gap: 0.6rem 1.6rem; }

  #cg-root .cg-br-mobile  { display: none; }
  #cg-root .cg-br-tablet  { display: inline; }
}

/* ── 10.4 デスクトップ最適化（1024px〜） ── */
@media (min-width: 1024px) {
  #cg-root {
    --cg-lh-body:    1.85;
    --cg-lh-lead:    1.90;
    --cg-lh-h1:      1.15;
    --cg-lh-h2:      1.20;
    --cg-lh-h3:      1.30;
    --cg-lh-caption: 1.65;
    --cg-ls-body:    0.02em;
    --cg-ls-heading:-0.02em;
    --cg-p-gap:      1.35em;
    --cg-heading-mb: 0.9em;
  }
  #cg-root h1,
  #cg-root .cg-cover__title { letter-spacing: -0.025em; }

  #cg-root .cg-formula-card__legend { grid-template-columns: repeat(4, 1fr); gap: 0.6rem 1.2rem; }

  #cg-root .cg-br-desktop { display: inline; }
}

/* ── 10.5 ワイドデスクトップ（1280px〜） ── */
@media (min-width: 1280px) {
  #cg-root { --cg-lh-body: 1.85; }
  #cg-root .cg-cover__content { padding-inline: 0; }
}


/* ================================================================
   ★★★★★ Section 5.12: リスト要素 Cocoon干渉排除 ★★★★★
   ================================================================ */
#cg-root .entry-content ul,
#cg-root .entry-content ol,
#cg-root ul,
#cg-root ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
#cg-root .entry-content li,
#cg-root li {
  position: relative;
  padding-left: 0 !important;
  margin-bottom: 0;
  list-style-type: none !important;
}
#cg-root .entry-content li::before,
#cg-root .entry-content li::after {
  content: none !important;
}

/* LP独自マーカー（.cg-list：ゴールドドット型） */
#cg-root .cg-list li {
  padding-left: 1.5em !important;
  margin-bottom: var(--cg-list-gap, 0.5em);
  position: relative;
}
#cg-root .cg-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--cg-gold);
  font-size: 0.6em;
  line-height: var(--cg-lh-body);
}

/* チェックマーク型リスト */
#cg-root .cg-list--check li::before {
  content: '✓';
  color: var(--cg-gold);
  font-weight: 700;
  font-size: 0.85em;
  top: 0;
}

/* ナンバリング型リスト */
#cg-root .cg-list--numbered { counter-reset: cg-counter; }
#cg-root .cg-list--numbered li { counter-increment: cg-counter; }
#cg-root .cg-list--numbered li::before {
  content: counter(cg-counter);
  font-family: var(--cg-font-num);
  color: var(--cg-gold);
  font-weight: 600;
  font-size: 0.9em;
  font-style: italic;
}


/* ================================================================
   Reduce Motion
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  #cg-root *,
  #cg-root *::before,
  #cg-root *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  #cg-root .cg-reveal { opacity: 1 !important; transform: none !important; }
  #cg-root .cg-scurve__line { stroke-dashoffset: 0 !important; }
}


/* ================================================================
   モバイル微調整（〜640px）
   ================================================================ */
@media (max-width: 640px) {
  #cg-root .cg-hero-chart { grid-template-columns: 1fr; max-width: 100%; }
  #cg-root .cg-duo-grid   { grid-template-columns: 1fr; }
  #cg-root .cg-cover__title br.cg-br-mobile { display: none; }

  #cg-root .cg-step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  #cg-root .cg-figure__caption { font-size: 12.5px; }
  #cg-root .cg-closing-lines { padding-left: 0.8rem; }
  #cg-root .cg-cta-btn { padding: 16px 22px; }
  #cg-root .cg-scurve__legend { flex-direction: column; gap: 0.55rem; }

  #cg-root .cg-cta-btn-outer { align-items: stretch; }
  #cg-root .cg-cta-btn-wrap  { width: 100%; text-align: center; }
  #cg-root .cg-cta-btn { width: 100%; justify-content: center; }
}


/* ================================================================
   Print 対応
   ================================================================ */
@media print {
  #cg-root { background: #fff !important; color: #000 !important; }
  #cg-root .cg-cover__bg,
  #cg-root .cg-cover__bg-overlay,
  #cg-root .cg-cover__bg-grid { display: none !important; }
  #cg-root .cg-cta-btn { display: none !important; }
  #cg-root .cg-figure__img { filter: none !important; }
}
