/* ==========================================================
   株式会社あなたの人事課
   White Premium Design System — Full Light Theme
   ========================================================== */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* Core palette — full white base */
  --bg:          #ffffff;
  --bg-soft:     #f9f8f6;
  --bg-panel:    #f4f2ee;
  --bg-warm:     #fdfcf9;
  --bg-mist:     #f0ede8;

  --line:        rgba(0,0,0,0.08);
  --line-soft:   rgba(0,0,0,0.05);
  --line-warm:   rgba(183,154,89,0.18);

  --text:        #1a1815;
  --text-soft:   #4a4540;
  --muted:       #9a9590;

  /* Gold accent */
  --accent:      #b79a59;
  --accent-lt:   #d4b36a;
  --accent-deep: #8a7040;
  --accent-pale: rgba(183,154,89,0.08);
  --accent-glow: rgba(212,179,106,0.16);

  --white:       #ffffff;
  --black:       #1a1815;

  /* Typography */
  --f-serif: "Lora", "Georgia", "游明朝", serif;
  --f-sans:  "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-width:  1400px;
  --sec:        120px;
  --header-h:   80px;
  --radius:     4px;
  --radius-md:  12px;
  --shadow:     0 24px 64px rgba(0,0,0,0.08);
  --shadow-sm:  0 6px 24px rgba(0,0,0,0.06);
  --shadow-gold:0 8px 40px rgba(183,154,89,0.22);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.77, 0, 0.175, 1);
  --dur:      0.65s;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 75%;  /* 1rem = 12px (旧62.5%=6.25px から1.2倍アップ) */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-sans);
  font-size: 1.35rem;  /* 1.35 × 12px = 16.2px — PC基準 */
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { display: block; width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Photo Placeholder ───────────────────────────────────── */
.photo {
  display: block; width: 100%; height: 100%;
  background-color: #ece9e3;
  background-image:
    linear-gradient(148deg, rgba(183,154,89,.07) 0%, transparent 55%),
    repeating-linear-gradient(45deg, transparent, transparent 32px,
      rgba(183,154,89,.035) 32px, rgba(183,154,89,.035) 33px);
  position: relative; overflow: hidden;
}
.photo::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.0rem; letter-spacing: .22em; color: rgba(0,0,0,.18);
  text-transform: uppercase; font-family: var(--f-serif);
}

/* ── Utility ────────────────────────────────────────────── */
.container { width: min(100% - 44px, var(--max-width)); margin-inline: auto; }
.container--narrow { max-width: 820px; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }

/* ── Animations ─────────────────────────────────────────── */
.js-fade       { opacity:0; transform:translateY(36px); transition:opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.js-fade-left  { opacity:0; transform:translateX(-40px); transition:opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.js-fade-right { opacity:0; transform:translateX(40px);  transition:opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.js-fade.is-visible,
.js-fade-left.is-visible,
.js-fade-right.is-visible { opacity:1; transform:none; }
.js-fade-delay-1 { transition-delay:.10s; }
.js-fade-delay-2 { transition-delay:.20s; }
.js-fade-delay-3 { transition-delay:.30s; }
.js-fade-delay-4 { transition-delay:.40s; }

/* ══════════════════════════════════════════════════════════
   HEADER — transparent on hero, white on scroll / sub-pages
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  padding: 0 5%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .5s, box-shadow .5s, border-color .5s;
}
.site-header.is-filled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
  border-bottom-color: rgba(0,0,0,.07);
}
/* Logo & nav — white when transparent (hero top only), dark when filled */
.site-header:not(.is-filled) .site-logo__mark { color: #ffffff; border-color: rgba(255,255,255,.4); }
.site-header:not(.is-filled) .site-logo__en   { color: #ffffff; }
.site-header:not(.is-filled) .site-logo__ja   { color: rgba(255,255,255,.52); }
.site-header:not(.is-filled) .global-nav a    { color: rgba(255,255,255,.72); }
.site-header:not(.is-filled) .global-nav a:hover,
.site-header:not(.is-filled) .global-nav a.is-current { color: #ffffff; }
.site-header:not(.is-filled) .global-nav a::after { background: rgba(255,255,255,.80); }
.site-header:not(.is-filled) .header-cta-contact {
  border-color: rgba(255,255,255,.36); color: rgba(255,255,255,.80);
}
.site-header:not(.is-filled) .header-cta-contact:hover {
  background: rgba(255,255,255,.14); color: #ffffff; border-color: rgba(255,255,255,.70);
}
.site-header:not(.is-filled) .hamburger span { background: #ffffff; }

/* ── Header inner layout ─── */
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* ── Logo ─── */
.site-logo {
  display: inline-flex; align-items: center; gap: 10px;
  line-height: 1; flex-shrink: 0;
  text-decoration: none;
}
.site-logo__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(26,24,21,.18); border-radius: 50%;
  font-family: var(--f-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--accent-deep); letter-spacing: .04em;
  flex-shrink: 0;
  transition: color .26s, border-color .26s;
}
.site-logo__text { display: flex; flex-direction: column; gap: 2px; }
.site-logo__en {
  font-family: var(--f-serif); font-size: 1.64rem;
  letter-spacing: .18em; color: var(--text); font-weight: 400;
  transition: color .3s;
}
.site-logo__ja {
  font-size: .88rem; color: var(--muted); letter-spacing: .10em;
  transition: color .3s;
}

/* ── Global nav ─── */
.global-nav__list { display: flex; gap: 28px; }
.global-nav a {
  position: relative; font-size: 1.26rem;
  color: rgba(26,24,21,.56);
  transition: color .26s; padding-bottom: 4px; letter-spacing: .06em;
}
.global-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .34s var(--ease-out);
}
.global-nav a:hover,
.global-nav a.is-current { color: var(--text); }
.global-nav a:hover::after,
.global-nav a.is-current::after { transform: scaleX(1); }
.global-nav a.is-current { font-weight: 500; }

/* ── Header actions ─── */
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta-diagnose {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px; font-size: 1.18rem; letter-spacing: .08em;
  background: var(--accent); color: var(--white); border-radius: 2px;
  border: 1px solid var(--accent);
  transition: background .26s, box-shadow .26s;
  white-space: nowrap;
}
.header-cta-diagnose:hover {
  background: var(--accent-deep);
  box-shadow: var(--shadow-gold);
}
/* is-current state for CTA buttons */
.header-cta-diagnose.is-current {
  background: var(--accent-deep);
  box-shadow: inset 0 1px 3px rgba(0,0,0,.15);
}
.header-cta-contact {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px; font-size: 1.18rem; letter-spacing: .08em;
  border: 1px solid rgba(0,0,0,.16); border-radius: 2px;
  background: transparent; color: rgba(26,24,21,.70);
  transition: background .26s, color .26s, border-color .26s;
  white-space: nowrap;
}
.header-cta-contact:hover,
.header-cta-contact.is-current {
  background: var(--text); color: var(--white);
  border-color: var(--text);
}
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; padding: 2px;
  cursor: pointer;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--text);
  transition: transform .36s var(--ease-out), opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   NAV OVERLAY (mobile full-screen menu)
══════════════════════════════════════════════════════════ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(252,250,246,.98); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0; opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-io);
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }

/* Close button */
.nav-overlay__close {
  position: absolute; top: 2.4rem; right: 2.2rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(0,0,0,.12); border-radius: 50%;
  transition: border-color .26s, background .26s;
  cursor: pointer;
}
.nav-overlay__close:hover { border-color: var(--text); background: rgba(0,0,0,.04); }
.nav-overlay__close::before,
.nav-overlay__close::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 16px; height: 1.5px;
  background: var(--text-soft);
}
.nav-overlay__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-overlay__close::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* Nav links */
.nav-overlay__nav {
  display: flex; flex-direction: column; align-items: center;
  gap: 2.6rem; margin-bottom: 4.0rem;
}
.nav-overlay__link {
  font-family: var(--f-serif); font-size: 2.2rem;
  letter-spacing: .24em; color: rgba(26,24,21,.48);
  transition: color .26s, letter-spacing .32s;
  text-decoration: none;
}
.nav-overlay__link:hover { color: var(--accent); letter-spacing: .32em; }
.nav-overlay__link.is-current { color: var(--accent-deep); letter-spacing: .28em; font-weight: 600; }

/* CTA block */
.nav-overlay__cta {
  display: flex; gap: 1.2rem; margin-bottom: 3.2rem;
}
.nav-overlay__cta-link {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 2.4rem; border-radius: 2px;
  font-size: 1.26rem; letter-spacing: .10em;
  transition: background .26s, color .26s, box-shadow .26s;
  text-decoration: none;
}
.nav-overlay__cta-link--diagnose {
  background: var(--accent); color: var(--white); border: 1px solid var(--accent);
}
.nav-overlay__cta-link--diagnose:hover,
.nav-overlay__cta-link--diagnose.is-current {
  background: var(--accent-deep); box-shadow: var(--shadow-gold);
}
.nav-overlay__cta-link--contact {
  background: transparent; color: var(--text);
  border: 1px solid rgba(26,24,21,.22);
}
.nav-overlay__cta-link--contact:hover,
.nav-overlay__cta-link--contact.is-current {
  background: var(--text); color: var(--white); border-color: var(--text);
}

/* Info block */
.nav-overlay__info {
  font-size: 1.10rem; color: var(--muted); letter-spacing: .06em;
  text-align: center; line-height: 1.8;
}
.nav-overlay__info a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.nav-overlay__info a:hover { color: var(--accent-deep); }

/* ══════════════════════════════════════════════════════════
   HERO — photo slider with light text overlay
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center; overflow: hidden;
  background: #1a1815;
}
.hero__slider { position: absolute; inset: 0; }

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.7s var(--ease-io);
  will-change: opacity;
  overflow: hidden;
}
.hero__slide.is-active  { opacity: 1; z-index: 1; }
.hero__slide.is-leaving { opacity: 0; z-index: 0; transition: opacity 1.7s var(--ease-io); }

/* Photo fills each slide */
.hero__slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}
.hero__slide.is-active img { transform: scale(1.0); }

/* Gradient overlay — テキスト可読性確保のための暗めスクリム */
.hero__slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(8,7,6,.78) 0%, rgba(8,7,6,.52) 50%, rgba(8,7,6,.22) 100%),
    linear-gradient(to bottom, rgba(8,7,6,.22) 0%, rgba(8,7,6,.10) 40%, rgba(8,7,6,.58) 100%);
  pointer-events: none;
}

/* Slide bg fallback (no img yet) */
.hero__slide--1 { background: #1c2030; }
.hero__slide--2 { background: #1a1c22; }
.hero__slide--3 { background: #1e1c1a; }

/* Scrim overlay — 全体の輝度を均一に落とす */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(10,9,8,.30);
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 3;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 120px;
}

/* Hero text — white on photo */
.hero__lead-ja {
  margin: 0 0 24px;
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 1.2vw, 1.40rem);
  color: rgba(220,190,120,1.0); letter-spacing: .42em; text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.60);
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp .9s .3s var(--ease-out) forwards;
}
.hero__title { display: flex; flex-direction: column; gap: 20px; }
.hero__title-en {
  font-family: var(--f-serif);
  font-size: clamp(4.8rem, 8.8vw, 10.4rem);
  font-weight: 400; line-height: .92; letter-spacing: .02em; color: #ffffff;
  text-shadow: 0 4px 32px rgba(0,0,0,.55), 0 1px 0 rgba(0,0,0,.30);
  opacity: 0; transform: translateY(24px);
  animation: heroFadeUp 1.0s .5s var(--ease-out) forwards;
}
.hero__title-ja {
  font-size: clamp(1.36rem, 2.1vw, 2.4rem);
  font-weight: 400; color: rgba(255,255,255,.96);
  letter-spacing: .08em; line-height: 1.5;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0,0,0,.60);
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp .9s .7s var(--ease-out) forwards;
}
.hero__lead-en {
  margin-top: 32px;
  font-size: clamp(1.22rem, 1.48vw, 1.60rem);
  line-height: 2.0; color: rgba(255,255,255,.80); letter-spacing: .04em;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp .9s .9s var(--ease-out) forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px;
  opacity: 0; transform: translateY(14px);
  animation: heroFadeUp .9s 1.1s var(--ease-out) forwards;
}
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__lead-ja.is-visible,
.hero__title-en.is-visible,
.hero__title-ja.is-visible,
.hero__lead-en.is-visible,
.hero__actions.is-visible {
  animation: none; opacity: 1; transform: none;
}

.hero__scroll {
  position: absolute; right: 40px; bottom: 36px;
  writing-mode: vertical-rl; letter-spacing: .32em;
  font-size: 1.0rem; color: rgba(255,255,255,.55); font-family: var(--f-serif);
  text-shadow: 0 1px 6px rgba(0,0,0,.40);
  animation: heroFadeUp .8s 1.6s var(--ease-out) both;
}

/* Slide dots — on photo bg */
.hero__dots {
  position: absolute; bottom: 3.6rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 1.0rem; z-index: 4;
}
.hero__dot {
  width: 28px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.45);
  transition: background .34s, width .42s var(--ease-out);
  cursor: pointer; border: none;
}
.hero__dot.is-active { background: var(--accent-lt); width: 48px; }

/* Decorative accent line at right edge of hero */
.hero::after {
  content: ''; position: absolute; right: 0; top: 18%; bottom: 18%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent-lt), var(--accent), transparent);
  z-index: 4; opacity: .55;
}

/* ══════════════════════════════════════════════════════════
   BOOKING BAR — white, accent top border
══════════════════════════════════════════════════════════ */
.booking-bar {
  position: relative; z-index: 10;
  background: var(--white);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.booking-bar__inner {
  display: flex; align-items: stretch; min-height: 92px;
}
.booking-bar__items {
  display: grid; grid-template-columns: repeat(3,1fr);
  align-items: stretch; flex: 1;
  max-width: calc(var(--max-width) - 44px);
  margin: 0 auto 0 max(calc((100vw - var(--max-width) + 44px) / 2), 22px);
}
.booking-bar__item {
  display: flex; align-items: center; gap: 1.8rem;
  padding: 2.2rem 3.2rem;
  border-right: 1px solid var(--line);
  transition: background .28s var(--ease-out);
}
.booking-bar__item:hover { background: var(--bg-warm); }
.booking-bar__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(183,154,89,.40);
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .28s, background .28s, transform .28s var(--ease-out);
}
.booking-bar__item:hover .booking-bar__icon {
  border-color: var(--accent);
  background: rgba(183,154,89,.14);
  transform: scale(1.08);
}
.booking-bar__icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.booking-bar__label {
  font-size: 1.02rem; color: var(--muted);
  letter-spacing: .14em; text-transform: uppercase;
  font-family: var(--f-serif); margin-bottom: .5rem;
  line-height: 1;
}
.booking-bar__value {
  font-size: 1.52rem; color: var(--text);
  font-weight: 600; letter-spacing: .02em; line-height: 1;
}
.booking-bar__cta {
  display: flex; align-items: center; justify-content: center;
  padding: 0 4.2rem;
  background: var(--accent); color: var(--white);
  font-size: 1.40rem; font-weight: 500; letter-spacing: .14em;
  transition: background .28s, box-shadow .28s, letter-spacing .28s;
  white-space: nowrap; position: relative; overflow: hidden;
  flex-shrink: 0; min-width: 220px;
}
.booking-bar__cta::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-18deg);
  transition: left .55s var(--ease-out);
}
.booking-bar__cta:hover {
  background: var(--accent-deep);
  box-shadow: var(--shadow-gold);
  letter-spacing: .18em;
}
.booking-bar__cta:hover::after { left: 160%; }

/* ── Metrics bar ─────────────────────────────────────────── */
.hero-metrics {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 2;
}
.hero-metrics::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(183,154,89,.22), transparent);
}
.hero-metrics__inner { display: grid; grid-template-columns: repeat(3,1fr); }
.hero-metrics__item {
  padding: 4.0rem 3rem;
  border-right: 1px solid var(--line); text-align: center;
  transition: background .28s;
}
.hero-metrics__item:hover { background: rgba(183,154,89,.04); }
.hero-metrics__item:last-child { border-right: none; }
.hero-metrics__num {
  font-family: var(--f-serif);
  font-size: clamp(3.4rem, 4.5vw, 5.2rem);
  color: var(--accent); font-weight: 400; line-height: 1;
}
.hero-metrics__num span { font-size: .52em; opacity: .72; }
.hero-metrics__label {
  margin-top: 1.0rem; font-size: 1.16rem; color: var(--muted);
  letter-spacing: .17em; text-transform: uppercase; font-family: var(--f-serif);
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════ */
.section { padding: var(--sec) 0; }

/* Light panel — soft warm background */
.section--panel {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Mist panel — slightly darker warm tint */
.section--mist {
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Accent panel — very subtle gold wash */
.section--accent-wash {
  background: linear-gradient(160deg, #fdfbf7 0%, #f9f5ee 50%, #fdfbf8 100%);
  border-top: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
  position: relative;
}
.section--accent-wash::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent 10%, var(--accent) 40%, var(--accent-lt) 50%, var(--accent) 60%, transparent 90%);
}

/* Section grid & copy */
.section-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: center; }
.section-grid--reverse { direction: rtl; }
.section-grid--reverse > * { direction: ltr; }

.section-copy__eyebrow {
  display: inline-block; margin-bottom: 1.4rem;
  font-family: var(--f-serif); color: var(--accent-deep);
  letter-spacing: .32em; font-size: 1.10rem; text-transform: uppercase;
}

.section-title { display: grid; gap: 10px; margin: 0; }
.section-title__en {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 5.0vw, 4.8rem);
  font-weight: 400; line-height: 1.04; letter-spacing: .03em; color: var(--text);
}
.section-title__ja {
  font-size: 1.30rem; color: var(--muted);
  letter-spacing: .16em; font-family: var(--f-serif);
}
.section-title--center, .section-header--center { text-align: center; }
.section-header--center .section-copy__eyebrow { display: block; }

.section-copy__body {
  margin-top: 3.0rem; color: var(--text-soft); line-height: 2.08; font-size: 1.48rem;
}
.section-copy__body p + p { margin-top: 1.6rem; }
.section-intro {
  max-width: 640px; margin: 2.2rem auto 0;
  color: var(--text-soft); text-align: center;
  font-size: 1.48rem; line-height: 1.98;
}

.sep {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-block: 3.0rem;
}
.section-header--center .sep {
  margin-inline: auto;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  width: 68px;
}

.section-visual img,
.section-visual .photo { border-radius: var(--radius-md); box-shadow: var(--shadow); overflow: hidden; }

.text-link {
  display: inline-flex; align-items: center; gap: 1.2rem;
  margin-top: 3.2rem; font-family: var(--f-serif);
  font-size: 1.36rem; letter-spacing: .13em; color: var(--text-soft);
  transition: color .26s;
}
.text-link::after { content: '→'; transition: transform .28s var(--ease-out); }
.text-link:hover { color: var(--accent); }
.text-link:hover::after { transform: translateX(8px); }

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about { position: relative; }
.about::before {
  content: ''; position: absolute; left: 0; top: 116px;
  width: 120px; height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.about__visual img, .about__visual .photo {
  border-radius: var(--radius-md); box-shadow: var(--shadow);
  aspect-ratio: 5/6; overflow: hidden;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .7s var(--ease-out);
}
.about__visual:hover img { transform: scale(1.03); }
.about__pillars { margin-top: 3.8rem; display: flex; flex-direction: column; gap: 2.4rem; }
.about__pillar  { display: flex; gap: 2.2rem; align-items: flex-start; }
.about__pillar-num {
  flex-shrink: 0; font-family: var(--f-serif); font-size: 2.2rem;
  color: var(--accent); line-height: 1; margin-top: .1rem; opacity: .55;
}
.about__pillar-text strong {
  display: block; font-size: 1.44rem; font-weight: 500;
  letter-spacing: .04em; color: var(--text); margin-bottom: .5rem;
}
.about__pillar-text p { font-size: 1.32rem; color: var(--text-soft); line-height: 1.88; }
.about__tags { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.2rem; }
.about__tag {
  display: inline-block; padding: .52rem 1.5rem;
  font-size: 1.10rem; letter-spacing: .06em;
  border: 1px solid var(--line-warm);
  color: var(--text-soft); border-radius: var(--radius);
  background: var(--accent-pale);
  transition: background .22s, color .22s, border-color .22s;
}
.about__tag:hover {
  background: rgba(183,154,89,.15); color: var(--accent-deep);
  border-color: rgba(183,154,89,.44);
}

/* ══════════════════════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════════════════════ */
.philosophy {
  background: #1a1815;
  overflow: hidden;
}

/* 2カラムレイアウト */
.philosophy__layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 560px;
}

