:root {
  --main: #2E3440;
  --accent: #6B9080;
  --accent-light: #9DBDAC;
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --bg-accent: #F0F5F2;
  --text: #2E3440;
  --text-muted: #6B7280;
  --border: #E4E8E4;
  --radius: 6px;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-en: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

.header .container {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}

.logo {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--main);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.2s;
}

.nav a:hover { color: var(--main); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--main) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--main);
  transition: all 0.3s;
}

/* ---- CTA Button ---- */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--main);
  transform: translateY(-1px);
}

.cta-btn--lg {
  padding: 18px 52px;
  font-size: 1rem;
}

/* ---- Sections ---- */
.section { padding: 96px 0; }

.sec-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1.35;
  margin-bottom: 20px;
}

.sec-desc {
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 56px;
  font-size: 0.92rem;
}

/* ---- Hero ---- */
.hero {
  padding: 120px 0 100px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--main);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 52px;
}

/* ---- Problem ---- */
.problem { background: var(--bg-card); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  border-left: 3px solid var(--accent);
  padding: 28px 24px 28px 28px;
  background: var(--bg-accent);
}

.problem-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 16px;
  line-height: 1;
}

.problem-card p:last-child { font-size: 0.92rem; color: var(--text-muted); font-weight: 500; line-height: 1.8; }

/* ---- Service ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 36px 28px;
  border-radius: var(--radius);
}

.service-icon {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--main);
}

.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }

/* ---- Program ---- */
.program { background: var(--bg-accent); }

.program-list { display: flex; flex-direction: column; margin-top: 48px; }

.program-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.program-item:first-child { border-top: 1px solid var(--border); }

.program-step {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
}

.program-content h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--main);
}

.program-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }

/* ---- Target ---- */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.target-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.target-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}

.target-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }

/* ---- Price ---- */
.price { background: var(--bg-accent); }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 760px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.price-card--main {
  background: var(--main);
  border-color: var(--main);
}

.price-tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-card--main .price-tag { color: var(--accent-light); }

.price-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 600;
  color: var(--main);
  margin-bottom: 4px;
}

.price-card--main .price-num { color: #fff; }
.price-num span { font-size: 1.2rem; font-weight: 300; }

.price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }
.price-card--main .price-note { color: rgba(255,255,255,0.5); }

.price-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }

.price-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.price-card--main .price-list li { color: rgba(255,255,255,0.7); }

.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.price-card--main .cta-btn { background: var(--accent); }
.price-card--main .cta-btn:hover { background: var(--accent-light); }

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--main);
  font-family: var(--font-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--font-en);
  transition: transform 0.3s;
}

.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a { display: none; padding-bottom: 24px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--main);
  text-align: center;
  padding: 100px 0;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}

.cta-section .cta-btn { background: var(--accent); }
.cta-section .cta-btn:hover { background: var(--accent-light); color: var(--main); }

/* ---- Footer ---- */
.footer {
  background: var(--main);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.footer-sns { display: flex; gap: 16px; }

.footer-sns img {
  width: 18px;
  height: 18px;
  filter: invert(1) opacity(0.6);
  transition: opacity 0.2s;
}

.footer-sns a:hover img { opacity: 1; }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg);
    padding: 32px 24px;
    gap: 20px;
    z-index: 99;
    border-top: 1px solid var(--border);
  }

  .nav.open { display: flex; }
  .nav a { font-size: 1rem; }
  .hamburger { display: flex; }

  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }

  .problem-grid,
  .service-grid,
  .target-grid { grid-template-columns: 1fr; }

  .price-grid { grid-template-columns: 1fr; }
  .program-item { grid-template-columns: 1fr; gap: 8px; }
  .sec-title { font-size: 1.5rem; }
}
