:root {
  --accent-1: #90de2a;
  --accent-2: #434b40;
  --accent-3: #3d4341;
  --bg-main: #e5e8e1;
  --bg-page: #e5e8e1;
  --bg-surface: #ffffff;
  --bg-band: #eef1ea;
  --bg-band-deep: #e0e4da;
  --text-main: #1f2620;
  --container: 1080px;
  --danger: #c0392b;
  /* CTA・コンバージョンボタン（緑ブランドと差別化） */
  --cta-orange: #e85d04;
  --cta-orange-dark: #c2410c;
  --cta-orange-light: #fb923c;
  --font-sans:
    "Noto Sans JP",
    "Noto Sans",
    "Hiragino Sans",
    "Yu Gothic UI",
    Meiryo,
    "Segoe UI",
    system-ui,
    sans-serif;
  /* モーション：コーポレートLP系のゆったりした減速 */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  /* 見出し直下のリード文（セクション間でサイズ統一） */
  --section-lead-font-size: clamp(1.02rem, 2.65vw, 1.3rem);
  --section-lead-line-height: 1.72;
  --section-lead-font-weight: 800;
  --section-lead-letter-spacing: 0.02em;
  /* .section-h2 と同スケール（リード見出しとの統一用） */
  --section-h2-font-size: clamp(2.38rem, 5.85vw, 3.9rem);
}
@media (max-width: 840px) {
  :root {
    --section-h2-font-size: clamp(1.82rem, 6.8vw, 2.85rem);
  }
}
@media (max-width: 480px) {
  :root {
    --section-h2-font-size: clamp(1.38rem, 6vw, 1.88rem);
  }
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}
html, body { margin: 0; padding: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.65;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

main {
  min-width: 0;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

a { color: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  max-width: 100%;
  margin: 0 auto;
  min-width: 0;
}
@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }
}

/* ── Header ──
   #management-issues 上端がビューポート上に達するまで非表示（script.js で制御） */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d9e1d3;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.site-header.is-header-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  min-width: 0;
}
.logo {
  text-decoration: none;
  color: var(--accent-2);
  transition: opacity 0.3s var(--ease-out-expo);
}
.logo:hover { opacity: 0.78; }
.logo-img { display: block; height: 28px; width: auto; }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.global-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.88rem; }
.global-nav a {
  position: relative;
  text-decoration: none;
  color: var(--accent-3);
  padding: 0.15rem 0;
  transition: color 0.25s var(--ease-out-soft);
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--accent-1);
  transition: width 0.4s var(--ease-out-expo);
}
.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--accent-2);
}
.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  width: 100%;
}
.global-nav a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent-1) 65%, transparent);
  outline-offset: 4px;
}
.nav-download { white-space: nowrap; }

/* ハンバーガー（モバイルのみ表示） */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--accent-2);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 3px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s ease;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 120;
  }

  .site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-wrap {
    position: fixed;
    inset: 0;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(3.75rem + env(safe-area-inset-top, 0px)) 1.25rem 2rem;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s var(--ease-out-soft), visibility 0.28s;
  }

  .site-header.is-nav-open .nav-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .global-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    font-size: 1rem;
    font-weight: 700;
  }

  .global-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid #e2e6df;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .global-nav a::after {
    display: none;
  }

  .nav-download {
    margin-top: 1.25rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
  }
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bar {
    transition: none;
  }
  .nav-wrap {
    transition: none;
  }
}

/* ── Hero ──
   背面：japan.png（右寄せで地図が見える）
   手前：左からブランド緑 → 透明（透明側で地図がそのまま表示） */
.hero-fv {
  position: relative;
  height: 80vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--bg-page);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 90% center;
  animation: none;
  padding-bottom: 20px;
}

/* 手前オーバーレイ：左〜中央で緑、右で透過して japan.png（モック：左コピー／右地図） */
.hero-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(229, 232, 225, 0) 0%, rgba(229, 232, 225, 0) 56%, rgba(229, 232, 225, 0.9) 100%),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--accent-2) 97%, #0a0f0a) 0%,
      color-mix(in srgb, var(--accent-2) 82%, #1a2218) 32%,
      color-mix(in srgb, var(--accent-2) 42%, transparent) 50%,
      rgba(67, 75, 64, 0.08) 58%,
      transparent 68%
    );
}

