/* jpskill.com — fresh & clean design (2026-07 リフレッシュ v2) */

:root {
  color-scheme: light;
  --bg: #f5fafd;
  --bg2: #eaf3f8;
  --panel: #ffffff;
  --border: #d8e5ec;
  --text: #1e2f3d;
  --text2: #4a5a68;
  --text3: #8794a0;
  --accent: #3d99b5;
  --accent-hover: #2e7d97;
  --accent-light: #d5eaf1;
  --success: #4aa87b;
  --danger: #d16478;
  --radius: 14px;
  --radius-sm: 10px;
  --wrap: 1080px;
  --shadow-sm: 0 1px 2px rgba(30, 47, 61, 0.04), 0 2px 8px rgba(30, 47, 61, 0.03);
  --shadow-md: 0 4px 12px rgba(30, 47, 61, 0.06);
}
html { background: var(--bg); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Zen Kaku Gothic New', system-ui, -apple-system, 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .18s; }
a:hover { color: var(--accent-hover); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff;
  padding: 8px 16px; z-index: 999;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ===== Header ===== */
.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.brand { display: flex; align-items: baseline; gap: 2px; text-decoration: none; }
.brand-mark {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.brand-name {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 18px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.nav-primary { display: flex; gap: 24px; font-size: 14px; }
.nav-primary a { color: var(--text2); padding: 6px 0; }
.nav-primary a:hover { color: var(--accent); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  padding: 10px;
  position: relative;
}
.nav-toggle span {
  display: block; height: 2px; width: 24px;
  background: var(--text); margin: 5px 0;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-drawer {
  position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 16px;
  z-index: 90;
  overflow-y: auto;
}
.nav-mobile { display: flex; flex-direction: column; }
.nav-mobile a {
  padding: 16px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 16px; font-weight: 500;
  text-decoration: none !important;
  display: block;
  min-height: 44px;
}
.nav-mobile a:hover, .nav-mobile a:focus { background: var(--bg2); }
.nav-mobile hr { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
body.nav-open { overflow: hidden; }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  padding: 64px 0 48px;
  background: var(--bg);
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: clamp(15px, 2.2vw, 16px);
  color: var(--text2);
  margin: 0 0 28px;
  max-width: 640px;
  line-height: 1.95;
}
.hero-lead strong { color: var(--text); font-weight: 700; }

.hub-stats {
  list-style: none; padding: 0; margin: 24px 0 32px;
  display: flex; flex-wrap: wrap; gap: 32px;
}
.hub-stats li { display: flex; flex-direction: column; }
.hub-stats .stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.hub-stats .stat-label {
  font-size: 12px; color: var(--text3); margin-top: 6px;
  letter-spacing: 0.02em;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none !important;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg2); color: var(--text); border-color: var(--text3); }

/* ===== Sections ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--bg2); }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; flex-wrap: wrap; }
.section-badge {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 10px; border-radius: 999px;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-lead {
  color: var(--text2);
  margin: 0 0 32px;
  max-width: 640px;
  line-height: 1.95;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none !important;
  color: var(--text) !important;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.card-category {
  font-size: 11px; color: var(--accent); font-weight: 500;
  letter-spacing: 0.06em;
}
.card-title { font-size: 16px; font-weight: 700; margin: 0; line-height: 1.5; letter-spacing: -0.005em; }
.card-sub { font-size: 13px; color: var(--text2); margin: 0; line-height: 1.7; }
.card-more { font-size: 12px; color: var(--accent); margin-top: auto; }
.card-placeholder {
  border-style: dashed;
  color: var(--text3) !important;
  align-items: center; justify-content: center;
  min-height: 140px;
}
.card-ai { background: var(--panel); border-color: var(--border); }
/* AIバッジは撤去 (自動生成っぽさ排除) */

/* ===== LP ===== */
.breadcrumb {
  font-size: 12px; color: var(--text3);
  padding-top: 20px; padding-bottom: 8px;
  display: flex; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--text2); }

.lp-hero {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.lp-category {
  font-size: 12px; color: var(--accent); font-weight: 500;
  letter-spacing: 0.06em; margin-bottom: 14px;
}
.lp-title {
  font-size: clamp(22px, 4.2vw, 30px);
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.lp-lead {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text2);
  margin: 0 0 24px;
  line-height: 1.95;
}
.lp-body { padding-bottom: 64px; }
.lp-section, .lp-block { margin: 44px 0; }
.lp-section h2, .lp-block h2 {
  font-size: clamp(19px, 2.8vw, 24px);
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-light);
  letter-spacing: -0.005em;
}
.lp-section h3 { font-size: 17px; margin: 26px 0 12px; font-weight: 700; }
.lp-section p { margin: 14px 0; }
.lp-section ul, .lp-section ol { padding-left: 1.5em; }
.lp-section strong { color: var(--accent-hover); font-weight: 700; }

.lp-recommend {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 28px 0;
}
.lp-recommend h3 { margin: 0 0 12px; font-size: 14px; color: var(--text2); font-weight: 500; }

.lp-faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
  background: var(--panel);
}
.lp-faq summary {
  font-weight: 500; cursor: pointer;
  list-style: none; position: relative; padding-right: 24px;
  font-size: 15px;
}
.lp-faq summary::after {
  content: '+'; position: absolute; right: 0; top: -2px;
  font-size: 22px; color: var(--accent); font-weight: 300;
}
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq p { margin: 14px 0 0; color: var(--text2); line-height: 1.9; }

/* ===== LP: CTA Button ===== */
.cta-btn {
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 18px 44px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background .18s, transform .18s;
  line-height: 1.4;
  max-width: 100%;
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  transform: translateY(-1px);
  background: var(--accent-hover);
}
.cta-btn-label { font-size: 16px; }
.cta-btn-sub { font-size: 12px; opacity: .92; margin-top: 4px; font-weight: 400; }
.cta-btn-primary-large {
  padding: 22px 56px;
  font-size: 17px;
}
.cta-btn-primary-large .cta-btn-label { font-size: 17px; }

.lp-hero-cta { margin-top: 26px; }
.cta-micro-trust { font-size: 12px; color: var(--text3); margin: 10px 0 0; }
.lp-cta-inline { text-align: center; margin: 44px 0; }

/* ===== LP: Hero stats ===== */
.hero-stats {
  list-style: none; padding: 0; margin: 22px 0 26px;
  display: flex; flex-wrap: wrap; gap: 28px;
}
.hero-stats li { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 12px; color: var(--text3);
  margin-top: 6px;
}

/* ===== LP: 痛み・悩み ===== */
.lp-pain .pain-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.lp-pain .pain-list li {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 400;
  position: relative; padding-left: 42px;
  color: var(--text2);
}
.lp-pain .pain-list li::before {
  content: "";
  position: absolute; left: 18px; top: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* ===== LP: Before / After ===== */
.solution-headline {
  font-size: 17px; font-weight: 500;
  padding: 20px; margin: 0 0 22px;
  background: var(--accent-light);
  border-radius: var(--radius);
  color: var(--text);
  line-height: 1.8;
}
.ba-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 16px; align-items: center;
}
.ba-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.ba-before { border-top: 2px solid var(--text3); }
.ba-after  { border-top: 2px solid var(--success); background: rgba(122, 143, 90, 0.05); }
.ba-label {
  font-size: 11px; letter-spacing: 0.1em; font-weight: 500;
  margin-bottom: 8px;
}
.ba-before .ba-label { color: var(--text3); }
.ba-after  .ba-label { color: var(--success); }
.ba-card p { margin: 0; font-weight: 400; line-height: 1.7; }
.ba-arrow {
  font-size: 22px; color: var(--accent); font-weight: 400;
}
@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); text-align: center; }
}