/* ── 左カラム ── */
.philosophy__left {
  background: #111009;
  display: flex;
  align-items: stretch;
  position: relative;
}
/* 右端の縦ライン */
.philosophy__left::after {
  content: '';
  position: absolute; top: 10%; right: 0; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(183,154,89,.40), transparent);
}

/* 縦書きラベル */
.philosophy__label-wrap {
  writing-mode: vertical-rl;
  padding: 4.8rem 2.8rem;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid rgba(183,154,89,.12);
}
.philosophy__label-vert {
  font-family: var(--f-serif);
  font-size: 1.0rem; letter-spacing: .5em; text-transform: uppercase;
  color: rgba(183,154,89,.50);
}

/* 左本文 */
.philosophy__left-body {
  padding: 5.6rem 4.0rem 5.6rem 3.2rem;
  display: flex; flex-direction: column; justify-content: center;
  flex: 1;
}
.philosophy__eyebrow {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  font-weight: 400; letter-spacing: .16em; line-height: 1;
  color: #fff; margin-bottom: 2.4rem;
  opacity: 1;
}
.philosophy__rule {
  width: 32px; height: 1px;
  background: var(--accent);
  margin-bottom: 2.0rem;
  opacity: .60;
}
.philosophy__reason-caption {
  font-family: var(--f-serif);
  font-size: .86rem; letter-spacing: .56em; text-transform: uppercase;
  color: rgba(183,154,89,.55); margin-bottom: 2.4rem;
}
.philosophy__reason-text {
  font-family: var(--f-serif);
  font-size: clamp(1.52rem, 1.8vw, 2.0rem);
  font-weight: 400; line-height: 2.1; letter-spacing: .05em;
  color: rgba(255,255,255,.88);
}

/* ── 右カラム（Mission / Vision / Value） ── */
.philosophy__right {
  display: flex;
  flex-direction: column;
}
.philosophy__item {
  flex: 1;
  padding: 3.8rem 5.2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; justify-content: center;
  transition: background .28s;
}
.philosophy__item:last-child { border-bottom: none; }
.philosophy__item:hover { background: rgba(255,255,255,.03); }

.philosophy__item-head {
  display: flex; align-items: center; gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.philosophy__item-head::before {
  content: '';
  display: inline-block; width: 20px; height: 1px;
  background: var(--accent); opacity: .70; flex-shrink: 0;
}
.philosophy__item-en {
  font-family: var(--f-serif);
  font-size: 1.0rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--accent-lt); opacity: .80;
}
.philosophy__item-ja {
  font-size: clamp(1.32rem, 1.6vw, 1.72rem);
  font-weight: 500; line-height: 1.9; letter-spacing: .04em;
  color: rgba(255,255,255,.86);
}

/* Value list */
.philosophy__item--value .philosophy__item-ja { display: none; }
.philosophy__value-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1.8rem;
}
.philosophy__value-list li {
  display: flex; gap: 2.0rem; align-items: baseline;
}
.philosophy__value-num {
  flex-shrink: 0;
  font-family: var(--f-serif);
  font-size: 1.14rem; color: var(--accent);
  opacity: .55; letter-spacing: .06em; line-height: 1;
  min-width: 2.4rem;
}
.philosophy__value-title {
  display: inline; font-size: 1.40rem; font-weight: 600;
  color: rgba(255,255,255,.90); letter-spacing: .06em;
  margin-right: 1.2rem;
}
.philosophy__value-desc {
  font-size: 1.18rem; color: rgba(255,255,255,.46);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .philosophy__layout { grid-template-columns: 340px 1fr; }
  .philosophy__left-body { padding: 4.4rem 3.2rem 4.4rem 2.4rem; }
  .philosophy__item { padding: 3.2rem 3.6rem; }
}
@media (max-width: 760px) {
  .philosophy__layout { grid-template-columns: 1fr; }
  .philosophy__left { min-height: auto; }
  .philosophy__left::after { display: none; }
  .philosophy__label-wrap { display: none; }
  .philosophy__left-body { padding: 5.6rem 2.8rem 4.0rem; }
  .philosophy__item { padding: 3.2rem 2.8rem; }
  .philosophy__reason-text { font-size: 1.52rem; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES – split layout (left lead + right carousel)
══════════════════════════════════════════════════════════ */

/* ── セクション全体 ── */
.svc-split {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  overflow: hidden;
  min-height: 640px;
}

/* ── 左：見出しエリア ── */
.svc-split__lead {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 6%;
  min-height: 640px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.svc-split__eyebrow {
  font-family: var(--f-serif);
  font-size: 1.10rem;
  letter-spacing: .22em;
  color: var(--accent);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.svc-split__heading { margin: 0 0 24px; }
.svc-split__heading-en {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 3.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
  color: var(--text);
}
.svc-split__desc {
  font-family: var(--f-serif);
  font-size: 1.22rem;
  color: var(--text-soft);
  line-height: 1.90;
  margin: 0 0 40px;
}

/* ── プログレスバー ── */
.svc-progress {
  width: 100%;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 32px;
}
.svc-progress__bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 33.33%;
  transition: width .4s var(--ease-out);
}

/* ── ナビボタン ── */
.svc-split__nav {
  display: flex;
  gap: 10px;
}
.svc-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.svc-nav-btn:hover,
.svc-nav-btn--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── 右：トラック（横スクロール） ── */
.svc-split__track-wrap {
  flex: 1 1 0;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.svc-split__track {
  display: flex;
  gap: 20px;
  padding: 40px 40px 40px 0;
  transition: transform .55s var(--ease-out);
  will-change: transform;
}

/* ── 個別カード ── */
.svc-card {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform .44s var(--ease-out), box-shadow .44s var(--ease-out), border-color .3s;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(183,154,89,.40);
}
.svc-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.svc-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .70s var(--ease-out);
}
.svc-card:hover .svc-card__image img { transform: scale(1.06); }
.svc-card__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__num {
  font-family: var(--f-serif);
  font-size: .95rem;
  letter-spacing: .22em;
  color: var(--accent);
  margin: 0 0 8px;
}
.svc-card__tag {
  display: inline-block;
  font-family: var(--f-serif);
  font-size: .92rem;
  color: var(--accent-deep);
  background: var(--accent-pale);
  border: 1px solid rgba(183,154,89,.22);
  border-radius: var(--radius);
  padding: .22rem .80rem;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.svc-card__title {
  margin: 0 0 10px;
  font-family: var(--f-serif);
  font-size: 1.48rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--text);
}
.svc-card__desc {
  font-family: var(--f-serif);
  font-size: 1.10rem;
  color: var(--text-soft);
  line-height: 1.80;
  margin: 0;
  flex: 1;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.05rem;
  color: var(--accent);
  font-family: var(--f-serif);
  letter-spacing: .06em;
  margin-top: 16px;
  transition: gap .25s;
}
.svc-card:hover .svc-card__link { gap: .9rem; }

/* ── レスポンシブ（スマホも横並びレイアウト維持） ── */
@media (max-width: 1000px) {
  .svc-split {
    /* 横並びレイアウトは維持したまま、左ナビを狭く */
    min-height: auto;
    align-items: stretch;
  }
  .svc-split__lead {
    flex: 0 0 120px;
    min-width: 120px;
    max-width: 120px;
    padding: 40px 16px 32px 16px;
    min-height: auto;
    justify-content: flex-start;
  }
  /* 縦書き対応：アイコン・ナビボタンのみ表示 */
  .svc-split__eyebrow { font-size: .80rem; letter-spacing: .10em; margin-bottom: 10px; }
  .svc-split__heading { margin: 0 0 12px; }
  .svc-split__heading-en { font-size: 1.20rem; letter-spacing: .04em; }
  .svc-split__desc { display: none; } /* スペース節約のため非表示 */
  .svc-split__nav { gap: 8px; }
  .svc-nav-btn { width: 36px; height: 36px; }
  /* 右：カードトラック */
  .svc-split__track-wrap {
    min-height: auto;
    overflow: hidden;
    align-items: center;
  }
  .svc-split__track {
    padding: 24px 20px 24px 0;
  }
  .svc-card { flex: 0 0 240px; }
}
@media (max-width: 560px) {
  .svc-split__lead {
    flex: 0 0 100px;
    min-width: 100px;
    max-width: 100px;
    padding: 32px 12px 24px 12px;
  }
  .svc-split__heading-en { font-size: 1.05rem; }
  .svc-nav-btn { width: 32px; height: 32px; }
  .svc-card { flex: 0 0 72vw; }
  .svc-split__track { padding: 20px 16px 20px 0; }
}

/* ══════════════════════════════════════════════════════════
   PROGRAM CARDS (Issues) — light card style
══════════════════════════════════════════════════════════ */
.program-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.program-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg); display: block;
  transition: transform .40s var(--ease-out), box-shadow .40s, border-color .30s;
  padding: 3.2rem 2.8rem 3.4rem;
}
.program-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow);
  border-color: rgba(183,154,89,.44);
}
/* Top accent line per card */
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease-out);
}
.program-card:hover::before { transform: scaleX(1); }

/* No bg image needed in light version */
.program-card__bg { display: none; }

.program-card__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: .8rem;
  background: none; padding: 0;
}
.program-card__meta {
  font-family: var(--f-serif);
  color: var(--accent-deep); font-size: 1.10rem; letter-spacing: .24em;
  text-transform: uppercase; margin-bottom: .4rem;
}
.program-card__title { font-size: 1.88rem; font-weight: 500; color: var(--text); line-height: 1.38; }
.program-card__desc  { font-size: 1.28rem; color: var(--text-soft); line-height: 1.82; margin-top: .4rem; }

.program-card--more {
  border: 2px dashed rgba(183,154,89,.30);
  background: var(--accent-pale);
  display: flex; align-items: center;
}
.program-card--more:hover {
  border-color: var(--accent); background: rgba(183,154,89,.12);
}
.program-card--more::before { display: none; }
.program-card--more .program-card__title { color: var(--accent-deep); }

/* ══════════════════════════════════════════════════════════
   STRENGTHS
══════════════════════════════════════════════════════════ */
.strengths-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 56px; }
.strength-item {
  display: flex; gap: 3.0rem; align-items: flex-start; padding: 3.8rem;
  background: var(--bg); border: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: background .28s, border-color .28s, border-left-color .28s;
}
.strength-item:hover { background: var(--bg-soft); border-left-color: var(--accent); }
.strength-item__num {
  flex-shrink: 0; font-family: var(--f-serif); font-size: 4.2rem;
  color: var(--accent); font-weight: 400; line-height: 1; margin-top: -.2rem; opacity: .45;
}
.strength-item__title { font-size: 1.56rem; font-weight: 500; letter-spacing: .04em; color: var(--text); margin-bottom: .8rem; }
.strength-item__desc { font-size: 1.32rem; color: var(--text-soft); line-height: 1.94; }

/* ══════════════════════════════════════════════════════════
   FLOW
══════════════════════════════════════════════════════════ */
.flow-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 64px;
  position: relative;
}
.flow-steps::before {
  content: ''; position: absolute; top: 39px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-glow), transparent);
}
.flow-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 2.0rem; text-align: center; padding: 0 1.6rem; position: relative;
}
.flow-step__circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg); border: 1px solid rgba(183,154,89,.44);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; flex-shrink: 0;
  transition: background .30s, box-shadow .30s, border-color .30s;
}
.flow-step__circle::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(183,154,89,0);
  transition: border-color .4s, inset .4s var(--ease-out);
}
.flow-step:hover .flow-step__circle {
  background: var(--accent-pale);
  box-shadow: 0 0 0 6px var(--accent-pale);
  border-color: var(--accent);
}
.flow-step:hover .flow-step__circle::after {
  border-color: rgba(183,154,89,.22); inset: -12px;
}
.flow-step__num { font-family: var(--f-serif); font-size: 2.0rem; color: var(--accent); font-weight: 400; line-height: 1; }
.flow-step__title { font-size: 1.32rem; font-weight: 500; color: var(--text); }
.flow-step__desc  { font-size: 1.16rem; color: var(--text-soft); line-height: 1.82; }

/* ══════════════════════════════════════════════════════════
   CASES SECTION – header + 6-card grid
══════════════════════════════════════════════════════════ */
.cases-section {
  padding: 96px 0 80px;
  background: var(--bg);
}

/* ── ヘッダー（左タイトル + 右4バッジ） ── */
.cases-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.cases-header__left { flex: 0 0 auto; }
.cases-header__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.cases-header__title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 14px;
}
.cases-header__sub {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── 特徴バッジ4個 ── */
.cases-header__badges {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  align-self: center;
}
.cases-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 110px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.cases-badge:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.cases-badge__icon {
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(193,158,60,.07);
  border-radius: 10px;
}
.cases-badge__text {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* ── カードグリッド（6枚 3×2） ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* ── 個別カード ── */
.cs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.cs-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

/* 写真エリア */
.cs-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.cs-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
  display: block;
}
.cs-card:hover .cs-card__img { transform: scale(1.05); }

/* アイコンバッジ（写真右下） */
.cs-card__icon-badge {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #c9a227, #e8c84a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1c1a16;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  z-index: 2;
}

/* テキストボディ */
.cs-card__body {
  padding: 26px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.cs-card__name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}
.cs-card__size {
  font-size: .72rem;
  color: var(--text-muted);
  margin: 0 0 4px;
}
.cs-card__tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 2px;
}
.cs-card__desc {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 8px;
}

/* 実績数字エリア */
.cs-card__results {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 10px;
  background: rgba(193,158,60,.06);
  border: 1px solid rgba(193,158,60,.2);
  border-radius: 8px;
  margin-top: auto;
}
.cs-card__result {
  font-size: .75rem;
  color: var(--text);
  line-height: 1.4;
}
.cs-card__result strong {
  font-size: .9rem;
  font-weight: 800;
  color: var(--accent);
}

/* フッター注釈 */
.cases-footnote {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── レスポンシブ ── */
@media (max-width: 1100px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .cases-header {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
  }
  .cases-header__badges {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cases-badge { min-width: unset; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .cases-grid { grid-template-columns: 1fr; }
  .cases-header__badges { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   NEWS CARDS
══════════════════════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.news-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--bg); border: 1px solid var(--line);
  transition: transform .38s var(--ease-out), box-shadow .38s, border-color .28s;
}
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(183,154,89,.36); }
.news-card a { display: block; }
.news-card__image { aspect-ratio: 16/10; overflow: hidden; }
.news-card__image .photo { height: 100%; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .60s var(--ease-out); }
.news-card:hover .news-card__image img,
.news-card:hover .news-card__image .photo { transform: scale(1.07); }
.news-card__body { padding: 20px 24px 26px; }
.news-card__tag {
  display: inline-block; margin-bottom: 9px;
  font-size: 1.0rem; letter-spacing: .09em; color: var(--accent-deep);
  border: 1px solid rgba(183,154,89,.36); padding: .22rem .9rem;
  border-radius: var(--radius); font-family: var(--f-serif);
  background: var(--accent-pale);
}
.news-card__title {
  margin: 0; font-size: 1.66rem; font-weight: 400;
  line-height: 1.64; color: var(--text); transition: color .22s;
}
.news-card:hover .news-card__title { color: var(--accent-deep); }

/* News tabs & list */
.news-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--line);
  margin-top: 48px; margin-bottom: 24px;
}
.news-tab {
  padding: 1.2rem 2.6rem; font-size: 1.26rem; letter-spacing: .10em; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; transition: color .22s, border-color .22s; font-family: var(--f-serif);
}
.news-tab.is-active { color: var(--accent-deep); border-bottom-color: var(--accent); }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex; gap: 2.2rem; align-items: flex-start;
  padding: 2.2rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left .26s;
  position: relative;
}
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item:hover { padding-left: .7rem; }
.news-item__date {
  flex-shrink: 0; min-width: 9.4rem; font-size: 1.16rem;
  color: var(--muted); letter-spacing: .05em; padding-top: .1rem; font-family: var(--f-serif);
}
.news-item__tag {
  flex-shrink: 0; display: inline-block; min-width: 7.0rem; text-align: center;
  font-size: 1.0rem; letter-spacing: .07em; padding: .22rem .9rem;
  border: 1px solid rgba(183,154,89,.32); color: var(--accent-deep);
  border-radius: var(--radius); font-family: var(--f-serif);
  background: var(--accent-pale);
}
.news-item__title { font-size: 1.36rem; line-height: 1.70; color: var(--text-soft); transition: color .22s; }
.news-item:hover .news-item__title { color: var(--text); }
.section-footer { margin-top: 42px; text-align: center; }

/* ══════════════════════════════════════════════════════════
   COMPANY TABLE & CONTACT
══════════════════════════════════════════════════════════ */
.company-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 7.2rem; }
.company-table { width: 100%; border-collapse: collapse; margin-top: 3.4rem; }
.company-table th,
.company-table td {
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.32rem; text-align: left; vertical-align: top;
}
.company-table th { width: 36%; font-weight: 500; letter-spacing: .04em; color: var(--text-soft); padding-right: 1.6rem; }
.company-table td { color: var(--muted); }

.contact-methods { margin-top: 3.4rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-method {
  display: flex; gap: 2.2rem; align-items: flex-start; padding: 2.6rem;
  border: 1px solid var(--line); background: var(--bg-soft);
  border-radius: var(--radius-md); transition: background .30s, border-color .30s, box-shadow .30s;
}
.contact-method:hover {
  background: var(--bg); border-color: rgba(183,154,89,.36);
  box-shadow: var(--shadow-sm);
}
.contact-method__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(183,154,89,.36);
  display: flex; align-items: center; justify-content: center;
  transition: background .28s, border-color .28s, transform .30s var(--ease-out);
}
.contact-method:hover .contact-method__icon {
  background: var(--accent-pale); border-color: var(--accent);
  transform: scale(1.10);
}
.contact-method__icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.contact-method__title { font-size: 1.36rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
.contact-method__desc { font-size: 1.26rem; color: var(--text-soft); line-height: 1.80; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: 1.26rem; color: var(--accent);
  font-family: var(--f-serif); letter-spacing: .09em;
  transition: gap .26s;
}
.arrow-link::after { content: '→'; }
.arrow-link:hover { gap: 1.5rem; }

/* ══════════════════════════════════════════════════════════
   PREMIUM / CTA BOX — light
══════════════════════════════════════════════════════════ */
.premium-box {
  padding: 64px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: box-shadow .44s;
}
.premium-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent 8%, var(--accent) 38%, var(--accent-lt) 50%, var(--accent) 62%, transparent 92%);
}
.premium-box::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 130% at 92% 50%, rgba(183,154,89,.05), transparent 60%);
  pointer-events: none;
}
.cta-band .premium-box:hover { box-shadow: var(--shadow); }

.cta-band {
  background: var(--bg-panel);
  border-top: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
  padding: var(--sec) 0;
  position: relative;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent 10%, var(--accent) 40%, var(--accent-lt) 50%, var(--accent) 60%, transparent 90%);
}
.cta-band__inner {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between;
  align-items: center; gap: 4.8rem; flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--f-serif);
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
  font-weight: 400; color: var(--text); letter-spacing: .03em; line-height: 1.38;
}
.cta-band__desc { margin-top: 1.5rem; font-size: 1.46rem; color: var(--text-soft); line-height: 1.94; }
.cta-band__actions { display: flex; gap: 1.4rem; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn, .button-solid, .button-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 54px; padding: 0 34px;
  font-size: 1.40rem; letter-spacing: .12em;
  transition: background .28s, color .28s, box-shadow .28s, border-color .28s;
  font-weight: 400; white-space: nowrap; cursor: pointer;
  border-radius: var(--radius);
}
.btn--primary, .button-solid {
  background: var(--accent); color: var(--white);
  border: 1px solid var(--accent);
}
.btn--primary:hover, .button-solid:hover {
  background: var(--accent-deep); border-color: var(--accent-deep);
  box-shadow: var(--shadow-gold);
}
.btn--outline, .button-outline {
  border: 1px solid rgba(0,0,0,.22);
  color: var(--text); background: transparent;
}
.btn--outline:hover, .button-outline:hover {
  background: var(--text); color: var(--white);
  border-color: var(--text);
}
/* Light outline (on dark photo hero bg — white border) */
.btn--outline-light {
  border: 1px solid rgba(255,255,255,.46);
  color: #ffffff; background: transparent;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.82);
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (sub-pages) — white/light base
══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--header-h) + 100px); padding-bottom: 110px;
  background: var(--bg-soft); position: relative; overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 72% 110% at 88% 52%, rgba(183,154,89,.06), transparent 66%),
    radial-gradient(ellipse 48% 78% at 12% 88%, rgba(183,154,89,.03), transparent 56%);
}
.page-hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.022) 1px, transparent 1px);
  background-size: 84px 84px;
  animation: gridFadeIn 1.2s .1s var(--ease-out) both;
}
@keyframes gridFadeIn { from { opacity: 0; } to { opacity: 1; } }

