/* ============================================================
   Vela Chroma — Brand Page Styles  v2.0
   Bold Minimalism: 極端なコントラスト、画面を超える文字、深い余白
   Color: Off-white #F8F7F4 / Pale Blue-Grey / Sand Beige / Deep Black
   ============================================================ */

:root {
  --vc-bg:        #F8F7F4;
  --vc-bg-alt:    #EEF1F5;
  --vc-sand:      #E8E0D4;
  --vc-blue:      #B8C8D8;
  --vc-blue-dark: #6B8BAA;
  --vc-ink:       #111111;
  --vc-ink-soft:  #444444;
  --vc-ink-muted: #888888;
  --vc-white:     #FFFFFF;
  --vc-accent:    #2C3E50;

  --font-serif: 'Shippori Mincho', serif;
  --font-sans:  'Inter', sans-serif;
  --nav-h: 72px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body.vc-body {
  background: var(--vc-bg);
  color: var(--vc-ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(248,247,244,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,17,17,0.07);
  transition: box-shadow var(--transition);
}
.vc-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 48px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
@media (max-width: 768px) { .nav-inner { padding: 0 20px; } }

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex; align-items: center;
}
/* ロゴ画像 — ナビ */
.nav-logo-img {
  display: block;
  object-fit: contain;
}
.nav-logo-img--vc {
  height: 40px;
  width: auto;
  mix-blend-mode: multiply; /* 白背景を透過させロゴだけ表示 */
}
/* フッターロゴ */
.footer-logo-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 16px;
}
.footer-logo-img {
  object-fit: contain; display: block;
}
.footer-logo-img--vc {
  height: 36px; width: auto;
  filter: invert(1); /* 黒→白に反転 */
}
.footer-wordmark {
  object-fit: contain; display: block;
}
.footer-wordmark--vc {
  height: 40px; width: auto;
  filter: invert(1);
  opacity: 0.9;
}

/* ── Brand Toggle ── */
.brand-toggle {
  display: flex; align-items: center; gap: 0;
  background: rgba(17,17,17,0.06);
  border: 1px solid rgba(17,17,17,0.1);
  border-radius: 100px;
  padding: 4px;
  flex-shrink: 0;
}
.toggle-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--vc-ink-muted);
  text-decoration: none;
  transition: all 0.25s;
}
.toggle-item--active {
  background: var(--vc-ink);
  color: var(--vc-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.toggle-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vc-blue-dark); flex-shrink: 0;
}
.toggle-item--active .toggle-dot { background: var(--vc-blue); }
.toggle-dot--right { order: 1; }
.toggle-divider { width: 1px; height: 16px; background: rgba(17,17,17,0.12); }

/* Mobile toggle in menu */
.mobile-toggle-wrap {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 0 20px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
  margin-bottom: 8px;
}
.mtoggle {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--vc-ink-muted); text-decoration: none;
  padding: 10px 16px; border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mtoggle--active {
  background: var(--vc-ink); color: var(--vc-white);
  border-color: var(--vc-ink);
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; color: var(--vc-ink-soft);
  text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--vc-ink);
  transition: right 0.25s ease;
}
.nav-link:hover { color: var(--vc-ink); }
.nav-link:hover::after { right: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--vc-ink); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  padding: 0 20px 20px;
  background: var(--vc-bg);
  border-top: 1px solid rgba(17,17,17,0.07);
}
.mobile-menu.open { display: flex; }
.m-link {
  padding: 13px 0; font-size: 15px; font-weight: 500;
  color: var(--vc-ink-soft); text-decoration: none;
  border-bottom: 1px solid rgba(17,17,17,0.06);
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .brand-toggle { display: none; }
  .mobile-toggle-wrap { display: flex; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — Bold Minimalism
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--vc-bg-alt);
  padding-top: var(--nav-h);
}

/* 左: VI画像 */
.hero-art {
  position: relative;
  height: 100%;
  min-height: calc(100svh - var(--nav-h));
  overflow: hidden;
}
.hero-art-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 8s ease;
}

