/* =====================================================
   coconala AI training LP — style.css
   トンマナ: 白 × 濃紺 #0F172A × アンバー #D97706
   方針: 装飾控えめ・余白広め・絵文字なし・プロフェッショナル
   ===================================================== */

:root {
  /* base */
  --bg-base: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-section: #FFFFFF;

  /* brand */
  --brand-deep: #0F172A;
  --brand-mid: #1E3A8A;
  --brand-line: #1E293B;

  /* accent */
  --accent-amber: #D97706;
  --accent-amber-hover: #B45309;
  --accent-amber-soft: #FFFBEB;

  /* text */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-on-dark: #E2E8F0;
  --text-on-dark-muted: #94A3B8;

  /* border */
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --border-on-dark: rgba(255, 255, 255, 0.12);

  /* layout */
  --header-h: 64px;
  --header-h-pc: 72px;
  --container-max: 1120px;
  --section-pad-sp: 24px;
  --section-pad-pc: 36px;

  /* radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-pill: 9999px;

  /* shadow */
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 16px rgba(15, 23, 42, 0.04);
  --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.06);
}

/* === Utility === */
.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }

/* === Reset === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  padding-bottom: 76px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
table { border-collapse: collapse; width: 100%; }
strong { font-weight: 700; }

/* English in mixed text uses Inter */
.eyebrow, .section-eyebrow, .final-eyebrow,
.fv-h1, .section-h2, .price-num, .feat-num, .reason-num, .challenge-num,
.checkpoint-num, .impact-num, .process-num, .case-tag, .voice-meta,
.instructor-name-en, .level-tag, .program-step,
.network-label, .footer-logo-text, .logo-product, .strip-label, .price-card-label,
.case-label, .after-label, .program-list, .program-meta dt,
.tel-num, .tel-time {
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  body { font-size: 16px; padding-bottom: 0; }
}

/* === Common atoms === */
.eyebrow,
.section-eyebrow,
.final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--text-secondary);
}
.eyebrow-light { color: rgba(255, 255, 255, 0.7); }
.eyebrow-line-light { background: rgba(255, 255, 255, 0.5); }

.section-h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.section-h2-light { color: var(--bg-base); }
.section-lead {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 720px;
}
.section-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .section-h2 { font-size: 28px; margin-bottom: 14px; }
  .section-lead { font-size: 14px; margin-bottom: 32px; }
  .section-cta { flex-direction: row; justify-content: center; margin-top: 36px; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; min-width: 240px; }
.btn-xl { padding: 20px 40px; font-size: 16px; min-width: 280px; }

.btn-amber {
  background: var(--accent-amber);
  color: var(--bg-base);
  border-color: var(--accent-amber);
}
.btn-amber:hover {
  background: var(--accent-amber-hover);
  border-color: var(--accent-amber-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--bg-base);
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--text-primary);
}

.btn-ghost-light {
  background: transparent;
  color: var(--bg-base);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--bg-base);
}

/* === Header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--brand-deep);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-amber);
  border-radius: 50%;
  top: 5px;
  right: 5px;
}
.logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0;
}
.logo-product {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-nav { display: flex; align-items: center; gap: 8px; }
.header-tel { display: none; line-height: 1.3; text-align: right; margin-right: 8px; }
.tel-num { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.tel-time { font-size: 10px; color: var(--text-muted); display: block; letter-spacing: 0.04em; }

@media (max-width: 767px) {
  .header-nav .btn-ghost { display: none; }
}
@media (min-width: 768px) {
  .site-header { height: var(--header-h-pc); }
  .header-tel { display: block; }
  .header-nav { gap: 12px; }
}

/* === FV === */
.fv {
  background: var(--bg-base);
  padding: calc(var(--header-h) + 12px) 0 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.fv-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.fv-content { display: flex; flex-direction: column; gap: 20px; }
.fv-h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 1.45;
  color: var(--text-primary);
}
.fv-sub {
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
}
.fv-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fv-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-primary);
}
.feat-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.15em;
  flex-shrink: 0;
  width: 24px;
}
.feat-text { font-weight: 500; line-height: 1.5; }

.fv-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.fv-actions .btn { width: 100%; }
.fv-note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.fv-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
  display: flex;
}
.fv-visual img { width: 100%; height: auto; display: block; }

@media (min-width: 768px) {
  .fv { padding: calc(var(--header-h-pc) + 24px) 0 40px; }
  .fv-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 56px;
  }
  .fv-content { flex: 1.05; gap: 20px; }
  .fv-visual { flex: 1; align-self: stretch; }
  .fv-visual img { width: 100%; height: 100%; object-fit: cover; }
  .fv-h1 { font-size: 40px; line-height: 1.35; }
  .fv-sub { font-size: 15px; }
  .fv-features li { font-size: 14px; }
  .fv-actions { flex-direction: row; }
  .fv-actions .btn { width: auto; }
}