.page-hero::after {
  content: ''; position: absolute; left: 0; bottom: 0; z-index: 1;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent 8%, var(--accent) 38%, var(--accent-lt) 50%, var(--accent) 62%, transparent 92%);
  transform: scaleX(0); transform-origin: center;
  animation: lineReveal .9s .4s var(--ease-out) forwards;
}
@keyframes lineReveal { to { transform: scaleX(1); } }

.page-hero__inner { position: relative; z-index: 2; }
.page-hero__inner::before {
  content: ''; display: block;
  width: 44px; height: 2px; margin-bottom: 2.4rem;
  background: linear-gradient(to right, var(--accent), var(--accent-lt));
  transform: scaleX(0); transform-origin: left;
  animation: accentBarIn .7s .3s var(--ease-out) forwards;
}
@keyframes accentBarIn { to { transform: scaleX(1); } }

.page-hero__label {
  display: inline-block; margin-bottom: 2.2rem;
  font-size: 1.04rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--accent-deep); font-family: var(--f-serif);
  padding: .36rem 1.2rem; border: 1px solid rgba(183,154,89,.28);
  border-radius: var(--radius); background: var(--accent-pale);
  opacity: 0; transform: translateY(14px);
  animation: heroFadeUp .7s .45s var(--ease-out) forwards;
  position: relative; overflow: hidden;
}
.page-hero__label::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.40) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: labelShimmer 2.4s 1.2s var(--ease-out) forwards;
}
@keyframes labelShimmer { to { transform: translateX(100%); } }

.page-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3.3rem, 5.2vw, 5.6rem);
  font-weight: 400; color: var(--text); letter-spacing: .03em; line-height: 1.18;
  opacity: 0; transform: translateY(22px);
  animation: heroFadeUp .9s .6s var(--ease-out) forwards;
}
.page-hero__title span {
  display: block; font-family: var(--f-sans);
  font-size: .40em; font-weight: 300; color: var(--text-soft);
  margin-top: 1.2rem; letter-spacing: .15em;
}
.page-hero__desc {
  margin-top: 2.8rem; font-size: 1.50rem; color: var(--text-soft);
  max-width: 56rem; line-height: 2.12;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp .8s .8s var(--ease-out) forwards;
}

/* ══════════════════════════════════════════════════════════
   INDIVIDUAL PAGE COMPONENTS
══════════════════════════════════════════════════════════ */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sec); align-items: center; }
.content-split--reverse { direction: rtl; }
.content-split--reverse > * { direction: ltr; }
.content-split__media .photo {
  aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow); background-color: #ece9e3;
}

.target-list { margin-top: 3.0rem; display: flex; flex-direction: column; gap: 1.1rem; }
.target-item {
  display: flex; gap: 1.4rem; align-items: flex-start;
  font-size: 1.36rem; color: var(--text-soft);
  transition: padding-left .24s var(--ease-out);
}
.target-item::before {
  content: ''; display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: .82rem;
}
.target-item:hover { padding-left: .5rem; }

/* FAQ */
.faq-list { margin-top: 4.2rem; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; gap: 2.0rem; align-items: center; padding: 2.6rem 0; cursor: pointer;
  font-size: 1.43rem; font-weight: 400; letter-spacing: .03em; color: var(--text);
  transition: color .22s;
}
.faq-q:hover { color: var(--accent-deep); }
.faq-q__label {
  flex-shrink: 0; font-family: var(--f-serif); font-size: 2.0rem;
  color: var(--accent); line-height: 1;
}
.faq-q__toggle { margin-left: auto; flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-q__toggle::before, .faq-q__toggle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1px; background: var(--text-soft);
}
.faq-q__toggle::before { transform: translate(-50%,-50%); }
.faq-q__toggle::after  { transform: translate(-50%,-50%) rotate(90deg); transition: transform .32s var(--ease-out); }
.faq-item.is-open .faq-q__toggle::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-a {
  font-size: 1.36rem; color: var(--text-soft);
  line-height: 2.02;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease-out), padding .38s var(--ease-out);
  padding: 0 0 0 4.2rem; overflow: hidden;
}
.faq-a > * { overflow: hidden; }
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
  padding: 0 0 2.6rem 4.2rem;
}

/* OEM steps */
.oem-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.2rem; margin-top: 64px; }
.oem-step {
  padding: 3.4rem 2.6rem; background: var(--bg-soft);
  border: 1px solid var(--line); border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: background .28s, transform .34s var(--ease-out), box-shadow .34s;
}
.oem-step:hover { background: var(--bg); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.oem-step__num {
  font-family: var(--f-serif); font-size: 3.0rem; color: var(--accent);
  line-height: 1; margin-bottom: 1.4rem; opacity: .50;
}
.oem-step__title { font-size: 1.46rem; font-weight: 500; color: var(--text); margin-bottom: .8rem; }
.oem-step__desc  { font-size: 1.26rem; color: var(--text-soft); line-height: 1.80; }

/* Forms */
.contact-form { max-width: 640px; }
.form-field { margin-bottom: 2.6rem; }
.form-field label {
  display: block; font-size: 1.32rem; font-weight: 500;
  color: var(--text-soft); margin-bottom: .9rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 1.35rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text); font-size: 1.36rem; font-family: var(--f-sans);
  outline: none; border-radius: var(--radius);
  transition: border-color .26s, box-shadow .26s, background .26s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-pale);
  background: var(--bg);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
.form-field textarea { min-height: 16rem; resize: vertical; }
.form-field select option { background: var(--bg); color: var(--text); }

.form-group { margin-bottom: 3.2rem; }
.form-label {
  display: block; font-size: 1.36rem; font-weight: 500;
  color: var(--text-soft); margin-bottom: 1.2rem;
}
.form-label span {
  margin-left: .8rem; font-size: 1.06rem; color: var(--accent-deep);
  background: var(--accent-pale); padding: .18rem .8rem; border-radius: var(--radius);
}
.form-options { display: flex; flex-wrap: wrap; gap: .9rem; }
.form-option {
  display: inline-flex; align-items: center; gap: .7rem; padding: .9rem 1.6rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; font-size: 1.30rem; color: var(--text-soft);
  background: var(--bg);
  transition: border-color .22s, background .22s, color .22s;
}
.form-option input { display: none; }
.form-option.is-selected, .form-option:hover {
  border-color: var(--accent); background: var(--accent-pale); color: var(--accent-deep);
}

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES — 特定商取引法 / 機密保持規約
══════════════════════════════════════════════════════════ */

/* 特定商取引法テーブル */
.tokushoho-table { margin-bottom: 5.6rem; }
.tokushoho__dl { display: flex; flex-direction: column; }
.tokushoho__row {
  display: grid; grid-template-columns: 22rem 1fr;
  gap: 0; border-bottom: 1px solid var(--line);
}
.tokushoho__row:first-child { border-top: 1px solid var(--line); }
.tokushoho__row dt,
.tokushoho__row dd {
  padding: 2.0rem 2.4rem;
  font-size: 1.36rem; line-height: 1.85;
}
.tokushoho__row dt {
  font-weight: 500; color: var(--text);
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  letter-spacing: .04em;
}
.tokushoho__row dd { color: var(--text-soft); margin: 0; }
.tokushoho__row dd a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.tokushoho__row dd a:hover { color: var(--accent); }

/* 法的文書（NDA） */
.legal-doc { margin-bottom: 5.6rem; }
.legal-doc__lead {
  font-size: 1.36rem; line-height: 2.0; color: var(--text-soft);
  margin-bottom: 4.8rem;
  padding: 2.8rem 3.2rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-doc__article {
  margin-bottom: 4.0rem;
  padding-bottom: 4.0rem;
  border-bottom: 1px solid var(--line);
}
.legal-doc__article:last-of-type { border-bottom: none; }
.legal-doc__article h2 {
  font-family: var(--f-serif);
  font-size: 1.64rem; font-weight: 600;
  color: var(--text); letter-spacing: .08em;
  margin-bottom: 1.8rem;
  padding-bottom: 1.0rem;
  border-bottom: 1px solid var(--line);
}
.legal-doc__article p {
  font-size: 1.36rem; line-height: 2.0;
  color: var(--text-soft); margin-bottom: 1.4rem;
}
.legal-doc__article ol {
  padding-left: 2.4rem; list-style: decimal;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.legal-doc__article ol li {
  font-size: 1.36rem; line-height: 2.0; color: var(--text-soft);
  padding-left: .4rem;
}
.legal-doc__date {
  font-size: 1.26rem; color: var(--muted);
  margin-top: 4.0rem; margin-bottom: 2.4rem;
  letter-spacing: .06em;
}
.legal-doc__sign {
  padding: 2.4rem 2.8rem;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: right;
}
.legal-doc__sign p {
  font-size: 1.26rem; color: var(--text-soft); line-height: 2.0; margin: 0;
}

/* 共通：戻るボタン */
.legal-back {
  margin-top: 4.0rem; padding-top: 4.0rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: center;
}

/* レスポンシブ */
@media (max-width: 640px) {
  .tokushoho__row { grid-template-columns: 1fr; }
  .tokushoho__row dt {
    border-right: none; border-bottom: 1px solid var(--line);
    padding: 1.4rem 1.8rem;
    background: var(--bg-soft);
  }
  .tokushoho__row dd { padding: 1.4rem 1.8rem; }
  .legal-doc__lead { padding: 2.0rem 2.0rem; font-size: 1.28rem; }
  .legal-doc__article h2 { font-size: 1.48rem; }
  .legal-doc__article p,
  .legal-doc__article ol li { font-size: 1.28rem; }
  .legal-doc__sign { text-align: left; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER — light warm theme
══════════════════════════════════════════════════════════ */
.site-footer {
  padding: 72px 0 80px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text-soft);
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent 8%, var(--accent) 38%, var(--accent-lt) 50%, var(--accent) 62%, transparent 92%);
}

/* ── Layout ─── */
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 48px 40px;
  align-items: start;
}

/* ── Brand ─── */
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 2.0rem;
}
.footer-logo__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(26,24,21,.15); border-radius: 50%;
  font-family: var(--f-serif); font-size: 1.06rem; font-weight: 600;
  color: var(--accent-deep); flex-shrink: 0;
}
.footer-logo__text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo__en {
  font-family: var(--f-serif); font-size: 1.52rem;
  letter-spacing: .16em; color: var(--text); font-weight: 400;
}
.footer-logo__ja { font-size: .88rem; color: var(--muted); letter-spacing: .10em; }
.footer-brand__desc {
  margin: 0 0 1.6rem;
  color: var(--text-soft); font-size: 1.26rem; line-height: 1.9;
}
.footer-brand__address {
  font-style: normal;
  font-size: 1.18rem; line-height: 2.0;
  color: var(--muted);
}
.footer-brand__mail {
  color: var(--muted); text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .22s;
}
.footer-brand__mail:hover { color: var(--accent-deep); }

/* ── Nav columns ─── */
.footer-nav__heading {
  font-size: 1.0rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent-deep); font-family: var(--f-serif); margin-bottom: 1.8rem;
  padding-bottom: .8rem; border-bottom: 1px solid var(--line);
}
.footer-nav ul { display: flex; flex-direction: column; gap: .9rem; }
.footer-nav a {
  color: var(--muted); font-size: 1.26rem;
  transition: color .22s, padding-left .22s;
  display: inline-block;
}
.footer-nav a:hover { color: var(--accent-deep); padding-left: 4px; }

/* ── Bottom bar ─── */
.footer-bottom {
  margin-top: 5.6rem; padding-top: 2.8rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem;
}
.footer-bottom__copy { font-size: 1.06rem; color: var(--muted); letter-spacing: .06em; }
.footer-bottom__links { display: flex; gap: 2.4rem; }
.footer-bottom__links a { font-size: 1.06rem; color: var(--muted); transition: color .22s; }
.footer-bottom__links a:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── 1100px: タブレット横 ── */
@media (max-width: 1100px) {
  :root { --sec: 96px; }

  /* レイアウト */
  .section-grid        { grid-template-columns: 1fr; gap: 52px; }
  .section-grid--reverse { direction: ltr; }
  .company-flow        { grid-template-columns: 1fr; gap: 5.2rem; }
  .content-split       { grid-template-columns: 1fr; }
  .content-split--reverse { direction: ltr; }
  .content-split__media { display: none; }

  /* グリッド */
  .feature-grid  { grid-template-columns: repeat(2,1fr); }
  .program-grid  { grid-template-columns: repeat(2,1fr); }
  .news-grid     { grid-template-columns: repeat(2,1fr); }
  .oem-steps     { grid-template-columns: repeat(2,1fr); }
  .strengths-grid { grid-template-columns: 1fr; }

  /* フロー */
  .flow-steps { grid-template-columns: repeat(3,1fr); gap: 2.8rem; }
  .flow-steps::before { display: none; }

  /* ブッキングバー */
  .booking-bar__inner { flex-direction: column; }
  .booking-bar__items { grid-template-columns: repeat(3,1fr); max-width: 100%; margin: 0; }
  .booking-bar__item  { padding: 1.6rem 2.0rem; gap: 1.2rem; }
  .booking-bar__cta   { padding: 1.8rem 2.4rem; min-width: unset; letter-spacing: .12em; }
}

/* ── 820px: タブレット縦・大型スマホ ── */
@media (max-width: 820px) {
  :root { --sec: 72px; --header-h: 64px; }
  html { font-size: 56.25%; }

  /* ヘッダー */
  .site-header { padding: 0 5%; }
  .global-nav,
  .header-cta-contact,
  .header-cta-diagnose { display: none; }
  .hamburger { display: flex; }

  /* ヒーロー */
  .hero { min-height: 88svh; }
  .hero::after { display: none; }
  .hero__content { padding-top: calc(var(--header-h) + 40px); padding-bottom: 100px; }
  .hero__scroll  { display: none; }
  .hero__actions { gap: 12px; }

  /* ブッキングバー */
  .booking-bar__items { grid-template-columns: 1fr; }
  .booking-bar__item  { border-right: none; border-bottom: 1px solid var(--line); }
  .booking-bar__icon  { width: 36px; height: 36px; }

  /* グリッド */
  .feature-grid, .program-grid, .news-grid { grid-template-columns: 1fr; }

  /* フロー */
  .flow-steps { grid-template-columns: repeat(2,1fr); gap: 2.0rem; }

  /* About */
  .about::before { display: none; }
  .about__pillars { gap: 1.8rem; }

  /* CTA */
  .premium-box  { padding: 3.6rem 3.2rem; }
  .cta-band__inner  { flex-direction: column; align-items: flex-start; gap: 3.2rem; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn,
  .cta-band__actions .button-solid,
  .cta-band__actions .button-outline { justify-content: center; width: 100%; }

  /* フッター */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.0rem; }

  /* サブページ */
  .page-hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 64px; }
  .page-hero__inner::before { display: none; }
}