/* タブレット〜SP：斜めグラデで上〜左に緑、下〜右で japan.png を見せる */
@media (max-width: 900px) {
  .hero-fv::before {
    background-image:
      linear-gradient(180deg, rgba(229, 232, 225, 0) 0%, rgba(229, 232, 225, 0) 54%, rgba(229, 232, 225, 0.9) 100%),
      linear-gradient(
        125deg,
        color-mix(in srgb, var(--accent-2) 96%, #0f140f) 0%,
        color-mix(in srgb, var(--accent-2) 85%, #1a2218) 28%,
        color-mix(in srgb, var(--accent-2) 52%, transparent) 52%,
        rgba(67, 75, 64, 0.12) 68%,
        transparent 82%
      );
  }
}

@media (max-width: 480px) {
  .hero-fv::before {
    background-image:
      linear-gradient(180deg, rgba(229, 232, 225, 0) 0%, rgba(229, 232, 225, 0) 50%, rgba(229, 232, 225, 0.93) 100%),
      linear-gradient(
        155deg,
        color-mix(in srgb, var(--accent-2) 97%, #0f140f) 0%,
        color-mix(in srgb, var(--accent-2) 88%, #1a2218) 32%,
        color-mix(in srgb, var(--accent-2) 48%, transparent) 58%,
        rgba(67, 75, 64, 0.1) 72%,
        transparent 88%
      );
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4.25rem;
  padding-bottom: 1.25rem;
  padding-left: calc(clamp(1.35rem, 5vw, 2.85rem) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(1.35rem, 5vw, 2.85rem) + env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.hero-column--visual {
  display: none;
}

/* PC：左＝文言＋バッジ＋CTA、右＝地図エリア（背面画像が見える） */
@media (min-width: 960px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    column-gap: clamp(1rem, 3vw, 2.25rem);
    row-gap: 1.5rem;
  }
  .hero-column--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: clamp(1.75rem, 3vw, 2.65rem);
    max-width: 36rem;
  }
  .hero-column--visual {
    display: block;
    min-height: min(42vh, 420px);
    pointer-events: none;
  }
}

.hero-column--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

/* 2列で並ぶ幅があれば均等2列、1列になったら各バナーが行いっぱい（1fr）に広がる */
.hero-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.65rem;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 720px) and (max-width: 959px) {
  .hero-banners {
    width: min(100%, 56vw);
    max-width: 900px;
    align-self: center;
  }
}
@media (min-width: 960px) {
  .hero-banners {
    width: 100%;
    max-width: none;
    align-self: stretch;
  }
}

/* flex column だと子が横幅いっぱいに伸びにくいことがあるため 1列Gridで積む */
.hero-banner {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
  align-content: start;
  justify-items: stretch;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.hero-banner > * {
  min-width: 0;
  max-width: 100%;
}
.hero-banner--stat {
  border-left: 5px solid var(--accent-1);
}
.hero-banner--regions {
  border-left: 5px solid color-mix(in srgb, var(--accent-1) 70%, white);
}
.hero-banner-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero-banner-strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.35rem;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.hero-banner-num {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--accent-1);
}
.hero-banner-unit {
  font-size: 1.15rem;
  font-weight: 900;
}
.hero-banner-plus {
  font-size: 0.95rem;
  font-weight: 800;
  opacity: 0.95;
}
.hero-regions {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
}
.hero-copy {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: min(100%, 72rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 960px) {
  .hero-column--content .hero-copy {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}
.hero-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
@media (min-width: 960px) {
  .hero-column--content .hero-title-block {
    align-items: flex-start;
  }
}
.hero-line {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
  word-break: keep-all;
  overflow-wrap: normal;
}
/* 見出し2行は「大文字」＝大きく強調（欧文は大文字） */
.hero-line--sm {
  font-size: clamp(1.65rem, 4.8vw, 2.55rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
}
.hero-line--xl {
  font-size: clamp(2.7rem, 9.5vw, 4.85rem);
  letter-spacing: 0.02em;
  color: var(--accent-1);
}
.hero-latin {
  text-transform: uppercase;
  font-weight: 900;
}
.hero-subline {
  margin: 0.45rem 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.38rem);
  font-weight: 800;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  text-align: center;
  word-break: keep-all;
}
@media (min-width: 960px) {
  .hero-column--content .hero-subline {
    text-align: left;
  }
}
.hero-lead {
  margin: 0.3rem 0 0;
  font-size: var(--section-lead-font-size);
  font-weight: var(--section-lead-font-weight);
  line-height: var(--section-lead-line-height);
  letter-spacing: var(--section-lead-letter-spacing);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 50rem;
  word-break: keep-all;
  overflow-wrap: normal;
}
@media (min-width: 960px) {
  .hero-column--content .hero-lead {
    text-align: left;
    max-width: 100%;
  }
}
.hero-closing {
  margin: 0.2rem 0 0;
  font-size: clamp(1.22rem, 3.25vw, 1.92rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
}
@media (min-width: 960px) {
  .hero-column--content .hero-closing {
    text-align: left;
  }
}

.hero-fv .hero-copy .enginepot-promise-em {
  color: var(--accent-1);
  text-shadow:
    0 0.06em 0.22em rgba(30, 40, 28, 0.45),
    0 0.02em 0.08em rgba(30, 40, 28, 0.35);
}
.hero-fv .hero-closing {
  color: var(--accent-1);
}

/* 広い単一カラム時：見出しを1行に（960px未満では縦積みのため効かない） */
@media (min-width: 1024px) {
  .hero-copy {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .hero-copy .hero-line,
  .hero-copy .hero-subline,
  .hero-copy .hero-lead,
  .hero-copy .hero-closing {
    white-space: nowrap;
    max-width: none;
  }
}
/* PC 2カラム時は左カラム幅に合わせて折り返し */
@media (min-width: 960px) {
  .hero-column--content .hero-copy {
    overflow-x: visible;
  }
  .hero-column--content .hero-copy .hero-line,
  .hero-column--content .hero-copy .hero-subline,
  .hero-column--content .hero-copy .hero-lead,
  .hero-column--content .hero-copy .hero-closing {
    white-space: normal;
    max-width: 100%;
  }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 0.2rem;
  width: 100%;
}
@media (min-width: 960px) {
  .hero-column--content .hero-cta {
    justify-content: flex-start;
  }
}
.btn-hero {
  padding: 1.05rem 2.25rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  min-width: min(100%, 240px);
  text-align: center;
}
.btn-on-dark {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
@keyframes heroKenburns {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* ── Section base（コーポLP風：ページ地／白面／帯の切り替え） ── */
.section {
  padding: clamp(3.75rem, 7.5vw, 5.25rem) 0;
}
@media (min-width: 1024px) {
  .section {
    --curve-tint-rgb: 236, 223, 233;
  }
  .section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }
  /* セクション境界を曲線でつなぐ */
  .section:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    transform: none;
    width: 100%;
    height: 112px;
    pointer-events: none;
    z-index: 0;
    background: rgb(var(--curve-tint-rgb));
    clip-path: polygon(0 0, 0 66%, 16% 55%, 32% 42%, 48% 30%, 64% 19%, 82% 9%, 100% 3%, 100% 0);
    box-shadow: none;
    opacity: 1;
  }
  #management-issues::before { display: none; }
  #dx-anxieties::before {
    clip-path: polygon(0 0, 0 78%, 15% 63%, 31% 49%, 48% 34%, 66% 21%, 83% 10%, 100% 2%, 100% 0);
  }
  #enginepot-promise::before {
    clip-path: polygon(0 0, 0 2%, 16% 8%, 34% 18%, 52% 33%, 70% 50%, 86% 67%, 100% 82%, 100% 0);
  }
  #product::before {
    clip-path: polygon(0 0, 0 42%, 14% 35%, 30% 27%, 47% 20%, 65% 13%, 83% 7%, 100% 3%, 100% 0);
  }
  #support-principles::before {
    clip-path: polygon(0 0, 0 10%, 15% 20%, 33% 33%, 51% 47%, 69% 60%, 85% 72%, 100% 84%, 100% 0);
  }
  #stories::before {
    clip-path: polygon(0 0, 0 74%, 14% 60%, 30% 45%, 47% 31%, 65% 19%, 82% 9%, 100% 2%, 100% 0);
  }
  #subsidy::before {
    clip-path: polygon(0 0, 0 4%, 15% 12%, 32% 24%, 49% 40%, 67% 56%, 84% 70%, 100% 82%, 100% 0);
  }
  #greeting::before {
    clip-path: polygon(0 0, 0 46%, 13% 38%, 29% 29%, 46% 21%, 64% 14%, 82% 8%, 100% 3%, 100% 0);
  }
  #cta::before {
    clip-path: polygon(0 0, 0 12%, 14% 23%, 31% 36%, 49% 51%, 67% 65%, 84% 76%, 100% 86%, 100% 0);
  }
  .section > .container {
    position: relative;
    z-index: 1;
  }
  .section-parallax-content {
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }
  /* PC背景の薄いハイライト（動きは skrollr 側で付与） */
  .section::after {
    display: none;
  }
  .section-parallax-layer {
    display: none;
  }
  /* PCでは境界の直線を消し、曲線境界を主役にする */
  .section-surface,
  .section-band,
  .section-alt,
  .section-dark,
  .section-green {
    border-bottom: none;
  }
  /* 曲線色は「1つ上のセクション背景」に合わせる */
  #dx-anxieties { --curve-tint-rgb: 255, 255, 255; } /* previous: section-surface */
  #enginepot-promise { --curve-tint-rgb: 67, 75, 64; } /* previous: section-dark */
  #product { --curve-tint-rgb: 188, 223, 133; } /* previous: enginepot-promise */
  #support-principles { --curve-tint-rgb: 238, 241, 234; } /* previous: section-band */
  #stories { --curve-tint-rgb: 255, 255, 255; } /* previous: section-surface */
  #subsidy { --curve-tint-rgb: 238, 241, 234; } /* previous: section-band */
  #greeting { --curve-tint-rgb: 230, 239, 219; } /* previous: section-green */
  #cta { --curve-tint-rgb: 224, 228, 218; } /* previous: section-alt */
}
/* 白ベースの面（経営課題・事例など）— 上をやや明るくして奥行き */
.section-surface {
  background: var(--bg-surface);
}
/* 薄いグレー帯 — 対角の極薄グラデで区切り感 */
.section-band {
  background: var(--bg-band);
}
.section-alt {
  background: var(--bg-band-deep);
}
.section-dark {
  background: var(--accent-2);
}
.section-green {
  background: color-mix(in srgb, var(--accent-1) 10%, var(--bg-band));
}
.section-cta {
  background: var(--accent-2);
}
@media (min-width: 1024px) {
  .section-dark::before,
  .section-cta::before {
    opacity: 0.28;
  }
  .section-dark::after,
  .section-cta::after {
    background:
      radial-gradient(62% 48% at 15% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 74%),
      radial-gradient(50% 38% at 82% 82%, rgba(255, 255, 255, 0.06) 0%, transparent 74%);
  }
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent-1) 18%, white);
  border: 1px solid color-mix(in srgb, var(--accent-1) 40%, white);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  margin: 0 0 0.9rem;
}
.eyebrow--light {
  color: #d0e8a0;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.eyebrow--indexed {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  flex-wrap: wrap;
}
.eyebrow-num {
  font-family: "Noto Sans", var(--font-sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0.9;
  color: color-mix(in srgb, var(--accent-2) 70%, var(--accent-1));
}
.eyebrow--light .eyebrow-num {
  color: rgba(255, 255, 255, 0.88);
}

/* ── Section headline ── */
/* 大きめのジャンプ率：h2はデカく、補足テキストは小さく */
.section-h2 {
  font-size: var(--section-h2-font-size);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  color: var(--accent-2);
}
.section-h2 em {
  font-style: normal;
  color: var(--accent-1);
  /* テキストにアクセントカラーをそのまま */
}
.section-h2--light { color: #fff; }
.section-h2--light em { color: var(--accent-1); }
.em-danger { color: #e05a4e !important; }

/* ── Reveal（スクロール連動のフェードイン・kintone 系LPのような余裕のある減速） ── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 1.05s var(--ease-out-expo),
    transform 1.05s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* ════════════════════════════════
   経営課題：リード＋カード
════════════════════════════════ */
.issue-intro {
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 60rem;
}
.issue-intro-lead {
  font-size: var(--section-h2-font-size);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--accent-2);
  margin: 0 0 0.75rem;
  text-wrap: balance;
}
.issue-intro-sub {
  font-size: clamp(0.74rem, 1.65vw, 0.9rem);
  font-weight: 700;
  color: #4a5e48;
  margin: 0;
}

.issue-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.issue-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1.5px solid #dbe3d6;
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.75rem;
  box-shadow: 0 8px 28px rgba(67, 75, 64, 0.06);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s var(--ease-out-soft);
}
.issue-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-1) 45%, #dbe3d6);
  box-shadow: 0 22px 48px rgba(67, 75, 64, 0.12);
}
.issue-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-1);
}
.issue-card-icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent-1) 10%, white);
  border: 1px solid color-mix(in srgb, var(--accent-1) 30%, white);
  flex-shrink: 0;
}
.issue-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.issue-card-title {
  font-size: clamp(1.58rem, 3.05vw, 2.22rem);
  font-weight: 900;
  color: var(--accent-2);
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.issue-card-body {
  text-align: center;
  flex: 1;
}
.issue-card-body p {
  margin: 0 0 1.1rem;
  font-size: 0.875rem;
  line-height: 1.92;
  letter-spacing: 0.02em;
  color: #2d382c;
  font-weight: 500;
  text-wrap: pretty;
}
.issue-card-body p:last-child {
  margin-bottom: 0;
}

/* ════════════════════════════════
   DX不安：リード＋カード
════════════════════════════════ */
.dx-anxiety-intro {
  margin-bottom: 2.25rem;
}
.dx-anxiety-lead {
  font-size: var(--section-h2-font-size);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 0.65rem;
  text-wrap: balance;
}
.dx-anxiety-sub {
  font-size: clamp(0.76rem, 1.68vw, 0.93rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  letter-spacing: 0.03em;
}

.trap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
}
.trap-card {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition:
    background 0.4s var(--ease-out-soft),
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
}
.trap-card:last-child { border-right: none; }
.trap-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.trap-title {
  font-size: clamp(1.38rem, 2.55vw, 1.75rem);
  font-weight: 900;
  line-height: 1.32;
  color: var(--accent-1);
  margin: 0;
  min-height: 5.35rem;
  display: flex;
  align-items: center;
}

.trap-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
}

