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

:root {
  --off-white: #ffffff;
  --ink-blue: #1a1f2e;
  --gold: #b8964a;
  --text-muted: #6b7280;
  --border: rgba(26, 31, 46, 0.12);
  --border-light: rgba(255, 255, 255, 0.12);
}

body {
  background: var(--off-white);
  color: var(--ink-blue);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1f0acc;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.nav-back {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--ink-blue); }

/* ── Hero ── */
.hero {
  background: var(--ink-blue);
  padding-top: 68px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 40px 100px;
}

.label-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(184,150,74,0.4);
  display: inline-block;
  padding: 4px 14px;
  margin-bottom: 40px;
}

.hero-catch {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  max-width: 760px;
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 48px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-cta:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Section commons ── */
.section-light { background: var(--off-white); }
.section-dark  { background: var(--ink-blue); }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}
.section-dark .section-title {
  color: var(--off-white);
}
.section-sub {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--muted);
  margin-top: -36px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.section-dark .section-sub {
  color: rgba(255,255,255,0.5);
}

/* ── Issue List (課題提起) ── */
.issue-list {
  list-style: none;
  max-width: 760px;
}

.issue-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-blue);
}

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

.issue-marker {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Phase Grid (4つの支援領域) ── */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184,150,74,0.2);
  border: 1px solid rgba(184,150,74,0.2);
}

.phase-card {
  background: var(--ink-blue);
  padding: 40px 32px;
}

.phase-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.phase-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.phase-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}

/* ── Story Section (原体験) ── */
.story-body {
  max-width: 100%;
}

.story-para {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--ink-blue);
  opacity: 0.85;
  margin-bottom: 28px;
}

.story-close {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--ink-blue);
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ── Case Cards (支援実績) ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}

.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,74,0.25);
  padding: 36px 32px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
}

.case-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(184,150,74,0.35);
  border-radius: 2px;
}
.case-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.case-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.case-industry {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-block;
  padding: 3px 12px;
  line-height: 1.6;
}

.case-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 6px;
  display: block;
}

.case-text {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
}

.case-result {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

/* ── Reason Grid (選ばれる理由) ── */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 960px;
}

.reason-item {
  background: var(--off-white);
  padding: 40px;
}

.reason-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.reason-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-blue);
  line-height: 1.6;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.reason-desc {
  font-size: 0.875rem;
  line-height: 2;
  color: var(--text-muted);
}

/* ── Step Flow (支援の流れ) ── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

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

.faq-q {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-blue);
  line-height: 1.7;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.faq-q::before {
  content: 'Q.';
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--text-muted);
  padding-left: 28px;
}

/* ── CTA Section ── */
.cta-section .section-inner {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── Footer ── */
footer {
  background: #0f1218;
  color: rgba(250, 248, 244, 0.4);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250, 248, 244, 0.5);
}

.footer-policy {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 244, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy:hover { color: rgba(250, 248, 244, 0.8); }

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 244, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .phase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }

  .hero-inner { padding: 72px 24px 80px; }
  .hero-catch { font-size: 1.8rem; }

  .section-inner { padding: 80px 24px; }

  .phase-grid { grid-template-columns: 1fr; }
  .phase-card { padding: 32px 24px; }

  .case-grid { grid-template-columns: 1fr; }
  .case-card { padding: 28px 24px; }

  .reason-grid { grid-template-columns: 1fr; }
  .reason-item { padding: 32px 24px; }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 40px 24px;
  }
}