/* === Industries strip === */
.industries-strip {
  background: var(--bg-soft);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.industries-strip .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.strip-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.strip-list li {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  padding-left: 14px;
}
.strip-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  background: var(--accent-amber);
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .industries-strip .container { flex-direction: row; align-items: center; gap: 32px; }
  .strip-label { white-space: nowrap; }
  .strip-list { gap: 16px 32px; }
  .strip-list li { font-size: 14px; }
}

/* === Challenges === */
.challenges {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-base);
}
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.challenge-card {
  padding: 20px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.challenge-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.challenge-h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.challenge-body { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
@media (min-width: 768px) {
  .challenges { padding: var(--section-pad-pc) 0; }
  .challenge-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
  .challenge-card { padding: 26px 22px; }
  .challenge-h3 { font-size: 16px; }
  .challenge-body { font-size: 13.5px; }
}

/* === Reasons === */
.reasons {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-soft);
}
.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.reason-card {
  background: var(--bg-base);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1px solid var(--border);
  position: relative;
}
.reason-num {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  width: fit-content;
  padding-right: 20px;
}
.reason-h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.reason-body { font-size: 13px; color: var(--text-secondary); line-height: 1.75; }
.reason-body strong { color: var(--text-primary); font-weight: 700; }
.reason-disclaimer {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .reasons { padding: var(--section-pad-pc) 0; }
  .reason-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
  .reason-card { padding: 28px 24px; }
  .reason-h3 { font-size: 17px; }
  .reason-body { font-size: 13.5px; }
}

/* === Impact (5 changes) === */
.impact {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-base);
}
.impact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.impact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.impact-num {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-amber);
  letter-spacing: 0;
  line-height: 1;
}
.impact-h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.impact-body { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
@media (min-width: 768px) {
  .impact { padding: var(--section-pad-pc) 0; }
  .impact-item { grid-template-columns: 76px 1fr; padding: 22px 8px; }
  .impact-num { font-size: 30px; }
  .impact-h3 { font-size: 16px; }
}

/* === Program === */
.program {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-soft);
}
.program-levels {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0 24px;
  margin-bottom: 16px;
  scrollbar-width: none;
}
.program-levels::-webkit-scrollbar { display: none; }
.level-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 96px;
  flex-shrink: 0;
}
.level-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.level-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.level-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--border-strong);
  position: relative;
}
.level-arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 0; height: 0;
  border-left: 6px solid var(--border-strong);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.program-card {
  background: var(--bg-base);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  border: 1px solid var(--border);
}
.program-step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  margin-bottom: 8px;
}
.program-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.program-name-jp {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.program-list {
  list-style: none;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.program-list li {
  font-size: 12.5px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
  line-height: 1.7;
}
.program-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 1px;
  background: var(--accent-amber);
}
.program-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-meta div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
  align-items: center;
}
.program-meta dt {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.program-meta dd { font-size: 12px; color: var(--text-primary); font-weight: 500; }

.program-foot {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .program { padding: var(--section-pad-pc) 0; }
  .program-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .program-card { padding: 36px 32px; }
  .program-name { font-size: 20px; }
  .program-list li { font-size: 14px; }
  .program-foot { margin-top: 40px; padding-top: 40px; }
}
@media (min-width: 1024px) {
  .program-grid { grid-template-columns: repeat(4, 1fr); }
  .program-card { padding: 32px 24px; }
}

/* === Instructor === */
.instructor {
  padding: var(--section-pad-sp) 0;
  background: var(--brand-deep);
  color: var(--text-on-dark);
}
.instructor .section-eyebrow,
.instructor .section-h2 { color: var(--text-on-dark); }
.instructor-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
}
.instructor-photo {
  align-self: center;
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-line);
}
.instructor-content { display: flex; flex-direction: column; gap: 18px; }
.instructor-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  text-transform: uppercase;
}
.instructor-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bg-base);
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.instructor-name-en {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}
.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.instructor-tags li {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  padding: 6px 12px;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}
.instructor-quote {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-amber);
  line-height: 1.7;
  border-left: 2px solid var(--accent-amber);
  padding-left: 16px;
  margin: 8px 0;
}
.instructor-bio { display: flex; flex-direction: column; gap: 12px; }
.instructor-bio p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}
.instructor-themes {
  margin-top: 12px;
  padding: 20px;
  background: rgba(217, 119, 6, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.themes-h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.themes-list { display: flex; flex-direction: column; gap: 6px; }
.themes-list li {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-on-dark);
  padding-left: 16px;
  position: relative;
}
.themes-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 1px;
  background: var(--accent-amber);
}