.trap-body p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.92;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 500;
  text-wrap: pretty;
}

/* ════════════════════════════════
   enginepot：ブランドメッセージ（DX不安の次）
════════════════════════════════ */
.section-enginepot-promise {
  text-align: center;
  padding-top: clamp(3.75rem, 9vw, 5.75rem);
  padding-bottom: clamp(3.75rem, 9vw, 5.75rem);
  background:
    radial-gradient(
      ellipse 95% 70% at 50% 35%,
      color-mix(in srgb, var(--accent-1) 45%, transparent) 0%,
      transparent 58%
    ),
    linear-gradient(
      168deg,
      color-mix(in srgb, var(--accent-1) 28%, #f2f7ea) 0%,
      color-mix(in srgb, var(--accent-1) 38%, #d8e8b8) 42%,
      color-mix(in srgb, var(--accent-1) 22%, #c5d9a4) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 12px 40px rgba(67, 75, 64, 0.08);
}

#enginepot-promise .container {
  text-align: center;
}

.enginepot-promise-inner {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.8rem, 3vw, 0.5rem);
}
.enginepot-promise-inner .section-h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.enginepot-promise-lead {
  font-size: var(--section-lead-font-size);
  font-weight: var(--section-lead-font-weight);
  line-height: var(--section-lead-line-height);
  letter-spacing: var(--section-lead-letter-spacing);
  color: #3d4a3c;
  margin: 0;
  max-width: min(100%, 52rem);
  text-wrap: balance;
}

.enginepot-promise-tagline {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.enginepot-promise-quote {
  display: block;
  position: relative;
  font-size: clamp(1.78rem, 5.15vw, 4.45rem);
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: -0.025em;
  color: var(--accent-2);
  text-wrap: balance;
}

@media (min-width: 960px) {
  .enginepot-promise-quote {
    white-space: nowrap;
  }
}

.enginepot-promise-quote::before {
  content: "";
  display: block;
  width: min(7rem, 48vw);
  height: 5px;
  margin: 0 auto 1.35rem;
  background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
  border-radius: 3px;
}

.enginepot-promise-em {
  font-style: normal;
  color: #fff;
  text-shadow:
    0 0.06em 0.22em rgba(30, 40, 28, 0.45),
    0 0.02em 0.08em rgba(30, 40, 28, 0.35);
}

#enginepot-promise {
  scroll-margin-top: 5.5rem;
}

#support-principles {
  scroll-margin-top: 5.5rem;
}

/* ════════════════════════════════
   できること：3カード
════════════════════════════════ */
#product .container {
  text-align: center;
}