/* ===== LP: Comparison table ===== */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; min-width: 640px;
  border-collapse: separate; border-spacing: 0;
  background: var(--panel);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 14px; text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.7;
}
.compare-table th {
  background: var(--bg2);
  font-weight: 500; font-size: 12px;
  color: var(--text2);
  letter-spacing: 0.02em;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .row-recommended {
  background: rgba(197, 106, 74, 0.04);
}
.compare-table .row-recommended td:first-child { border-left: 3px solid var(--accent); }
.badge-recommended {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 500; letter-spacing: 0.04em;
  padding: 3px 9px; border-radius: 999px;
  margin-bottom: 6px;
}

/* ===== LP: Features ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.feature-badge {
  display: inline-block;
  color: var(--accent);
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  padding: 0;
  margin-bottom: 8px;
}
.feature-card h3 { margin: 4px 0 8px; font-size: 15px; font-weight: 700; }
.feature-card p { margin: 0; font-size: 14px; color: var(--text2); line-height: 1.85; }

/* ===== LP: Voices ===== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.voice-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 0;
  position: relative;
}
.voice-stars { margin-bottom: 8px; }
.star { color: var(--border); font-size: 14px; }
.star.on { color: #d4a44e; }
.voice-card p { margin: 0 0 12px; font-size: 14px; line-height: 1.8; color: var(--text2); }
.voice-author { font-size: 12px; color: var(--text3); font-style: normal; }

/* ===== LP: Related LPs ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.related-card {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text) !important;
  text-decoration: none !important;
  transition: border-color .18s;
}
.related-card:hover { border-color: var(--accent); }
.related-category {
  font-size: 11px; color: var(--accent);
  font-weight: 500; letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.related-card h3 { font-size: 14px; margin: 0 0 6px; font-weight: 700; line-height: 1.55; }
.related-card p { font-size: 12px; color: var(--text2); margin: 0; line-height: 1.7; }

/* ===== LP: Steps ===== */
.step-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
  counter-reset: step;
}
.step-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 18px; align-items: start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 17px;
}
.step-body h3 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.step-body p { margin: 0; font-size: 14px; color: var(--text2); line-height: 1.85; }