.instructor-content .btn { align-self: flex-start; margin-top: 8px; }

.instructor-network {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
}
.network-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.network-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}
.network-text strong { color: var(--bg-base); }

@media (min-width: 768px) {
  .instructor { padding: var(--section-pad-pc) 0; }
  .instructor-card {
    flex-direction: row;
    padding: 48px;
    gap: 48px;
    margin-top: 48px;
  }
  .instructor-photo { max-width: 360px; align-self: flex-start; flex-shrink: 0; }
  .instructor-content { flex: 1; }
  .instructor-name { font-size: 36px; }
  .instructor-bio p { font-size: 15px; }
  .instructor-network { padding: 40px; margin-top: 40px; }
  .network-text { font-size: 15px; }
}

/* === Cases === */
.cases {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-base);
}
.industry-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 0 8px;
  margin: 24px 0 32px;
  scrollbar-width: none;
}
.industry-tabs::-webkit-scrollbar { display: none; }
.industry-tabs .tab {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}
.industry-tabs .tab:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.industry-tabs .tab.is-active {
  background: var(--brand-deep);
  color: var(--bg-base);
  border-color: var(--brand-deep);
}

.industry-panel { display: none; }
.industry-panel.is-active { display: block; }

.case-swiper { padding-bottom: 56px; position: relative; }
.case-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.case-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-amber);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.case-h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.case-list { font-size: 12.5px; margin-bottom: 12px; }
.case-list dt {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
}
.case-list dd {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 4px;
}
.case-voice {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-primary);
  line-height: 1.6;
}
.case-voice-meta {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.swiper-pagination-bullet { background: var(--text-muted); opacity: 0.4; }
.swiper-pagination-bullet-active { background: var(--brand-deep); opacity: 1; width: 18px; border-radius: 4px; transition: width 0.2s ease; }
.swiper-button-prev, .swiper-button-next {
  color: var(--text-primary);
  display: none;
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 18px; font-weight: 700; }

@media (min-width: 768px) {
  .cases { padding: var(--section-pad-pc) 0; }
  .industry-tabs { gap: 8px; margin: 24px 0 28px; }
  .industry-tabs .tab { padding: 11px 20px; font-size: 13px; }
  .case-card { padding: 28px 24px; }
  .case-h3 { font-size: 16px; }
  .swiper-button-prev, .swiper-button-next { display: flex; }
}
@media (min-width: 1024px) {
  .case-swiper { padding-bottom: 16px; }
  .case-swiper .swiper-button-prev,
  .case-swiper .swiper-button-next,
  .case-swiper .swiper-pagination {
    display: none;
  }
}

/* === Voices === */
.voices {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-soft);
}
.voice-swiper { padding-bottom: 48px; margin-top: 32px; }
.voice-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
}
.voice-text {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 2;
  flex: 1;
}
.voice-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .voices { padding: var(--section-pad-pc) 0; }
  .voice-card { padding: 32px 28px; }
  .voice-text { font-size: 15px; }
}

/* === Pricing === */
.pricing {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-base);
}
.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.price-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.price-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price-card-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.price-prefix {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.price-num {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-suffix { font-size: 18px; color: var(--text-primary); font-weight: 700; }
.price-card-detail { font-size: 13px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 20px; }
.price-card-after {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}
.after-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
}
.after-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-amber);
}

.subsidy-block {
  padding: 24px 22px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.subsidy-h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.subsidy-lead {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.subsidy-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.subsidy-case {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.case-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-amber);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.subsidy-case .case-result {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
}
.subsidy-case .case-result strong { color: var(--accent-amber); font-size: 18px; font-weight: 700; }
.subsidy-case .case-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}
.subsidy-disclaimer a {
  color: var(--accent-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.subsidy-disclaimer a:hover { color: var(--accent-amber-hover); }
.faq-body a {
  color: var(--accent-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subsidy-points {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subsidy-points li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.85;
  padding-left: 18px;
  position: relative;
}
.subsidy-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--accent-amber);
}
.subsidy-points li strong { color: var(--text-primary); }

.subsidy-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .pricing { padding: var(--section-pad-pc) 0; }
  .price-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 56px; }
  .price-card { padding: 40px 36px; }
  .price-num { font-size: 48px; }
  .subsidy-block { padding: 48px 40px; }
  .subsidy-cases { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .subsidy-case .case-result { font-size: 15px; }
}

/* === Process === */
.process {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-soft);
}
.process-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  position: relative;
}
.process-item:last-child { border-bottom: 1px solid var(--border); }
.process-num {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-amber);
  line-height: 1;
}
.process-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.45;
}
.process-body p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.process-period {
  display: inline-block;
  font-size: 11px !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.06em;
  margin-top: 8px;
  padding: 4px 10px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

@media (min-width: 768px) {
  .process { padding: var(--section-pad-pc) 0; }
  .process-list { margin-top: 48px; }
  .process-item { grid-template-columns: 100px 1fr; gap: 32px; padding: 32px 8px; }
  .process-num { font-size: 32px; }
  .process-h3 { font-size: 18px; }
  .process-body p { font-size: 14px; }
}

/* === Checkpoints === */
.checkpoints {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-base);
}
.checkpoint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.checkpoint-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border-left: 3px solid var(--accent-amber);
}
.checkpoint-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.checkpoint-h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.checkpoint-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.95;
}
@media (min-width: 768px) {
  .checkpoints { padding: var(--section-pad-pc) 0; }
  .checkpoint-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
  .checkpoint-card { padding: 40px 32px; }
  .checkpoint-h3 { font-size: 18px; }
}