#product .product-card-grid {
  text-align: left;
}

.product-sub {
  text-align: center;
  font-size: var(--section-lead-font-size);
  font-weight: var(--section-lead-font-weight);
  line-height: var(--section-lead-line-height);
  letter-spacing: var(--section-lead-letter-spacing);
  color: #4a5e48;
  margin: -0.35rem 0 1.35rem;
}

.product-main-lead {
  text-align: center;
  font-size: var(--section-lead-font-size);
  font-weight: var(--section-lead-font-weight);
  line-height: var(--section-lead-line-height);
  letter-spacing: var(--section-lead-letter-spacing);
  color: var(--accent-2);
  margin: 0 auto 2.25rem;
  max-width: 44rem;
  text-wrap: balance;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.product-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg-surface);
  border: 1.5px solid #dbe3d6;
  border-radius: 16px;
  padding: 1.5rem 1.35rem 1.65rem;
  box-shadow: 0 8px 28px rgba(67, 75, 64, 0.06);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s var(--ease-out-soft);
}

.product-offer-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-1) 40%, #dbe3d6);
  box-shadow: 0 20px 44px rgba(67, 75, 64, 0.11);
}

/* 「できること」：プランどおり1セクションだけ奥行きと上ラインを強調 */
#product .product-offer-card {
  border-top: 3px solid var(--accent-1);
  box-shadow: 0 16px 44px rgba(45, 56, 44, 0.11);
}
#product .product-offer-card:hover {
  box-shadow: 0 26px 56px rgba(45, 56, 44, 0.15);
}

.product-offer-media {
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, var(--accent-1) 6%, #f4f6f2);
  border: 1px solid #dbe3d6;
  display: grid;
  place-items: center;
  padding: 0.35rem;
  box-sizing: border-box;
}
.product-offer-media img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.product-offer-num {
  font-family: "Noto Sans", var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: color-mix(in srgb, var(--accent-1) 40%, #c5d4c0);
  margin: 0 0 0.85rem;
}

.product-offer-title {
  font-size: clamp(1.18rem, 2.2vw, 1.42rem);
  font-weight: 900;
  line-height: 1.35;
  color: var(--accent-2);
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 3px solid var(--accent-1);
  letter-spacing: -0.02em;
}

.product-offer-body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex: 1;
}

.product-offer-body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.92;
  letter-spacing: 0.02em;
  color: #2d382c;
  font-weight: 500;
  text-wrap: pretty;
}

/* ════════════════════════════════
   僕たちの支援指針（スクリーンショット準拠リニューアル）
════════════════════════════════ */
.sp-container {
  text-align: center;
}
.sp-eyebrow {
  display: inline-block;
  margin: 0 auto 0.9rem;
}
.sp-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sp-lead {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  font-size: var(--section-lead-font-size);
  font-weight: var(--section-lead-font-weight);
  line-height: var(--section-lead-line-height);
  letter-spacing: var(--section-lead-letter-spacing);
  color: var(--accent-2);
  text-align: center;
}
.sp-br { display: none; }
@media (min-width: 600px) { .sp-br { display: inline; } }

/* ── 比較図全体 ── */
.sp-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin: 0 auto 2.5rem;
  max-width: 62rem;
  text-align: left;
}
@media (max-width: 639px) {
  .sp-diagram { grid-template-columns: 1fr; }
}

/* ── カラム ── */
.sp-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 参考イラスト風：各列を白カード化 */
.sp-col--panel {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem 1.05rem 1.35rem;
  border: 1px solid #e2e6df;
  box-shadow:
    0 14px 40px rgba(67, 75, 64, 0.07),
    0 2px 10px rgba(0, 0, 0, 0.04);
}
.sp-col--panel .sp-col-header {
  margin-bottom: 1.05rem;
}
.sp-col--panel .sp-box {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sp-col--ours .sp-flow--ours {
  margin-bottom: 0.15rem;
}

/* FBバナー＋講師イラスト（弊社列） */
.sp-illus {
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.sp-illus-connectors {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 15.5rem;
  padding: 0 8% 0;
  box-sizing: border-box;
}
.sp-illus-line {
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, #9a9a9a 0%, #c4c4c4 100%);
  position: relative;
  flex-shrink: 0;
}
.sp-illus-line::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid #888;
}
.sp-fb-banner {
  margin: 0;
  width: 100%;
  max-width: 20rem;
  font-size: clamp(0.7rem, 1.45vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #2d382c;
  background: #fff;
  border: 2px solid #c8d0c4;
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  line-height: 1.45;
  box-shadow: 0 4px 16px rgba(67, 75, 64, 0.08);
}

/* 講師イラスト：PCはバナー下に大きく／SPはバナー横でアイコン風 */
.sp-illus-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}
.sp-illus-person {
  display: block;
  width: auto;
  max-width: min(13.5rem, 42vw);
  max-height: 80px;
  height: auto;
  margin: 0;
  flex-shrink: 0;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 6px 14px rgba(67, 75, 64, 0.12));
}

