/**
 * Autim AI研修 LP CSS
 */

:root {
  --c-base: #FFFFFF;
  --c-light: #F8FAFC;
  --c-main: #2563EB;
  --c-main-dark: #1D4ED8;
  --c-main-light: #EFF6FF;
  --c-accent: #7C3AED;
  --c-accent-light: #F5F3FF;
  --c-text: #1E293B;
  --c-text-muted: #64748B;
  --c-border: #E2E8F0;
  --c-line: #06C755;
  --c-line-hover: #05A546;

  --font-base: 'Inter', 'Noto Sans JP', sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --container-w: 1000px;
  --px-sp: 20px;
}

/* =========================================
   Reset & Base
========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-base); color: var(--c-text); background: var(--c-base); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   Typography
========================================= */
.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-accent { color: var(--c-main); }
.logo-service {
  background: var(--c-main);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0;
  margin-left: 8px;
}
.header-logo-img {
  height: 60px;
  width: auto;
}
.logo-text-wrap {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-left: -16px;
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 120px;
  width: auto;
}
.highlight { color: var(--c-main); }

/* =========================================
   Layout
========================================= */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--px-sp); }
.section { padding: 80px 0; }
.bg-light { background-color: var(--c-light); }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.section-lead {
  text-align: center;
  color: var(--c-text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-lead {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 48px;
}

/* =========================================
   Buttons
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  gap: 6px;
}
.btn-sm {
  padding: 8px 24px;
  font-size: 0.9rem;
  background: var(--c-base);
  color: var(--c-main);
  border: 1px solid var(--c-main);
}
.btn-sm:hover { background: var(--c-main-light); }
.btn-cta {
  background: var(--c-line);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-md);
}
.btn-cta:hover { background: var(--c-line-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--c-main);
  border: 2px solid var(--c-main);
  padding: 12px 32px;
  width: 100%;
  justify-content: center;
}
.btn-outline:hover { background: var(--c-main-light); opacity: 1; }
.btn-lg { padding: 16px 40px; font-size: 1.15rem; width: 100%; max-width: 400px; }
.line-icon { font-size: 1.3rem; }
.cta-note { font-size: 0.85rem; color: var(--c-text-muted); text-align: center; margin-top: 12px; font-weight: 500; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}
.pulse-anim { animation: pulse 2s infinite; }

/* =========================================
   Header
========================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  z-index: 100; height: 70px;
}
.header-inner {
  max-width: var(--container-w); margin: 0 auto; padding: 0 var(--px-sp);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header .logo { font-size: 1.5rem; }
.header-nav { margin-left: auto; margin-right: 40px; }
.nav-list { display: flex; gap: 24px; }
.nav-list a { font-size: 0.95rem; font-weight: 600; transition: color 0.3s; }
.nav-list a:hover { color: var(--c-main); opacity: 1; }

/* =========================================
   FV
========================================= */
.fv {
  padding-top: 100px; padding-bottom: 60px;
  min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 50%, #FFFFFF 100%);
  overflow: hidden;
}
.fv-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 var(--px-sp);
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.fv-content { flex: 1; max-width: 580px; }
.fv-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-main), var(--c-accent));
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.fv-catchcopy {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--c-text);
}
.fv-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}
.fv-desc strong { color: var(--c-text); }
.fv-benefits { margin-bottom: 36px; }
.fv-benefits li {
  display: flex; align-items: center;
  font-size: 1rem; font-weight: 500; margin-bottom: 10px;
}
.icon-check { color: var(--c-main); margin-right: 8px; }
.cta-area { display: flex; flex-direction: column; align-items: flex-start; }