/* === Comparison === */
.comparison {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-soft);
}
.comparison-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-base);
}
.comparison-table { min-width: 580px; }
.comparison-table th,
.comparison-table td {
  padding: 14px 12px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.comparison-table thead th {
  background: var(--bg-base);
  color: var(--text-primary);
  font-weight: 700;
}
.comparison-table thead .th-highlight {
  background: var(--brand-deep);
  color: var(--bg-base);
}
.comparison-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-soft);
  padding-left: 16px;
  font-size: 13px;
}
.comparison-table .td-highlight {
  background: var(--accent-amber-soft);
  color: var(--accent-amber);
  font-weight: 700;
  font-size: 18px;
}
.comparison-table td {
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 16px;
}

@media (min-width: 768px) {
  .comparison { padding: var(--section-pad-pc) 0; }
  .comparison-table-wrap { margin-top: 48px; }
  .comparison-table th, .comparison-table td { padding: 18px 14px; font-size: 14px; }
}

/* === FAQ === */
.faq {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-base);
}
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
}
.faq-item {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--text-primary); }
.faq-summary {
  list-style: none;
  padding: 18px 56px 18px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-amber);
  border-bottom: 2px solid var(--accent-amber);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-body {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.95;
}
@media (min-width: 768px) {
  .faq { padding: var(--section-pad-pc) 0; }
  .faq-list { margin: 48px auto 0; }
  .faq-summary { font-size: 15px; padding: 22px 64px 22px 28px; }
  .faq-body { padding: 0 28px 24px; font-size: 14px; }
}

/* === Final CTA === */
.final-cta {
  padding: var(--section-pad-sp) 0;
  background: var(--brand-deep);
  color: var(--text-on-dark);
  text-align: center;
}
.final-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.final-h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--bg-base);
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.final-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  margin-bottom: 32px;
}
.final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}
.final-actions .btn { width: 100%; max-width: 320px; }
.final-deadline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.final-deadline strong { color: var(--accent-amber); font-weight: 700; }

@media (min-width: 768px) {
  .final-cta { padding: var(--section-pad-pc) 0; }
  .final-h2 { font-size: 32px; }
  .final-actions { flex-direction: row; justify-content: center; }
  .final-actions .btn { width: auto; }
}

/* === Disclaimer === */
.disclaimer {
  padding: 24px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.disclaimer-text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: center;
  letter-spacing: 0.02em;
}

/* === Footer === */
.site-footer {
  background: var(--bg-base);
  padding: 40px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* === WHY (統合: 課題 + 理由 + 事例) === */
.why { padding: var(--section-pad-sp) 0; background: var(--bg-base); }
.why-block { margin-top: 24px; }
.why-block + .why-block { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.why-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent-amber);
}
.why-h3-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.why-issues-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.why-issue-item {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .why { padding: var(--section-pad-pc) 0; }
  .why-block + .why-block { margin-top: 48px; padding-top: 48px; }
  .why-h3 { font-size: 15px; }
  .why-issue-item { font-size: 13px; padding: 10px 16px; }
}

/* === PROGRAM (統合: インパクト + 4プラン + 標準カリキュラム) === */
.program-block { margin-top: 24px; }
.program-block + .program-block { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.program-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.program-h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent-amber);
}

/* インパクト：横並びインライン表示 */
.impact-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}
.impact-inline li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.impact-inline li span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--accent-amber);
  font-weight: 700;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .program-block + .program-block { margin-top: 48px; padding-top: 48px; }
  .program-h3 { font-size: 15px; }
  .impact-inline { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .impact-inline li { font-size: 13px; padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 6px; text-align: left; }
}