@media (min-width: 640px) {
  .sp-illus-cta-row {
    gap: 0.65rem;
  }
  .sp-illus-person {
    max-width: min(15rem, 36vw);
    max-height: 80px;
  }
}

@media (max-width: 639px) {
  .sp-illus-cta-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 100%;
    padding: 0 0.15rem;
    box-sizing: border-box;
  }
  .sp-illus-cta-row .sp-fb-banner {
    flex: 1;
    min-width: 0;
    max-width: none;
    text-align: left;
    padding: 0.45rem 0.55rem;
    font-size: 0.68rem;
  }
  .sp-illus-person {
    width: 3.5rem;
    height: 3.5rem;
    max-width: 3.5rem;
    max-height: 3.5rem;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: #fff;
    padding: 0.15rem;
    box-shadow: 0 2px 10px rgba(67, 75, 64, 0.1);
    filter: none;
  }
}

/* ヘッダー枠（スクリーンショットの「一般」ラベル） */
.sp-col-header {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 900;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--accent-2);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
}
/* ep_logoを使う弊社ヘッダー */
.sp-col-header--logo {
  padding: 0.5rem 1.2rem;
}
.sp-col-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* ── フローライン ── */
.sp-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ボックス（角丸長方形） */
.sp-box {
  flex: 1 1 auto;
  min-width: 5rem;
  text-align: center;
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  font-weight: 700;
  line-height: 1.5;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  border: 1.5px solid #ccc;
  background: #f0f0f0;
  color: #3d4a3c;
}
.sp-box-sub {
  display: block;
  font-size: 0.75em;
  font-weight: 600;
  color: #6a7a68;
  margin-top: 0.1rem;
}
.sp-box--accent {
  background: #e8a020;
  border-color: #c8820a;
  color: #fff;
  font-weight: 900;
}

/* ── フロー矢印 ── */
.sp-flow-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: #888;
  font-weight: 900;
  line-height: 1;
}
.sp-flow-arrow--accent {
  color: #555;
}

/* ── 弊社フロー（FBループあり） ── */
.sp-flow--ours {
  position: relative;
}

/* FBループ全体 */
.sp-fb-wrap {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* FBライン（横線 + ↑矢印 + ラベル） */
.sp-fb-line {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.sp-fb-up--left {
  display: block;
  width: 2px;
  height: 16px;
  background: #888;
  flex-shrink: 0;
  position: relative;
}
/* ↑矢印頭（左） */
.sp-fb-up--left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid #888;
}
.sp-fb-label {
  flex: 1;
  text-align: center;
  font-size: clamp(0.7rem, 1.4vw, 0.82rem);
  font-weight: 900;
  color: #2d382c;
  background: #f5f5f5;
  border: 1.5px solid #bbb;
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
  margin: 0 0.25rem;
}

/* ── 締めブロック（1枚カード） ── */
.sp-closing {
  max-width: 54rem;
  margin: 0 auto;
  text-align: left;
}
.sp-closing-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: color-mix(in srgb, var(--accent-1) 8%, #fff);
  border: 1.5px solid var(--accent-1);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
}
.sp-closing-texts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sp-closing-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-1) 22%, #fff);
  color: var(--accent-2);
}
.sp-closing-item p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.85;
  color: #2d382c;
}
.sp-closing-item p strong { color: var(--accent-2); font-weight: 900; }
.sp-closing-strong {
  font-weight: 900 !important;
  color: color-mix(in srgb, var(--accent-2) 90%, var(--accent-1)) !important;
}
.sp-closing-strong strong { color: #1a3010 !important; }

/* ════════════════════════════════
   story-content-piece → scp-card（共創イベント）
════════════════════════════════ */
.scp-card {
  margin-top: 2.5rem;
  background: var(--bg-surface);
  border: 2px solid var(--accent-1);
  border-radius: 20px;
  padding: 2rem 2rem 1.85rem;
  box-shadow: 0 12px 40px rgba(144,222,42,0.10), 0 2px 8px rgba(67,75,64,0.05);
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.scp-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.scp-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-1);
  color: #1f2a10;
}
.scp-tag--outline {
  background: transparent;
  color: var(--accent-2);
  border: 1.5px solid color-mix(in srgb, var(--accent-1) 55%, #dbe3d6);
}

.scp-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 600px) {
  .scp-inner { grid-template-columns: 5.5rem 1fr; gap: 1.75rem; }
}
@media (min-width: 600px) {
  .scp-inner--photo {
    grid-template-columns: minmax(9.5rem, 34%) 1fr;
    gap: 1.5rem 1.75rem;
    align-items: start;
  }
}

.scp-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scp-thumb {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid color-mix(in srgb, var(--accent-1) 35%, #dbe3d6);
  background: #eef1ea;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 20px rgba(67, 75, 64, 0.08);
}
.scp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.scp-icon-svg { width: 64px; height: 64px; flex-shrink: 0; }
.scp-icon-cap {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--accent-3);
  text-align: center;
  white-space: nowrap;
}

.scp-body-col { display: flex; flex-direction: column; gap: 0.5rem; }

.scp-title {
  margin: 0;
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.scp-lead {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 800;
  color: #3d4a3c;
  line-height: 1.65;
}
.scp-body {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.88;
  color: #2d382c;
  font-weight: 500;
}
.scp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-1);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}
.scp-link:hover { color: #1a3010; border-color: var(--accent-2); }

/* ════════════════════════════════
   助成金
════════════════════════════════ */
.subsidy-banner {
  background: #fff;
  border: 1.5px solid color-mix(in srgb, var(--accent-1) 40%, white);
  border-radius: 16px;
  padding: 2rem 2.4rem;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s var(--ease-out-soft);
}
.subsidy-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(67, 75, 64, 0.1);
  border-color: color-mix(in srgb, var(--accent-1) 55%, white);
}
.subsidy-banner .subsidy-sub {
  margin: 0 0 1.25rem;
  font-size: clamp(1.14rem, 3.1vw, 1.52rem);
  font-weight: 800;
  line-height: 1.68;
  letter-spacing: 0.02em;
  color: #3d4a3c;
}