/* ===== LP: 最終CTA ===== */
.lp-final-cta {
  margin: 56px 0 32px;
  padding: 44px 24px;
  background: var(--accent-light);
  border-radius: var(--radius);
  text-align: center;
}
.final-cta-copy {
  font-size: 17px; font-weight: 500;
  margin: 0 0 24px;
  max-width: 620px; margin-left: auto; margin-right: auto;
  color: var(--text); line-height: 1.85;
}
.final-cta-note {
  font-size: 12px; color: var(--text3);
  margin: 16px 0 0;
}
.lp-related-intro {
  font-size: 13px; color: var(--text3);
  margin: 28px 0 12px; text-align: center;
}

/* ===== モバイル追従CTA ===== */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 10px 16px;
  background: var(--panel);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 10px rgba(30, 47, 61, 0.06);
  z-index: 90;
}
.sticky-cta a {
  display: block; text-align: center;
  background: var(--accent); color: #fff !important;
  padding: 14px; border-radius: 999px;
  font-weight: 500; text-decoration: none !important;
  font-size: 14px;
}
.sticky-cta a:hover { background: var(--accent-hover); }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ===== Ads ===== */
.ad-slot {
  margin: 24px 0;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ad-label {
  font-size: 10px; color: var(--text3);
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.ad-body { text-align: center; }
.ad-body img { display: inline-block; max-width: 100%; height: auto; }
.ad-slot-textlist .ad-toollist {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.ad-slot-textlist .ad-toollist li {
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: 64px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
}
.footer-col h3 { font-size: 13px; margin: 0 0 12px; color: var(--text2); font-weight: 700; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text2); font-size: 13px; }
.footer-col a:hover { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--text3); margin: 8px 0 0; line-height: 1.7; }
.copyright {
  font-size: 12px; color: var(--text3);
  border-top: 1px solid var(--border);
  padding-top: 20px; margin: 0;
  line-height: 1.7;
}

/* ===== Utility ===== */
.notice {
  color: var(--text3); font-style: normal;
  padding: 16px 20px; background: var(--panel); border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 14px;
}

/* =====================================================================
   案件別カラースコープ (70:25:5 配色: cream base + per-program main)
   ===================================================================== */
.lp-scope {
  --lp-main: var(--accent);
  --lp-dark: var(--accent-hover);
  --lp-light: var(--accent-light);
  --lp-on-main: #ffffff;
}

/* ヒーロー: 左テキスト+右挿絵の2カラム */
.lp-hero {
  background: linear-gradient(180deg, var(--lp-light) 0%, var(--bg) 70%);
  padding: 44px 0 36px;
  margin-bottom: 28px;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.lp-hero-illust { display: flex; justify-content: center; align-items: center; }
.illust-hero { width: 100%; max-width: 130px; color: var(--lp-main); opacity: 0.7; }
.illust-hero svg { width: 100%; height: auto; }
@media (max-width: 720px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-hero-illust { order: -1; margin: 0 auto; }
  .illust-hero { max-width: 90px; }
}

.lp-category {
  display: inline-block;
  background: var(--lp-light);
  color: var(--lp-dark);
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.lp-title {
  font-size: clamp(24px, 4.2vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-title::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: var(--lp-main);
  margin-top: 14px;
  border-radius: 2px;
}
.lp-lead {
  font-size: 15.5px;
  color: var(--text2);
  line-height: 1.9;
  margin: 0 0 24px;
}

/* CTA ボタン: dark を使ってコントラスト確保 */
.lp-scope .cta-btn-primary,
.lp-scope .cta-btn-primary-large {
  background: var(--lp-dark);
  color: #ffffff;
}
.lp-scope .cta-btn-primary:hover,
.lp-scope .cta-btn-primary-large:hover {
  background: var(--lp-main);
  color: #ffffff;
}

/* セクション見出し: 案件カラーの縦線 */
.lp-section h2,
.lp-features h2,
.lp-steps h2,
.lp-comparison h2,
.lp-voices h2,
.lp-faq h2,
.lp-other-choices h2,
.lp-pain h2,
.lp-solution h2 {
  position: relative;
  padding-left: 18px;
  border-left: 4px solid var(--lp-main);
  border-bottom: none;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.5;
}

/* セクション内挿絵 (右寄せ、小さめ) */
.illust-section {
  float: right;
  width: 64px;
  margin: 4px 0 8px 16px;
  color: var(--lp-main);
  opacity: 0.55;
}
.illust-section svg { width: 100%; height: auto; }
@media (max-width: 640px) {
  .illust-section { width: 48px; margin: 2px 0 6px 10px; }
}

/* 目次 */
.lp-toc {
  background: var(--lp-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0 40px;
}
.lp-toc .toc-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.lp-toc ol {
  margin: 0; padding-left: 20px;
  color: var(--text2);
  font-size: 14.5px;
  line-height: 2;
}
.lp-toc a { color: var(--text); text-decoration: none; border-bottom: 1px dotted var(--lp-main); }
.lp-toc a:hover { color: var(--lp-dark); }

/* インラインCTAカード (文中差し込み) */
.lp-inline-cta-card {
  --card-main: var(--lp-main);
  --card-dark: var(--lp-dark);
  --card-light: var(--lp-light);
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--card-main);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
  clear: both;
  box-shadow: 0 2px 6px rgba(30, 47, 61, 0.05);
}
.inline-cta-context {
  font-size: 12px;
  font-weight: 600;
  color: var(--card-dark);
  background: var(--card-light);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.inline-cta-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.5;
}
.inline-cta-sub {
  font-size: 14px;
  color: var(--text2);
  margin: 0 0 14px;
  line-height: 1.75;
}
.inline-cta-btn {
  display: inline-block;
  background: var(--card-dark);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.inline-cta-btn:hover { opacity: 0.85; color: #fff; }

/* 「あわせて検討したい選択肢」グリッド */
.lp-other-choices { margin-top: 48px; }
.lp-other-intro {
  color: var(--text2);
  font-size: 14.5px;
  line-height: 1.85;
  margin: 0 0 20px;
}
.other-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.other-cta-grid .lp-inline-cta-card { margin: 0; }

/* 最終CTA周りの挿絵 */
.illust-final {
  width: 56px;
  margin: 0 auto 12px;
  color: var(--lp-main);
  opacity: 0.65;
}
.illust-final svg { width: 100%; height: auto; }
.lp-final-cta { background: var(--lp-light); }
.lp-final-cta .final-cta-copy { color: var(--text); }

/* Before / After: 案件カラー化 */
.ba-arrow { color: var(--lp-main); }
.ba-after { border-color: var(--lp-main); background: var(--lp-light); }

/* solution-headline: 案件カラーで強調 */
.solution-headline {
  color: var(--lp-dark);
  font-weight: 700;
  font-size: 17px;
  border-left: 4px solid var(--lp-main);
  padding: 4px 0 4px 16px;
  margin: 16px 0 20px;
}

/* Sticky CTA も案件カラー */
.lp-scope + .sticky-cta a,
.sticky-cta a { background: var(--accent); }
.lp-scope ~ .sticky-cta a { background: var(--lp-main); }

/* 本文の p / ul の読みやすさ強化 */
.lp-section p, .lp-section ul, .lp-section ol {
  line-height: 2;
  color: var(--text2);
  font-size: 15.5px;
}
.lp-section h3 {
  color: var(--lp-dark);
  font-size: 18px;
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--lp-main);
}
.lp-section strong { color: var(--text); background: linear-gradient(transparent 60%, var(--lp-light) 60%); padding: 0 2px; }

/* ===== Footer sections links ===== */
.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.8;
}
.footer-sections-label {
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-right: 4px;
}
.footer-sections a {
  color: var(--text2);
  text-decoration: none;
  border-bottom: 1px dotted var(--border);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.footer-sections a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