/* 4プランカード */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.plan-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.plan-card-highlight {
  border-color: var(--accent-amber);
  background: var(--accent-amber-soft);
}
.plan-card-highlight::after {
  content: "RECOMMENDED";
  position: absolute;
  top: -10px; right: 16px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--bg-base);
  background: var(--accent-amber);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.plan-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
}
.plan-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.plan-time {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 4px 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  letter-spacing: 0.02em;
}
.plan-card-highlight .plan-time { background: var(--bg-base); }
.plan-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 4px;
}
.plan-fit {
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  margin-top: auto;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .plan-card { padding: 28px 24px; }
}
@media (min-width: 1024px) {
  .plan-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 標準カリキュラム（参考表示） */
.curriculum-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* === Pricing シンプル化 === */
.price-headline {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.price-headline > span:first-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}
.price-headline strong {
  font-size: 44px;
  font-weight: 700;
  color: var(--accent-amber);
  letter-spacing: -0.01em;
}
.price-headline > span:last-child {
  font-size: 22px;
  font-weight: 700;
}
.price-board {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  margin-bottom: 24px;
}
.price-board .price-note {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}
.price-board .section-cta { margin-top: 0; }
@media (min-width: 768px) {
  .price-headline strong { font-size: 56px; }
  .price-board { padding: 40px 32px; margin-bottom: 32px; }
}

/* === Side fixed CTA (パターンB専用) === */
.side-fixed-cta { display: none; }
@media (min-width: 1024px) {
  .side-fixed-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 28px 18px;
    background: var(--accent-amber);
    color: var(--bg-base);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 16px rgba(15, 23, 42, 0.15);
    transition: background 0.2s ease, padding-right 0.2s ease;
    text-decoration: none;
    cursor: pointer;
  }
  .side-fixed-cta:hover {
    background: var(--accent-amber-hover);
    padding-right: 22px;
  }
  .side-fixed-cta-sub {
    background: var(--brand-deep);
    margin-top: 8px;
    font-size: 13px;
    padding: 24px 16px;
  }
  .side-fixed-cta-sub:hover { background: #1E293B; }
  .side-fixed-stack {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

/* === PLAN 03 詳細展開ブロック === */
.plan-detail-anchor {
  margin-top: 28px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-amber);
  position: relative;
  padding-bottom: 12px;
}
.plan-detail-anchor::after {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background: var(--accent-amber);
  margin: 8px auto 0;
}
.plan-detail-anchor-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent-amber);
  color: var(--bg-base);
  border-radius: var(--radius-pill);
}

.plan-detail {
  margin-top: 8px;
  padding: 24px 18px 24px;
  background: var(--accent-amber-soft);
  border: 2px solid var(--accent-amber);
  border-radius: var(--radius-md);
  position: relative;
}
.plan-detail::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--accent-amber-soft);
  border-top: 2px solid var(--accent-amber);
  border-left: 2px solid var(--accent-amber);
}
.plan-detail-label {
  font-family: "Inter", sans-serif;
  display: inline-block;
  background: var(--accent-amber);
  color: var(--bg-base);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.plan-detail-h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.45;
}
.plan-detail-lead {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .plan-detail { padding: 36px 32px 32px; margin-top: 10px; }
  .plan-detail-h3 { font-size: 19px; }
  .plan-detail-lead { font-size: 13px; margin-bottom: 24px; }
}

/* === レベル体系図 SVG === */
.level-diagram {
  margin: 16px 0 20px;
  padding: 16px 12px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.level-diagram-title {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.level-diagram svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .level-diagram { padding: 20px 16px; }
}

/* === パターンC：PC＆モバイル下部固定CTA === */
.bottom-fixed-full {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
  align-items: center;
  justify-content: center;
}
.bottom-fixed-full .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: var(--radius-pill);
  min-width: 0;
}
.bottom-fixed-full .btn-amber { flex: 1.4; }

@media (min-width: 768px) {
  .bottom-fixed-full {
    padding: 14px 32px;
    gap: 16px;
  }
  .bottom-fixed-full .btn {
    flex: 0;
    min-width: 220px;
    max-width: 280px;
  }
  .bottom-fixed-full .btn-amber { flex: 0; min-width: 260px; }
  body.cta-pattern-c { padding-bottom: 84px; }
}

/* === ヘッダー CTA 強化 === */
.header-nav .btn-amber {
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 12px rgba(217, 119, 6, 0.35);
}
.header-nav .btn-ghost {
  font-weight: 700;
  border-color: var(--text-primary);
}
@media (min-width: 768px) {
  .header-nav .btn-sm { padding: 11px 22px; font-size: 13.5px; }
}