.subsidy-highlight {
  margin: 0;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  padding-top: 1rem;
  border-top: 2px solid color-mix(in srgb, var(--accent-1) 45%, #dbe3d6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  text-wrap: balance;
}
.subsidy-highlight-intro {
  display: inline;
}
.subsidy-highlight-prices {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.subsidy-sep-mobile {
  display: none;
}
.subsidy-sep-desktop {
  display: inline;
  font-weight: 900;
  opacity: 0.75;
}

.section-green .section-h2 {
  text-wrap: balance;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
#subsidy .eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

#subsidy .container {
  text-align: center;
}

#subsidy .subsidy-banner {
  text-align: left;
}

/* ════════════════════════════════
   ロゴマーキー
════════════════════════════════ */
.logo-marquee {
  background: var(--bg-surface);
  border: 1px solid #dbe3d6;
  border-radius: 14px;
  overflow: hidden;
  padding: 0.9rem 0;
  margin-bottom: 1.8rem;
  box-shadow: 0 10px 32px rgba(67, 75, 64, 0.05);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.logo-marquee-set { display: flex; }
.logo-marquee-item {
  flex: 0 0 180px;
  padding: 0 0.8rem;
  display: grid;
  place-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.company-logo {
  width: 100%;
  height: 54px;
  object-fit: contain;
}
@media (max-width: 768px) {
  #stories .logo-marquee {
    display: none;
  }
}

/* ════════════════════════════════
   ストーリーセクション（リード＋スライダー）
════════════════════════════════ */
#stories .container {
  text-align: center;
}

#stories .logo-marquee,
#stories .story-slider,
#stories .scp-cards-wrap,
#stories .scp-card {
  text-align: left;
}

.story-section-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0.35rem auto 2rem;
  font-size: var(--section-lead-font-size);
  font-weight: var(--section-lead-font-weight);
  line-height: var(--section-lead-line-height);
  letter-spacing: var(--section-lead-letter-spacing);
  color: #4a5e48;
}

/* ストーリー内の共創イベントカードは .scp-card で定義（下部参照） */

.scp-cards-wrap {
  min-width: 0;
}

/* スワイプ可能であることを示すヒント（SPのみ表示） */
.swipe-hint {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  user-select: none;
  pointer-events: none;
  color: var(--accent-2);
}
.swipe-hint__icon {
  flex-shrink: 0;
  display: block;
  opacity: 0.88;
  animation: swipe-hint-nudge 1.65s ease-in-out infinite;
}
.swipe-hint__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #5f6d60;
}
@media (max-width: 768px) {
  .swipe-hint--story {
    display: flex;
    margin-top: 0.7rem;
  }
}
@media (max-width: 720px) {
  .swipe-hint--scp {
    display: flex;
    margin-bottom: 0.45rem;
  }
}
@keyframes swipe-hint-nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* 共創イベント2枚グリッド（狭い幅は横スクロール＋スナップ） */
.scp-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0;
}
@media (max-width: 720px) {
  .scp-cards-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
    margin-left: 0;
    margin-right: 0;
  }
  .scp-cards-grid::-webkit-scrollbar {
    display: none;
  }
  .scp-cards-grid > .scp-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* スライダー内「記事を読む」リンク */
