* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #1a4a35;
  --green-light: #2d6a4f;
  --green-btn: #2e7d5a;
  --accent: #f5f0e8;
  --text: #1a1a1a;
  --gray: #666;
  --border: #e0e0e0;
  --white: #fff;
}

body { font-family: 'Hiragino Kishi Gothic Pro', 'Hiragino Sans', 'Yu Gothic', sans-serif; color: var(--text); line-height: 1.7; }

a { text-decoration: none; color: inherit; }

/* ===== ヘッダー ===== */
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: var(--green); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 18px; }
.logo-main { display: block; font-weight: bold; font-size: 15px; }
.logo-sub { display: block; font-size: 11px; color: var(--gray); }
.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a { font-size: 14px; color: var(--text); }
.nav a:hover { color: var(--green); }
.btn-header { background: var(--green); color: white; padding: 10px 16px; border-radius: 8px; font-size: 12px; text-align: center; line-height: 1.4; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.line-icon { background: white; color: var(--green); font-size: 10px; font-weight: bold; padding: 2px 5px; border-radius: 4px; }

/* ===== ヒーロー ===== */
.hero { background: linear-gradient(135deg, #f8faf8 0%, #eef4f0 100%); padding: 60px 0 0; }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-tag { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.hero-title { font-size: 38px; font-weight: 900; line-height: 1.3; margin-bottom: 16px; color: var(--text); }
.hero-sub { font-size: 18px; font-weight: bold; color: var(--green); margin-bottom: 16px; }
.hero-desc { font-size: 14px; color: var(--gray); margin-bottom: 20px; line-height: 1.8; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.badge { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 5px 12px; font-size: 12px; color: var(--green); font-weight: bold; }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: white; padding: 16px 24px; border-radius: 10px; font-size: 14px; font-weight: bold; margin-bottom: 12px; }
.btn-hero:hover { background: var(--green-light); }
.hero-note { font-size: 12px; color: var(--gray); text-align: center; }
.hero-right { position: relative; }
.hero-img-wrap { position: relative; }
.hero-img-placeholder { background: linear-gradient(135deg, #d4e8d8, #b8d4be); border-radius: 16px; height: 380px; display: flex; align-items: center; justify-content: center; }
.hero-img-text { color: white; font-size: 14px; }
.roadmap-card { position: absolute; top: 20px; right: -10px; background: white; border-radius: 12px; padding: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); width: 220px; }
.roadmap-title { font-size: 13px; font-weight: bold; margin-bottom: 10px; color: var(--gray); }
.roadmap-list { list-style: none; font-size: 12px; }
.roadmap-list li { padding: 4px 0; border-bottom: 1px solid #f0f0f0; }
.roadmap-list li.done { color: var(--green); }
.satisfaction-badge { position: absolute; bottom: -20px; right: 20px; background: var(--green); color: white; border-radius: 50%; width: 110px; height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.satisfaction-num { font-size: 28px; font-weight: 900; line-height: 1; }
.satisfaction-num span { font-size: 14px; }
.satisfaction-label { font-size: 10px; margin-top: 2px; }
.stars { font-size: 9px; color: #ffd700; margin: 2px 0; }
.satisfaction-note { font-size: 8px; opacity: 0.8; text-align: center; }

/* ===== セクション共通 ===== */
.section { padding: 80px 0; }
.section:nth-child(even) { background: #f9faf9; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-num { max-width: 1100px; margin: 0 auto; padding: 0 24px 16px; display: flex; align-items: baseline; gap: 8px; }
.section-num span:first-child { font-size: 36px; font-weight: 900; color: var(--green); }
.section-label { font-size: 12px; color: var(--gray); letter-spacing: 2px; }
.section-title { font-size: 26px; font-weight: 900; margin-bottom: 16px; text-align: center; }
.section-sub { text-align: center; color: var(--gray); margin-bottom: 40px; }

/* ===== お悩み ===== */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.problem-card { background: white; border-radius: 12px; padding: 24px; text-align: center; border: 1px solid var(--border); }
.problem-icon { font-size: 32px; margin-bottom: 12px; }
.problem-card p { font-size: 13px; line-height: 1.6; color: var(--gray); }
.problem-solution { background: var(--green); color: white; border-radius: 12px; padding: 24px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 16px; font-weight: bold; line-height: 1.6; }

/* ===== 解決策 ===== */
.solution-flow { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; margin-bottom: 40px; }
.solution-step { text-align: center; }
.solution-icon { font-size: 36px; margin-bottom: 8px; }
.solution-step p { font-size: 13px; color: var(--gray); }
.arrow { font-size: 24px; color: var(--green); font-weight: bold; }
.solution-note-wrap { display: flex; justify-content: center; gap: 20px; align-items: center; }
.solution-mockup { background: white; border-radius: 12px; padding: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); width: 280px; }
.mockup-screen { background: #f5f5f5; border-radius: 8px; padding: 12px; }
.mockup-bar { height: 8px; background: var(--green); border-radius: 4px; margin-bottom: 8px; }
.mockup-text { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.mockup-lines { display: flex; flex-direction: column; gap: 4px; }
.mockup-line { height: 6px; background: #ddd; border-radius: 3px; }
.mockup-line.long { width: 100%; }
.mockup-line.medium { width: 75%; }
.mockup-line.short { width: 50%; }
.solution-badge { background: var(--green); color: white; border-radius: 50%; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 12px; font-weight: bold; }

/* ===== 選ばれる理由 ===== */
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.reason-card { background: white; border-radius: 12px; padding: 24px 16px; text-align: center; border: 1px solid var(--border); }
.reason-icon { font-size: 36px; margin-bottom: 12px; }
.reason-card h3 { font-size: 14px; font-weight: bold; margin-bottom: 8px; color: var(--green); }
.reason-card p { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ===== カリキュラム ===== */
.curriculum-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.curriculum-card { background: white; border-radius: 12px; padding: 20px 12px; text-align: center; border: 1px solid var(--border); }
.module-num { font-size: 10px; color: var(--gray); margin-bottom: 8px; letter-spacing: 1px; }
.module-icon { font-size: 28px; margin-bottom: 8px; }
.curriculum-card h3 { font-size: 13px; font-weight: bold; margin-bottom: 6px; color: var(--green); }
.curriculum-card p { font-size: 11px; color: var(--gray); line-height: 1.5; }

/* ===== 受講生の声 ===== */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.voice-card { background: white; border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.voice-img-wrap { display: flex; justify-content: center; margin-bottom: 12px; }
.voice-img { width: 70px; height: 70px; background: linear-gradient(135deg, #c8dfc8, #a8c4a8); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.voice-tag { background: var(--green); color: white; border-radius: 8px; padding: 6px 10px; font-size: 12px; font-weight: bold; text-align: center; margin-bottom: 12px; line-height: 1.5; }
.voice-text { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 10px; }
.voice-name { font-size: 12px; color: var(--gray); text-align: right; }
.voice-note { font-size: 11px; color: #aaa; text-align: center; margin-top: 16px; }

/* ===== 料金 ===== */
.price { background: var(--accent) !important; }
.price-inner { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: start; margin-top: 40px; }
.price-badge-wrap { margin-bottom: 8px; }
.price-badge { background: var(--green); color: white; font-size: 11px; padding: 4px 10px; border-radius: 4px; }
.price-amount { font-size: 48px; font-weight: 900; color: var(--green); line-height: 1; }
.price-unit { font-size: 16px; font-weight: normal; }
.price-split { font-size: 12px; color: var(--gray); margin-top: 8px; }
.tokuten-title { font-size: 16px; font-weight: bold; text-align: center; margin-bottom: 16px; }
.tokuten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tokuten-item { background: white; border-radius: 10px; padding: 16px 8px; text-align: center; }
.tokuten-icon { font-size: 28px; margin-bottom: 8px; }
.tokuten-item p { font-size: 11px; line-height: 1.5; color: var(--gray); }
.btn-price { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: white; padding: 16px; border-radius: 10px; font-size: 13px; font-weight: bold; text-align: center; margin-bottom: 16px; }
.price-benefits { list-style: none; font-size: 12px; color: var(--green); }
.price-benefits li { padding: 4px 0; }

/* ===== 受講の流れ ===== */
.flow-steps { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.flow-step { text-align: center; background: white; border-radius: 12px; padding: 24px 20px; border: 1px solid var(--border); min-width: 160px; }
.step-num { font-size: 11px; color: var(--green); font-weight: bold; margin-bottom: 8px; letter-spacing: 1px; }
.step-icon { font-size: 32px; margin-bottom: 8px; }
.flow-step h3 { font-size: 14px; font-weight: bold; margin-bottom: 6px; }
.flow-step p { font-size: 12px; color: var(--gray); }
.flow-arrow { font-size: 20px; color: var(--green); }

/* ===== FAQ ===== */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: pointer; font-size: 14px; font-weight: bold; }
.faq-q:hover { color: var(--green); }
.faq-icon { font-size: 20px; color: var(--green); flex-shrink: 0; }
.faq-a { display: none; padding: 0 0 16px 0; font-size: 13px; color: var(--gray); line-height: 1.8; }
.faq-a.open { display: block; }

/* ===== フッターCTA ===== */
.footer-cta { background: var(--green); color: white; text-align: center; padding: 60px 24px; position: relative; }
.footer-cta h2 { font-size: 24px; font-weight: 900; margin-bottom: 24px; line-height: 1.5; }
.btn-footer { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--green); padding: 16px 32px; border-radius: 10px; font-size: 15px; font-weight: bold; margin-bottom: 12px; }
.footer-cta-note { font-size: 12px; opacity: 0.8; }
.footer-badge { position: absolute; right: 40px; bottom: 40px; background: #e74c3c; color: white; border-radius: 50%; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 11px; font-weight: bold; line-height: 1.4; }

/* ===== フッター ===== */
.footer { background: #111; color: #aaa; padding: 40px 24px 20px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 40px; align-items: start; flex-wrap: wrap; margin-bottom: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-main { color: white; font-size: 14px; }
.footer-logo .logo-sub { color: #aaa; font-size: 11px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 12px; color: #aaa; }
.footer-nav a:hover { color: white; }
.copyright { text-align: center; font-size: 11px; color: #666; }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-title { font-size: 26px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .price-inner { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .nav { display: none; }
  .footer-cta h2 { font-size: 18px; }
}
