:root {
  --main: #3D4B5C;
  --accent: #4A7FA5;
  --bg: #FFFFFF;
  --bg-light: #F7F8FA;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --border: #E2E6EA;
  --radius: 8px;
  --font-base: 'Noto Sans JP', sans-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(255,255,255,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.1rem;
  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: 500;
  transition: color 0.2s;
}

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

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

.nav-cta:hover { background: var(--accent) !important; color: #fff !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: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

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

/* ---- Hero ---- */
.hero {
  padding: 110px 0 96px;
  border-bottom: 1px solid var(--border);
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--main);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

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

.sp-br { display: none; }

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

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

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 500;
}

.problem-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
}

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

.service-card {
  border-top: 3px solid var(--main);
  padding-top: 28px;
}

.service-icon {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--main);
  opacity: 0.35;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  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-light); }

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

.program-item {
  display: grid;
  grid-template-columns: 160px 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.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 4px;
}

.program-content h3 {
  font-size: 1.05rem;
  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-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.target-card h3 {
  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-light); }

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

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

.price-card--main {
  border-color: var(--main);
  border-width: 2px;
}

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

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

.price-num span { font-size: 1.2rem; font-weight: 400; }

.price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }

.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-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; }

.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;
  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-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

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

.cta-section .cta-btn {
  background: #fff;
  color: var(--main);
}

.cta-section .cta-btn:hover { background: var(--bg-light); }

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

.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.9);
}

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

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

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

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

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s 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; }

  .sp-br { display: block; }

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

  .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; }
}