.story-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-1);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}
.story-read-more:hover { color: #1a3010; border-color: var(--accent-2); }

/* ════════════════════════════════
   事例スライダー
════════════════════════════════ */
.story-slider {
  position: relative;
  min-width: 0;
}
.story-slides { overflow: hidden; border-radius: 20px; }
.story-slide { display: none; animation: slideIn 0.55s var(--ease-out-expo) both; }
.story-slide.is-active { display: block; }
@keyframes slideIn {
  from { opacity: 0; transform: translate3d(24px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.story-slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  background: #fff;
  border: 1.5px solid #dbe3d6;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  min-width: 0;
  transition: box-shadow 0.45s var(--ease-out-expo);
}
.story-slide.is-active .story-slide-inner {
  box-shadow: 0 20px 50px rgba(67, 75, 64, 0.07);
}
.story-slide-img {
  position: relative;
  background: #e8ede4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(0.65rem, 2vw, 1.1rem);
  box-sizing: border-box;
}
.story-slide-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* 事例スライド：インタビュー動画 */
.story-slide-media {
  position: relative;
  background: #141a14;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
}
.story-video {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  background: #000;
}
.story-counter {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0,0,0,0.42);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.story-slide-body {
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.story-tag {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0;
}
.story-headline {
  font-size: clamp(1.48rem, 3.05vw, 2.22rem);
  font-weight: 900;
  line-height: 1.26;
  color: var(--accent-2);
  margin: 0 0 0.65rem;
}
.story-dl { margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.story-dl dt {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin: 0;
}
.story-dl dd {
  font-size: 0.8125rem;
  color: #324032;
  font-weight: 600;
  margin: 0.15rem 0 0;
  line-height: 1.72;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}
@media (max-width: 768px) {
  .slider-nav {
    display: none;
  }
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #c8d4c4;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--accent-2);
  transition:
    background 0.35s var(--ease-out-soft),
    border-color 0.35s var(--ease-out-soft),
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}
.slider-btn:hover {
  background: var(--accent-1);
  border-color: var(--accent-1);
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(144, 222, 42, 0.35);
}
.slider-btn svg { width: 17px; height: 17px; }
.slider-dots { display: flex; gap: 0.5rem; align-items: center; }
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #b0bfae;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.35s var(--ease-out-soft),
    transform 0.45s var(--ease-out-expo),
    border-color 0.35s var(--ease-out-soft);
}
.slider-dot.is-active {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: scale(1.35);
}

/* ════════════════════════════════
   代表挨拶
════════════════════════════════ */
.greeting-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}
.greeting-photo { margin: 0; }
.greeting-photo img {
  width: 240px;
  height: auto;
  border-radius: 18px;
  border: 1.5px solid #dbe3d6;
  background: #fff;
  display: block;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.greeting-photo:hover img {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(67, 75, 64, 0.12);
}
.greeting-quote {
  font-size: clamp(1.72rem, 4.15vw, 2.72rem);
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1.26;
  margin: 0 0 1rem;
}
.greeting-text p:last-child { margin: 0; font-size: 0.8125rem; color: #4a5e48; line-height: 1.85; }

/* ════════════════════════════════
   CTA：横並び
════════════════════════════════ */
#cta .container {
  text-align: center;
}
#cta .section-h2 {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  text-align: left;
}
.cta-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  transition:
    transform 0.45s var(--ease-out-expo),
    background 0.4s var(--ease-out-soft),
    border-color 0.4s var(--ease-out-soft),
    box-shadow 0.45s var(--ease-out-expo);
}
.cta-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}
.cta-card-label {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin: 0 0 0.5rem;
}
.cta-card-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  margin: 0 0 1.4rem;
  line-height: 1.75;
}
.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  align-self: stretch;
}
.cta-divider span {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.cta-form input,
.cta-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.92rem;
  color: #fff;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--cta-orange-light);
  background: rgba(255,255,255,0.12);
}
.cta-form textarea { resize: none; }
.form-message {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cta-orange-light);
  min-height: 1.2rem;
  margin: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-out-expo),
    opacity 0.35s ease,
    box-shadow 0.4s var(--ease-out-expo);
}
.btn:hover {
  transform: translateY(-3px);
  opacity: 0.96;
  box-shadow: 0 10px 28px rgba(67, 75, 64, 0.15);
}
.btn:active {
  transform: translateY(-1px);
  transition-duration: 0.12s;
}
.btn-primary  { background: var(--accent-1); color: #1f2a10; }
.btn-secondary{ background: rgba(255,255,255,0.9); color: var(--accent-2); }
.btn-full { width: 100%; text-align: center; }

/* オレンジ系 CTA（資料DL・主要アクション） */
.btn-cta-accent {
  background: linear-gradient(165deg, var(--cta-orange-light) 0%, var(--cta-orange) 48%, var(--cta-orange-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(232, 93, 4, 0.38);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.btn-cta-accent:hover {
  box-shadow: 0 10px 32px rgba(232, 93, 4, 0.48);
}
.btn-cta-accent:active {
  box-shadow: 0 3px 14px rgba(232, 93, 4, 0.35);
}

/* CTAエリアの送信（ダーク背景上で目立つオレンジ枠） */
.btn-cta-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid var(--cta-orange-light);
  box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.25), 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-cta-outline:hover {
  background: rgba(251, 146, 60, 0.18);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 10px 32px rgba(232, 93, 4, 0.35);
}

#download,
#contact {
  scroll-margin-top: 5.5rem;
}

/* ── Footer ── */
.site-footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  color: #5f6d60;
  background: var(--bg-page);
  border-top: 1px solid color-mix(in srgb, var(--accent-2) 10%, transparent);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.footer-logo { height: 26px; }

/* ════════════════════════════════
   Responsive
════════════════════════════════ */
@media (max-width: 768px) {
  .hero-fv {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: #d9ddd6;
  }
  .hero-fv::before {
    display: none;
  }
  .hero-overlay {
    position: static;
    inset: auto;
    order: 1;
    padding: 1.15rem calc(clamp(1.35rem, 5vw, 2.85rem) + env(safe-area-inset-right, 0px)) 0
      calc(clamp(1.35rem, 5vw, 2.85rem) + env(safe-area-inset-left, 0px));
    min-height: 0;
    z-index: 2;
  }
  .hero-inner {
    display: block;
  }
  .hero-column--content { gap: 0.9rem; }
  .hero-copy {
    order: 1;
  }
  .hero-cta {
    order: 2;
  }
  .hero-banners {
    display: none;
  }
  .hero-bg {
    position: absolute;
    inset: 0 -10% 0 -10%;
    order: 0;
    width: 120%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 45%;
    margin-top: 0;
    opacity: 0.34;
    filter: saturate(0.94) contrast(0.92);
    z-index: 0;
  }
  .hero-line,
  .hero-subline,
  .hero-lead {
    color: var(--accent-2);
    text-shadow: none;
  }
  .hero-line--sm {
    color: var(--accent-2);
  }
  .hero-closing {
    color: color-mix(in srgb, var(--accent-1) 75%, var(--accent-2));
    text-shadow: none;
  }
  .btn-on-dark {
    color: var(--accent-2);
    border-color: color-mix(in srgb, var(--accent-2) 35%, transparent);
    background: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 840px) {
  .section { padding: 3.5rem 0; }

  .hero-overlay {
    padding-top: 1rem;
    padding-bottom: 0.85rem;
    padding-left: calc(clamp(1.35rem, 5vw, 2.85rem) + env(safe-area-inset-left, 0px));
    padding-right: calc(clamp(1.35rem, 5vw, 2.85rem) + env(safe-area-inset-right, 0px));
  }
  .hero-fv {
    min-height: 0;
  }
  .hero-inner {
    gap: 1rem;
  }
  .hero-copy {
    gap: 0.7rem;
    padding: 1.25rem 1.15rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(223, 230, 219, 0.6);
    box-shadow: 0 12px 30px rgba(67, 75, 64, 0.14);
    backdrop-filter: blur(4px);
  }
  .hero-title-block { gap: 0.4rem; }
  .hero-line--sm {
    color: #3d473f;
    font-size: clamp(1.12rem, 4.2vw, 1.5rem);
    line-height: 1.38;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  .hero-subline {
    margin-top: 0;
    color: #3f4d40;
    font-size: clamp(0.95rem, 3.4vw, 1.12rem);
    font-weight: 900;
    line-height: 1.45;
  }
  .hero-lead {
    margin-top: 0.1rem;
    font-size: clamp(0.98rem, 3.4vw, 1.2rem);
    line-height: 1.58;
    color: #465347;
    font-weight: 800;
  }
  .hero-closing {
    margin-top: 0.1rem;
    font-size: clamp(1.55rem, 6.8vw, 2.2rem);
    line-height: 1.08;
    color: #84d91c;
    letter-spacing: -0.015em;
  }
  .hero-cta {
    gap: 0.75rem;
    margin-top: 0.2rem;
    margin-bottom: 0.9rem;
  }
  .hero-cta .btn {
    min-height: 62px;
    border-radius: 999px;
    font-size: clamp(1.05rem, 4.1vw, 1.3rem);
    font-weight: 900;
  }
  .btn-cta-accent.btn-hero {
    box-shadow: 0 10px 26px rgba(232, 93, 4, 0.4);
  }
  .btn-secondary.btn-on-dark.btn-hero {
    background: rgba(255, 255, 255, 0.84);
    color: #3e473f;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 18px rgba(67, 75, 64, 0.1);
  }
  .btn-hero {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .subsidy-banner { padding: 1.5rem 1.25rem; }
  .scp-card { padding: 1.5rem 1.35rem 1.4rem; }

  .trap-grid { grid-template-columns: 1fr; }
  .trap-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trap-card:last-child { border-bottom: none; }

  .story-slide-inner { grid-template-columns: 1fr; }
  .story-slide-img { height: 200px; }
  .story-slide-media {
    min-height: 200px;
    aspect-ratio: 16 / 9;
    max-height: min(56vw, 320px);
  }
  .story-video {
    min-height: 0;
    height: 100%;
    max-height: min(56vw, 320px);
  }
  .story-slide-body { padding: 1.4rem 1.2rem; }

  .greeting-grid { grid-template-columns: 1fr; }
  .greeting-photo img { width: 180px; margin: 0 auto; }

  .cta-grid { grid-template-columns: 1fr; }
  .cta-divider { padding: 1.2rem 0; flex-direction: row; }
  .cta-divider::before,
  .cta-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 0.8rem;
  }

  .issue-cards { grid-template-columns: 1fr; }
  .issue-card { padding: 1.35rem 1.15rem; }
  .product-card-grid { grid-template-columns: 1fr; }
  .product-offer-card { padding: 1.35rem 1.2rem; }
}

@media (max-width: 639px) {
  .sp-fb-label {
    white-space: normal;
    line-height: 1.35;
  }
  .scp-icon-cap {
    white-space: normal;
  }
}

/* 375〜480px：FV見切れ防止・見出し密度・トラップ・比較フロー縦・助成金の金額縦積み */
@media (max-width: 480px) {
  .header-inner {
    gap: 0.5rem;
    padding: 0.55rem 0;
  }
  .logo-img {
    height: 24px;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-fv {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
  .hero-bg {
    opacity: 0.3;
    object-position: center 42%;
  }

  .hero-overlay {
    position: static;
    inset: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: calc(clamp(0.35rem, 3vw, 2.85rem) + env(safe-area-inset-left, 0px));
    padding-right: calc(clamp(0.35rem, 3vw, 2.85rem) + env(safe-area-inset-left, 0px));
    min-height: 0;
    box-sizing: border-box;
}
  .hero-inner {
    gap: 0.8rem;
    justify-content: flex-start;
  }
  .hero-line--xl {
    font-size: clamp(1.5rem, 7.5vw, 2.05rem);
    letter-spacing: -0.02em;
    line-height: 1.28;
  }
  .hero-line--sm {
    font-size: clamp(1.02rem, 5.1vw, 1.3rem);
    letter-spacing: 0.01em;
    line-height: 1.4;
  }
  .hero-subline {
    font-size: clamp(0.88rem, 4.1vw, 1.02rem);
    margin-top: 0.05rem;
    line-height: 1.5;
  }
  .hero-lead {
    margin-top: 0.15rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero-closing {
    font-size: clamp(1.35rem, 8.2vw, 1.82rem);
    line-height: 1.1;
    overflow-wrap: break-word;
  }
  .hero-copy,
  .hero-title-block {
    max-width: 100%;
    min-width: 0;
  }

  .section-h2 {
    line-height: 1.24;
    margin-bottom: 1.15rem;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }
  .issue-intro-lead,
  .dx-anxiety-lead {
    line-height: 1.24;
    letter-spacing: -0.03em;
  }
  .section-h2--stories {
    font-size: clamp(1.28rem, 5.4vw, 1.72rem);
    line-height: 1.22;
  }
  .section {
    padding: 3rem 0;
  }

  .hero-cta .btn,
  .cta-card .btn {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-bg {
    max-height: min(46svh, 400px);
    margin-top: 0.55rem;
  }
  .cta-card {
    padding: 1.4rem 1.1rem;
    border-radius: 14px;
  }
  .story-slide-body {
    padding: 1.1rem 1rem;
  }

  .trap-card {
    padding: 1rem 0.95rem 1.05rem;
    gap: 0.4rem;
  }
  .trap-title {
    min-height: 0;
    align-items: flex-start;
    font-size: clamp(1.08rem, 3.85vw, 1.32rem);
    line-height: 1.28;
  }
  .trap-body {
    gap: 0.5rem;
  }

  .sp-diagram .sp-flow {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.35rem;
  }
  .sp-diagram .sp-flow-arrow {
    align-self: center;
    transform: rotate(90deg);
    padding: 0.05rem 0;
    line-height: 1;
  }
  .sp-diagram .sp-box {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .subsidy-highlight {
    flex-direction: column;
    gap: 0.45rem;
    align-items: center;
  }
  .subsidy-highlight-intro {
    min-width: 0;
    flex: none;
  }
  .subsidy-highlight-prices {
    flex-direction: column;
    gap: 0.12rem;
    font-size: clamp(1.32rem, 6.2vw, 1.72rem);
    line-height: 1.22;
  }
  .subsidy-sep-mobile {
    display: block;
    line-height: 1;
    padding: 0.08rem 0;
    font-weight: 900;
  }
  .subsidy-sep-desktop {
    display: none;
  }

  .sp-col--panel {
    padding: 1rem 0.9rem 1.15rem;
  }
}

/* タッチ端末ではホバー浮きを抑える */
@media (hover: none) {
  .issue-card:hover,
  .trap-card:hover,
  .product-offer-card:hover,
  .subsidy-banner:hover,
  .cta-card:hover,
  .greeting-photo:hover img {
    transform: none;
  }
  .slider-btn:hover {
    transform: none;
  }
  .btn-cta-accent:hover,
  .btn-cta-outline:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; }
  .logo-marquee-track { animation: none; }
  .swipe-hint__icon {
    animation: none;
  }
  .story-slide { animation: none; }
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .global-nav a::after {
    transition: none;
  }
  .issue-card,
  .trap-card,
  .product-offer-card,
  .subsidy-banner,
  .cta-card,
  .btn,
  .slider-btn {
    transition: none;
  }
  .issue-card:hover,
  .trap-card:hover,
  .product-offer-card:hover,
  .subsidy-banner:hover,
  .cta-card:hover,
  .greeting-photo:hover img {
    transform: none;
    box-shadow: none;
  }
  .btn:hover,
  .slider-btn:hover {
    transform: none;
    box-shadow: none;
  }
}