/* ── 640px: スマホ大 ── */
@media (max-width: 640px) {
  :root { --sec: 60px; }
  html  { font-size: 55%; }

  /* コンテナ余白を少し広く */
  .container { width: min(100% - 32px, var(--max-width)); }

  /* ヒーロー */
  .hero__title { gap: 14px; }
  .hero__title-en { font-size: clamp(3.6rem, 11vw, 5.4rem); }
  .hero__title-ja { white-space: normal; font-size: clamp(1.3rem, 3.8vw, 2.0rem); }
  .hero__lead-en  { font-size: 1.32rem; margin-top: 20px; }
  .hero__actions  { flex-direction: column; margin-top: 32px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__dots     { bottom: 2.4rem; }

  /* ブッキングバー */
  .booking-bar__item  { padding: 1.4rem 4%; }
  .booking-bar__value { font-size: 1.36rem; }
  .booking-bar__cta   { padding: 1.6rem 4%; font-size: 1.30rem; }

  /* セクション共通 */
  .section-copy__eyebrow { font-size: 1.0rem; }
  .section-title__en { font-size: clamp(2.2rem, 7vw, 3.6rem); }
  .section-grid  { gap: 36px; }
  .sep           { margin-block: 2.2rem; }
  .section-copy__body { font-size: 1.38rem; margin-top: 2.2rem; }

  /* About */
  .about__pillar { gap: 1.6rem; }
  .about__pillar-num { font-size: 1.8rem; }
  .about__pillar-text strong { font-size: 1.34rem; }
  .about__tags { gap: .5rem; }

  /* Philosophy */
  .philosophy__layout { grid-template-columns: 1fr; }
  .philosophy__left   { min-height: auto; }
  .philosophy__left::after { display: none; }
  .philosophy__label-wrap  { display: none; }
  .philosophy__left-body   { padding: 4.8rem 5% 3.2rem; }
  .philosophy__item        { padding: 2.8rem 5%; }
  .philosophy__reason-text { font-size: 1.48rem; line-height: 2.0; }
  .philosophy__item-ja     { font-size: 1.36rem; }
  .philosophy__value-title { font-size: 1.32rem; }
  .philosophy__value-desc  { font-size: 1.12rem; }

  /* フロー */
  .flow-steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .flow-step  { flex-direction: row; text-align: left; gap: 1.8rem; padding: 0; }
  .flow-step__circle { width: 60px; height: 60px; flex-shrink: 0; }
  .flow-step__num    { font-size: 1.6rem; }
  .flow-step__title  { font-size: 1.28rem; }
  .flow-step__desc   { font-size: 1.14rem; }

  /* 会社概要 */
  .company-flow   { gap: 4.0rem; }
  .company-table th,
  .company-table td { font-size: 1.22rem; padding: 1.2rem 0; }
  .company-table th { width: 32%; }

  /* コンタクト */
  .contact-method { flex-direction: column; gap: 1.4rem; padding: 2.0rem; }
  .contact-method__icon { width: 40px; height: 40px; }

  /* ボタン */
  .btn, .button-solid, .button-outline { height: 50px; padding: 0 22px; font-size: 1.32rem; }
  .btn--primary, .button-solid { width: 100%; justify-content: center; }

  /* CTA */
  .premium-box  { padding: 2.8rem 5%; }
  .cta-band__title { font-size: 2.2rem; }

  /* フッター */
  .footer-inner { grid-template-columns: 1fr; gap: 3.2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .footer-bottom__links { flex-wrap: wrap; gap: 1.6rem; }
  .footer-brand__desc { font-size: 1.22rem; }
  .footer-nav__heading { margin-bottom: 1.2rem; }
  .footer-bottom__copy { font-size: 1.02rem; }

  /* プログラムカード */
  .program-card { padding: 2.4rem 2.0rem 2.6rem; }
  .program-card__title { font-size: 1.64rem; }
  .program-card__desc  { font-size: 1.20rem; }

  /* OEMステップ */
  .oem-steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .oem-step  { padding: 2.6rem 2.0rem; }

  /* サブページヒーロー */
  .page-hero { padding-top: calc(var(--header-h) + 36px); padding-bottom: 52px; }
  .page-hero__title { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .page-hero__desc  { font-size: 1.36rem; margin-top: 2.0rem; }
  .page-hero__label { font-size: .96rem; }
}

/* ── 480px: スマホ標準 ── */
@media (max-width: 480px) {
  html { font-size: 53.5%; }

  .hero__title-en { font-size: clamp(3.2rem, 10.5vw, 4.4rem); }
  .section-title__en { font-size: clamp(2.0rem, 6.5vw, 3.0rem); }

  /* ヒーローコンテンツ */
  .hero__content { padding-left: 5%; padding-right: 5%; }

  /* サービスカルーセル（横並び維持のため細かい調整は各メディアクエリに委ねる） */

  /* 実績カルーセル（横並び維持） */

  /* ブッキングバー */
  .booking-bar__label { font-size: .92rem; }
  .booking-bar__value { font-size: 1.28rem; }
}

/* ══════════════════════════════════════════════════════════
   DIAGNOSIS PAGE — Google Form embed
══════════════════════════════════════════════════════════ */
.diagnosis-section { background: var(--bg-soft); }

/* ステップ説明 */
.diagnosis-intro {
  margin-bottom: 4.8rem;
}
.diagnosis-intro__steps {
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem; flex-wrap: wrap;
}
.diagnosis-intro__step {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 2.4rem 3.2rem;
  min-width: 160px; text-align: center;
  box-shadow: var(--shadow);
  transition: transform .26s var(--ease-out), box-shadow .26s var(--ease-out);
}
.diagnosis-intro__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
.diagnosis-intro__step-num {
  font-family: var(--f-serif); font-size: 2.8rem;
  font-weight: 400; color: var(--accent); line-height: 1;
}
.diagnosis-intro__step-text {
  font-size: 1.32rem; color: var(--text); line-height: 1.7; font-weight: 500;
}
.diagnosis-intro__step-text span {
  display: block; font-size: 1.18rem; color: var(--muted); font-weight: 400;
  margin-top: .3rem;
}
.diagnosis-intro__arrow {
  font-size: 2.0rem; color: var(--accent-lt); flex-shrink: 0;
}

/* Googleフォーム iframe */
.diagnosis-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.diagnosis-form-wrap iframe {
  display: block; width: 100%; border: none;
  min-height: 1200px;
}

/* 注意書き */
.diagnosis-note {
  margin-top: 3.2rem; padding: 2.0rem 2.4rem;
  background: var(--bg-panel); border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-lt);
}
.diagnosis-note p {
  font-size: 1.25rem; color: var(--text-soft); line-height: 2.0; margin: 0;
}

@media (max-width: 560px) {
  .diagnosis-intro__steps { flex-direction: column; gap: 1.2rem; }
  .diagnosis-intro__arrow { transform: rotate(90deg); }
  .diagnosis-intro__step { width: 100%; flex-direction: row; text-align: left; padding: 1.8rem 2.2rem; gap: 1.6rem; }
  .diagnosis-form-wrap iframe { min-height: 1400px; }
}

/* ── Accessibility ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════════════════════════════════════════════════════
   DIFFERENTIATION SECTION — 他社との違い
══════════════════════════════════════════════════════════ */
.diff-section { background: var(--bg-soft); }

/* 比較テーブル */
.diff-table {
  width: 100%;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 4.8rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.05);
}
.diff-table__head {
  display: grid;
  grid-template-columns: 1.6fr 1.8fr 2fr;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.diff-table__col {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-table__col--other { border-left: 1px solid var(--line); }
.diff-table__col--us    { border-left: 1px solid var(--line); background: rgba(183,154,89,.06); }

.diff-table__col-badge {
  display: inline-block;
  font-size: 1.12rem;
  font-weight: 600;
  font-family: var(--f-serif);
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.5;
  padding: .5rem 1.4rem;
  border-radius: 100px;
}
.diff-table__col-badge--other {
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--line);
}
.diff-table__col-badge--us {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
}

.diff-table__row {
  display: grid;
  grid-template-columns: 1.6fr 1.8fr 2fr;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.diff-table__row:last-child { border-bottom: none; }
.diff-table__row:hover { background: rgba(183,154,89,.03); }

.diff-table__item {
  padding: 2rem 2rem;
  font-size: 1.22rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .4rem;
}
.diff-table__item small { font-size: 1.02rem; color: var(--muted); }
.diff-table__item--label {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--text);
  background: var(--bg);
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.diff-table__icon { font-size: 1.6rem; }
.diff-table__item--other {
  color: var(--text-soft);
  border-left: 1px solid var(--line);
}
.diff-table__item--us {
  border-left: 1px solid var(--line);
  background: rgba(183,154,89,.04);
  color: var(--text);
  font-weight: 500;
}
.diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: .2rem;
}
.diff-icon--no  { background: #f3e8e8; color: #b94040; }
.diff-icon--yes { background: rgba(183,154,89,.18); color: var(--accent-deep); }

/* 2列訴求カード */
.diff-appeal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-top: 4.8rem;
}
.diff-appeal__card {
  border-radius: var(--radius-lg, 16px);
  padding: 4rem 3.6rem;
  position: relative;
  overflow: hidden;
}
.diff-appeal__card--hr {
  background: linear-gradient(135deg, #1a1813 0%, #2c2820 100%);
  color: #fff;
}
.diff-appeal__card--biz {
  background: linear-gradient(135deg, var(--accent) 0%, #8c6b2a 100%);
  color: #fff;
}
.diff-appeal__badge {
  display: inline-block;
  font-size: 1.0rem;
  font-family: var(--f-serif);
  letter-spacing: .08em;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: .35rem 1.2rem;
  margin-bottom: 1.6rem;
}
.diff-appeal__title {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 1.6rem;
  color: inherit;
}
.diff-appeal__desc {
  font-size: 1.20rem;
  line-height: 1.85;
  color: rgba(255,255,255,.82);
  margin: 0 0 2.8rem;
}
.diff-appeal__card .btn--primary {
  background: #fff;
  color: var(--accent-deep);
  border-color: transparent;
}
.diff-appeal__card .btn--primary:hover {
  background: var(--accent-pale);
}
.diff-appeal__card .btn--outline {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.diff-appeal__card .btn--outline:hover {
  background: rgba(255,255,255,.12);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .diff-table__head,
  .diff-table__row { grid-template-columns: 1.2fr 1.5fr 1.8fr; }
  .diff-table__item { padding: 1.6rem 1.4rem; font-size: 1.12rem; }
  .diff-appeal { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .diff-table__head { display: none; }
  .diff-table__row {
    grid-template-columns: 1fr;
    border-bottom: 2px solid var(--line);
    padding: 1.6rem;
    gap: .8rem;
  }
  .diff-table__item { border-left: none !important; padding: .8rem 0; }
  .diff-table__item--label {
    font-size: 1.20rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
  }
  .diff-table__item--other::before {
    content: '一般的な人事支援会社：';
    display: block;
    font-size: 1.0rem;
    color: var(--muted);
    margin-bottom: .3rem;
  }
  .diff-table__item--us::before {
    content: 'あなたの人事課：';
    display: block;
    font-size: 1.0rem;
    color: var(--accent-deep);
    font-weight: 600;
    margin-bottom: .3rem;
  }
  .diff-appeal__card { padding: 3.2rem 2.4rem; }
  .diff-appeal__title { font-size: 2.0rem; }
}

/* ══════════════════════════════════════════════════════════
   OEM PARTNERS PAGE
══════════════════════════════════════════════════════════ */

/* パートナーフィルター */
.partner-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  justify-content: center;
}
.partner-filter__btn {
  height: 38px;
  padding: 0 2rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text-soft);
  font-size: 1.22rem;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s;
}
.partner-filter__btn:hover,
.partner-filter__btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* パートナーカードグリッド */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
  transition: transform .36s var(--ease-out), box-shadow .36s var(--ease-out), border-color .3s;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(183,154,89,.40);
}
.partner-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-soft);
  aspect-ratio: 16/9;
  text-decoration: none;
  overflow: hidden;
  transition: background .3s;
}
.partner-card__logo-wrap:hover { background: rgba(183,154,89,.08); }
.partner-card__logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__initial {
  font-family: var(--f-serif);
  font-size: 1.80rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.partner-card__ext-icon {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  opacity: 0;
  transition: opacity .25s;
}
.partner-card__logo-wrap:hover .partner-card__ext-icon { opacity: 1; }
.partner-card__body { padding: 2rem 2rem 2.4rem; }
.partner-card__name {
  font-family: var(--f-serif);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 .8rem;
  line-height: 1.5;
}
.partner-card__area {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
}
.partner-card__area svg { width: 14px; height: 14px; flex-shrink: 0; }
.partner-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.partner-card__tag {
  display: inline-block;
  font-size: 1.0rem;
  font-family: var(--f-serif);
  color: var(--accent-deep);
  background: var(--accent-pale);
  border: 1px solid rgba(183,154,89,.20);
  border-radius: var(--radius);
  padding: .18rem .80rem;
}

/* OEMページ内プレビュー */
.oem-partners-preview { background: var(--bg-soft); }
.partner-grid-preview {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3.2rem 0 3.6rem;
}
.partner-card-sm {
  width: 180px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 1.6rem;
  gap: 1rem;
  transition: transform .32s, box-shadow .32s;
}
.partner-card-sm:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-card-sm__logo--placeholder {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.partner-card-sm__area {
  font-size: 1.12rem;
  color: var(--muted);
  text-align: center;
}
.partner-card-sm--cta {
  background: linear-gradient(135deg, rgba(183,154,89,.08), rgba(183,154,89,.15));
  border-color: rgba(183,154,89,.30);
}
.partner-card-sm__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--accent-deep);
  font-size: 1.12rem;
  font-family: var(--f-serif);
  font-weight: 600;
  text-align: center;
}
.partner-card-sm__plus {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
}
.oem-partners-preview__cta { text-align: center; margin-top: 1.6rem; }

/* パートナー一覧の注記 */
.partner-note {
  text-align: center;
  font-size: 1.18rem;
  color: var(--muted);
  margin-top: 4rem;
  line-height: 1.8;
}
.partner-note a { color: var(--accent-deep); text-decoration: underline; }

/* レスポンシブ */
@media (max-width: 960px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card-sm { width: 140px; }
}

/* ============================================================
   HERO2 — 2カラムヒーロー
   ============================================================ */
.hero2 {
  position: relative;
  min-height: 100svh;
  background: #0a0a0f;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero2__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(193,158,60,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(193,158,60,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero2__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
/* 左：コピー */
.hero2__logo-wrap {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.6rem;
}
.hero2__logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}
.hero2__brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
}
.hero2__h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: var(--f-serif);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 1rem;
}
.hero2__h1-sub {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: .4rem;
}
.hero2__desc {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.hero2__stats {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}
.hero2__stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.hero2__stat-num {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: var(--f-serif);
}
.hero2__stat-plus {
  font-size: .65em;
  font-weight: 700;
}
.hero2__stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.hero2__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero2__cta-main { min-width: 160px; }
.hero2__cta-sub  { min-width: 160px; }
.hero2__cta-oem  { min-width: 160px; }

/* 右：ビジュアル */
.hero2__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero2__visual-star {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero2__visual-img {
  width: min(380px, 90%);
  height: auto;
  filter: drop-shadow(0 0 48px rgba(193,158,60,.5));
  animation: hero2-float 5s ease-in-out infinite;
}
@keyframes hero2-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
.hero2__visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193,158,60,.25);
  animation: hero2-ring 6s linear infinite;
  pointer-events: none;
}
.hero2__visual-ring--1 {
  width: 440px; height: 440px;
  animation-duration: 8s;
}
.hero2__visual-ring--2 {
  width: 540px; height: 540px;
  opacity: .4;
  animation-direction: reverse;
  animation-duration: 12s;
}
@keyframes hero2-ring {
  0%   { transform: rotate(0deg) scale(1); opacity: .25; }
  50%  { transform: rotate(180deg) scale(1.04); opacity: .5; }
  100% { transform: rotate(360deg) scale(1); opacity: .25; }
}
.hero2__badge {
  position: absolute;
  background: linear-gradient(135deg, var(--accent) 0%, #a8832a 100%);
  color: #0a0a0f;
  font-size: 1.05rem;
  font-weight: 800;
  padding: .5rem 1.1rem;
  border-radius: 40px;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(193,158,60,.35);
  white-space: nowrap;
}
.hero2__badge--tl { top:  8%;  left:  4%; }
.hero2__badge--br { bottom: 8%; right: 4%; }

/* btn--gold */
.btn--gold {
  background: linear-gradient(135deg, var(--accent) 0%, #b8962a 100%);
  color: #0a0a0f;
  border: none;
  font-weight: 800;
}
.btn--gold:hover {
  background: linear-gradient(135deg, #e0c060 0%, var(--accent) 100%);
  transform: translateY(-2px);
}
/* btn--outline-white */
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .hero2__inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
  .hero2__visual { min-height: 280px; }
  .hero2__visual-ring--1 { width: 300px; height: 300px; }
  .hero2__visual-ring--2 { width: 380px; height: 380px; }
  .hero2__visual-img { width: min(280px, 80%); }
  .hero2__badge--tl { top: 2%; left: 8%; }
  .hero2__badge--br { bottom: 2%; right: 8%; }
}
@media (max-width: 480px) {
  .hero2__stats { gap: 1.6rem; }
  .hero2__ctas { flex-direction: column; }
  .hero2__cta-main,
  .hero2__cta-sub,
  .hero2__cta-oem { width: 100%; text-align: center; }
}

/* ============================================================
   PAIN SECTION — 経営者の悩み訴求
   ============================================================ */
.pain-section {
  padding: 7rem 0 6rem;
  background: #f7f5f0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin: 3rem 0 3.2rem;
}
.pain-item {
  background: #fff;
  border: 1.5px solid #e8e2d4;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .8rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.pain-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(193,158,60,.15);
}
.pain-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.pain-conclusion {
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.9;
  color: var(--text);
  padding: 2.4rem 2rem;
  background: linear-gradient(135deg, #fff9ed 0%, #fff 100%);
  border: 2px solid var(--accent);
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.pain-conclusion strong { color: var(--accent-deep); font-size: 1.1em; }

@media (max-width: 960px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pain-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DIFF SECTION — 追加スタイル
   ============================================================ */
.diff-emphasis {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 900;
  font-family: var(--f-serif);
  color: var(--accent-deep);
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.2rem;
}

/* ============================================================
   OEM MODEL SECTION
   ============================================================ */
/* ============================================================
   OEM2 SECTION — OEMモデル紹介（全面リデザイン）
   ============================================================ */
.oem2-section {
  padding: 7rem 0 5rem;
  background: #faf8f3;
}

/* ── ヒーロー上段：左テキスト＋右地図 ── */
.oem2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* 左：見出し・本文・バッジ */
.oem2-hero__eyebrow {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.oem2-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.oem2-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 1.4rem;
  letter-spacing: -.01em;
}
.oem2-hero__body {
  font-size: .94rem;
  color: #555;
  line-height: 1.9;
  margin: 0 0 2.2rem;
}
.oem2-hero__body em {
  font-style: normal;
  color: #8b6914;
  font-weight: 700;
}

/* 統計バッジ 4個 */
.oem2-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin-bottom: .8rem;
}
.oem2-stat {
  background: #fff;
  border: 1px solid #e8e3db;
  border-radius: 10px;
  padding: 1rem .9rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.oem2-stat__icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  background: rgba(193,158,60,.08);
  border-radius: 8px;
  padding: .4rem;
}
.oem2-stat__body {
  display: flex;
  flex-direction: column;
  gap: .06rem;
}
.oem2-stat__num {
  font-size: 1.65rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  font-family: var(--f-serif);
}
.oem2-stat__unit {
  font-size: .78rem;
  font-weight: 700;
  color: #444;
  margin-left: .1em;
}
.oem2-stat__label {
  font-size: .72rem;
  font-weight: 700;
  color: #555;
  line-height: 1.35;
}
.oem2-stat__note {
  font-size: .64rem;
  color: #999;
  line-height: 1.3;
}
.oem2-stats__footnote {
  font-size: .72rem;
  color: #aaa;
  margin: .2rem 0 0;
}

/* ── 右：地図ビジュアル ── */
.oem2-hero {
  grid-template-columns: 44% 56%;
  gap: 3rem;
  align-items: stretch;
}

/* 左列：縦方向にコンテンツを詰める */
.oem2-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 吹き出しバナー（右上） */
.oem2-map__callout {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: #1e2a4a;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.55;
  padding: .7rem 1rem;
  border-radius: 6px 6px 0 0;
  letter-spacing: .02em;
}
.oem2-map__callout-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.oem2-map__callout-text {
  margin: 0;
}

/* 地図ビジュアルコンテナ */
.oem2-map__visual {
  position: relative;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  min-height: 520px;
  background: #1a2640;
}

/* 背景写真レイヤー（オフィス写真） */
.oem2-map__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15,25,55,.55) 0%, rgba(8,18,45,.38) 60%, rgba(5,15,40,.42) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=900&q=80') center/cover no-repeat;
  z-index: 0;
}

/* SVG地図 */
.oem2-map__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 1.5rem 0;
}

/* 右下：会議写真カード */
.oem2-map__photo-card {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 42%;
  max-width: 210px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  z-index: 2;
  border: 2px solid rgba(255,255,255,.2);
}
.oem2-map__photo-card-img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* ピンのpulseアニメーション */
@keyframes pin-pulse {
  0%   { opacity: .25; transform: scale(1); }
  50%  { opacity: .08; transform: scale(1.6); }
  100% { opacity: .25; transform: scale(1); }
}
@keyframes pin-pulse2 {
  0%   { opacity: .55; transform: scale(1); }
  50%  { opacity: .2;  transform: scale(1.35); }
  100% { opacity: .55; transform: scale(1); }
}

/* SVG内ピンスタイルはSVG <style>内に定義済み */

/* ピンラベル */
.oem2-pin-label {
  position: absolute;
  z-index: 3;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  background: rgba(30,42,74,.88);
  border: 1px solid rgba(201,168,76,.6);
  border-radius: 6px;
  padding: .38rem .75rem;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: .02em;
  box-shadow: 0 3px 12px rgba(0,0,0,.3);
}
.oem2-pin-label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: #c9a84c;
  border-radius: 50%;
  margin-right: .4em;
  vertical-align: middle;
  box-shadow: 0 0 7px rgba(201,168,76,.9);
}
/* ラベル位置：viewBox 0 0 300 400 に対応 */
/* hokkaido: cx=247.9(82.6%), cy=49.7(12.4%) → 右上 */
.oem2-pin-label--hokkaido { top: 10%;  right: 4%; }
/* tokyo: cx=209.5(69.8%), cy=184.5(46.1%) → 右中 */
.oem2-pin-label--tokyo    { top: 43%;  right: 4%; }
/* osaka: cx=157.8(52.6%), cy=201.7(50.4%) → 右中下 */
.oem2-pin-label--osaka    { top: 49%;  left: 47%; }
/* fukuoka: cx=96.5(32.2%), cy=220.7(55.2%) → 左中 */
.oem2-pin-label--fukuoka  { top: 54%;  left: 3%; }

/* ── パートナーカード ── */
.oem2-cards-head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: .5rem;
}
.oem2-cards-head__title {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-family: var(--f-serif);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 .5rem;
  letter-spacing: -.01em;
}
.oem2-cards-head__date {
  font-size: .8em;
  font-weight: 400;
  color: #999;
}

.oem2-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}


.oem2-card {
  background: #fff;
  border: 1px solid #e8e3db;
  border-radius: 14px;
  padding: 2rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 3px 16px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
}
.oem2-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

