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

:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --ink: #1a1a1a;
  --ink-soft: #333333;
  --gray: #767676;
  --line: #e5e3df;
  --footer: #3d3631;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  background: var(--white);
  color: var(--ink);
  line-height: 2;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(26,26,26,0.15); }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: all 0.5s ease;
  background: transparent;
}
header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(229,227,223,0.6);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--white);
  transition: color 0.5s ease;
}
header.scrolled .logo { color: var(--ink); }

nav ul {
  display: flex;
  list-style: none;
  gap: 34px;
}
nav a {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: opacity 0.3s ease, color 0.5s ease;
}
header.scrolled nav a { color: var(--ink); }
nav a:hover { opacity: 0.65; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: 0.3s;
}
header.scrolled .menu-toggle span { background: var(--ink); }

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 32px 40px;
  color: var(--white);
  max-width: 760px;
  animation: fadeUp 1.4s ease 0.3s both;
}
.page-hero-tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.5em;
  margin-bottom: 28px;
  opacity: 0.9;
  text-transform: uppercase;
}
.page-hero h1 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: 0.14em;
  line-height: 1.85;
  margin-bottom: 36px;
}
.page-hero-line {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  margin: 0 auto 36px;
}
.page-hero-sub {
  font-size: 15px;
  line-height: 2.5;
  letter-spacing: 0.08em;
  opacity: 0.82;
  font-weight: 300;
}

/* ---------- Flow Section (shared) ---------- */
.flow-section {
  background: var(--white);
  padding: 90px 32px;
}
.flow-section.alt { background: var(--off-white); }
.flow-section-inner {
  max-width: 880px;
  margin: 0 auto;
}
.flow-section-inner.narrow { max-width: 760px; }
.flow-section-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gray);
  display: block;
  margin-bottom: 22px;
  text-transform: uppercase;
  text-align: center;
}
.flow-section h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: clamp(21px, 2.8vw, 29px);
  letter-spacing: 0.12em;
  line-height: 1.85;
  margin-bottom: 40px;
  color: var(--ink);
  text-align: center;
}
.flow-section h2.left { text-align: left; }

/* ---------- Flow narrative (はじめて / うまく話せなくても) ---------- */
.flow-lead p {
  font-size: 16px;
  line-height: 2.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.flow-lead p:last-child { margin-bottom: 0; }
.flow-lead.center { text-align: center; }
.flow-lead .em {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Values cards (大切にしていること) ---------- */
.flow-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.flow-value-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 38px 34px;
  position: relative;
}
.flow-section.alt .flow-value-card { background: var(--white); }
.flow-value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 34px;
  width: 48px; height: 1px;
  background: var(--ink);
}
.flow-value-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--gray);
  display: block;
  margin-bottom: 14px;
}
.flow-value-card h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--ink);
}
.flow-value-card p {
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- Flow Steps (6ステップ) ---------- */
.flow-intro-line {
  text-align: center;
  font-size: 15.5px;
  line-height: 2.4;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.flow-steps {
  display: flex;
  flex-direction: column;
}
.flow-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.flow-step:last-child { border-bottom: 1px solid var(--line); }
.flow-step-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.28em;
  color: var(--gray);
  padding-top: 4px;
}
.flow-step-num strong {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 4px;
}
.flow-step-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--ink);
}
.flow-step-body p {
  font-size: 15px;
  line-height: 2.4;
  color: var(--ink-soft);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.flow-step-body p:last-child { margin-bottom: 0; }
.flow-step-action {
  margin-top: 22px;
}
.flow-step-action .btn { min-width: 220px; }
.flow-step-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: opacity 0.25s ease;
}
.flow-step-link:hover { opacity: 0.55; }

/* ---------- Flow by Service (サービスごとの流れ) ---------- */
.flow-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.flow-service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 30px;
}
.flow-service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.flow-service-card-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--ink);
}
.flow-service-card-link {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gray);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.flow-service-card-link:hover { color: var(--ink); }
.flow-service-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.flow-service-steps-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 14.5px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.flow-service-steps-list .n {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gray);
}
@media (max-width: 720px) {
  .flow-service-grid { grid-template-columns: 1fr; gap: 16px; }
  .flow-service-card { padding: 28px 24px; }
}

/* ---------- Topics list (相談で話せること) ---------- */
.flow-topics-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.flow-topics-list li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 16px 20px 16px 44px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink);
  position: relative;
  letter-spacing: 0.04em;
}
.flow-section.alt .flow-topics-list li { background: var(--white); }
.flow-topics-list li::before {
  content: "—";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}
.flow-topics-close {
  text-align: center;
  font-size: 15px;
  line-height: 2.4;
  color: var(--ink-soft);
}