/* === 研修プログラム風カード === */
.program-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.program-day {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-amber);
  letter-spacing: 0.08em;
}
.program-duration {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-left: auto;
}
.program-timeline {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Noto Sans JP", sans-serif;
}
.timeline-item {
  display: grid;
  grid-template-columns: 32px 60px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}
.timeline-time {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-weight: 600;
}
.timeline-tag {
  text-align: center;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.tag-lecture { background: #DBEAFE; color: #1E40AF; }
.tag-exercise { background: #FED7AA; color: #9A3412; }
.tag-handson { background: #FEF3C7; color: #92400E; }
.tag-share { background: #DCFCE7; color: #166534; }
.tag-break { background: #F1F5F9; color: #475569; }
.timeline-text {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.program-followup {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.followup-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  align-items: center;
}
.followup-item span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--accent-amber);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === 講師 PROGRAM 内 === */
.program-instructor {
  margin-top: 28px;
  padding: 20px;
  background: var(--brand-deep);
  color: var(--text-on-dark);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.program-instructor-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-line);
  flex-shrink: 0;
  align-self: flex-start;
}
.program-instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-instructor-content { flex: 1; }
.program-instructor-role {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.program-instructor-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-base);
  margin-bottom: 8px;
  line-height: 1.3;
}
.program-instructor-name span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-left: 8px;
}
.program-instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.program-instructor-tags li {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.85);
}
.program-instructor-bio {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}
@media (min-width: 768px) {
  .program-instructor {
    flex-direction: row;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 32px;
  }
  .program-instructor-photo {
    flex: 0 0 24%;
    width: 24%;
    max-width: 24%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
  }
  .program-instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .program-instructor-content { flex: 1; min-width: 0; }
}

/* === 料金 縦幅圧縮版 === */
.price-subsidy-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-align: left;
}
.subsidy-note-text {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 4px;
}
.subsidy-note-text strong { color: var(--accent-amber); }
.subsidy-note-text a {
  color: var(--accent-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.subsidy-disclaimer-mini {
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.55;
}

/* === プロセス グリッド版 === */
.process-grid {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.process-grid::-webkit-scrollbar { height: 4px; }
.process-grid::-webkit-scrollbar-track { background: var(--bg-soft); border-radius: 2px; }
.process-grid::-webkit-scrollbar-thumb { background: var(--accent-amber); border-radius: 2px; }
.process-step {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  flex: 0 0 auto;
  width: 156px;
  scroll-snap-align: start;
}
.process-step .step-num {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-amber);
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 4px;
}
.process-step h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.process-step p {
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 0;
  }
  .process-step {
    padding: 16px 12px;
    width: auto;
    flex: none;
  }
  .process-step h3 { font-size: 13.5px; }
}

/* === FAQ 圧縮 === */
.faq-summary {
  padding: 13px 50px 13px 18px;
  font-size: 13.5px;
  line-height: 1.5;
}
.faq-body {
  padding: 0 18px 12px;
  font-size: 12.5px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .faq-summary { padding: 15px 60px 15px 22px; font-size: 14px; }
  .faq-body { padding: 0 22px 14px; font-size: 13px; }
}

/* === 事例カード 声 部分 === */
.case-voice-label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.case-voice em {
  font-style: italic;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-primary);
}
.case-voice .case-voice-meta {
  font-style: normal;
}

/* === FV ハイライト === */
.fv-h1 .hl {
  color: var(--accent-amber);
  position: relative;
}

/* === オンライン・対面 モードバッジ === */
.program-modes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.mode-chip {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--accent-amber);
  color: var(--bg-base);
  border-radius: var(--radius-pill);
}
.mode-note {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
@media (min-width: 768px) {
  .mode-note { margin-left: auto; }
}

/* === カリキュラムテーブル === */
.curriculum-table {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-base);
}
.curriculum-row {
  display: grid;
  grid-template-columns: 60px 130px 1fr;
  border-bottom: 1px solid var(--border);
}
.curriculum-row:last-of-type { border-bottom: none; }
.curriculum-time {
  padding: 14px 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--accent-amber);
  font-size: 13px;
  background: var(--bg-soft);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum-cat {
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.curriculum-content {
  padding: 14px 16px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.curriculum-content > strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 12.5px;
}
.curriculum-content ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.curriculum-content li {
  padding-left: 14px;
  position: relative;
}
.curriculum-content li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--accent-amber);
}
.curriculum-content li strong {
  display: inline-block;
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-amber);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 700;
  margin-right: 4px;
}
.curriculum-total {
  padding: 12px 16px;
  background: var(--brand-deep);
  color: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.curriculum-total-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.curriculum-total-value {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-amber);
}
.curriculum-prereq {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(217, 119, 6, 0.08);
  border-left: 3px solid var(--accent-amber);
  border-radius: var(--radius-sm);
}
.curriculum-prereq strong {
  display: block;
  color: var(--accent-amber);
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.curriculum-prereq p {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 767px) {
  .curriculum-row {
    grid-template-columns: 1fr;
  }
  .curriculum-time {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 8px 14px;
    justify-content: flex-start;
    font-size: 12px;
  }
  .curriculum-cat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
  }
  .curriculum-time::before {
    content: "TIME / ";
    font-size: 9px;
    color: var(--text-muted);
    margin-right: 6px;
    letter-spacing: 0.1em;
  }
}