/* カード上部：ロゴ＋情報 */
.oem2-card__top {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.oem2-card__logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oem2-card__logo--text {
  background: #1e2a4a;
  border-radius: 10px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
}
/* 画像ロゴ用 */
.oem2-card__logo--img {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.oem2-card__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* 野村周平 頭文字ロゴ */
.oem2-card__logo--nomura {
  background: linear-gradient(135deg, #1e4a8a 0%, #2d6fc4 100%);
  border-radius: 10px;
  flex-direction: column;
  gap: 0;
}
.oem2-card__logo-initials {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.oem2-card__logo-initials span {
  color: #f0c040;
}
.oem2-card__logo-sub {
  font-size: .58rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  letter-spacing: .06em;
  margin-top: .15rem;
}
.oem2-card__info {
  flex: 1;
  min-width: 0;
}
.oem2-card__new-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .15rem .5rem;
  border-radius: 3px;
  letter-spacing: .06em;
  margin-bottom: .35rem;
}
.oem2-card__name {
  font-size: 1.08rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 .4rem;
  line-height: 1.4;
}
.oem2-card__area {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  padding: .18rem .65rem;
  border-radius: 20px;
  background: #1e2a4a;
  color: #fff;
  letter-spacing: .04em;
}
.oem2-card__area--hokkaido { background: #2d6aa0; }
.oem2-card__area--chiba    { background: #2d8a3e; }
.oem2-card__area--hiroshima{ background: #a03030; }

/* 代表者名 */
.oem2-card__rep {
  font-size: .95rem;
  color: #555;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0ede6;
  line-height: 1.6;
}

/* 各セクション */
.oem2-card__section {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.oem2-card__section-title {
  font-size: .88rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: none;
  letter-spacing: .04em;
  margin: 0;
  padding-left: .6rem;
  border-left: 3px solid var(--accent);
  line-height: 1.4;
}
.oem2-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.oem2-card__tags li {
  font-size: .85rem;
  font-weight: 600;
  background: #f0ede6;
  color: #555;
  padding: .28rem .7rem;
  border-radius: 20px;
}
.oem2-card__text {
  font-size: .95rem;
  color: #444;
  line-height: 1.75;
  margin: 0;
}
.oem2-card__text--muted {
  color: #aaa;
  font-style: italic;
}
.oem2-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.oem2-card__bullets li {
  font-size: .93rem;
  color: #444;
  line-height: 1.75;
  padding-left: 1rem;
  position: relative;
}
.oem2-card__bullets li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

/* CTAボタン */
.oem2-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: auto;
  background: #1e2a4a;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  padding: 1rem 1.2rem;
  border-radius: 7px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: .04em;
}
.oem2-card__btn:hover {
  background: #2a3d6a;
  transform: translateY(-1px);
}
.oem2-card__url {
  font-size: .78rem;
  color: #bbb;
  text-align: center;
  margin: -.4rem 0 0;
  word-break: break-all;
}

/* ── 下部CTA ── */
.oem2-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #fff;
  border: 1px solid #e8e3db;
  border-radius: 14px;
  padding: 2rem 2.6rem;
  box-shadow: 0 3px 16px rgba(0,0,0,.07);
}
.oem2-cta__left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.oem2-cta__icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  background: rgba(193,158,60,.1);
  padding: .7rem;
  border-radius: 50%;
}
.oem2-cta__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 .35rem;
  line-height: 1.4;
}
.oem2-cta__sub {
  font-size: .88rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.oem2-cta__btn {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #1e2a4a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
  letter-spacing: .03em;
  box-shadow: 0 4px 14px rgba(30,42,74,.3);
}
.oem2-cta__btn:hover {
  background: #2a3d6a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,42,74,.35);
}

/* ── レスポンシブ ── */
@media (min-width: 1280px) {
  .oem2-map__svg { max-width: 460px; }
  .oem2-map__visual { min-height: 560px; }
}

@media (max-width: 1280px) {
  .oem2-hero { grid-template-columns: 42% 58%; gap: 2.5rem; }
  .oem2-stats { grid-template-columns: repeat(2, 1fr); }
  .oem2-cards { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}

@media (max-width: 1100px) {
  .oem2-cards { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}

@media (max-width: 860px) {
  .oem2-hero { grid-template-columns: 1fr; gap: 2rem; }
  .oem2-map__visual { min-height: 360px; }
  .oem2-map__svg { max-width: 340px; padding: 1rem 0; }
  .oem2-pin-label { font-size: .78rem; padding: .3rem .55rem; }
  .oem2-map__photo-card { width: 38%; }
  .oem2-cta { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .oem2-cta__btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .oem2-stats { grid-template-columns: repeat(2, 1fr); }
  .oem2-cards { grid-template-columns: 1fr; }
  .oem2-stat__num { font-size: 1.3rem; }
  .oem2-pin-label { font-size: .68rem; padding: .2rem .4rem; }
  .oem2-pin-label::before { width: 6px; height: 6px; }
  .oem2-map__svg { max-width: 280px; padding: .75rem 0; }
  .oem2-map__photo-card { display: none; }
  .oem2-map__visual { min-height: 300px; }
}



/* ============================================================
   SERVICE4 SECTION — 4カテゴリサービスグリッド
   ============================================================ */
.service4-section {
  padding: 7rem 0;
  background: #fff;
}
.service4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service4-card {
  background: #faf9f6;
  border: 1.5px solid #e8e2d4;
  border-top: 4px solid var(--accent);
  border-radius: 12px;
  padding: 2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.service4-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(193,158,60,.15);
}
.service4-card__icon {
  font-size: 2.4rem;
  line-height: 1;
}
.service4-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--f-serif);
  margin: 0;
}
.service4-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.service4-card__list li {
  font-size: 1rem;
  color: var(--muted);
  padding: .35rem 0;
  border-bottom: 1px solid #ede9df;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service4-card__list li::before {
  content: '▸';
  color: var(--accent);
  font-size: .85rem;
  flex-shrink: 0;
}
.service4-card__list li:last-child { border-bottom: none; }
.service4-card__link {
  display: inline-block;
  margin-top: .8rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-deep);
  text-decoration: none;
  transition: color .2s;
}
.service4-card__link:hover { color: var(--accent); }

@media (max-width: 960px) { .service4-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .service4-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DIAG SECTION — 組織可視化 + 診断CTA 融合版
   ============================================================ */
.diag-section {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #faf8f4 0%, #f5f0e8 55%, #faf8f4 100%);
}

/* ── 上段ヒーロー ── */
.diag-hero {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.diag-hero__left { display: flex; flex-direction: column; gap: 0; }

.diag-hero__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent);
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.diag-hero__title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}
.diag-hero__catch {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.diag-hero__body {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.85;
  margin: 0 0 1.8rem;
}

/* 3統計バッジ */
.diag-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}
.diag-stat {
  background: #fff;
  border: 1px solid rgba(193,158,60,.18);
  border-radius: 12px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transition: box-shadow .25s;
}
.diag-stat:hover { box-shadow: 0 4px 16px rgba(193,158,60,.14); }
.diag-stat__icon {
  width: 32px; height: 32px;
  background: rgba(193,158,60,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .3rem;
}
.diag-stat__label {
  font-size: .65rem;
  color: #9ca3af;
  font-weight: 600;
  line-height: 1.3;
}
.diag-stat__num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.diag-stat__num--text { font-size: 1.2rem; }
.diag-stat__unit { font-size: .75rem; font-weight: 600; color: var(--navy); }
.diag-stat__sub {
  font-size: .62rem;
  color: #6b7280;
  line-height: 1.4;
}

/* CTAボタン */
.diag-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1.5px solid rgba(193,158,60,.4);
  border-radius: 10px;
  padding: .9rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: background .25s, box-shadow .25s, transform .25s;
  align-self: flex-start;
}
.diag-hero__cta:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(30,42,74,.2);
  transform: translateY(-2px);
}

/* ── ダッシュボードモック（右列） ── */
.diag-hero__right {}
.diag-mock {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.diag-mock__photo {
  position: relative;
  aspect-ratio: 4 / 3;
}
.diag-mock__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.diag-mock__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,25,55,.45) 0%, rgba(8,18,45,.30) 60%, rgba(5,15,40,.40) 100%);
}
.diag-mock__cards {
  position: absolute;
  bottom: 16px; left: 12px; right: 12px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.95fr;
  gap: 8px;
}
.diag-mock-card {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 10px 10px 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.diag-mock-card__title {
  font-size: .62rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .4rem;
  letter-spacing: .03em;
}
/* レーダーチャート */
.diag-mock-card--survey .diag-mock-card__radar {
  width: 100%; height: auto;
}
/* ドーナツ */
.diag-mock-card__donut-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.diag-mock-card__legend {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.diag-mock-card__legend li {
  font-size: .52rem; color: #374151;
  display: flex; align-items: center; gap: 3px;
}
.diag-mock-card__legend span {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
}
/* 課題サマリー */
.diag-mock-card__issues {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.diag-mock-card__issues li {
  font-size: .58rem;
  color: #374151;
  display: flex; align-items: flex-start; gap: 4px;
  line-height: 1.45;
}

/* ── 中段：診断でわかること ＋ YouTube ── */
.diag-mid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(193,158,60,.15);
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 72px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.diag-mid__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  margin: 0 0 .5rem;
}
.diag-mid__title {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1.4rem;
  line-height: 1.3;
}
.diag-know-list {
  list-style: none; padding: 0; margin: 0 0 1.8rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.diag-know-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .9rem;
  background: rgba(193,158,60,.04);
  border: 1px solid rgba(193,158,60,.15);
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.diag-know-item:hover {
  background: rgba(193,158,60,.09);
  border-color: rgba(193,158,60,.35);
}
.diag-know-item svg { flex-shrink: 0; }
.diag-know-item__text {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.diag-mid__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(193,158,60,.35);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.diag-mid__cta:hover {
  background: #b8940d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,158,60,.45);
}

/* YouTube */
.diag-mid__right { display: flex; flex-direction: column; }
.diag-mid__video-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: .7rem;
}
.diag-mid__iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.diag-mid__iframe-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── 下段：5ステップ ── */
.diag-steps {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 44px 40px;
}
.diag-steps__title {
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 2rem;
  letter-spacing: .02em;
}
.diag-steps__flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.diag-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .55rem;
  padding: 0 8px;
}
.diag-step__num {
  font-size: .68rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .12em;
}
.diag-step__icon {
  width: 52px; height: 52px;
  background: rgba(193,158,60,.1);
  border: 1px solid rgba(193,158,60,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.diag-step__name {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.diag-step__desc {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0;
}
.diag-step__arrow {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: rgba(193,158,60,.5);
  padding-top: 28px;
  line-height: 1;
}

/* ── レスポンシブ ── */
@media (max-width: 1100px) {
  .diag-hero { grid-template-columns: 1fr 1fr; gap: 36px; }
  .diag-mock__cards { grid-template-columns: 1fr 1fr; }
  .diag-mock-card--summary { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .diag-section { padding: 64px 0 56px; }
  .diag-hero { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .diag-stats { grid-template-columns: repeat(3,1fr); }
  .diag-mid { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; margin-bottom: 48px; }
  .diag-steps { padding: 36px 24px 32px; }
  .diag-steps__flow { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .diag-step { flex: 0 0 40%; }
  .diag-step__arrow { display: none; }
}
@media (max-width: 540px) {
  .diag-stats { grid-template-columns: 1fr 1fr; }
  .diag-stat:last-child { grid-column: 1 / -1; }
  .diag-step { flex: 0 0 80%; }
  .diag-mid { padding: 22px 18px; }
}

/* ============================================================
   CEO SECTION — 代表メッセージ
   ============================================================ */
.ceo-section {
  background: #f5f0e8;
  overflow: hidden;
}

/* ── 左右分割コンテナ ── */
.ceo-split {
  display: grid;
  grid-template-columns: 460px 1fr;
  min-height: 680px;
}

/* ═══════════════════════════════
   左カラム：写真＋縦書き＋プロフィール
   ═══════════════════════════════ */
.ceo-split__left {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #e8e0d0 0%, #d4c9b0 100%);
}

/* 縦書きコピー（左端） */
.ceo__vertical-copy {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  color: #c9a84c;
  opacity: .75;
  white-space: nowrap;
  z-index: 3;
  margin: 0;
}

/* CEO写真 */
.ceo__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(160deg, #d4c9b0 0%, #b8a888 100%);
}

.ceo__photo {
  display: block;
  width: 88%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
}

/* プロフィールボックス（写真左下オーバーレイ） */
.ceo__profile-box {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(20, 22, 32, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 3px solid #c9a84c;
  padding: 14px 20px 16px;
  z-index: 4;
  min-width: 180px;
}

.ceo__profile-role {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: #c9a84c;
  margin: 0 0 4px;
}

.ceo__profile-company {
  font-size: .74rem;
  color: #aab0c0;
  margin: 0 0 2px;
}

.ceo__profile-title {
  font-size: .74rem;
  color: #aab0c0;
  margin: 0 0 6px;
}

.ceo__profile-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: .06em;
}

/* ═══════════════════════════════
   右カラム：メッセージ本文
   ═══════════════════════════════ */
.ceo-split__right {
  background: #f5f0e8;
  padding: 64px 60px 0;
  display: flex;
  flex-direction: column;
}

/* アイレット */
.ceo__eyebrow {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: #c9a84c;
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* 大見出し */
.ceo__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1408;
  line-height: 1.35;
  margin: 0 0 18px;
  letter-spacing: .02em;
}

/* 見出し下ゴールドライン */
.ceo__divider {
  width: 48px;
  height: 3px;
  background: #c9a84c;
  border-radius: 2px;
  margin-bottom: 28px;
}

/* 本文 */
.ceo__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.ceo__body p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #3d3528;
  margin: 0;
}

.ceo__body em {
  font-style: normal;
  font-weight: 700;
  color: #1a1408;
}

.ceo__em-gold {
  color: #b8892a !important;
  font-weight: 700;
}

/* ── 5アイコンカード ── */
.ceo__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid #ddd5c4;
  border-left: 1px solid #ddd5c4;
  margin: 0 -60px 0;
}

.ceo__card {
  padding: 20px 14px 22px;
  border-right: 1px solid #ddd5c4;
  border-bottom: 1px solid #ddd5c4;
  background: #ffffff;
  text-align: center;
  transition: background .2s;
}

.ceo__card:hover {
  background: #fffdf7;
}

.ceo__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  height: 40px;
  margin-bottom: 10px;
}

.ceo__card-title {
  font-size: 1.0rem;
  font-weight: 700;
  color: #1a1408;
  line-height: 1.4;
  margin: 0 0 8px;
}

.ceo__card-desc {
  font-size: .88rem;
  color: #6b5e4a;
  line-height: 1.65;
  margin: 0;
}

/* ── 最下部キャッチコピーバー ── */
.ceo__catch-bar {
  background: #f0ebe0;
  border-top: 1px solid #ddd5c4;
  padding: 22px 60px;
  text-align: center;
}

.ceo__catch-text {
  font-size: 1.25rem;
  color: #3d3528;
  margin: 0;
  letter-spacing: .04em;
}

/* ── sp-only ヘルパー ── */
.sp-only { display: none; }

/* ═══════════════════════════════
   レスポンシブ
   ═══════════════════════════════ */
@media (max-width: 1100px) {
  .ceo-split {
    grid-template-columns: 380px 1fr;
  }
  .ceo__heading { font-size: 2.4rem; }
  .ceo-split__right { padding: 48px 40px 0; }
  .ceo__cards { margin: 0 -40px 0; }
  .ceo__catch-bar { padding: 20px 40px; }
}

@media (max-width: 860px) {
  .ceo-split {
    grid-template-columns: 1fr;
  }

  .ceo-split__left {
    min-height: 420px;
  }

  .ceo__photo-wrap {
    min-height: 420px;
  }

  .ceo__photo {
    width: 70%;
    object-position: top center;
  }

  .ceo__vertical-copy {
    display: none;
  }

  .ceo-split__right {
    padding: 40px 28px 0;
  }

  .ceo__heading {
    font-size: 2.0rem;
  }

  .sp-only { display: inline; }

  .ceo__cards {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 -28px 0;
  }

  .ceo__catch-bar {
    padding: 18px 28px;
  }
}

@media (max-width: 540px) {
  .ceo-split__left {
    min-height: 340px;
  }

  .ceo__photo-wrap {
    min-height: 340px;
  }

  .ceo__photo {
    width: 80%;
  }

  .ceo__profile-box {
    bottom: 16px;
    left: 16px;
    padding: 10px 14px 12px;
  }

  .ceo__profile-name {
    font-size: 1.3rem;
  }

  .ceo__heading {
    font-size: 1.7rem;
  }

  .ceo__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ceo__card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .ceo__catch-text {
    font-size: .88rem;
  }
}

/* ============================================================
   FAQ SECTION — アコーディオン
   ============================================================ */
.faq-section {
  padding: 7rem 0;
  background: #fff;
}
.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1.5px solid #e8e2d4;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(193,158,60,.15);
}
.faq-item__q {
  list-style: none;
  padding: 1.3rem 1.6rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
  background: #faf9f6;
  transition: background .2s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--accent);
  color: #0a0a0f;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.faq-item__q::after {
  content: '+';
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__q::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-item[open] .faq-item__q { background: #fff9ed; }
.faq-item__a {
  padding: 1.2rem 1.6rem 1.4rem 4.2rem;
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid #f0ebe0;
  animation: faq-open .2s ease;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .faq-item__q { font-size: 1.2rem; padding: 1.1rem 1.2rem; }
  .faq-item__a { font-size: 1.1rem; padding: 1rem 1.2rem 1.2rem 1.2rem; }
}

/* ============================================================
   FINAL CTA SECTION — 最終CTA
   ============================================================ */
.final-cta-section {
  position: relative;
  padding: 8rem 0;
  background: #0a0a0f;
  text-align: center;
  overflow: hidden;
}
.final-cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(193,158,60,.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.final-cta-section__logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(193,158,60,.6));
  animation: hero2-float 4s ease-in-out infinite;
}
.final-cta-section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #fff;
  line-height: 1.55;
  margin: 0;
}
.final-cta-section__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.final-cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: .8rem;
}
.final-cta-section__btn { min-width: 180px; }

@media (max-width: 560px) {
  .final-cta-section__btns { flex-direction: column; align-items: center; }
  .final-cta-section__btn  { width: 100%; max-width: 320px; }
}

/* ============================================================
   HERO-PRO — 参照デザイン準拠（実写写真×左テキスト×ゴールド）
   ============================================================ */
.hero-pro {
  position: relative;
  min-height: 100svh;
  background: #0c0c10;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* ── 右側写真エリア ── */
.hero-pro__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-pro__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.72) saturate(.85);
}
/* 左から右へのグラデーションオーバーレイ（左は真っ黒、右は透明） */
.hero-pro__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #0c0c10 0%,
    #0c0c10 38%,
    rgba(12,12,16,.82) 52%,
    rgba(12,12,16,.3) 70%,
    transparent 100%
  );
}

/* ── 左側コンテンツ ── */
.hero-pro__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  padding: 7rem 4rem 3rem 6%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 小見出し（金色・細明朝） */
.hero-pro__eyebrow {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-family: var(--f-serif);
  font-weight: 500;
  color: var(--accent);
  line-height: 1.7;
  margin: 0 0 .6rem;
  letter-spacing: .04em;
}

/* メイン見出し */
.hero-pro__h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.2rem;
  letter-spacing: -.01em;
}

/* タグライン帯 */
.hero-pro__tagline {
  display: inline-block;
  background: linear-gradient(90deg, #c9a84c 0%, #e8d07a 50%, #c9a84c 100%);
  color: #1a120a;
  font-size: clamp(.9rem, 1.2vw, 1.1rem);
  font-weight: 800;
  padding: .45rem 1.4rem;
  margin-bottom: 1.6rem;
  letter-spacing: .06em;
  border-radius: 2px;
}

/* 説明文 */
.hero-pro__desc {
  font-size: clamp(.95rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.95;
  margin: 0 0 1.8rem;
}

/* ── 特徴バッジ 4個横並び ── */
.hero-pro__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  margin-bottom: 1.8rem;
}
.hero-pro__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .9rem .5rem .8rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(193,158,60,.5);
  border-radius: 8px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.hero-pro__badge:hover {
  background: rgba(193,158,60,.1);
  border-color: var(--accent);
}
.hero-pro__badge-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-pro__badge-text {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  font-weight: 600;
}

/* ── CTA ボタン 3本 ── */
.hero-pro__ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hero-pro__cta {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.6rem;
  font-size: clamp(.92rem, 1.1vw, 1.05rem);
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: filter .2s, transform .15s;
  border: 1.5px solid transparent;
}
.hero-pro__cta:hover { transform: translateX(4px); filter: brightness(1.1); }
.hero-pro__cta-icon { flex-shrink: 0; }
.hero-pro__cta-arrow { margin-left: auto; font-size: 1.1rem; flex-shrink: 0; }

/* ゴールドCTA（主） */
.hero-pro__cta--primary {
  background: linear-gradient(90deg, #c9a84c 0%, #e8d07a 50%, #c9a84c 100%);
  color: #1a120a;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(193,158,60,.35);
}
/* ダーク枠CTA（副） */
.hero-pro__cta--dark {
  background: rgba(255,255,255,.05);
  color: #fff;
  border-color: rgba(193,158,60,.55);
}
.hero-pro__cta--dark:hover { background: rgba(193,158,60,.12); }

/* ── 実績数字帯 ── */
.hero-pro__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(193,158,60,.25);
  flex-wrap: wrap;
}
.hero-pro__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .4rem 1.2rem .4rem 0;
  gap: .1rem;
  min-width: 80px;
}
.hero-pro__stat--domains {
  min-width: 0;
  align-items: flex-start;
  padding-left: 1.2rem;
}
.hero-pro__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(193,158,60,.3);
  flex-shrink: 0;
  margin: 0 .4rem;
}
.hero-pro__stat-laurel {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero-pro__stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  white-space: nowrap;
}
.hero-pro__stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: var(--f-serif);
}
.hero-pro__stat-num small {
  font-size: .55em;
  font-weight: 700;
}
.hero-pro__stat-suffix {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.hero-pro__stat-domains-text {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}

/* ── レスポンシブ ── */
@media (max-width: 1100px) {
  .hero-pro__content {
    max-width: 580px;
    padding: 7rem 3rem 3rem 4%;
  }
  .hero-pro__h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
}
@media (max-width: 860px) {
  .hero-pro {
    flex-direction: column;
    min-height: auto;
  }
  .hero-pro__photo {
    position: relative;
    height: 260px;
  }
  .hero-pro__photo-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(12,12,16,.7) 70%,
      #0c0c10 100%
    );
  }
  .hero-pro__content {
    max-width: 100%;
    padding: 2rem 5% 3rem;
  }
  .hero-pro__badges { grid-template-columns: repeat(2, 1fr); }
  .hero-pro__ctas { flex-direction: column; }
  .hero-pro__stats { gap: .4rem; }
  .hero-pro__stat { min-width: 70px; padding: .4rem .8rem .4rem 0; }
}
@media (max-width: 560px) {
  .hero-pro__badges { grid-template-columns: repeat(2, 1fr); }
  .hero-pro__stat-div { display: none; }
  .hero-pro__stat { min-width: 80px; }
  .hero-pro__stats { gap: .8rem; border-top: 1px solid rgba(193,158,60,.2); }
  .hero-pro__stat--domains { padding-left: 0; }
}