/* ---------- Receive cards (相談後に受け取れるもの) ---------- */
.flow-receive {
  display: grid;
  gap: 16px;
}
.flow-receive-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 32px;
  align-items: start;
}
.flow-section.alt .flow-receive-card { background: var(--white); }
.flow-receive-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.16em;
  color: var(--gray);
  border-right: 1px solid var(--line);
  padding-right: 8px;
  padding-top: 4px;
}
.flow-receive-body h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--ink);
}
.flow-receive-body p {
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- FAQ (よくある不安) ---------- */
.flow-faq {
  display: flex;
  flex-direction: column;
}
.flow-faq-item {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.flow-faq-item:last-child { border-bottom: 1px solid var(--line); }
.flow-faq-q {
  display: flex;
  gap: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.06em;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
}
.flow-faq-q .mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gray);
  flex: 0 0 auto;
}
.flow-faq-a {
  display: flex;
  gap: 14px;
  font-size: 14.5px;
  line-height: 2.2;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.flow-faq-a .mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gray);
  flex: 0 0 auto;
}

/* ---------- Resource cards (相談前におすすめの無料コンテンツ) ---------- */
.flow-resources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.flow-resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.flow-section.alt .flow-resource-card { background: var(--white); }
.flow-resource-tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gray);
  display: block;
  margin-bottom: 14px;
}
.flow-resource-card h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--ink);
}
.flow-resource-card p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.flow-resource-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 220px;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.14em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover { background: var(--white); color: var(--ink); }
.btn-line {
  background: transparent;
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--white); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--ink); }
.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.btn-light:hover { background: transparent; color: var(--white); }
.arrow { font-family: serif; font-size: 16px; }

/* ---------- Closing (最終CTA) ---------- */
.closing {
  background: #1a1a1a;
  color: var(--white);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.closing-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 30px;
}
.closing h2 {
  font-size: clamp(23px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.9;
  margin-bottom: 32px;
}
.closing p {
  color: rgba(255,255,255,0.78);
  line-height: 2.4;
  margin-bottom: 20px;
  font-size: 15px;
}
.closing p:last-of-type { margin-bottom: 0; }
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
}
.closing::before {
  content: 'RE:START';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(120px, 22vw, 280px);
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* ---------- Animation ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  header {
    padding: 20px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
  }
  body.menu-open header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .logo,
  header.scrolled .logo { color: var(--ink); }
  .menu-toggle { display: flex; z-index: 200; }
  .menu-toggle span,
  header.scrolled .menu-toggle span { background: var(--ink); }
  nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 150;
  }
  nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  nav ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  nav a,
  header.scrolled nav a {
    color: var(--white);
    font-size: 15px;
  }
  .menu-toggle.open span { background: var(--white); }
  .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .page-hero { min-height: 56vh; }
  .page-hero-inner { padding: 100px 22px 0; }
  .page-hero-sub { font-size: 14px; line-height: 2.3; }

  .flow-section { padding: 64px 20px; }
  .flow-section h2 { font-size: 21px; }
  .flow-lead p { font-size: 15px; line-height: 2.4; }

  .flow-values { grid-template-columns: 1fr; gap: 16px; }
  .flow-value-card { padding: 30px 24px; }
  .flow-value-card::before { left: 24px; }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }
  .flow-step-num {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 0;
  }
  .flow-step-num strong { font-size: 24px; margin-top: 0; }
  .flow-step-title { font-size: 18px; }
  .flow-step-action .btn { width: 100%; }

  .flow-topics-list { grid-template-columns: 1fr; }
  .flow-receive-card { grid-template-columns: 48px 1fr; gap: 16px; padding: 26px 22px; }
  .flow-receive-num { font-size: 17px; }
  .flow-faq-q { font-size: 16px; }

  .flow-resources { grid-template-columns: 1fr; }
  .flow-resource-card { padding: 28px 24px; }
  .flow-resource-card .btn { width: 100%; }

  .closing { padding: 88px 0; }
  .closing-actions { flex-direction: column; }
  .btn { width: 100%; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 22px; }
  .page-hero h1 { font-size: 27px; letter-spacing: 0.08em; }
  .flow-section-inner { padding: 0; }
  .footer-inner { padding: 0 24px; }
}

/* ---------- Footer ---------- */
footer {
  background: #2f2925;
  color: var(--white);
  padding: 70px 0 30px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 18px;
}
.footer-tag-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}
.footer-brand p,
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 2;
}
.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding-top: 28px;
  text-align: center;
}
.footer-sns { margin-top: 24px; }
.footer-sns-label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
}
.footer-sns-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-sns-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-sns-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  min-width: 90px;
}
.footer-sns-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner { padding: 0 24px; }
}