/* === 講師カード 拡充 === */
.program-instructor-quote {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-amber);
  margin: 10px 0;
  padding-left: 12px;
  border-left: 2px solid var(--accent-amber);
  line-height: 1.65;
}
.program-instructor-themes {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 6px;
}
.program-instructor-themes h5 {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.program-instructor-themes ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.program-instructor-themes li {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 12px;
  position: relative;
  line-height: 1.65;
}
.program-instructor-themes li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--accent-amber);
}
.program-instructor .btn-pi {
  margin-top: 12px;
  align-self: flex-start;
  padding: 10px 20px;
  background: var(--accent-amber);
  color: var(--bg-base);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-amber);
}
.program-instructor .btn-pi:hover { background: var(--accent-amber-hover); }
.program-instructor-bio p + p { margin-top: 8px; }

/* === Pricing & Process 統合 === */
.pricing-process {
  padding: var(--section-pad-sp) 0;
  background: var(--bg-soft);
}
.pp-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.pp-pricing,
.pp-process {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.pp-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pp-h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent-amber);
}
@media (min-width: 768px) {
  .pricing-process { padding: var(--section-pad-pc) 0; }
  .pp-grid { gap: 20px; margin-top: 28px; }
  .pp-pricing,
  .pp-process { padding: 28px; }
}

/* === ヘッダーCTA 文言出し分け（PC: 長文 / SP: 短文） === */
.short-label { display: inline; }
.full-label { display: none; }
@media (min-width: 1100px) {
  .short-label { display: none; }
  .full-label { display: inline; }
  .header-nav .btn-sm { padding: 11px 18px; font-size: 12.5px; letter-spacing: 0.02em; }
}

/* === Swiper矢印：最初/最後で非表示 === */
.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none !important;
  cursor: default !important;
}

