:root {
    --sky:       #d6eaf8;
    --sky-dark:  #a9cce3;
    --mint:      #d5f5e3;
    --mint-dark: #a9dfbf;
    --peach:     #fde8d8;
    --peach-dark:#f5cba7;
    --lavender:  #e8daef;
    --lav-dark:  #d2b4de;
    --yellow:    #fef9e7;
    --yellow-dk: #f9e79f;
    --white:     #ffffff;
    --cream:     #fdfbf8;
    --text:      #3a3a3a;
    --text-lt:   #6b6b6b;
    --navy:      #2c4a6e;
    --teal:      #1a7a5e;
    --orange:    #d35400;
    --border:    #e8e0d5;
    --r:         12px;
    --r-lg:      20px;
    --shadow:    0 4px 20px rgba(100,120,160,.10);
    --shadow-md: 0 6px 28px rgba(100,120,160,.14);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.85;
    font-size: 16px;
  }

  /* ─── HEADER ─── */
  .site-header {
    background: var(--white);
    border-bottom: 3px solid var(--sky-dark);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(100,140,200,.10);
  }
  .logo {
    font-family: 'Noto Serif JP', serif;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .04em;
  }
  .logo span {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .75rem;
    font-weight: 400;
    color: var(--text-lt);
    letter-spacing: .03em;
  }
  .header-nav { display: flex; align-items: center; gap: 10px; }
  /* 夏期講習リンク（目立つオレンジ） */
  .header-summer {
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: .82rem;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .03em;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(211,84,0,.3);
    transition: transform .2s, background .2s;
  }
  .header-summer:hover { background: #b8470a; transform: translateY(-1px); }
  .header-cta {
    background: var(--sky-dark);
    color: var(--navy);
    font-weight: 700;
    font-size: .82rem;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s;
    white-space: nowrap;
  }
  .header-cta:hover { background: var(--sky); }
  @media (max-width: 480px) {
    .header-cta { display: none; }
  }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(160deg, var(--sky) 0%, var(--mint) 50%, var(--peach) 100%);
    padding: 68px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,.35);
    border-radius: 50%;
    top: -120px; right: -100px;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    bottom: -80px; left: -60px;
  }
  .hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--teal);
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 40px;
    letter-spacing: .08em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: 2px solid var(--mint-dark);
    box-shadow: var(--shadow);
  }
  .hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .hero h1 .accent {
    color: var(--teal);
    display: inline-block;
    background: rgba(255,255,255,.6);
    padding: 2px 8px;
    border-radius: 6px;
  }
  .hero-lead {
    font-size: .95rem;
    color: var(--text);
    max-width: 560px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.5);
    padding: 12px 20px;
    border-radius: var(--r);
  }
  .hero-cta {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(26,122,94,.3);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    z-index: 1;
    letter-spacing: .04em;
  }
  .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,94,.35); }
  .hero-sub {
    font-size: .78rem;
    color: var(--text-lt);
    margin-top: 14px;
    position: relative;
    z-index: 1;
  }

  /* ─── SECTION BASE ─── */
  section { padding: 64px 24px; }
  .section-inner { max-width: 780px; margin: 0 auto; }

  .section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--teal);
    background: var(--mint);
    padding: 3px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.2rem, 4vw, 1.65rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 20px;
  }
  h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  p { color: var(--text-lt); margin-bottom: 14px; }
  p:last-child { margin-bottom: 0; }
  small { font-size: .8rem; color: var(--text-lt); }

  /* ─── PASTEL DIVIDER ─── */
  .pastel-divider {
    height: 6px;
    background: linear-gradient(90deg, var(--sky-dark), var(--mint-dark), var(--peach-dark), var(--lav-dark));
    border: none;
    margin: 0;
  }

  /* ─── WORRY ─── */
  .worry { background: var(--white); }
  .worry-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }
  .worry-list li {
    background: var(--peach);
    border-left: 4px solid var(--peach-dark);
    padding: 13px 18px;
    border-radius: 0 var(--r) var(--r) 0;
    font-size: .93rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .worry-list li::before {
    content: '';
    flex-shrink: 0;
    font-size: 1rem;
  }
  .worry-note {
    margin-top: 24px;
    background: var(--mint);
    border: 2px solid var(--mint-dark);
    color: var(--text);
    padding: 20px 24px;
    border-radius: var(--r-lg);
    font-size: .93rem;
    line-height: 1.75;
  }
  .worry-note strong { color: var(--teal); }

  /* ─── LOCAL ─── */
  .local { background: var(--sky); }
  .local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    margin-top: 24px;
  }
  .local-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--sky-dark);
  }
  .local-card .icon { font-size: 2rem; margin-bottom: 10px; display: block; }
  .local-card h4 { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
  .local-card p { font-size: .85rem; }
  .local-note {
    margin-top: 20px;
    font-size: .82rem;
    color: var(--text-lt);
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--r);
    border: 1px solid var(--sky-dark);
  }

  /* ─── SOLUTION ─── */
  .solution { background: var(--cream); }
  .solution-steps { margin-top: 28px; display: grid; gap: 20px; }
  .step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .step:nth-child(1) { border-top: 4px solid var(--sky-dark); }
  .step:nth-child(2) { border-top: 4px solid var(--mint-dark); }
  .step:nth-child(3) { border-top: 4px solid var(--lav-dark); }
  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .step:nth-child(1) .step-num { background: var(--sky);     color: var(--navy); }
  .step:nth-child(2) .step-num { background: var(--mint);    color: var(--teal); }
  .step:nth-child(3) .step-num { background: var(--lavender);color: var(--navy); }
  .step-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: .04em;
  }
  .step:nth-child(1) .step-tag { background: var(--sky);     color: var(--navy); }
  .step:nth-child(2) .step-tag { background: var(--mint);    color: var(--teal); }
  .step:nth-child(3) .step-tag { background: var(--lavender);color: var(--navy); }
  .step h3 { margin-bottom: 8px; }
  .step p  { font-size: .9rem; }

  /* ─── VOICE ─── */
  .voice { background: var(--lavender); }
  .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 24px;
  }
  .voice-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px 22px 18px;
    box-shadow: var(--shadow);
    position: relative;
  }
  .voice-card::before {
    content: '"';
    font-family: 'Noto Serif JP', serif;
    font-size: 4.5rem;
    color: var(--lav-dark);
    opacity: .5;
    position: absolute;
    top: 4px; left: 14px;
    line-height: 1;
  }
  .voice-text {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.8;
    padding-left: 6px;
    margin-bottom: 12px;
  }
  .voice-meta { font-size: .78rem; color: var(--text-lt); }
  .voice-tag {
    display: inline-block;
    background: var(--lavender);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-right: 6px;
  }
  .google-note {
    margin-top: 20px;
    text-align: center;
    font-size: .8rem;
    color: var(--text-lt);
  }

  /* ─── CTA ─── */
  .cta-section {
    background: linear-gradient(160deg, var(--mint) 0%, var(--sky) 100%);
    text-align: center;
    padding: 72px 24px;
  }
  .cta-section h2 { color: var(--navy); margin-bottom: 12px; }
  .cta-section > .section-inner > p { color: var(--text); max-width: 520px; margin: 0 auto 32px; }
  .cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(26,122,94,.3);
    transition: transform .2s;
    letter-spacing: .03em;
  }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--sky-dark);
    text-decoration: none;
    transition: background .2s;
  }
  .btn-secondary:hover { background: var(--sky); }
  .cta-contact {
    margin-top: 28px;
    font-size: .87rem;
    color: var(--text);
  }
  .cta-contact a { color: var(--navy); font-weight: 700; text-decoration: none; }
  .cta-contact strong { font-size: 1.1rem; }

  /* ─── FOOTER ─── */
  .site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
    text-align: center;
    padding: 28px 24px;
    font-size: .8rem;
    line-height: 2;
  }
  .site-footer a { color: var(--sky); text-decoration: none; }

  /* ─── FAQ ─── */
  .faq { background: var(--yellow); }
  .faq-list { margin-top: 24px; display: grid; gap: 14px; }
  .faq-item {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow);
  }
  .faq-q {
    font-weight: 700;
    color: var(--navy);
    font-size: .98rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .faq-q::before {
    content: 'Q';
    background: var(--yellow-dk);
    color: var(--orange);
    font-family: 'Noto Serif JP', serif;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
  }
  .faq-a {
    font-size: .9rem;
    color: var(--text-lt);
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .faq-a::before {
    content: 'A';
    background: var(--mint);
    color: var(--teal);
    font-family: 'Noto Serif JP', serif;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
  }

  /* ─── 内部リンク ─── */
  .links { background: var(--white); }
  .link-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
  }
  .link-card {
    display: block;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 20px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: .92rem;
    transition: background .2s, transform .2s;
  }
  .link-card:hover { background: var(--sky); transform: translateY(-2px); }
  .link-card span { font-size: .78rem; color: var(--text-lt); display: block; font-weight: 400; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 600px) {
    .step { grid-template-columns: 48px 1fr; gap: 14px; }
    .step-num { width: 48px; height: 48px; font-size: 1rem; }
    .hero { padding: 52px 20px 44px; }
    section { padding: 48px 20px; }
    .voice-grid { grid-template-columns: 1fr; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero > * { animation: fadeUp .65s ease both; }
  .hero .hero-badge { animation-delay: .1s; }
  .hero h1          { animation-delay: .22s; }
  .hero .hero-lead  { animation-delay: .36s; }
  .hero .hero-cta   { animation-delay: .5s; }
  .hero .hero-sub   { animation-delay: .6s; }