/* 巨大背景テキスト (フック) */
.hero-bg-text {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding-left: 2vw;
  line-height: 0.85;
}
.hero-bg-text span {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 200px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(17,17,17,0.07);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.hbt-line2 { margin-left: 8vw; }
.hbt-line3 { margin-left: 4vw; }

/* 右: コンテンツ */
.hero-content {
  position: relative; z-index: 3;
  padding: 80px 64px 80px 56px;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--vc-blue-dark); margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 700; line-height: 1.1;
  color: var(--vc-ink); margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 15px; line-height: 1.9;
  color: var(--vc-ink-soft); margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* 縦書きフック */
.hero-hook-vert {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-hook-vert span {
  writing-mode: vertical-rl;
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(10px, 1.4vw, 16px);
  letter-spacing: 0.18em;
  color: rgba(17,17,17,0.14);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 52px;
  z-index: 3;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; color: var(--vc-ink-muted);
}

@media (max-width: 900px) {
  .vc-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { height: 52vw; min-height: 240px; }
  .hero-bg-text { display: none; }
  .hero-hook-vert { display: none; }
  .hero-content { padding: 48px 20px 64px; }
  .hero-scroll { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--vc-ink); color: var(--vc-white);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-decoration: none; border-radius: 2px;
  transition: opacity var(--transition);
}
.btn-primary:hover { opacity: 0.72; }
.btn-primary.btn-large { padding: 18px 52px; font-size: 14px; }

.btn-ghost {
  display: inline-block; padding: 13px 36px;
  border: 1.5px solid var(--vc-ink); color: var(--vc-ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-decoration: none; border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover { background: var(--vc-ink); color: var(--vc-white); }

.btn-outline {
  display: inline-block; padding: 13px 36px;
  border: 1.5px solid var(--vc-white); color: var(--vc-white);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-decoration: none; border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--vc-white); color: var(--vc-ink); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION COMMONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--vc-blue-dark); margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700; line-height: 1.15;
  color: var(--vc-ink); margin-bottom: 48px;
  letter-spacing: -0.015em;
}
.section-title--xl {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05; margin-bottom: 56px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MANIFESTO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-manifesto {
  background: var(--vc-ink); padding: 140px 0;
  position: relative; overflow: hidden;
}
.manifesto-overflow-text {
  position: absolute; top: -0.1em; left: -0.03em;
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(120px, 22vw, 360px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  letter-spacing: -0.05em; pointer-events: none;
  line-height: 1; white-space: nowrap;
}
.manifesto-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.manifesto-quote { }
.mq-en {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2; color: var(--vc-white);
  letter-spacing: -0.03em;
}
.mq-en em {
  font-style: normal;
  color: var(--vc-blue);
}
.manifesto-quote cite {
  display: block; margin-top: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35); font-style: normal;
}
.manifesto-body {
  font-size: 16px; line-height: 2.1;
  color: rgba(255,255,255,0.6); margin-bottom: 36px;
}
.manifesto-pills {
  display: flex; flex-direction: column; gap: 12px;
}
.manifesto-pills span {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  display: inline-block;
}
@media (max-width: 860px) {
  .vc-manifesto { padding: 80px 0; }
  .manifesto-layout { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-overflow-text { font-size: 80px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VISION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-vision { padding: 160px 0; background: var(--vc-bg); }
.section-header { margin-bottom: 72px; }

.vision-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(17,17,17,0.09);
  border: 1px solid rgba(17,17,17,0.09);
}
.vision-card {
  background: var(--vc-bg); padding: 56px 40px;
  transition: background var(--transition);
}
.vision-card:hover { background: var(--vc-white); }
.card-num {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.24em; color: var(--vc-blue-dark); margin-bottom: 24px;
}
.vision-card h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: var(--vc-ink); margin-bottom: 16px;
}
.vision-card p { font-size: 14px; line-height: 1.95; color: var(--vc-ink-soft); }

@media (max-width: 900px) {
  .vc-vision { padding: 80px 0; }
  .vision-grid { grid-template-columns: 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROUD ENTREPRENEUR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-proud { padding: 160px 0; background: var(--vc-bg-alt); }
.proud-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.proud-desc { font-size: 16px; line-height: 2.1; color: var(--vc-ink-soft); margin-bottom: 48px; }
.proud-metrics { display: flex; gap: 48px; flex-wrap: wrap; }
.metric { display: flex; flex-direction: column; gap: 6px; }
.metric-val {
  font-family: var(--font-sans); font-size: 32px; font-weight: 900;
  color: var(--vc-ink); letter-spacing: -0.03em;
}
.metric-label { font-size: 11px; color: var(--vc-ink-muted); letter-spacing: 0.05em; }
.proud-art-wrap { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
.proud-art { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

@media (max-width: 900px) {
  .vc-proud { padding: 80px 0; }
  .proud-layout { grid-template-columns: 1fr; gap: 40px; }
  .proud-art-wrap { aspect-ratio: 16/9; order: -1; }
  .proud-metrics { gap: 24px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FRAMEWORK — フロー図
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-framework { padding: 160px 0; background: var(--vc-bg); }
.framework-lead {
  font-size: 17px; line-height: 2;
  color: var(--vc-ink-soft); max-width: 720px; margin-bottom: 80px;
}

/* フロー全体ラップ */
.flow-wrap { position: relative; }

.flow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--vc-ink);
  gap: 0;
}

.flow-step {
  padding: 40px 32px 40px 20px;
  border-right: 1px solid rgba(17,17,17,0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.flow-step.visible { opacity: 1; transform: translateY(0); }
.flow-step--last { border-right: none; }
.flow-step--last .flow-arrow { display: none; }

.flow-step-inner {
  display: flex; align-items: flex-start;
  gap: 12px; margin-bottom: 20px; position: relative;
}
.flow-num {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; color: var(--vc-blue-dark);
  padding-top: 4px; flex-shrink: 0;
}
.flow-keyword {
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.1; color: var(--vc-ink);
  letter-spacing: -0.03em; flex: 1;
}
.flow-arrow {
  position: absolute; top: 50%; right: -20px;
  transform: translateY(-50%);
  font-size: 20px; color: var(--vc-blue-dark); font-weight: 700;
}

.flow-detail h4 {
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--vc-ink); margin-bottom: 10px;
}
.flow-detail p { font-size: 13px; line-height: 1.85; color: var(--vc-ink-soft); margin-bottom: 12px; }
.flow-ex {
  font-size: 11px; font-weight: 600;
  color: var(--vc-blue-dark);
  padding: 8px 12px;
  background: rgba(107,139,170,0.1);
  border-left: 2px solid var(--vc-blue-dark);
  border-radius: 0 2px 2px 0;
}

/* プログレスバー */
.flow-progress-wrap {
  height: 2px; background: rgba(17,17,17,0.08);
  margin-top: 40px; border-radius: 2px; overflow: hidden;
}
.flow-progress-bar {
  height: 100%; width: 0;
  background: var(--vc-ink);
  transition: width 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

@media (max-width: 900px) {
  .vc-framework { padding: 80px 0; }
  .flow-track { grid-template-columns: 1fr 1fr; }
  .flow-step { padding: 28px 20px 28px 0; }
  .flow-arrow { display: none; }
}
@media (max-width: 540px) {
  .flow-track { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid rgba(17,17,17,0.12); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-services { padding: 160px 0; background: var(--vc-sand); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(17,17,17,0.1);
}
.service-card {
  background: var(--vc-sand); padding: 56px 40px;
  transition: background var(--transition);
}
.service-card:hover { background: var(--vc-bg); }
.service-card--featured { background: var(--vc-ink); }
.service-card--featured:hover { background: var(--vc-accent); }
.service-card--featured .service-tag {
  color: var(--vc-blue);          /* ペールブルー — 黒背景上で視認可 */
}
.service-card--featured h3 { color: var(--vc-white); }
.service-card--featured p   { color: rgba(255,255,255,0.75); }
.service-card--featured .service-price {
  color: rgba(255,255,255,0.65);          /* 暗すぎた 0.4 → 0.65 に */
  border-color: rgba(255,255,255,0.18);
}

.service-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--vc-blue-dark); margin-bottom: 20px;
  display: block; /* 通常カードでも確実に表示 */
}
.service-card h3 {
  font-family: var(--font-serif); font-size: 23px; font-weight: 600;
  color: var(--vc-ink); margin-bottom: 16px;
}

.service-card:nth-child(3) h3 {
  color: #fff;
}

.service-card p {
  font-size: 14px; line-height: 1.9;
  color: var(--vc-ink-soft); margin-bottom: 28px;
}

.service-card:nth-child(3) p {
  color: #fff;
}

.service-price {
  font-size: 12px; font-weight: 600; color: var(--vc-ink-soft); /* muted→soft で少し濃く */
  letter-spacing: 0.06em;
  padding-top: 24px; border-top: 1px solid rgba(17,17,17,0.1);
}

@media (max-width: 860px) {
  .vc-services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRIDGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-bridge {
  background: var(--vc-ink); padding: 140px 0;
  position: relative; overflow: hidden;
}
.bridge-bg-text {
  position: absolute; bottom: -0.1em; right: -0.04em;
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  letter-spacing: -0.05em; pointer-events: none;
  line-height: 1;
}
.bridge-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.bridge-text .bridge-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--vc-blue); margin-bottom: 20px;
}
.bridge-text h2 {
  font-family: var(--font-serif); font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; color: var(--vc-white); margin-bottom: 24px; line-height: 1.2;
}
.bridge-text p {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.9; margin-bottom: 40px; max-width: 500px;
}
/* 二層構造ダイアグラム */
.bridge-diagram {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.bd-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 20px 32px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
  min-width: 160px; text-align: center;
}
.bd-item--ed {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}
.bd-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.bd-name {
  font-size: 14px; font-weight: 700;
  color: var(--vc-white);
}
.bd-arrow {
  font-size: 22px; color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .vc-bridge { padding: 80px 0; }
  .bridge-inner { grid-template-columns: 1fr; gap: 48px; }
  .bridge-diagram { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-contact { padding: 180px 0; background: var(--vc-bg-alt); text-align: center; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700; color: var(--vc-ink);
  margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.02em;
}
.contact-sub { font-size: 16px; color: var(--vc-ink-muted); margin-bottom: 52px; }
.contact-email { margin-top: 24px; font-size: 12px; letter-spacing: 0.1em; color: var(--vc-ink-muted); }

@media (max-width: 768px) { .vc-contact { padding: 100px 0; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-footer { background: var(--vc-ink); color: var(--vc-white); padding: 72px 0 36px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 56px; gap: 48px; flex-wrap: wrap;
}
/* .footer-logo テキスト版は画像に置き換え済み */
.footer-logo {
  display: block; font-family: var(--font-sans); font-weight: 900;
  font-size: 13px; letter-spacing: 0.22em; margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.85; }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.fn-head {
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.footer-nav-col a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--vc-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
.footer-tagline a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-tagline a:hover { color: var(--vc-white); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOR WHOM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-forwhom { padding: 160px 0; background: var(--vc-bg-alt); }
.fw-intro { margin-bottom: 64px; }
.fw-title { margin-bottom: 20px; }
.fw-lead {
  font-size: 16px; line-height: 1.9;
  color: var(--vc-ink-soft); max-width: 560px;
}
.fw-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(17,17,17,0.08);
  border: 1px solid rgba(17,17,17,0.08);
  margin-bottom: 72px;
}
.fw-item {
  background: var(--vc-bg-alt); padding: 36px 32px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: background var(--transition);
}
.fw-item:hover { background: var(--vc-white); }
.fw-check {
  font-size: 16px; color: var(--vc-blue-dark);
  font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.fw-item p { font-size: 14px; line-height: 1.85; color: var(--vc-ink-soft); }
.fw-item strong { color: var(--vc-ink); font-weight: 700; }
.fw-note {
  font-size: 15px; line-height: 1.9;
  color: var(--vc-ink-soft);
  padding: 28px 36px;
  border-left: 3px solid var(--vc-blue-dark);
  background: rgba(107,139,170,0.07);
}
.fw-note strong { color: var(--vc-ink); }

/* 結論ブロック */
.fw-conclusion {
  text-align: center;
  padding: 64px 48px;
  background: var(--vc-ink);
  border-radius: 4px;
}
.fw-conc-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--vc-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.fw-conc-sub {
  font-size: 15px; line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.fw-conc-sub strong { color: var(--vc-white); }
.btn-fw-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--vc-white); color: var(--vc-ink);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none;
  border-radius: 3px; transition: opacity 0.3s;
}
.btn-fw-cta:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .vc-forwhom { padding: 80px 0; }
  .fw-grid { grid-template-columns: 1fr; }
  .fw-conclusion { padding: 48px 24px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EPISODES (Before → After)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-episodes { padding: 140px 0; background: var(--vc-bg); }
.ep-title { margin-bottom: 72px; }
.ep-grid {
  display: flex; flex-direction: column; gap: 3px;
}
.ep-card {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
  background: var(--vc-bg-alt);
  border: 1px solid rgba(17,17,17,0.07);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.ep-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.ep-before, .ep-after {
  padding: 40px 48px;
}
.ep-before { background: var(--vc-bg-alt); }
.ep-after { background: var(--vc-white); }
.ep-label {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  padding: 4px 10px; border-radius: 2px;
  margin-bottom: 16px; text-transform: uppercase;
}
.ep-label--before {
  background: rgba(17,17,17,0.06); color: var(--vc-ink-muted);
}
.ep-label--after {
  background: rgba(107,139,170,0.15); color: var(--vc-blue-dark);
}
.ep-before p, .ep-after p {
  font-size: 15px; line-height: 1.85;
  color: var(--vc-ink-soft);
}
.ep-after p strong { color: var(--vc-ink); font-weight: 700; }
.ep-arrow-right {
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--vc-blue-dark);
  background: rgba(107,139,170,0.08);
}

@media (max-width: 768px) {
  .vc-episodes { padding: 80px 0; }
  .ep-card {
    grid-template-columns: 1fr;
  }
  .ep-arrow-right {
    padding: 16px;
    transform: rotate(90deg);
    background-color: transparent;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COUNSELING CTA (Book)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vc-cta-book {
  padding: 140px 0; background: var(--vc-ink);
  position: relative; overflow: hidden;
}
.cta-book-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 80px; align-items: start;
}
.cta-book-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700; color: var(--vc-white);
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em;
}
.cta-book-desc {
  font-size: 16px; line-height: 1.95;
  color: rgba(255,255,255,0.62); margin-bottom: 32px;
}
.cta-book-list {
  list-style: none; margin-bottom: 44px;
  display: flex; flex-direction: column; gap: 10px;
}
.cta-book-list li {
  font-size: 13px; color: rgba(255,255,255,0.5);
  padding-left: 18px; position: relative;
}
.cta-book-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--vc-blue); font-size: 11px;
}

/* 予約ボタン */
.btn-book {
  display: inline-flex; flex-direction: column; gap: 4px;
  padding: 20px 36px;
  background: var(--vc-white); color: var(--vc-ink);
  border-radius: 3px; text-decoration: none;
  transition: opacity var(--transition);
  max-width: 360px;
}
.btn-book:hover { opacity: 0.88; }
.btn-book--light { background: var(--vc-white); color: var(--vc-ink); }
.btn-book--dark { background: var(--vc-ink); color: var(--vc-white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-book--dark:hover { border-color: rgba(255,255,255,0.6); }
.btn-book-main { font-size: 15px; font-weight: 700; letter-spacing: 0.03em; }
.btn-book-sub { font-size: 11px; opacity: 0.55; letter-spacing: 0.04em; }

.cta-book-note {
  margin-top: 20px; font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.cta-book-note a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 3px; }
.cta-book-note a:hover { color: var(--vc-white); }

/* カード */
.cta-book-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 40px 36px;
}
.cbc-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--vc-blue); margin-bottom: 20px;
}
.cbc-title {
  font-family: var(--font-serif); font-size: 28px; font-weight: 700;
  color: var(--vc-white); line-height: 1.2; margin-bottom: 12px;
}
.cbc-price {
  font-size: 13px; font-weight: 700;
  color: var(--vc-blue); letter-spacing: 0.08em;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cbc-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cbc-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6;
}
.cbc-icon { color: var(--vc-blue); flex-shrink: 0; font-size: 15px; margin-top: 1px; }
.cbc-note {
  font-size: 11px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em; text-align: center;
  margin-bottom: 20px;
}
.cbc-btn {
  display: block; text-align: center;
  padding: 14px 24px;
  background: var(--vc-blue); color: var(--vc-white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  border-radius: 3px; text-decoration: none;
  transition: opacity 0.3s;
  margin-top: 16px;
}
.cbc-btn:hover { opacity: 0.85; }
.cta-book-reassure {
  margin-top: 20px;
  font-size: 11px; color: rgba(255,255,255,0.3);
  line-height: 1.8; text-align: center;
}

@media (max-width: 900px) {
  .vc-cta-book { padding: 80px 0; }
  .cta-book-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