/* === 活用シーン例 タグUI === */
.plan-fit-block {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}
.plan-fit-label {
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.plan-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.plan-fit-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 3px 10px 3px 8px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.plan-fit-tag::before {
  content: "#";
  color: var(--accent-amber);
  font-weight: 700;
  margin-right: 2px;
}
.plan-card-highlight .plan-fit-tag { background: var(--bg-base); }

/* === カリキュラムテーブル：4列＋ヘッダー行 === */
.curriculum-row {
  grid-template-columns: 60px 130px 1fr 100px;
}
.curriculum-row.curriculum-head {
  background: var(--brand-deep);
  border-bottom: none;
}
.curriculum-head .curriculum-time,
.curriculum-head .curriculum-cat,
.curriculum-head .curriculum-content,
.curriculum-head .curriculum-mode {
  background: var(--brand-deep);
  color: var(--bg-base);
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum-head .curriculum-time { color: var(--accent-amber); }
.curriculum-head .curriculum-mode { border-right: none; }

.curriculum-mode {
  padding: 14px 8px;
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum-mode-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.curriculum-mode-tag.tag-lecture { background: #DBEAFE; color: #1E40AF; }
.curriculum-mode-tag.tag-exercise { background: #FED7AA; color: #9A3412; }
.curriculum-mode-tag.tag-mixed { background: #DCFCE7; color: #166534; }

.curriculum-section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.curriculum-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

@media (max-width: 767px) {
  .curriculum-row { grid-template-columns: 1fr; }
  .curriculum-row.curriculum-head { display: none; }
  .curriculum-mode {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    justify-content: flex-start;
  }
  .curriculum-mode::before {
    content: "実施形態 / ";
    font-size: 10px;
    color: var(--text-muted);
    margin-right: 8px;
    letter-spacing: 0.06em;
  }
}

/* === 講師プロフィール構成 === */
.instructor-section {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.instructor-section:first-of-type {
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
}
.instructor-section-title {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.instructor-section p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
}
.instructor-section ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.instructor-section li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 12px;
  position: relative;
  line-height: 1.7;
}
.instructor-section li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--accent-amber);
}

/* === レスポンシブ補強（極小画面・タブレット） === */
@media (max-width: 380px) {
  .fv-h1 { font-size: 22px; }
  .section-h2 { font-size: 19px; }
  .price-headline strong { font-size: 36px; }
  .header-nav .btn-sm { padding: 8px 12px; font-size: 11px; }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .header-nav .btn-sm { padding: 10px 16px; font-size: 12px; }
}

/* === FAQ 内リンク === */
.faq-body a {
  color: var(--accent-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

/* === ヘッダー：SVGロゴ === */
.logo-svg {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .logo-svg { height: 36px; }
}

/* === ボタン内 SVGアイコン === */
.btn-icon {
  flex-shrink: 0;
  margin-right: 6px;
  vertical-align: middle;
}
.btn-sm .btn-icon { width: 13px; height: 13px; margin-right: 5px; }
.btn-lg .btn-icon, .btn-xl .btn-icon { width: 16px; height: 16px; margin-right: 8px; }
.btn { display: inline-flex; align-items: center; justify-content: center; }

/* === タイムテーブル ハイライト付記 === */
.curriculum-highlight-note {
  background: rgba(217, 119, 6, 0.08);
  border-left: 3px solid var(--accent-amber);
  padding: 12px 14px;
  margin-top: -4px;
  margin-bottom: 14px;
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.curriculum-highlight-note strong {
  color: var(--accent-amber);
  font-weight: 700;
}
@media (min-width: 768px) {
  .curriculum-highlight-note { font-size: 12px; padding: 14px 16px; }
}

/* === ロゴ画像 === */
.logo-img {
  height: 30px;
  width: auto;
  display: block;
  max-width: 200px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo-img { height: 36px; }
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  max-width: 200px;
  object-fit: contain;
}

/* === CASES 左画像 + 右タブ＋カード レイアウト === */
.why-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.why-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
}
.why-visual img { width: 100%; height: auto; display: block; }
.why-cases { flex: 1; min-width: 0; }

@media (min-width: 1024px) {
  .why-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
  }
  .why-visual {
    flex: 0 0 320px;
    max-width: 320px;
    position: sticky;
    top: calc(var(--header-h-pc) + 16px);
  }
  .why-cases { flex: 1; min-width: 0; }
}

/* === PLAN 03 詳細：階層整理 H2/H3/H4 === */
.plan-detail-h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.45;
}
.sub-section-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-section-h3::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent-amber);
}
.sub-section-h4 {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-left: 32px;
}
@media (min-width: 768px) {
  .plan-detail-h2 { font-size: 20px; }
  .sub-section-h3 { font-size: 15px; margin-top: 28px; }
  .sub-section-h4 { font-size: 13px; }
}

/* === PC/SP 切替トグル（検証用） === */
.view-toggle {
  position: fixed;
  bottom: 92px;
  left: 12px;
  z-index: 200;
  padding: 9px 14px;
  background: var(--brand-deep);
  color: var(--bg-base);
  border-radius: var(--radius-pill);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 2px solid var(--accent-amber);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.view-toggle:hover { background: var(--accent-amber); }
.view-toggle-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
}
.view-toggle:hover .view-toggle-label { color: rgba(15, 23, 42, 0.7); }
.view-toggle-mode { font-size: 13px; font-weight: 700; }
@media (min-width: 768px) {
  .view-toggle { bottom: 24px; left: 24px; }
}

/* === FAQ ナンバリング === */
.faq-num {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-amber);
  background: rgba(217, 119, 6, 0.1);
  padding: 3px 8px;
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: middle;
}

/* === PRICING内 CTA（中間CTA移動先・無料相談1本化中央寄せ） === */
.pp-pricing-cta {
  display: flex;
  justify-content: center;
  margin: 18px 0 18px;
}
.pp-pricing-cta .btn {
  width: 100%;
  max-width: 380px;
}

/* === Process Step 間に ▶ === */
.process-step { position: relative; }
.process-step:not(:last-child)::after {
  content: "▶";
  position: absolute;
  color: var(--accent-amber);
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .process-step:not(:last-child)::after {
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
  }
}

/* === CASES：左画像 高さ揃え（sticky解除） === */
@media (min-width: 1024px) {
  .why-visual {
    position: static !important;
    top: auto !important;
    align-self: stretch !important;
    display: flex !important;
    overflow: hidden;
  }
  .why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* === Mobile fixed CTA === */
.mobile-fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.mobile-fixed-cta .btn {
  flex: 1;
  padding: 14px 12px;
  font-size: 13px;
  border-radius: var(--radius-pill);
  min-width: 0;
}
.mobile-fixed-cta .btn-amber { flex: 1.4; }

@media (min-width: 768px) {
  .mobile-fixed-cta { display: none; }
}