/* ============================================================
   PROB SECTION — 課題カード（参照画像準拠）
   ============================================================ */
.prob-section {
  padding: 7rem 0 6rem;
  background: #f8f7f4;
}

/* タイトル */
.prob-head {
  text-align: center;
  margin-bottom: 3.6rem;
}
.prob-head__label {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--accent);
  margin: 0 0 .6rem;
  font-family: 'Georgia', var(--f-serif);
}
.prob-head__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.prob-head__line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, #e8d07a);
  margin: 0 auto;
  border-radius: 2px;
}

/* 4×2 グリッド */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 3.2rem;
}

/* カード */
.prob-card {
  background: #fff;
  border: 1px solid #e2ddd5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

/* カード上部（アイコン＋テキスト） */
.prob-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.4rem 1rem .8rem;
  background: #fff;
}
.prob-card__icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.prob-card__text {
  font-size: .92rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* カード下部（モノクロ写真） */
.prob-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.prob-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) brightness(.95);
  transition: transform .4s ease, filter .4s ease;
  display: block;
}
.prob-card:hover .prob-card__photo img {
  transform: scale(1.04);
  filter: contrast(1.05) brightness(1);
}

/* 結論エリア */
.prob-conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.2rem;
}
.prob-conclusion__arrow {
  display: flex;
  justify-content: center;
  line-height: 0;
  filter: drop-shadow(0 2px 6px rgba(193,158,60,.3));
}
.prob-conclusion__text {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .3rem .5rem;
  margin: 0;
}
.prob-conclusion__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .3rem .9rem;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 900;
  border-radius: 4px;
  line-height: 1;
}
.prob-conclusion__tag--dark {
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #1a1a1a;
}
.prob-conclusion__tag--gold {
  background: linear-gradient(90deg, #c9a84c, #e8d07a);
  color: #1a120a;
  border: 2px solid #c9a84c;
}
.prob-conclusion__sub {
  font-size: clamp(.92rem, 1.2vw, 1.05rem);
  color: #555;
  text-align: center;
  line-height: 1.85;
  margin: 0;
  max-width: 640px;
}
.prob-conclusion__chevron {
  color: var(--accent);
  opacity: .7;
  display: flex;
  justify-content: center;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .prob-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
@media (max-width: 800px) {
  .prob-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 480px) {
  .prob-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .prob-card__top { padding: 1rem .8rem .6rem; }
  .prob-conclusion__text { font-size: 1.05rem; }
  .prob-conclusion__tag { font-size: 1.05rem; padding: .25rem .7rem; }
}

/* ============================================================
   WHY SECTION — なぜ成果につながるのか（参照画像準拠）
   ============================================================ */
.why-section {
  padding: 7rem 0 7rem;
  background: #fff;
}

/* タイトル */
.why-head {
  text-align: center;
  margin-bottom: 3rem;
}
.why-head__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 .9rem;
  line-height: 1.3;
}
.why-head__sub {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: #555;
  line-height: 1.85;
  margin: 0;
}

/* 3カラムレイアウト */
.why-cols {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1.2fr;
  grid-template-rows: auto;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid #ddd8ce;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* 列ヘッダー */
.why-col__head {
  padding: .9rem 1rem;
  font-size: clamp(.88rem, 1.1vw, 1rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: .04em;
}
.why-col__head--gray {
  background: #6b7280;
  color: #fff;
}
.why-col__head--gold {
  background: linear-gradient(90deg, #b8922a 0%, #d4a93c 50%, #b8922a 100%);
  color: #fff;
}
.why-col__head--navy {
  background: #1e2a4a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  flex-wrap: wrap;
}
.why-col__head-num {
  font-style: normal;
  color: var(--accent);
  font-size: 1.4em;
  font-weight: 900;
}

/* 左列 */
.why-col--left {
  border-right: 1.5px solid #ddd8ce;
  background: #fafaf8;
  display: flex;
  flex-direction: column;
}
.why-col--left .why-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.why-col--left .why-col__list > li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.1rem;
  font-size: .88rem;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #e8e3db;
  text-align: center;
}
.why-col--left .why-col__list > li:last-child { border-bottom: none; }

/* 中央列 */
.why-col--center {
  border-right: 1.5px solid #ddd8ce;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.why-col__list--center {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.why-col__list--center > li {
  flex: 1;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e8e3db;
  min-height: 72px;
}
.why-col__list--center > li:last-child { border-bottom: none; }

/* バッジ（ネイビーアイコン帯） */
.why-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .7rem .8rem;
  background: #1e2a4a;
  width: 72px;
  min-width: 72px;
  max-width: 72px;
  flex-shrink: 0;
}
.why-badge__icon { color: var(--accent); display: flex; }
.why-badge__label {
  font-size: .68rem;
  color: rgba(255,255,255,.8);
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* 中央テキスト */
.why-col__item-text {
  padding: .7rem 1rem;
  font-size: .88rem;
  color: #1a1a1a;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.why-col__item-text strong {
  color: #8b6914;
  display: block;
  font-weight: 800;
  margin-bottom: .15rem;
  line-height: 1.4;
}

/* 右列：5つの強み */
.why-col--right {
  background: #fafaf8;
  display: flex;
  flex-direction: column;
}
.why-strengths {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.why-strength {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid #e8e3db;
}
.why-strength:last-child { border-bottom: none; }
.why-strength__icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-strength__body { flex: 1; }
.why-strength__title {
  font-size: .9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 .2rem;
  line-height: 1.4;
}
.why-strength__desc {
  font-size: .78rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ── 下部バナー ── */
.why-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 260px;
  gap: 0;
  align-items: stretch;
  background: #12192e;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  margin-top: 0;
}
.why-banner__left {
  padding: 2.4rem 2rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.why-banner__catch {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
.why-banner__sub {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
  border-left: 3px solid var(--accent);
  padding-left: .8rem;
  line-height: 1.6;
}
.why-banner__checks {
  list-style: none;
  padding: 2.4rem 1.6rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .9rem;
}
.why-banner__checks li {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.why-banner__checks li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: .05rem;
}
.why-banner__photo {
  overflow: hidden;
  position: relative;
}
.why-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(.7) saturate(.8);
  display: block;
  position: absolute;
  top: 0; left: 0;
}

/* ── レスポンシブ ── */

/* タブレット */
@media (max-width: 1024px) {
  .why-cols {
    grid-template-columns: 1fr 1.4fr 1fr;
  }
  .why-banner {
    grid-template-columns: 1fr 1fr;
  }
  .why-banner__photo {
    grid-column: 1 / -1;
    height: 200px;
    position: relative;
  }
  .why-banner__photo img {
    position: absolute;
    height: 100%;
  }
}

/* スマホ：1カラム縦積み */
@media (max-width: 768px) {
  .why-cols {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }
  .why-col--left {
    border-right: none;
    border-bottom: 2px solid #ddd8ce;
  }
  .why-col--center {
    border-right: none;
    border-bottom: 2px solid #ddd8ce;
  }

  /* 左列：auto高さに戻す */
  .why-col--left .why-col__list > li {
    flex: none;
    padding: .7rem 1rem;
    font-size: .85rem;
  }

  /* 中央列：auto高さに戻す */
  .why-col__list--center > li {
    flex: none;
    min-height: 60px;
  }
  .why-badge { min-width: 56px; width: 62px; max-width: 62px; padding: .5rem .6rem; }
  .why-badge__label { font-size: .62rem; }
  .why-col__item-text { font-size: .84rem; padding: .6rem .8rem; }

  /* 右列：auto高さに戻す */
  .why-strength { flex: none; padding: .8rem 1rem; align-items: flex-start; }
  .why-strength__title { font-size: .88rem; }
  .why-strength__desc { font-size: .76rem; }

  /* バナー */
  .why-banner {
    grid-template-columns: 1fr;
    border-radius: 0 0 10px 10px;
  }
  .why-banner__left { padding: 1.8rem 1.4rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .why-banner__checks { padding: 1.4rem; }
  .why-banner__photo {
    grid-column: auto;
    height: 200px;
    position: relative;
  }
  .why-banner__photo img {
    position: absolute;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .why-head__title { font-size: 1.45rem; }
  .why-banner__catch { font-size: 1.15rem; }
  .why-col__item-text { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   CASES SECTION（支援実績）
══════════════════════════════════════════════════════════ */
.cases-section {
  padding: 100px 0 80px;
  background: linear-gradient(170deg, #faf8f4 0%, #f5f0e8 50%, #faf8f4 100%);
}

/* ── ヘッダー行：左タイトル ＋ 右4バッジ ── */
.cases-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.cases-header__left {
  flex: 0 0 auto;
  max-width: 340px;
}
.cases-header__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  margin: 0 0 .75rem;
  text-transform: uppercase;
}
.cases-header__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}
.cases-header__sub {
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
}

/* 右：4バッジグループ */
.cases-header__badges {
  display: flex;
  gap: 14px;
  flex: 1 1 0;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 8px;
}
.cases-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1px solid rgba(193,158,60,.2);
  border-radius: 12px;
  padding: 18px 14px;
  min-width: 110px;
  max-width: 130px;
  flex: 1 1 100px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.cases-badge:hover {
  box-shadow: 0 6px 20px rgba(193,158,60,.15);
  transform: translateY(-2px);
}
.cases-badge__icon {
  width: 44px; height: 44px;
  background: rgba(193,158,60,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.cases-badge__text {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
  margin: 0;
}

/* ── カードグリッド 6列 ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

/* ── 個別カード ── */
.cs-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.cs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

/* 写真エリア */
.cs-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.cs-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.cs-card:hover .cs-card__img { transform: scale(1.06); }

/* 丸アイコンバッジ（写真中央下） */
.cs-card__icon-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #c9a227, #e8c84a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1c1a16;
  box-shadow: 0 3px 10px rgba(193,158,60,.45);
  z-index: 1;
  border: 2.5px solid #fff;
}

/* カード本文エリア */
.cs-card__body {
  padding: 22px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.cs-card__name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}
.cs-card__size {
  font-size: .72rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
}
.cs-card__tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: .2rem 0 0;
  line-height: 1.4;
}
.cs-card__desc {
  font-size: .76rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* 実績ボックス */
.cs-card__results {
  margin-top: .6rem;
  border: 1px solid rgba(193,158,60,.3);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(193,158,60,.04);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.cs-card__result {
  font-size: .75rem;
  color: #374151;
  line-height: 1.5;
}
.cs-card__result strong {
  color: var(--accent);
  font-weight: 700;
}

/* フッター注釈 */
.cases-footnote {
  text-align: center;
  font-size: .78rem;
  color: #9ca3af;
  margin: 0;
}

/* ── レスポンシブ ── */
@media (max-width: 1280px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 900px) {
  .cases-header {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
  }
  .cases-header__left { max-width: 100%; }
  .cases-header__badges { justify-content: flex-start; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 540px) {
  .cases-section { padding: 64px 0 56px; }
  .cases-grid { grid-template-columns: 1fr; gap: 12px; }
  .cases-badge { min-width: 80px; padding: 14px 10px; }
}

/* ============================================================
   CASES SECTION — Split Slider (cases-split 構造)
   左固定ダークネイビーパネル ＋ 右スライダー＋Pick Upバナー
   ============================================================ */

/* セクション全体 */
.cases-section {
  padding: 0;
  overflow: hidden;
  background: #1a1f2e;
}

/* 外側フレックスコンテナ */
.cases-split {
  display: flex;
  min-height: 560px;
}

/* ── 左固定パネル（ダークネイビー） ── */
.cases-split__lead {
  flex: 0 0 280px;
  background: #1a1f2e;
  padding: 64px 40px 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.cases-split__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: #c9a84c;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.cases-split__heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 8px;
}

.cases-split__sub {
  font-size: .82rem;
  color: #8a9ab5;
  letter-spacing: .1em;
  margin: 0 0 20px;
}

.cases-split__desc {
  font-size: .88rem;
  color: #b0bcd0;
  line-height: 1.75;
  margin: 0 0 36px;
}

/* 矢印ナビゲーション */
.cases-split__nav {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.cases-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #3a4460;
  background: transparent;
  color: #8a9ab5;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, color .2s;
}

.cases-nav-btn:hover:not(:disabled),
.cases-nav-btn--active {
  border-color: #c9a84c;
  background: #c9a84c;
  color: #1a1f2e;
}

.cases-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* プログレスバー */
.cases-progress {
  width: 100%;
  height: 3px;
  background: #2e3650;
  border-radius: 2px;
  overflow: hidden;
}

.cases-progress__bar {
  height: 100%;
  background: #c9a84c;
  border-radius: 2px;
  transition: width .35s ease;
  width: 16.67%; /* 1/6 */
}

/* ── 右スライダーエリア ── */
.cases-split__track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* 右端に薄いフェード */
  -webkit-mask-image: linear-gradient(to right, #000 75%, transparent 100%);
          mask-image: linear-gradient(to right, #000 75%, transparent 100%);
}

.cases-split__track {
  display: flex;
  gap: 20px;
  padding: 48px 24px 48px 28px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ── case-card（個別カード） ── */
.case-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  position: relative;
}

/* 写真エリア */
.case-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #2e3650;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.case-card:hover .case-card__image img {
  transform: scale(1.05);
}

/* ── Pick Up ゴールドバナー ── */
.case-card__badge {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c66a 60%, #c9a84c 100%);
  padding: 10px 16px 14px;
  position: relative;
  overflow: visible;
}

/* 下向き三角形（折り返し感） */
.case-card__badge::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(135deg, #c9a84c 0%, #e8c66a 60%, #c9a84c 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.case-card__badge-title {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #1a1f2e;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.case-card__badge-body {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: #1a1f2e;
  line-height: 1.35;
}

/* メタ情報（企業名・従業員数） */
.case-card__meta {
  padding: 22px 18px 8px;
}

.case-card__industry {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1a1f2e;
  margin: 0 0 4px;
}

.case-card__size {
  font-size: .78rem;
  color: #6b7280;
  margin: 0;
}

/* コンテンツ（ラベル＋本文） */
.case-card__content {
  padding: 12px 18px 20px;
  flex: 1;
}

.case-card__label {
  font-size: .82rem;
  font-weight: 700;
  color: #c9a84c;
  margin: 0 0 6px;
}

.case-card__body {
  font-size: .82rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CASES SPLIT — レスポンシブ
   ============================================================ */

/* タブレット：左パネルを上に移動 */
@media (max-width: 960px) {
  .cases-split {
    flex-direction: column;
    min-height: unset;
  }

  .cases-split__lead {
    flex: none;
    padding: 48px 32px 36px;
  }

  .cases-split__track-wrap {
    -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
            mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  }

  .cases-split__track {
    padding: 24px 20px 32px;
  }

  .case-card {
    flex: 0 0 280px;
  }
}

/* スマートフォン */
@media (max-width: 600px) {
  .cases-split__lead {
    padding: 40px 24px 28px;
  }

  .cases-split__heading {
    font-size: 1.9rem;
  }

  .cases-split__track {
    gap: 14px;
    padding: 20px 16px 28px;
  }

  .case-card {
    flex: 0 0 260px;
  }

  .cases-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ============================================================
   YouTube 紹介セクション（why-section直後）
   ============================================================ */
.yt-section {
  background: #0f1a2e;
  padding: 7rem 0;
  overflow: hidden;
}
.yt-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: center;
  padding: 0 2rem;
}

/* 左：テキスト */
.yt-section__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}
.yt-section__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
}
.yt-section__title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.6rem;
}
.yt-section__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  margin-bottom: 2.4rem;
}
.yt-section__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, #c9a84c 0%, #e8d07a 100%);
  color: #1a1400;
  font-size: .95rem;
  font-weight: 800;
  padding: .85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  letter-spacing: .04em;
}
.yt-section__cta:hover {
  opacity: .88;
  transform: translateY(-2px);
}

/* 右：動画 */
.yt-section__video {
  position: relative;
}
.yt-section__video::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border-radius: 18px;
  background: rgba(201,168,76,.18);
  z-index: 0;
}
.yt-section__video-wrap {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.yt-section__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* タブレット */
@media (max-width: 900px) {
  .yt-section__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    padding: 0;
  }
  .yt-section__text {
    padding-left: 0;
  }
  .yt-section__title {
    font-size: 2rem;
  }
  .yt-section {
    padding: 5.5rem 0;
  }
}

/* スマホ */
@media (max-width: 640px) {
  .yt-section {
    padding: 4rem 0;
  }
  .yt-section__title {
    font-size: 1.7rem;
  }
  .yt-section__desc {
    font-size: .95rem;
  }
  .yt-section__video::before {
    inset: -8px -8px 8px 8px;
  }
}


/* ============================================================
   /advisory ページ専用CSS  — TOPデザインシステム完全統一版
   ============================================================ */

/* ── 共通ユーティリティ ── */
.adv-eyebrow {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--f-serif);
  margin-bottom: .9rem;
}
.adv-eyebrow--light { color: var(--accent-lt); }

.adv-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.adv-title em { font-style: normal; color: var(--accent); }
.adv-title--light { color: #fff; }

.adv-lead {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: var(--text-soft);
  line-height: 1.85;
}
.adv-lead--light { color: rgba(255,255,255,.72); }

.adv-section-head {
  text-align: center;
  margin-bottom: 4.8rem;
}

/* ── ボタン（TOPの btn/button-solid に統一） ── */
.adv-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .88rem 2.2rem;
  border-radius: 3px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  font-family: var(--f-sans);
}
.adv-btn:hover { opacity: .88; transform: translateY(-2px); }
.adv-btn--gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.adv-btn--outline {
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
}
.adv-btn--outline-light {
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
}
.adv-btn--lg { padding: 1rem 2.8rem; font-size: 1rem; }

/* ============================================================
   ① FV — hero-pro と同レイヤー・同テイスト
   ============================================================ */
/* ============================================================
   ① FV — 参考画像準拠デザイン（ライト系 + 写真右 + オーバーレイカード）
   ============================================================ */
.adv-fv {
  background: #f7f4ef;
  overflow: hidden;
}

/* ── 左右2カラムレイアウト ── */
.adv-fv__layout {
  display: grid;
  grid-template-columns: 46% 1fr;
  min-height: 90vh;
  align-items: stretch;
  max-width: 100%;
}

/* ── 左：テキストエリア ── */
.adv-fv__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem max(4rem, 4vw) 5rem max(3.5rem, 5vw);
  background: #f7f4ef;
  position: relative;
  z-index: 2;
}

/* サービスラベル（線挟み） */
.adv-fv__service-label {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  font-family: var(--f-serif);
  margin-bottom: 2rem;
}
.adv-fv__service-line {
  flex: 1;
  max-width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: .6;
  display: block;
}

/* メインタイトル */
.adv-fv__title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a22;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 1.8rem;
}
.adv-fv__title em {
  font-style: normal;
  color: var(--accent);
}

/* サブテキスト */
.adv-fv__sub {
  font-size: clamp(.88rem, 1.3vw, 1.02rem);
  color: #444;
  line-height: 2.0;
  margin-bottom: 3rem;
}
.adv-fv__sub em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

/* CTAボタン群 */
.adv-fv__btns {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 320px;
  width: 100%;
}
.adv-fv__btn {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.4rem 1rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  position: relative;
}
.adv-fv__btn:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }

.adv-fv__btn--dark {
  background: #1a1a22;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}
.adv-fv__btn--outline {
  background: #fff;
  color: #1a1a22;
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 12px rgba(183,154,89,.12);
}

.adv-fv__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.adv-fv__btn--dark .adv-fv__btn-icon { color: var(--accent); }

.adv-fv__btn-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.adv-fv__btn-note {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: .6;
  line-height: 1;
  margin-bottom: .18rem;
}
.adv-fv__btn--dark .adv-fv__btn-note { color: rgba(255,255,255,.7); }
.adv-fv__btn--outline .adv-fv__btn-note { color: #888; }

.adv-fv__btn-main {
  font-size: clamp(.9rem, 1.2vw, 1.02rem);
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.2;
}
.adv-fv__btn--dark .adv-fv__btn-main { color: #fff; }
.adv-fv__btn--outline .adv-fv__btn-main { color: #1a1a22; }

.adv-fv__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: .55;
}
.adv-fv__btn--dark .adv-fv__btn-arrow { color: #fff; }
.adv-fv__btn--outline .adv-fv__btn-arrow { color: var(--accent); opacity: .8; }

/* ── 右：写真エリア ── */
.adv-fv__right {
  position: relative;
  overflow: hidden;
}
.adv-fv__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}
.adv-fv__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.96) saturate(.92);
}
.adv-fv__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247,244,239,.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ── オーバーレイカード共通 ── */
.adv-fv__card {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.8);
}

/* カード①：レーダーチャート（右上） */
.adv-fv__card--radar {
  top: 24px;
  right: 20px;
  padding: 1rem 1.2rem .9rem;
  width: 200px;
}
.adv-fv__card-title {
  font-size: .66rem;
  font-weight: 700;
  color: #888;
  letter-spacing: .06em;
  margin-bottom: .65rem;
  line-height: 1;
}
.adv-fv__radar {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* カード②：エンゲージメントスコア（右中） */
.adv-fv__card--score {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  padding: 1rem 1.4rem;
  min-width: 176px;
}
.adv-fv__card-label {
  font-size: .66rem;
  font-weight: 700;
  color: #888;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  line-height: 1;
}
.adv-fv__score-row {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.adv-fv__score-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.adv-fv__score-denom {
  font-size: .75rem;
  font-weight: 700;
  color: #aaa;
}
.adv-fv__score-trend {
  display: flex;
  align-items: center;
  margin-left: .4rem;
}

/* カード③：離職リスク（右下） */
.adv-fv__card--risk {
  bottom: 32px;
  right: 20px;
  padding: .9rem 1.4rem;
  min-width: 160px;
}
.adv-fv__risk-icons {
  display: flex;
  gap: .3rem;
  margin: .5rem 0 .3rem;
  flex-wrap: wrap;
}
.adv-fv__risk-icon {
  color: #ccc;
}
.adv-fv__risk-icon--hi {
  color: var(--accent);
}
.adv-fv__risk-pct {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a22;
  line-height: 1;
  margin-top: .2rem;
}
.adv-fv__risk-pct span {
  font-size: .75em;
  font-weight: 700;
  color: #888;
}

/* ── 下部実績バー ── */
.adv-fv__stats-bar {
  background: #fff;
  border-top: 1px solid rgba(183,154,89,.15);
  box-shadow: 0 -2px 24px rgba(0,0,0,.04);
}
.adv-fv__stats-inner {
  display: flex;
  align-items: center;
  width: min(100% - 44px, var(--max-width));
  margin-inline: auto;
  padding: 1.8rem 0;
  gap: 0;
}
.adv-fv__stat-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex: 1;
  padding: .4rem 1.6rem;
  min-width: 0;
}
.adv-fv__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(183,154,89,.2);
  flex-shrink: 0;
}
.adv-fv__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.adv-fv__stat-body {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.adv-fv__stat-num {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a22;
  line-height: 1;
}
.adv-fv__stat-num small {
  font-size: .65em;
  font-weight: 700;
  color: var(--accent);
}
.adv-fv__stat-num--kanji {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: .04em;
}
.adv-fv__stat-label {
  font-size: .7rem;
  font-weight: 800;
  color: #444;
  letter-spacing: .04em;
  margin-top: .15rem;
}
.adv-fv__stat-desc {
  font-size: .66rem;
  color: #999;
  font-weight: 500;
  letter-spacing: .03em;
}

/* ============================================================
   ② 悩み訴求 — prob-section 同テイスト
   ============================================================ */
.adv-prob {
  background: var(--bg-panel);
  padding: 7rem 0 6rem;
}
.adv-prob__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 4rem;
}
.adv-prob__card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-warm);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.adv-prob__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.adv-prob__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.adv-prob__card p {
  font-size: clamp(.8rem, 1.1vw, .92rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}
.adv-prob__close {
  background: var(--bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  padding: 2.4rem 3.2rem;
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.adv-prob__close p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-family: var(--f-serif);
  color: var(--text);
  line-height: 1.75;
}
.adv-prob__close em { font-style: normal; color: var(--accent); font-weight: 800; }
.adv-prob__close strong { color: var(--text); font-size: 1.1em; }

/* ============================================================
   ③ 人事診断 — ceo-section / final-cta 同テイスト（ダーク）
   ============================================================ */
/* ── セクション全体 ── */
.adv-diag {
  background: var(--bg-panel);
  padding: 7rem 0 5rem;
}
.adv-diag__body {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── 左エリア ── */
.adv-diag__service-label {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
.adv-diag__service-line {
  flex: 1;
  max-width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: .55;
  display: block;
}
.adv-diag__title {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a22;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.adv-diag__title em {
  font-style: normal;
  color: var(--accent);
}
.adv-diag__sub {
  font-size: clamp(.88rem, 1.2vw, 1rem);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.adv-diag__sub em {
  font-style: normal;
}
.adv-diag__lead {
  font-size: clamp(.82rem, 1.1vw, .94rem);
  color: #555;
  line-height: 1.85;
  margin-bottom: 2.4rem;
}

/* 数値バッジ */
.adv-diag__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-bottom: 2.4rem;
}
.adv-diag__badge {
  background: var(--bg);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-md);
  padding: 1.1rem .8rem .9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  box-shadow: var(--shadow-sm);
}
.adv-diag__badge-icon {
  color: var(--accent);
  margin-bottom: .4rem;
}
.adv-diag__badge-num {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a22;
  line-height: 1;
}
.adv-diag__badge-num small {
  font-size: .62em;
  font-weight: 700;
  color: var(--accent);
}
.adv-diag__badge-num--kanji {
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
  letter-spacing: .04em;
}
.adv-diag__badge-label {
  font-size: .68rem;
  font-weight: 800;
  color: #333;
  letter-spacing: .04em;
  margin-top: .2rem;
}
.adv-diag__badge-desc {
  font-size: .62rem;
  color: #999;
  font-weight: 500;
}

/* CTAボタン */
.adv-diag__cta {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: #1a1a22;
  color: #fff;
  text-decoration: none;
  padding: 1.1rem 1.8rem;
  border-radius: 6px;
  font-size: clamp(.9rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  transition: opacity .2s, transform .2s;
  width: 100%;
  justify-content: center;
}
.adv-diag__cta:hover { opacity: .88; transform: translateY(-2px); }
.adv-diag__cta-icon { color: var(--accent); flex-shrink: 0; }
.adv-diag__cta-arrow { margin-left: auto; opacity: .6; flex-shrink: 0; }

/* ── 右エリア：診断レポートカード ── */
.adv-diag__report-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.07), 0 1px 6px rgba(0,0,0,.05);
}
.adv-diag__report-title {
  font-size: .72rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid #f0ece4;
}

/* 上段 */
.adv-diag__report-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.adv-diag__report-block {
  background: #faf8f4;
  border: 1px solid #f0ece4;
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.adv-diag__report-block-label {
  font-size: .65rem;
  font-weight: 700;
  color: #999;
  letter-spacing: .07em;
  margin-bottom: .7rem;
}
.adv-diag__radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.adv-diag__radar-legend {
  display: flex;
  gap: .8rem;
  margin-top: .4rem;
}
.adv-diag__radar-legend-item {
  font-size: .6rem;
  font-weight: 600;
  color: #999;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.adv-diag__radar-legend-item::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  border-radius: 1px;
}
.adv-diag__radar-legend-item--solid::before { background: #b79a59; }
.adv-diag__radar-legend-item--dash::before { background: transparent; border-top: 1.5px dashed rgba(183,154,89,.6); }

/* スコアグラフ */
.adv-diag__score-head {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: .6rem;
}
.adv-diag__score-big {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.adv-diag__score-denom {
  font-size: .72rem;
  font-weight: 700;
  color: #bbb;
}
.adv-diag__score-arrow {
  margin-left: .3rem;
  color: var(--accent);
}
.adv-diag__chart-wrap {
  width: 100%;
}

/* 下段 */
.adv-diag__report-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr;
  gap: 1rem;
}

/* 離職リスク */
.adv-diag__risk-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin: .4rem 0 .3rem;
}
.adv-diag__risk-icon { color: #ccc; display: inline-flex; }
.adv-diag__risk-icon--hi { color: var(--accent); }
.adv-diag__risk-pct {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a22;
  line-height: 1;
  margin-bottom: .15rem;
}
.adv-diag__risk-pct span { font-size: .7em; font-weight: 700; color: #888; }
.adv-diag__risk-desc { font-size: .6rem; color: #bbb; font-weight: 500; }

/* 部署別サマリーテーブル */
.adv-diag__dept-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .68rem;
}
.adv-diag__dept-table tr + tr td { border-top: 1px solid #f0ece4; }
.adv-diag__dept-table td { padding: .45rem .2rem; vertical-align: middle; }
.adv-diag__dept-name { color: #444; font-weight: 600; white-space: nowrap; }
.adv-diag__dept-score { color: #888; text-align: right; padding-right: .5rem; font-weight: 700; }
.adv-diag__dept-badge {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 20px;
  white-space: nowrap;
}
.adv-diag__dept-badge--danger { background: #fef0f0; color: #d95c5c; }
.adv-diag__dept-badge--warn   { background: #fef9ec; color: #c8922a; }
.adv-diag__dept-badge--good   { background: #eef8f2; color: #3c9e6a; }

/* 課題キーワードタグ */
.adv-diag__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.adv-diag__tag {
  background: #f3f0eb;
  border: 1px solid #e8e4dc;
  border-radius: 20px;
  font-size: .62rem;
  font-weight: 600;
  color: #555;
  padding: .28rem .75rem;
}

/* 注釈 */
.adv-diag__report-note {
  font-size: .6rem;
  color: #bbb;
  text-align: right;
  margin-top: .9rem;
  font-weight: 500;
}

/* ── 診断フロー ── */
.adv-diag-flow {
  background: var(--bg);
  padding: 5rem 0;
  border-top: 1px solid var(--line-warm);
}
.adv-diag-flow__title {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #1a1a22;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: .04em;
}
.adv-diag-flow__steps {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.adv-diag-flow__step {
  flex: 1;
  background: var(--bg-panel);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: var(--shadow-sm);
}
.adv-diag-flow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(183,154,89,.1);
  color: var(--accent);
  margin-bottom: .3rem;
}
.adv-diag-flow__step-num {
  font-size: .68rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .1em;
}
.adv-diag-flow__step-title {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 800;
  color: #1a1a22;
  line-height: 1.3;
}
.adv-diag-flow__step-desc {
  font-size: .76rem;
  color: #666;
  line-height: 1.75;
}
.adv-diag-flow__arrow {
  color: var(--accent);
  opacity: .55;
  flex-shrink: 0;
}

/* ── 診断バナー ── */
.adv-diag-banner {
  background: #f0ece3;
  border-top: 1px solid rgba(183,154,89,.18);
  border-bottom: 1px solid rgba(183,154,89,.18);
  padding: 2.8rem 0;
}
.adv-diag-banner__inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.adv-diag-banner__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(183,154,89,.3);
  box-shadow: 0 2px 12px rgba(183,154,89,.15);
  flex-shrink: 0;
}
.adv-diag-banner__badge-num {
  font-size: 1.1rem;
  font-family: var(--f-serif);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.adv-diag-banner__badge-sub {
  font-size: .58rem;
  font-weight: 700;
  color: #888;
}
.adv-diag-banner__text {
  flex: 1;
}
.adv-diag-banner__text-sub {
  font-size: .76rem;
  color: #888;
  margin-bottom: .3rem;
}
.adv-diag-banner__text-main {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  color: #1a1a22;
  line-height: 1.4;
}
.adv-diag-banner__text-main em {
  font-style: normal;
  color: var(--accent);
}
.adv-diag-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-size: clamp(.88rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: 0 4px 16px rgba(183,154,89,.3);
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.adv-diag-banner__cta:hover { opacity: .88; transform: translateY(-2px); }

/* ============================================================
   ④ YouTube — why-section 同テイスト（ライト）
   ============================================================ */
.adv-yt {
  background: var(--bg-soft);
  padding: 7rem 0;
}
.adv-yt__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.adv-yt__video-wrap {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.adv-yt__video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.adv-yt__right-title {
  font-size: clamp(.88rem, 1.2vw, 1rem);
  font-weight: 800;
  color: var(--text);
  font-family: var(--f-serif);
  letter-spacing: .05em;
  margin-bottom: 1.2rem;
}
.adv-yt__items {
  list-style: none; padding: 0; margin: 0 0 2.2rem;
}
.adv-yt__items li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(.82rem, 1.1vw, .95rem);
  font-weight: 600;
  color: var(--text-soft);
}
.adv-yt__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.adv-yt__steps { display: flex; flex-direction: column; gap: .4rem; }
.adv-yt__step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: .8rem 1.2rem;
  border: 1px solid var(--line-warm);
  box-shadow: var(--shadow-sm);
}
.adv-yt__step-num {
  font-size: .7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .1em;
  white-space: nowrap;
  font-family: var(--f-serif);
}
.adv-yt__step-label {
  font-size: clamp(.85rem, 1.1vw, .95rem);
  font-weight: 700;
  color: var(--text);
}
.adv-yt__step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  padding: .1rem 0;
}

/* ============================================================
   ⑤ なぜ成果につながるのか — ダーク
   ============================================================ */
.adv-why {
  background: #0a0a0f;
  padding: 7rem 0 6rem;
}
.adv-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 4rem;
}
.adv-why__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(183,154,89,.18);
  border-radius: var(--radius-md);
  padding: 2.4rem 1.8rem;
  transition: background .2s, transform .2s;
}
.adv-why__card:hover { background: rgba(183,154,89,.07); transform: translateY(-4px); }
.adv-why__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(183,154,89,.1);
  border: 1px solid rgba(183,154,89,.2);
  margin-bottom: 1.4rem;
  color: var(--accent);
}
.adv-why__card h3 {
  font-size: clamp(.88rem, 1.2vw, 1.02rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .7rem;
  line-height: 1.4;
  font-family: var(--f-serif);
}
.adv-why__card p {
  font-size: clamp(.78rem, 1vw, .9rem);
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}
.adv-why__close {
  text-align: center;
  border-top: 1px solid rgba(183,154,89,.18);
  padding-top: 3.6rem;
}
.adv-why__close p {
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  font-family: var(--f-serif);
}
.adv-why__close strong { color: var(--accent-lt); font-size: 1.05em; }

/* ============================================================
   ⑥ 支援領域 — ライト
   ============================================================ */
.adv-service {
  background: var(--bg-panel);
  padding: 7rem 0;
}
.adv-service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.adv-service__card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-warm);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm);
}
.adv-service__card-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--accent);
}
.adv-service__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(183,154,89,.08);
  border: 1px solid rgba(183,154,89,.18);
  color: var(--accent);
  flex-shrink: 0;
}
.adv-service__card h3 {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  font-weight: 800;
  color: var(--text);
  font-family: var(--f-serif);
}
.adv-service__card ul { list-style: none; padding: 0; margin: 0; }
.adv-service__card ul li {
  padding: .48rem 0;
  font-size: clamp(.78rem, 1vw, .9rem);
  color: var(--text-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.adv-service__card ul li:last-child { border-bottom: none; }
.adv-service__card ul li::before { content: "— "; color: var(--accent); font-weight: 900; }

/* ============================================================
   人事代行ページ (outsourcing) — out-プレフィックス
   ============================================================ */

/* ── FV（adv-fvと同構造・同スタイル） ── */
.out-fv {
  background: #faf8f4;
  position: relative;
  overflow: hidden;
}
.out-fv__layout {
  display: grid;
  grid-template-columns: 46% 1fr;
  min-height: 680px;
}
.out-fv__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 8vw;
  position: relative;
  z-index: 2;
}
.out-fv__service-label {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.2rem;
}
.out-fv__service-line {
  display: inline-block;
  width: 2.8rem;
  height: 1px;
  background: var(--accent);
  opacity: .6;
}
.out-fv__title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.28;
  color: #1a1a22;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.out-fv__title em {
  font-style: normal;
  color: var(--accent);
}
.out-fv__sub {
  font-size: clamp(.88rem, 1.2vw, 1rem);
  line-height: 2;
  color: #555;
  margin-bottom: 3.2rem;
}
.out-fv__sub em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.out-fv__btns {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 340px;
}
.out-fv__btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .18s, transform .18s, box-shadow .18s;
  border: 1.5px solid transparent;
}
.out-fv__btn:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.out-fv__btn--dark {
  background: #1a1a22;
  border-color: #1a1a22;
}
.out-fv__btn--outline {
  background: #fff;
  border-color: rgba(183,154,89,.35);
}
.out-fv__btn-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.out-fv__btn--dark  .out-fv__btn-icon { background: rgba(255,255,255,.08); color: var(--accent); }
.out-fv__btn--outline .out-fv__btn-icon { background: rgba(183,154,89,.1); color: var(--accent); }
.out-fv__btn-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.out-fv__btn-note {
  font-size: .68rem;
  letter-spacing: .06em;
}
.out-fv__btn--dark    .out-fv__btn-note { color: rgba(255,255,255,.7); }
.out-fv__btn--outline .out-fv__btn-note { color: #888; }
.out-fv__btn-main {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.out-fv__btn--dark    .out-fv__btn-main { color: #fff; }
.out-fv__btn--outline .out-fv__btn-main { color: #1a1a22; }
.out-fv__btn-arrow {
  flex-shrink: 0;
  opacity: .7;
}
.out-fv__btn--dark    .out-fv__btn-arrow { color: #fff; }
.out-fv__btn--outline .out-fv__btn-arrow { color: var(--accent); opacity: .8; }

.out-fv__right {
  position: relative;
  overflow: hidden;
}
.out-fv__photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.out-fv__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.out-fv__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,244,.32) 0%, transparent 40%);
}

/* 実績バー */
.out-fv__stats-bar {
  background: #1a1a22;
  padding: 0 8vw;
}
.out-fv__stats-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}
.out-fv__stat-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex: 1;
  padding: 2rem 2.4rem;
}
.out-fv__stat-div {
  width: 1px;
  background: rgba(255,255,255,.1);
  margin: 1.2rem 0;
  flex-shrink: 0;
}
.out-fv__stat-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(183,154,89,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.out-fv__stat-body {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.out-fv__stat-num {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent-lt);
  line-height: 1;
}
.out-fv__stat-num small { font-size: .6em; font-weight: 500; }
.out-fv__stat-num--kanji { font-size: 1.15rem; letter-spacing: .04em; }
.out-fv__stat-label {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
}
.out-fv__stat-desc {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
}

/* ── 代行できる業務グリッド ── */
.out-tasks {
  background: #faf8f4;
  padding: 7rem 0;
}
.out-tasks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4.8rem;
}
.out-tasks__card {
  background: #fff;
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-md);
  padding: 2.4rem 2.4rem 2.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.out-tasks__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.out-tasks__card-icon {
  width: 52px; height: 52px;
  background: rgba(183,154,89,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.out-tasks__card-num {
  position: absolute;
  top: 2rem; right: 2rem;
  font-family: var(--f-serif);
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .6;
  letter-spacing: .06em;
}
.out-tasks__card-title {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a22;
  margin-bottom: .8rem;
}
.out-tasks__card-desc {
  font-size: .85rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.4rem;
}
.out-tasks__card-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line-warm);
  padding-top: 1.2rem;
}
.out-tasks__card-list li {
  font-size: .82rem;
  color: #444;
  padding: .35rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.out-tasks__card-list li:last-child { border-bottom: none; }
.out-tasks__card-list li::before { content: "— "; color: var(--accent); font-weight: 900; }

/* ── 顧問との違いテーブル（ダーク背景） ── */
.out-diff {
  background: #0f0f18;
  padding: 7rem 0;
}
.out-diff__table-wrap {
  overflow-x: auto;
  margin-top: 4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(183,154,89,.15);
}
.out-diff__table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}
.out-diff__table thead tr {
  background: rgba(183,154,89,.08);
}
.out-diff__th-label { width: 28%; padding: 1.6rem 1.4rem; }
.out-diff__th {
  text-align: center;
  padding: 1.4rem 1.6rem;
}
.out-diff__th-badge {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  margin-bottom: .3rem;
}
.out-diff__th-badge--gold { color: var(--accent-lt); }
.out-diff__th-sub {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
}
.out-diff__row-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
}
.out-diff__table tbody td {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.out-diff__td--highlight {
  color: var(--accent-lt) !important;
  font-weight: 600;
  background: rgba(183,154,89,.06);
}
.out-diff__note {
  text-align: center;
  margin-top: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   OEMページ (oem) — oem-プレフィックス
   ============================================================ */

/* ── FV（out-fvと同構造） ── */
.oem-fv { background: #faf8f4; position: relative; overflow: hidden; }
.oem-fv__layout { display: grid; grid-template-columns: 46% 1fr; min-height: 680px; }
.oem-fv__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 6rem 8vw; position: relative; z-index: 2;
}
.oem-fv__service-label {
  display: flex; align-items: center; gap: .8rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 2.2rem;
}
.oem-fv__service-line {
  display: inline-block; width: 2.8rem; height: 1px;
  background: var(--accent); opacity: .6;
}
.oem-fv__title {
  font-family: var(--f-serif); font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 700; line-height: 1.28; color: #1a1a22;
  letter-spacing: -.01em; margin-bottom: 2rem;
}
.oem-fv__title em { font-style: normal; color: var(--accent); }
.oem-fv__sub {
  font-size: clamp(.88rem, 1.2vw, 1rem); line-height: 2;
  color: #555; margin-bottom: 3.2rem;
}
.oem-fv__sub em { font-style: normal; color: var(--accent); font-weight: 600; }
.oem-fv__btns { display: flex; flex-direction: column; gap: 1.1rem; max-width: 360px; }
.oem-fv__btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.6rem; border-radius: 6px; text-decoration: none;
  transition: opacity .18s, transform .18s, box-shadow .18s;
  border: 1.5px solid transparent;
}
.oem-fv__btn:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.oem-fv__btn--dark  { background: #1a1a22; border-color: #1a1a22; }
.oem-fv__btn--outline { background: #fff; border-color: rgba(183,154,89,.35); }
.oem-fv__btn-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.oem-fv__btn--dark    .oem-fv__btn-icon { background: rgba(255,255,255,.08); color: var(--accent); }
.oem-fv__btn--outline .oem-fv__btn-icon { background: rgba(183,154,89,.1); color: var(--accent); }
.oem-fv__btn-body { display: flex; flex-direction: column; flex: 1; }
.oem-fv__btn-note { font-size: .68rem; letter-spacing: .06em; }
.oem-fv__btn--dark    .oem-fv__btn-note { color: rgba(255,255,255,.7); }
.oem-fv__btn--outline .oem-fv__btn-note { color: #888; }
.oem-fv__btn-main { font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; }
.oem-fv__btn--dark    .oem-fv__btn-main { color: #fff; }
.oem-fv__btn--outline .oem-fv__btn-main { color: #1a1a22; }
.oem-fv__btn-arrow { flex-shrink: 0; opacity: .7; }
.oem-fv__btn--dark    .oem-fv__btn-arrow { color: #fff; }
.oem-fv__btn--outline .oem-fv__btn-arrow { color: var(--accent); opacity: .8; }
.oem-fv__right { position: relative; overflow: hidden; }
.oem-fv__photo-wrap { position: absolute; inset: 0; overflow: hidden; }
.oem-fv__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.oem-fv__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(250,248,244,.32) 0%, transparent 40%);
}
.oem-fv__stats-bar { background: #1a1a22; padding: 0 8vw; }
.oem-fv__stats-inner {
  display: flex; align-items: stretch; gap: 0;
  max-width: 1080px; margin: 0 auto;
}
.oem-fv__stat-item { display: flex; align-items: center; gap: .9rem; flex: 1; padding: 2rem 2.4rem; }
.oem-fv__stat-div { width: 1px; background: rgba(255,255,255,.1); margin: 1.2rem 0; flex-shrink: 0; }
.oem-fv__stat-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: rgba(183,154,89,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.oem-fv__stat-body { display: flex; flex-direction: column; gap: .18rem; }
.oem-fv__stat-num { font-family: var(--f-serif); font-size: 1.55rem; font-weight: 700; color: var(--accent-lt); line-height: 1; }
.oem-fv__stat-num small { font-size: .6em; font-weight: 500; }
.oem-fv__stat-num--kanji { font-size: 1.15rem; letter-spacing: .04em; }
.oem-fv__stat-label { font-size: .72rem; font-weight: 700; color: #fff; letter-spacing: .06em; }
.oem-fv__stat-desc { font-size: .65rem; color: rgba(255,255,255,.5); }

/* ── OEM展開とは（4カード） ── */
.oem-what { background: #faf8f4; padding: 7rem 0; }
.oem-what__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; margin-top: 4.8rem;
}
.oem-what__card {
  background: #fff; border: 1px solid var(--line-warm);
  border-radius: var(--radius-md); padding: 2.4rem 2.4rem 2.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.oem-what__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.oem-what__card-icon {
  width: 52px; height: 52px; background: rgba(183,154,89,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 1.4rem;
}
.oem-what__card-title {
  font-family: var(--f-serif); font-size: 1.05rem; font-weight: 700;
  color: #1a1a22; margin-bottom: .8rem; line-height: 1.5;
}
.oem-what__card-desc { font-size: .85rem; line-height: 1.85; color: #555; }

/* ── 提供内容（4ステップ・ダーク） ── */
.oem-offering { background: #0f0f18; padding: 7rem 0; }
.oem-offering__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem; margin-top: 4.8rem;
}
.oem-offering__step {
  background: rgba(255,255,255,.04); border: 1px solid rgba(183,154,89,.18);
  border-radius: var(--radius-md); padding: 2.4rem 1.8rem;
  transition: background .2s, transform .2s;
}
.oem-offering__step:hover { background: rgba(183,154,89,.07); transform: translateY(-4px); }
.oem-offering__step-num {
  font-family: var(--f-serif); font-size: .78rem; font-weight: 700;
  color: var(--accent); letter-spacing: .1em; margin-bottom: 1rem; opacity: .8;
}
.oem-offering__step-icon {
  width: 52px; height: 52px; background: rgba(183,154,89,.1);
  border: 1px solid rgba(183,154,89,.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 1.4rem;
}
.oem-offering__step-title {
  font-family: var(--f-serif); font-size: 1.02rem; font-weight: 800;
  color: #fff; margin-bottom: .7rem; line-height: 1.4;
}
.oem-offering__step-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ── パートナー紹介セクション（ライト背景） ── */
.oem-partners-preview { background: #faf8f4; }

/* ── 選ばれる理由（adv-whyを流用） ── */
.out-why {
  background: #faf8f4;
  padding: 7rem 0;
}
/* adv-why はダーク背景前提なので、out-why 内でライト配色に上書き */
.out-why .adv-why__card {
  background: #fff;
  border-color: var(--line-warm);
  box-shadow: var(--shadow-sm);
}
.out-why .adv-why__card:hover {
  background: rgba(183,154,89,.05);
}
.out-why .adv-why__card h3 {
  color: #1a1a22;
}
.out-why .adv-why__card p {
  color: #555;
}

/* ============================================================
   ⑦ 支援実績 — ダーク
   ============================================================ */
.adv-cases {
  background: #0a0a0f;
  padding: 7rem 0;
}
.adv-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.adv-cases__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(183,154,89,.2);
  border-radius: var(--radius-md);
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: background .2s, transform .2s;
}
.adv-cases__card:hover { background: rgba(183,154,89,.07); transform: translateY(-4px); }
.adv-cases__industry {
  font-size: .72rem;
  color: var(--accent-lt);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--f-serif);
}
.adv-cases__result {
  font-size: clamp(.88rem, 1.2vw, 1rem);
  color: rgba(255,255,255,.8);
  font-weight: 700;
  margin-bottom: .3rem;
}
.adv-cases__result span {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: var(--accent-lt);
  line-height: 1.1;
  margin-bottom: .15rem;
}
.adv-cases__label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(183,154,89,.12);
}
.adv-cases__detail {
  font-size: clamp(.78rem, 1vw, .87rem);
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}

/* ============================================================
   ⑧ 代表メッセージ — ceo-section 完全統一
   ============================================================ */
.adv-ceo {
  background: var(--bg-soft);
  padding: 7rem 0;
}
.adv-ceo__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 6rem;
  align-items: start;
}
.adv-ceo__left { position: relative; }
.adv-ceo__vertical-copy {
  writing-mode: vertical-rl;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .12em;
  font-family: var(--f-serif);
  position: absolute;
  top: 0;
  left: -1.6rem;
  line-height: 1.5;
}
.adv-ceo__photo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  margin-bottom: 1.4rem;
  background: var(--bg-mist);
}
.adv-ceo__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.adv-ceo__profile {
  text-align: center;
  padding: 1.2rem;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-warm);
  box-shadow: var(--shadow-sm);
}
.adv-ceo__profile-role {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .07em;
  margin-bottom: .35rem;
}
.adv-ceo__profile-name {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: var(--text);
  margin-bottom: .25rem;
}
.adv-ceo__profile-title {
  font-size: .72rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--f-serif);
}
.adv-ceo__heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.adv-ceo__heading em { font-style: normal; color: var(--accent); }
.adv-ceo__body { margin-bottom: 2.4rem; }
.adv-ceo__body p {
  font-size: clamp(.88rem, 1.2vw, 1rem);
  color: var(--text-soft);
  line-height: 1.95;
  margin-bottom: 1.1rem;
}
.adv-ceo__body strong { color: var(--text); font-weight: 800; }
.adv-ceo__body em { font-style: normal; color: var(--accent); font-weight: 700; }
.adv-ceo__cards {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}
.adv-ceo__card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-warm);
  padding: 1.1rem .9rem;
  text-align: center;
  flex: 1;
  min-width: 90px;
  box-shadow: var(--shadow-sm);
}
.adv-ceo__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(183,154,89,.08);
  border: 1px solid rgba(183,154,89,.15);
  color: var(--accent);
  margin: 0 auto .6rem;
}
.adv-ceo__card p {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ============================================================
   ⑨ 最終CTA — final-cta-section 完全統一
   ============================================================ */
.adv-final-cta {
  position: relative;
  background: #0a0a0f;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}
.adv-final-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(183,154,89,.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.adv-final-cta__inner { position: relative; z-index: 1; }
.adv-final-cta__logo {
  margin-bottom: 1.8rem; opacity: .9;
  filter: drop-shadow(0 0 24px rgba(183,154,89,.6));
}
.adv-final-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-family: var(--f-serif);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.adv-final-cta__sub {
  font-size: clamp(.9rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  margin-bottom: 3rem;
}
.adv-final-cta__btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.adv-final-cta__badges {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
}
.adv-final-cta__badges span {
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  padding: .35rem .95rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
}

/* ============================================================
   レスポンシブ — タブレット横（〜 1280px）
   ============================================================ */
@media (max-width: 1280px) {
  .adv-fv__layout   { grid-template-columns: 48% 1fr; }
  .adv-fv__left     { padding: 7rem 3.5rem 5rem 4vw; }
  .adv-fv__card--radar  { width: 180px; }
  .adv-fv__card--score  { min-width: 160px; }
  .adv-fv__card--risk   { min-width: 148px; }
  /* out-fv */
  .out-fv__layout   { grid-template-columns: 48% 1fr; }
  .out-fv__left     { padding: 7rem 3.5rem 5rem 4vw; }
  /* oem-fv */
  .oem-fv__layout   { grid-template-columns: 48% 1fr; }
  .oem-fv__left     { padding: 7rem 3.5rem 5rem 4vw; }
}

/* ============================================================
   レスポンシブ — タブレット縦（〜 1000px）
   ============================================================ */
@media (max-width: 1000px) {
  /* adv-fv: 縦積みに切り替え */
  .adv-fv__layout   { grid-template-columns: 1fr; min-height: auto; }
  .adv-fv__left     { padding: 7rem 6vw 4rem; order: 1; }
  .adv-fv__right    { order: 2; min-height: 56vw; }
  .adv-fv__title    { font-size: clamp(2rem, 5.5vw, 3rem); }
  .adv-fv__btns     { max-width: 100%; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .adv-fv__btn      { flex: 1 1 240px; }
  /* カード位置リセット */
  .adv-fv__card--radar  { top: 16px; right: 16px; width: 170px; }
  .adv-fv__card--score  { top: auto; bottom: 100px; right: 16px; transform: none; min-width: 160px; }
  .adv-fv__card--risk   { bottom: 16px; right: 16px; min-width: 148px; }
  /* 実績バー */
  .adv-fv__stats-inner  { flex-wrap: wrap; }
  .adv-fv__stat-item    { flex: 0 0 50%; padding: 1rem 2rem; }
  .adv-fv__stat-div     { display: none; }
  /* 他セクション */
  .adv-prob__grid   { grid-template-columns: repeat(2, 1fr); }
  /* adv-diag 新レイアウト */
  .adv-diag__body          { grid-template-columns: 1fr; gap: 3rem; }
  .adv-diag__badges        { grid-template-columns: repeat(3, 1fr); }
  .adv-diag__report-top    { grid-template-columns: 1fr; }
  .adv-diag__report-bottom { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .adv-diag-flow__steps    { flex-direction: column; align-items: stretch; gap: 1rem; }
  .adv-diag-flow__arrow    { transform: rotate(90deg); align-self: center; }
  .adv-diag-banner__inner  { flex-wrap: wrap; gap: 1.6rem; }
  .adv-yt__body     { grid-template-columns: 1fr; gap: 3.6rem; }
  .adv-why__grid    { grid-template-columns: repeat(2, 1fr); }
  .adv-service__grid{ grid-template-columns: repeat(2, 1fr); }
  .adv-cases__grid  { grid-template-columns: repeat(2, 1fr); }
  .adv-ceo__inner   { grid-template-columns: 1fr; gap: 4rem; }
  .adv-ceo__vertical-copy { display: none; }
  .adv-section-head { margin-bottom: 3.6rem; }
  /* out タブレット */
  .out-fv__layout       { grid-template-columns: 1fr; min-height: auto; }
  .out-fv__left         { padding: 7rem 6vw 4rem; order: 1; }
  .out-fv__right        { order: 2; min-height: 56vw; }
  .out-fv__title        { font-size: clamp(2rem, 5.5vw, 3rem); }
  .out-fv__btns         { max-width: 100%; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .out-fv__btn          { flex: 1 1 240px; }
  .out-fv__stats-inner  { flex-wrap: wrap; }
  .out-fv__stat-item    { flex: 0 0 50%; padding: 1rem 2rem; }
  .out-fv__stat-div     { display: none; }
  .out-tasks__grid      { grid-template-columns: repeat(2, 1fr); }
  /* oem タブレット */
  .oem-fv__layout       { grid-template-columns: 1fr; min-height: auto; }
  .oem-fv__left         { padding: 7rem 6vw 4rem; order: 1; }
  .oem-fv__right        { order: 2; min-height: 56vw; }
  .oem-fv__title        { font-size: clamp(2rem, 5.5vw, 3rem); }
  .oem-fv__btns         { max-width: 100%; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .oem-fv__btn          { flex: 1 1 240px; }
  .oem-fv__stats-inner  { flex-wrap: wrap; }
  .oem-fv__stat-item    { flex: 0 0 50%; padding: 1rem 2rem; }
  .oem-fv__stat-div     { display: none; }
  .oem-what__grid       { grid-template-columns: repeat(2, 1fr); }
  .oem-offering__grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   レスポンシブ — スマホ（〜 640px）
   ============================================================ */
@media (max-width: 640px) {
  /* adv-fv スマホ: 縦積み・カード1枚ずつ・バー2列 */
  .adv-fv { min-height: auto; }
  .adv-fv__layout   { grid-template-columns: 1fr; }
  .adv-fv__left     { padding: 6.5rem 5vw 3rem; order: 1; }
  .adv-fv__right    { order: 2; min-height: 72vw; }
  .adv-fv__title    { font-size: clamp(1.85rem, 7vw, 2.6rem); margin-bottom: 1.2rem; }
  .adv-fv__sub      { font-size: .9rem; line-height: 1.9; margin-bottom: 2rem; }
  .adv-fv__service-label { font-size: .72rem; margin-bottom: 1.4rem; }
  /* CTAボタン: 縦積みフル幅 */
  .adv-fv__btns     { flex-direction: column; max-width: 100%; gap: .9rem; }
  .adv-fv__btn      { flex: none; width: 100%; }
  .adv-fv__btn-main { font-size: 1rem; }
  /* 写真エリア */
  .adv-fv__photo-wrap { min-height: 72vw; border-radius: 0; }
  /* オーバーレイカード: レーダー非表示、2枚のみ小さく右端 */
  .adv-fv__card--radar  { display: none; }
  .adv-fv__card--score  {
    top: 12px; right: 10px; bottom: auto;
    transform: none;
    min-width: 136px;
    padding: .8rem 1rem;
  }
  .adv-fv__card--risk   {
    bottom: 12px; right: 10px;
    min-width: 128px;
    padding: .75rem 1rem;
  }
  .adv-fv__card-label   { font-size: .6rem; }
  .adv-fv__score-num    { font-size: 1.8rem; }
  .adv-fv__risk-pct     { font-size: 1.5rem; }
  .adv-fv__risk-icons   { gap: .2rem; }
  .adv-fv__risk-icon svg { width: 9px; height: 11px; }
  /* 実績バー: 2列×2段 */
  .adv-fv__stats-bar    { }
  .adv-fv__stats-inner  { flex-wrap: wrap; padding: 1.4rem 0; width: calc(100% - 32px); }
  .adv-fv__stat-item    { flex: 0 0 50%; padding: .75rem 1rem; gap: .6rem; }
  .adv-fv__stat-div     { display: none; }
  .adv-fv__stat-icon    { width: 32px; height: 32px; }
  .adv-fv__stat-num     { font-size: 1.3rem; }
  .adv-fv__stat-label   { font-size: .65rem; }
  .adv-fv__stat-desc    { font-size: .6rem; }
  /* 他セクション */
  .adv-prob__grid  { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .adv-prob__close { padding: 1.8rem 1.4rem; }
  /* adv-diag スマホ */
  .adv-diag__badges        { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .adv-diag__report-bottom { grid-template-columns: 1fr; }
  .adv-diag__report-top    { grid-template-columns: 1fr; }
  .adv-diag-banner__inner  { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .adv-diag-banner__cta    { width: 100%; justify-content: center; }
  .adv-why__grid   { grid-template-columns: 1fr; }
  .adv-service__grid{ grid-template-columns: 1fr; }
  .adv-cases__grid { grid-template-columns: 1fr; }
  .adv-final-cta   { padding: 6rem 0; }
  .adv-final-cta__btns { flex-direction: column; align-items: center; }
  .adv-ceo__cards  { gap: .6rem; }
  .adv-section-head { margin-bottom: 2.8rem; }
  /* outsourcing スマホ */
  .out-fv__layout       { grid-template-columns: 1fr; }
  .out-fv__left         { padding: 6.5rem 5vw 3rem; order: 1; }
  .out-fv__right        { order: 2; min-height: 72vw; }
  .out-fv__title        { font-size: clamp(1.85rem, 7vw, 2.6rem); margin-bottom: 1.2rem; }
  .out-fv__sub          { font-size: .9rem; line-height: 1.9; margin-bottom: 2rem; }
  .out-fv__btns         { flex-direction: column; max-width: 100%; gap: .9rem; }
  .out-fv__btn          { flex: none; width: 100%; }
  .out-fv__stats-inner  { flex-wrap: wrap; }
  .out-fv__stat-item    { flex: 0 0 50%; padding: .75rem 1rem; gap: .6rem; }
  .out-fv__stat-div     { display: none; }
  .out-tasks__grid      { grid-template-columns: 1fr; }
  .out-diff__table      { min-width: 480px; }
  /* oem スマホ */
  .oem-fv__layout       { grid-template-columns: 1fr; }
  .oem-fv__left         { padding: 6.5rem 5vw 3rem; order: 1; }
  .oem-fv__right        { order: 2; min-height: 72vw; }
  .oem-fv__title        { font-size: clamp(1.85rem, 7vw, 2.6rem); margin-bottom: 1.2rem; }
  .oem-fv__sub          { font-size: .9rem; line-height: 1.9; margin-bottom: 2rem; }
  .oem-fv__btns         { flex-direction: column; max-width: 100%; gap: .9rem; }
  .oem-fv__btn          { flex: none; width: 100%; }
  .oem-fv__stats-inner  { flex-wrap: wrap; }
  .oem-fv__stat-item    { flex: 0 0 50%; padding: .75rem 1rem; gap: .6rem; }
  .oem-fv__stat-div     { display: none; }
  .oem-what__grid       { grid-template-columns: 1fr; }
  .oem-offering__grid   { grid-template-columns: 1fr; }
}