/* FV右側：数字カード */
.fv-visual { flex: 1; max-width: 380px; }
.fv-char-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}
.fv-stats { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--c-main);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.13);
}
.stat-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon-blue   { background: #eff6ff; }
.stat-icon-accent { background: #faf5ff; }
.stat-icon-green  { background: #f0fdf4; }
.stat-icon-purple { background: #fdf4ff; }
.stat-icon {
  font-size: 26px !important;
}
.stat-icon-blue   .stat-icon { color: var(--c-main); }
.stat-icon-accent .stat-icon { color: #7c3aed; }
.stat-icon-green  .stat-icon { color: #059669; }
.stat-icon-purple .stat-icon { color: #a21caf; }
.stat-body { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-main);
  line-height: 1;
}
.stat-num-subsidy { font-size: 2.6rem !important; }
.stat-prefix { font-size: 0.72rem; font-weight: 600; vertical-align: middle; margin-right: 2px; }
.stat-num-sm {
  font-size: 1.5rem !important;
  letter-spacing: -0.5px;
}
.stat-unit { font-size: 1.1rem; font-weight: 700; }
.stat-pct { font-size: 1.6rem; font-weight: 900; }
.stat-label { font-size: 0.82rem; font-weight: 600; color: var(--c-text-muted); margin-top: 2px; }
.stat-card:nth-child(1) { border-left-color: var(--c-main); }
.stat-card:nth-child(2) { border-left-color: #7c3aed; }
.stat-card:nth-child(2) .stat-num { color: #7c3aed; }
.stat-card:nth-child(3) { border-left-color: #059669; }
.stat-card:nth-child(3) .stat-num { color: #059669; }
.stat-card:nth-child(4) { border-left-color: #a21caf; }
.stat-card:nth-child(4) .stat-num { color: #a21caf; }

/* =========================================
   Worries
========================================= */
.worries-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-bottom: 40px;
}
.worry-card {
  background: var(--c-base); padding: 24px 20px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  width: calc(33.333% - 12px); text-align: center;
  border: 1px solid var(--c-border); transition: transform 0.3s;
}
.worry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.worry-icon { font-size: 2.2rem; color: var(--c-main); margin-bottom: 12px; display: block; }
.worry-card p { font-size: 0.95rem; font-weight: 500; }
.worries-solution { text-align: center; margin-top: 40px; }
.arrow-down {
  width: 0; height: 0;
  border-left: 15px solid transparent; border-right: 15px solid transparent;
  border-top: 20px solid var(--c-main); margin: 0 auto 20px;
}
.worries-solution p { font-size: 1.4rem; font-weight: 700; }

/* =========================================
   Features (できること)
========================================= */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: var(--c-base); padding: 32px 28px;
  border-radius: var(--radius-lg); border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.feature-icon { font-size: 2rem; color: var(--c-main); margin-bottom: 16px; display: block; }
.feature-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--c-main); }
.feature-card p { font-size: 0.95rem; color: var(--c-text-muted); }

/* =========================================
   Monthly Roadmap
========================================= */
.monthly-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.monthly-card {
  background: var(--c-base);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.monthly-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.monthly-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-main), var(--c-accent));
  color: #fff;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.monthly-char {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}
.monthly-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--c-main); }
.monthly-card p { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.7; }

/* Individual plan */
.price-individual-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.price-individual-wrap .price-card { max-width: 380px; width: 100%; }

/* =========================================
   Curriculum
========================================= */
.curriculum-list { display: flex; flex-direction: column; gap: 20px; }
.curriculum-card {
  background: var(--c-base); border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
  padding: 28px 32px; display: flex; gap: 28px; align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}
.curriculum-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--c-main); }
.curriculum-step {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-main), var(--c-accent));
  color: #fff;
  border-radius: var(--radius-md);
  width: 80px; height: 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
}
.curriculum-step span { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.curriculum-body { flex: 1; }
.curriculum-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; gap: 16px; }
.curriculum-title { font-size: 1.2rem; font-weight: 700; }
.curriculum-time {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.9rem; font-weight: 600; color: var(--c-text-muted);
  flex-shrink: 0;
  background: var(--c-light); padding: 4px 12px; border-radius: var(--radius-full);
}
.curriculum-time .material-symbols-outlined { font-size: 1rem; }
.curriculum-change {
  font-size: 1rem; font-weight: 700; color: var(--c-main);
  margin-bottom: 6px;
}
.curriculum-desc { font-size: 0.95rem; color: var(--c-text-muted); }
.curriculum-char {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

/* =========================================
   Subsidy（助成金）
========================================= */
.subsidy-section {
  background: linear-gradient(135deg, #1E293B 0%, #1D4ED8 100%);
  color: #fff;
}
.subsidy-section .section-title { color: #fff; }
.subsidy-section .section-lead { color: rgba(255,255,255,0.8); }
.subsidy-section .subsidy-badge {
  display: block; text-align: center; width: fit-content;
  margin: 0 auto 20px; min-width: unset;
}
.subsidy-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 700;
  margin: 0 auto 20px;
  display: block; text-align: center; width: fit-content; margin: 0 auto 20px;
}
.subsidy-section .highlight { color: #FCD34D; }
.subsidy-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; margin-bottom: 24px; }
.subsidy-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.main-subsidy { border-color: #FCD34D; }
.subsidy-icon .material-symbols-outlined { font-size: 2rem; color: #FCD34D; margin-bottom: 12px; display: block; }
.subsidy-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; line-height: 1.5; }
.subsidy-rate {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600; margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
}
.subsidy-rate span { font-size: 3rem; font-weight: 900; color: #FCD34D; }
.subsidy-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.7; }
.subsidy-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}
.subsidy-list .material-symbols-outlined { font-size: 1rem; color: #4ADE80; }
/* 導入例 */
.subsidy-example {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 32px 40px; margin-bottom: 24px;
}
.subsidy-example-title {
  font-size: 1.05rem; font-weight: 700; color: #FCD34D;
  margin-bottom: 24px; text-align: center;
}
.subsidy-calc { max-width: 480px; margin: 0 auto 20px; }
.calc-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.calc-label {
  flex: 1; font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 500;
}
.calc-value {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: #fff;
  min-width: 130px; text-align: right;
}
.calc-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); min-width: 140px; }
.calc-minus .calc-value { color: #86EFAC; }
.calc-divider { border-top: 2px solid rgba(255,255,255,0.3); margin: 4px 0; }
.calc-result { border-bottom: none; }
.calc-result .calc-label { font-size: 1rem; font-weight: 700; color: #fff; }
.calc-result .calc-value { font-size: 1.5rem; color: #FCD34D; }
.calc-result .calc-note { font-size: 0.85rem; color: #FCD34D; font-weight: 600; }
.subsidy-example-note {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-align: center; line-height: 1.7;
}

.subsidy-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 16px 20px;
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
}
.subsidy-note .material-symbols-outlined { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

/* =========================================
   Price
========================================= */

/* 個人プラン案内 */
.price-individual-note {
  display: flex; align-items: center; gap: 14px;
  background: #f0f7ff; border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg); padding: 18px 24px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.price-individual-note .material-symbols-outlined { font-size: 24px; color: var(--c-main); flex-shrink: 0; }
.price-individual-note p { flex: 1; font-size: 0.95rem; color: var(--c-text); min-width: 200px; }
.price-individual-note .btn { flex-shrink: 0; width: auto; }

/* プラン概要カード */
.price-single-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 2px solid var(--c-main);
  box-shadow: 0 0 24px rgba(37,99,235,0.1);
  padding: 32px 36px; margin-bottom: 32px;
  display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap;
}
.price-single-header { min-width: 220px; }
.price-single-name { font-size: 1.4rem; font-weight: 800; color: var(--c-main); margin-bottom: 6px; }
.price-single-sub { font-size: 0.88rem; color: var(--c-text-muted); }
.price-single-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; flex: 1; list-style: none; }
.price-single-features li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; }
.price-single-features .material-symbols-outlined { font-size: 1.1rem; color: var(--c-main); flex-shrink: 0; }

/* 人数別料金表 */
.price-table-wrap {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
  overflow: hidden; margin-bottom: 28px;
}
.price-table-title {
  font-size: 1rem; font-weight: 700; color: var(--c-text);
  padding: 18px 28px 14px; border-bottom: 1px solid var(--c-border);
  background: var(--c-light);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead tr { background: var(--c-main); color: #fff; }
.price-table th { padding: 14px 24px; font-size: 0.88rem; font-weight: 700; text-align: left; }
.price-table td { padding: 16px 24px; font-size: 0.93rem; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: #f8faff; }
.price-range { font-weight: 700; color: var(--c-main); font-family: 'Inter', sans-serif; white-space: nowrap; }
.price-val { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--c-text); white-space: nowrap; }
.price-consult { color: #059669 !important; }
.price-desc { color: var(--c-text-muted); font-size: 0.88rem; text-align: center; }
.price-row-last td { background: #f0fdf4; padding-top: 22px; padding-bottom: 22px; }
.price-row-last .price-val { padding-left: 40px; }
.price-row-last .price-subsidy { text-align: center; vertical-align: middle; }
.price-table-note { font-size: 0.82rem; color: var(--c-text-muted); padding: 12px 24px 16px; line-height: 1.8; }
.sp-scroll-hint { display: none; }

/* 助成金列 */
.th-subsidy { background: #065f46 !important; color: #fff; text-align: center !important; }
.price-table thead th:last-child { text-align: center; }
.th-subsidy-note { display: block; font-size: 0.72rem; font-weight: 400; margin-top: 3px; opacity: 0.85; }
.price-subsidy { background: #f0fdf4; }
.price-subsidy-inner { display: inline-flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.subsidy-badge {
  display: inline-block;
  min-width: 9em;
  color: #059669;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.05rem;
  white-space: nowrap;
}
.subsidy-badge-consult { font-size: 0.93rem; min-width: unset; display: inline; }
.subsidy-save {
  display: inline; font-size: 0.75rem; color: #059669;
  font-weight: 600;
}

.price-cta-wrap { text-align: center; margin-bottom: 20px; }
.price-note { text-align: center; font-size: 0.85rem; color: var(--c-text-muted); }

/* 賃金助成の説明 */
.subsidy-wage {
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: 16px;
}
.subsidy-wage-icon .material-symbols-outlined {
  font-size: 2rem; color: #FCD34D; flex-shrink: 0;
}
.subsidy-wage-body h4 {
  font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.subsidy-wage-body p {
  font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; line-height: 1.7;
}
.subsidy-wage-list { list-style: none; padding: 0; margin: 0; }
.subsidy-wage-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.9); margin-bottom: 6px;
}
.subsidy-wage-list .material-symbols-outlined { font-size: 1rem; color: #4ADE80; flex-shrink: 0; }

/* 料金メインカード */
.price-main-card {
  background: var(--c-base); border: 2px solid var(--c-main);
  border-radius: var(--radius-lg); padding: 40px;
  text-align: center; margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.price-main-label {
  font-size: 0.85rem; font-weight: 700; color: var(--c-main);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.price-main-price {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin-bottom: 12px;
}
.price-main-unit { font-size: 0.9rem; color: var(--c-text-muted); }
.price-main-num {
  font-family: 'Inter', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--c-main); line-height: 1;
}
.price-main-yen { font-size: 1.8rem; }
.price-main-tax { font-size: 0.85rem; color: var(--c-text-muted); }
.price-main-note {
  font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 20px;
}
.price-main-subsidy {
  display: inline-flex; align-items: center; gap: 8px;
  background: #eff6ff; color: var(--c-main);
  font-size: 0.9rem; font-weight: 600;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid #bfdbfe;
}
.price-main-subsidy .material-symbols-outlined { font-size: 1.1rem; }

/* 助成金シミュレーション */
.price-sim-wrap {
  background: var(--c-base); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 36px 40px; margin-bottom: 32px;
}
.price-sim-title {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 1.15rem; font-weight: 800; color: var(--c-main); margin-bottom: 6px;
}
.price-sim-title .material-symbols-outlined { font-size: 1.4rem; }
.price-sim-sub {
  text-align: center; font-size: 0.88rem; color: var(--c-text-muted); margin-bottom: 28px;
}
.price-sim-card {
  max-width: 560px; margin: 0 auto 20px;
  border: 1px solid var(--c-border); border-radius: var(--radius-md);
  overflow: hidden;
}
.sim-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 24px; border-bottom: 1px solid var(--c-border);
  background: var(--c-light);
}
.sim-row:last-child { border-bottom: none; }
.sim-label { flex: 1; font-size: 0.95rem; font-weight: 600; color: var(--c-text); }
.sim-value {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--c-text); min-width: 140px; text-align: right;
}
.sim-note { font-size: 0.78rem; color: var(--c-text-muted); min-width: 160px; }
.sim-minus { background: #f0fdf4; }
.sim-minus .sim-value { color: #16a34a; }
.sim-divider { height: 3px; background: var(--c-main); }
.sim-result { background: #eff6ff; }
.sim-result .sim-label { font-size: 1rem; font-weight: 800; color: var(--c-main); }
.sim-result .sim-value { font-size: 1.4rem; color: var(--c-main); }
.sim-result .sim-note { font-size: 0.85rem; color: var(--c-main); font-weight: 600; }
.price-sim-note {
  font-size: 0.8rem; color: var(--c-text-muted); text-align: center; line-height: 1.8;
}

/* =========================================
   Flow
========================================= */
.flow-steps { position: relative; max-width: 600px; margin: 0 auto; }
.flow-steps::before {
  content: ''; position: absolute; top: 0; left: 30px;
  width: 2px; height: 100%; background: var(--c-main-light);
}
.step-card { display: flex; margin-bottom: 40px; position: relative; z-index: 1; }
.step-card:last-child { margin-bottom: 0; }
.step-icon {
  width: 60px; height: 60px; background: var(--c-main); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 0 0 6px var(--c-light);
}
.step-content {
  margin-left: 24px; background: var(--c-base); padding: 24px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm); flex: 1;
  border: 1px solid var(--c-border);
}
.step-content h4 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; }
.step-num {
  font-size: 0.8rem; background: var(--c-main-light); color: var(--c-main);
  padding: 2px 8px; border-radius: 4px; margin-right: 12px; font-weight: 700;
  white-space: nowrap;
}

/* =========================================
   FAQ
========================================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--c-base); border-radius: var(--radius-md);
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border); overflow: hidden;
}
.faq-q {
  padding: 20px 24px; display: flex; align-items: center;
  cursor: pointer; transition: background 0.3s;
}
.faq-q:hover { background: var(--c-light); }
.faq-icon-q, .faq-icon-a {
  font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 900;
  margin-right: 16px; flex-shrink: 0;
}
.faq-icon-q { color: var(--c-main); }
.faq-icon-a { color: var(--c-text-muted); font-size: 1.25rem; }
.faq-q h3 { flex: 1; font-size: 1rem; margin-right: 20px; }
.toggle-icon { color: var(--c-text-muted); transition: transform 0.3s; }
.faq-item.active .toggle-icon { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px; display: flex; align-items: flex-start;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--c-light); border-top: 1px solid transparent;
}
.faq-item.active .faq-a { padding: 24px; max-height: 500px; border-top-color: var(--c-border); }

/* =========================================
   Contact Form
========================================= */
.form-wrap {
  display: flex;
  justify-content: center;
}
.form-wrap iframe {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* =========================================
   CTA Section
========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--c-main), var(--c-accent));
  color: #fff; text-align: center; padding: 100px 0;
}
.cta-heading { font-size: 2rem; margin-bottom: 16px; line-height: 1.5; }
.cta-subtext { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-box-main {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  padding: 40px; border-radius: var(--radius-lg);
  max-width: 500px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column; align-items: center;
}

/* =========================================
   Footer
========================================= */
.footer { background: var(--c-text); color: #fff; padding: 60px 0 30px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px;
}
.footer-logo { font-size: 1.5rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.footer-logo .logo-accent { color: #60A5FA; }
.footer-info p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.copyright { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif; }

/* =========================================
   Hamburger / SP Menu
========================================= */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 301;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sp-menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 299;
}
.sp-menu-overlay.active { display: block; }

.sp-menu {
  position: fixed; top: 0; right: -280px; width: 260px; height: 100%;
  background: #fff; z-index: 300;
  padding: 80px 24px 40px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
}
.sp-menu.active { right: 0; }
.sp-nav-list { list-style: none; padding: 0; margin: 0 0 32px; }
.sp-nav-list li { border-bottom: 1px solid var(--c-border); }
.sp-nav-list a {
  display: block; padding: 16px 4px;
  font-size: 1rem; font-weight: 600; color: var(--c-text);
  transition: color 0.2s;
}
.sp-nav-list a:hover { color: var(--c-main); }
.sp-menu-cta { text-align: center; }

/* =========================================
   Fixed CTA
========================================= */
.fixed-cta {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 200; opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.fixed-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fixed-cta .btn { padding: 14px 28px; font-size: 1rem; box-shadow: var(--shadow-lg); }

/* =========================================
   Animations
========================================= */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.appear { opacity: 1; transform: translateY(0); }
.slide-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-in-right.appear { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =========================================
   Responsive
========================================= */
@media (max-width: 768px) {
  .hidden-sp { display: none; }
  .hamburger { display: flex; }

  .fv { padding-top: 80px; }
  .fv-inner { flex-direction: column; }
  .fv-catchcopy { font-size: 2rem; }
  .fv-visual { max-width: 100%; width: 100%; }
  .fv-stats { flex-direction: column; gap: 10px; }
  .stat-card { width: 100%; padding: 14px 16px; justify-content: center; }
  .stat-body { width: 160px; flex-shrink: 0; }

  .worries-grid { flex-direction: column; }
  .worry-card { width: 100%; }

  .features-grid { grid-template-columns: 1fr; }

  .curriculum-card { flex-direction: column; gap: 16px; }
  .curriculum-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .curriculum-char { width: 64px; height: 64px; }
  .monthly-grid { grid-template-columns: 1fr; }

  .subsidy-grid { grid-template-columns: 1fr; }
  .subsidy-example { padding: 24px 20px; }
  .calc-note { display: none; }
  .subsidy-wage { flex-direction: column; gap: 12px; padding: 20px 16px; }
  .price-main-card { padding: 28px 20px; }
  .price-main-num { font-size: 2.8rem; }
  .price-sim-wrap { padding: 24px 16px; }
  .sim-row { padding: 12px 16px; gap: 8px; }
  .sim-note { display: none; }
  .sim-result .sim-value { font-size: 1.2rem; }

  .price-single-card { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .price-single-features { grid-template-columns: 1fr; }
  .price-individual-note { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* 料金表：横スクロール */
  .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table { min-width: 600px; }
  .price-table th, .price-table td { padding: 12px 10px; font-size: 0.78rem; }
  .th-subsidy { font-size: 0.72rem; white-space: nowrap; }
  .th-subsidy-note { font-size: 0.6rem; white-space: nowrap; }
  .subsidy-value { display: inline; }
  .subsidy-value .subsidy-badge { display: inline; min-width: 0; }
  .subsidy-value .subsidy-save { display: none; }
  /* スクロールヒント */
  .sp-scroll-hint { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--c-text-muted); margin: 6px 0 16px; }
  .sp-scroll-hint .material-symbols-outlined { font-size: 16px !important; }

  .footer-inner { flex-direction: column; gap: 30px; }

  .fixed-cta { bottom: 16px; right: 16px; }
  .fixed-cta .btn { padding: 12px 20px; font-size: 0.9rem; }

  .form-wrap iframe {
    width: 100%;
    height: 1100px;
  }
}
