/* ===================================================
   AI導入支援 LP - Stylesheet
   Primary: #41A9A5
   =================================================== */

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

:root {
  --primary: #41A9A5;
  --primary-light: #6FCDC9;
  --primary-lighter: #A8DDDA;
  --primary-pale: #E8F5F4;
  --primary-pale-2: #F4FAFA;
  --ink: #1A4F4D;
  --ink-soft: #266864;
  --ink-deeper: #103838;
  /* 背景面用(プライマリ準拠) - 文字色とは別系統 */
  --surface-dark: #41A9A5;
  --surface-dark-soft: #6FCDC9;
  --surface-dark-deeper: #2E8784;
  --accent: #FEC800;
  --accent-soft: #FFDB4D;
  --accent-pale: #FFF5CC;
  --em: #E67E62;
  --em-soft: #F0A290;
  --em-pale: #FBE5DE;
  --text-main: #1A3838;
  --text-sub: #4D6664;
  --text-mute: #8A9F9D;
  --bg-base: #FFFFFF;
  --bg-cream: #FBF9F2;
  --bg-soft: #F6FBFA;
  --border: #E6F1F0;
  --shadow-xs: 0 2px 8px rgba(65, 169, 165, 0.05);
  --shadow-sm: 0 6px 20px rgba(65, 169, 165, 0.07);
  --shadow-md: 0 14px 40px rgba(65, 169, 165, 0.1);
  --shadow-lg: 0 28px 70px rgba(65, 169, 165, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-main);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "palt";
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }

em {
  font-style: normal;
  color: var(--em);
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== ローダー ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.loader.is-hidden { opacity: 0; visibility: hidden; }

.loader__shape {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface-dark);
  position: relative;
  animation: loaderMorph 2s ease-in-out infinite;
}

@keyframes loaderMorph {
  0%, 100% { border-radius: 50%; transform: rotate(0deg); }
  50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(180deg); }
}

/* ===== 画像プレースホルダー(差し替え用) ===== */
.img-slot {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(65, 169, 165, 0.04),
      rgba(65, 169, 165, 0.04) 10px,
      rgba(65, 169, 165, 0.08) 10px,
      rgba(65, 169, 165, 0.08) 20px
    );
  border: 2px dashed rgba(65, 169, 165, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  text-align: center;
  overflow: hidden;
}

.img-slot::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
  position: relative;
}

.img-slot::after {
  content: "📷";
  position: absolute;
  font-size: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 28px));
  filter: grayscale(1) brightness(0.6);
}

.img-slot__label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.img-slot__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.5;
}

.img-slot__file {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 4px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

.img-slot img,
.img-slot svg {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  background: transparent;
}

/* 画像が正常に読み込めた場合は枠線・パターンを消す */
.img-slot:has(img) {
  border: none;
  background: transparent;
}

.img-slot:has(img) .img-slot__label,
.img-slot:has(img) .img-slot__name,
.img-slot:has(img) .img-slot__file {
  display: none;
}

.img-slot:has(img)::before,
.img-slot:has(img)::after {
  display: none;
}

/* 画像が見つからない場合(error)はラベルを再表示 */
.img-slot.img-slot--missing {
  border: 2px dashed rgba(65, 169, 165, 0.4);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(65, 169, 165, 0.04),
      rgba(65, 169, 165, 0.04) 10px,
      rgba(65, 169, 165, 0.08) 10px,
      rgba(65, 169, 165, 0.08) 20px
    );
}

.img-slot.img-slot--missing .img-slot__label,
.img-slot.img-slot--missing .img-slot__name,
.img-slot.img-slot--missing .img-slot__file {
  display: block;
}

.img-slot.img-slot--missing::before {
  display: block;
}

/* ===== 開発用ガイド ===== */
.dev-guide {
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 95;
  display: flex;
  align-items: flex-start;
  transition: transform 0.4s var(--ease);
  transform: translateX(-100%);
}

.dev-guide.is-open { transform: translateX(0); }

.dev-guide__toggle {
  width: 44px;
  height: 60px;
  background: var(--surface-dark);
  color: #fff;
  border: none;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  position: relative;
  margin-top: 40px;
  flex-shrink: 0;
}

.dev-guide__toggle span,
.dev-guide__toggle span::before,
.dev-guide__toggle span::after {
  position: absolute;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

.dev-guide__toggle span {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.dev-guide__toggle span::before,
.dev-guide__toggle span::after {
  content: "";
  width: 14px;
  height: 2px;
  left: 0;
}

.dev-guide__toggle span::before { top: -5px; }
.dev-guide__toggle span::after { top: 5px; }

.dev-guide.is-open .dev-guide__toggle span { background: transparent; }
.dev-guide.is-open .dev-guide__toggle span::before { top: 0; transform: rotate(45deg); }
.dev-guide.is-open .dev-guide__toggle span::after { top: 0; transform: rotate(-45deg); }

.dev-guide__panel {
  background: var(--surface-dark);
  color: #fff;
  padding: 24px 28px;
  border-radius: 0 16px 16px 0;
  width: 320px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dev-guide__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.dev-guide__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.dev-guide__code {
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--primary-lighter);
  margin-bottom: 16px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dev-guide__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dev-guide__list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dev-guide__list li strong {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.dev-guide__list li > span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.dev-guide__list li code {
  grid-column: 1 / -1;
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 10px;
  color: var(--primary-lighter);
  opacity: 0.85;
}

@media (max-width: 767px) {
  .dev-guide__panel { width: 280px; }
}

/* ===== ヘッダー ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}

.header__bg {
  position: absolute;
  inset: 0;
  background: rgba(248, 245, 237, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease);
}

.header.is-scrolled { padding: 12px 0; }

.header.is-scrolled .header__bg {
  background: rgba(248, 245, 237, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(65, 169, 165, 0.06);
}

.header__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.header__logo-mark {
  width: auto;
  height: 50px;
  position: relative;
  flex-shrink: 0;
}

.header__logo-subtitle {
  display: inline-flex;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  padding-left: 14px;
  border-left: 1px solid rgba(26, 79, 77, 0.18);
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .header__logo-subtitle {
    display: none;
  }
}

.header__logo-mark::before,
.header__logo-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.header__logo-mark::before {
  inset: 0;
  background: var(--surface-dark);
}

.header__logo-mark::after {
  inset: 6px 6px 6px 16px;
  background: var(--primary);
  mix-blend-mode: screen;
}

.header__nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.header__nav-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.05em;
}

.header__nav-item::before {
  content: attr(data-num);
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--primary);
  margin-right: 6px;
  letter-spacing: 0.1em;
}

.header__nav-item:hover { color: var(--ink); }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.05em;
}

.header__cta-arrow {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -6px -14px -6px 0;
  transition: transform 0.3s var(--ease);
}

.header__cta-arrow svg {
  width: 12px;
  height: 12px;
  color: var(--ink);
}

.header__cta:hover {
  background: var(--surface-dark-deeper);
  color: #fff;
}

.header__cta:hover .header__cta-arrow {
  background: #fff;
  transform: rotate(-45deg);
}

.header__cta:hover .header__cta-arrow svg { color: var(--ink); }

.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--surface-dark);
  border: none;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
}

.header__menu-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--bg-cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.header__menu-btn span:nth-child(1) { transform: translate(-50%, -5px); }
.header__menu-btn span:nth-child(2) { transform: translate(-50%, 0); }
.header__menu-btn span:nth-child(3) { transform: translate(-50%, 5px); }

.header__menu-btn.is-active span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.header__menu-btn.is-active span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-active span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* ===== モバイルメニュー ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface-dark);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}

.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.mobile-menu__item {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__item-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.mobile-menu__item-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-left: auto;
}

.mobile-menu__cta {
  margin-top: 24px;
  padding: 20px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
  font-size: 16px;
  text-align: center;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn__circle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease);
}

.btn:hover .btn__circle { transform: rotate(-45deg); }
.btn:hover .btn__circle svg { transform: rotate(45deg); }

.btn--primary {
  background: var(--surface-dark);
  color: #fff;
  padding-left: 32px;
}

.btn--primary .btn__circle {
  background: #fff;
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--surface-dark-deeper);
  color: #fff;
}

.btn--primary:hover .btn__circle {
  background: var(--accent);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn--ghost .btn__circle {
  background: var(--surface-dark);
  color: #fff;
}

.btn--ghost:hover {
  background: var(--surface-dark);
  color: #fff;
}

.btn--ghost:hover .btn__circle {
  background: #fff;
  color: var(--ink);
}

.btn--cream {
  background: var(--bg-cream);
  color: var(--ink);
  padding-left: 32px;
}

.btn--cream .btn__circle {
  background: var(--surface-dark);
  color: #fff;
}

.btn--cream:hover {
  background: #fff;
}

.btn--large {
  font-size: 16px;
  padding: 10px 10px 10px 36px;
}

.btn--large .btn__circle {
  width: 56px;
  height: 56px;
}

.btn--small {
  font-size: 13px;
  padding: 6px 6px 6px 22px;
}

.btn--small .btn__circle {
  width: 38px;
  height: 38px;
}

.btn__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.btn--ghost .btn__sub { background: rgba(65, 169, 165, 0.08); }
.btn--cream .btn__sub { background: rgba(65, 169, 165, 0.08); }

/* ===== セクションタグ ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.4em;
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--primary);
}

.eyebrow--light { color: var(--accent); }
.eyebrow--light::before { background: var(--accent); }

.section-title {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-title--light { color: #fff; }
.section-title--light em { color: #EFC800; }

.section-lead {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 2;
  max-width: 600px;
}

.section-lead--light { color: rgba(255, 255, 255, 0.85); }

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 100px;
  background: var(--bg-cream);
  overflow: hidden;
  isolation: isolate;
}

.hero__circle-bg {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--primary-light), var(--primary) 60%, var(--surface-dark-soft) 100%);
  opacity: 0.95;
  z-index: -1;
  animation: heroCircleFloat 18s ease-in-out infinite;
}

@keyframes heroCircleFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

.hero__circle-bg::before {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  animation: heroRotate 60s linear infinite;
}

.hero__circle-bg::after {
  content: "";
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  animation: heroRotate 80s linear infinite reverse;
}

@keyframes heroRotate {
  to { transform: rotate(360deg); }
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(65, 169, 165, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.35em;
  margin-bottom: 36px;
  padding: 10px 24px 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(65, 169, 165, 0.08);
}

.hero__tag-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero__tag-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  animation: tagRipple 2s ease-out infinite;
}

@keyframes tagRipple {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero__title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 32px;
}

.hero__title-line {
  display: block;
  position: relative;
}

.hero__title-emphasis {
  position: relative;
  display: inline-block;
  color: var(--em);
}

.hero__title-emphasis::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -4px;
  right: -4px;
  height: 14px;
  background: rgba(254, 200, 0, 0.4);
  border-radius: 2px;
  z-index: -1;
}

/* ===== ヒーロータイトル タイピング演出 ===== */
.hero__title--typing .hero__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.18em);
  will-change: opacity, transform;
}

.hero__title--typing .hero__char.is-visible {
  animation: heroCharIn 0.22s cubic-bezier(0.2, 0.8, 0.3, 1.2) forwards;
}

@keyframes heroCharIn {
  0%   { opacity: 0; transform: translateY(0.18em); }
  60%  { opacity: 1; transform: translateY(-0.04em); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero__title--typing .hero__title-emphasis::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero__title--typing.is-emphasis-on .hero__title-emphasis::before {
  transform: scaleX(1);
}

.hero__title--typing .hero__title-emphasis.is-flashed {
  animation: heroEmphasisFlash 0.7s ease-out;
}

@keyframes heroEmphasisFlash {
  0%   { text-shadow: 0 0 0 rgba(254, 200, 0, 0); }
  35%  { text-shadow: 0 0 28px rgba(254, 200, 0, 0.95), 0 0 8px rgba(254, 200, 0, 0.6); }
  100% { text-shadow: 0 0 0 rgba(254, 200, 0, 0); }
}

.hero__title-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  background: var(--primary);
  margin-left: 0.06em;
  vertical-align: -0.08em;
  border-radius: 2px;
  animation: heroCursorBlink 0.7s steps(2) infinite;
}

.hero__title-cursor.is-done {
  animation: heroCursorOut 0.5s ease forwards;
}

@keyframes heroCursorBlink {
  50% { opacity: 0; }
}

@keyframes heroCursorOut {
  to { opacity: 0; transform: scaleY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title--typing .hero__char {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero__title--typing .hero__title-emphasis::before { transform: scaleX(1); }
  .hero__title-cursor { display: none; }
}

.hero__lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-sub);
  margin-bottom: 28px;
  line-height: 1.95;
  max-width: 520px;
}

.hero__lead em {
  color: var(--ink);
  background: var(--em-pale);
  padding: 0 4px;
  border-radius: 4px;
}

.hero__points {
  margin-bottom: 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(65, 169, 165, 0.06);
  max-width: 540px;
}

.hero__points-text {
  flex: 1;
  min-width: 0;
}

/* VOICE 群と ANSWER の間の下矢印 — 縦長の長方形 + 下向き三角形 (塗り) */
.hero__answer-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 540px;
  height: 52px;
  margin: 10px 0;
  color: var(--primary);
  opacity: 0.75;
}

.hero__answer-arrow svg {
  width: 28px;
  height: 36px;
  animation: hero-answer-arrow-bounce 1.6s ease-in-out infinite;
}

@keyframes hero-answer-arrow-bounce {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(7px); }
}

/* ANSWER 単独カード: VOICE 枠と同じ背景・余白 + 1 行レイアウト
   本文は太字 + 1px 大きく + 濃い文字色で強調 (CTA とは塗りで差別化されているため食い合わない) */
.hero__answer {
  margin-bottom: 44px;
  max-width: 540px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(65, 169, 165, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
}

.hero__answer em {
  color: var(--em);
  font-weight: 800;
  font-style: normal;
  position: relative;
  padding: 0 1px;
}

.hero__answer em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--em);
  opacity: 0.45;
  border-radius: 1px;
}

.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 6px 0;
}

.hero__points li:not(:last-child) {
  border-bottom: 1px dashed rgba(65, 169, 165, 0.1);
  padding-bottom: 12px;
  margin-bottom: 6px;
}

.hero__points-mark {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  white-space: nowrap;
}

.hero__answer .hero__points-mark {
  background: var(--em);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__visual {
  position: relative;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__main-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.15) 10px,
      rgba(255, 255, 255, 0.25) 10px,
      rgba(255, 255, 255, 0.25) 20px
    );
  border: 2px dashed rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.hero__main-slot .img-slot__label,
.hero__main-slot .img-slot__name {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__main-slot .img-slot__file {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero__main-slot::before {
  background: #fff;
  opacity: 0.3;
}

.hero__sticker {
  position: absolute;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(65, 169, 165, 0.06);
  z-index: 3;
  animation: stickerFloat 6s ease-in-out infinite;
  padding: 6px;
  gap: 4px;
}

.hero__sticker-slot {
  width: 94%;
  height: 94%;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
}

.hero__sticker-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__sticker-label {
  font-size: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}

.hero__sticker--1 {
  width: 230px;
  height: 230px;
  top: 6%;
  right: 4%;
  animation-delay: 0s;
}

.hero__sticker--2 {
  width: 190px;
  height: 190px;
  bottom: 14%;
  left: -4%;
  animation-delay: -2s;
  background: #EFC800;
  border-color: #EFC800;
}

.hero__sticker--2 .hero__sticker-label { color: var(--accent); }

.hero__sticker--2 .hero__sticker-slot {
  background: rgba(255, 255, 255, 0.95);
  padding: 4%;
}

.hero__sticker--3 {
  width: 170px;
  height: 170px;
  bottom: 4%;
  right: 14%;
  animation-delay: -4s;
  border: 2px solid var(--primary);
}

@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--surface-dark), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
  height: 100%;
  background: var(--surface-dark);
  animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0% { left: -30px; }
  100% { left: 60px; }
}

.hero__scroll-text {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.4em;
}

/* ===== 共感セクション ===== */
.empathy {
  padding: 140px 0;
  background: var(--bg-base);
  position: relative;
}

.empathy__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.empathy__head-text { max-width: 540px; }

.empathy__head-image {
  position: relative;
  height: 200px;
}

.empathy__head-image-circle {
  position: absolute;
  border-radius: 50%;
}

.empathy__head-image-circle--1 {
  width: 140px;
  height: 140px;
  background: var(--primary);
  top: 0;
  right: 60px;
  opacity: 0.9;
}

.empathy__head-image-circle--2 {
  width: 80px;
  height: 80px;
  background: var(--surface-dark);
  top: 80px;
  right: 0;
}

.empathy__head-slot {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 24px;
  top: 10px;
  right: 200px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(65, 169, 165, 0.06),
      rgba(65, 169, 165, 0.06) 10px,
      rgba(65, 169, 165, 0.12) 10px,
      rgba(65, 169, 165, 0.12) 20px
    );
}

/* ===== 共感セクション カルーセル ===== */
.empathy__carousel {
  position: relative;
  margin-bottom: 56px;
}

.empathy__carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  scroll-behavior: smooth;
  padding: 32px 4px 40px;
  margin: -32px -4px -40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.empathy__carousel-track::-webkit-scrollbar { display: none; }

.empathy__slide {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  position: relative;
  padding-top: 32px;
}

@media (max-width: 1024px) {
  .empathy__slide { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 767px) {
  .empathy__slide { flex: 0 0 85%; }
  .empathy__carousel-track { gap: 16px; }
}

.empathy__slide-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  position: relative;
  height: 100%;
  min-height: 240px;
  transition: all 0.5s var(--ease);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: stretch;
}

.empathy__slide-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.empathy__slide-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.empathy__voice-slot {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, var(--primary-pale-2), var(--primary-pale));
  border: 1px solid rgba(65, 169, 165, 0.15);
  align-self: end;
  flex-shrink: 0;
  padding: 8px;
  position: relative;
}

.empathy__voice-slot::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 70%;
  height: 12px;
  background: var(--accent);
  opacity: 0.35;
  border-radius: 50%;
  filter: blur(4px);
  transform: translateX(-50%);
  z-index: 0;
}

.empathy__voice-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.empathy__voice-slot.img-slot--missing {
  padding: 8px;
}

.empathy__voice-slot.img-slot--missing .img-slot__label,
.empathy__voice-slot.img-slot--missing .img-slot__name {
  font-size: 9px;
}

.empathy__voice-slot.img-slot--missing .img-slot__file {
  display: none !important;
}

@media (max-width: 1024px) {
  .empathy__voice-slot {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 767px) {
  .empathy__slide-card {
    grid-template-columns: 1fr 100px;
    padding: 28px 20px 24px;
    gap: 16px;
  }
  .empathy__voice-slot {
    width: 100px;
    height: 100px;
  }
}

.empathy__card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
}

.empathy__card-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--ink);
}

.empathy__card-text em { font-weight: 800; }

/* 吹き出し */
.empathy__bubble {
  position: absolute;
  top: -28px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px 16px 16px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow-sm);
  transform: rotate(-4deg);
  transition: transform 0.4s var(--ease);
}

.empathy__bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 8px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 0 0 0 4px;
  transform: rotate(45deg);
  z-index: -1;
}

.empathy__bubble--accent {
  background: var(--accent);
  color: var(--ink);
  transform: rotate(4deg);
}

.empathy__bubble--accent::after {
  background: var(--accent);
}

.empathy__slide-card:hover .empathy__bubble {
  transform: rotate(-2deg) scale(1.08);
}

.empathy__slide-card:hover .empathy__bubble--accent {
  transform: rotate(2deg) scale(1.08);
}

/* ナビゲーション */
.empathy__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.empathy__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.empathy__nav-btn svg { width: 18px; height: 18px; }

.empathy__nav-btn:hover {
  background: var(--surface-dark);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.05);
}

.empathy__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.empathy__nav-btn:disabled:hover {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
}

.empathy__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.empathy__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.empathy__dot:hover { background: var(--primary-light); }

.empathy__dot.is-active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}

/* 結論カード */
.empathy__conclusion {
  margin-top: 48px;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--surface-dark-soft), var(--surface-dark));
  color: #fff;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.empathy__conclusion::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
}

.empathy__conclusion::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.18;
}

.empathy__conclusion-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.empathy__conclusion-text {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.empathy__conclusion-text em {
  color: #EFC800;
  font-size: 1.1em;
}

@media (max-width: 767px) {
  .empathy__conclusion {
    padding: 36px 28px;
    text-align: center;
  }
}

/* ===== 解決策 ===== */
.solution {
  padding: 180px 0;
  background: linear-gradient(
    to bottom,
    var(--bg-base) 0%,
    var(--primary-pale-2) 8%,
    var(--primary-pale) 50%,
    #DCEFEE 92%,
    var(--bg-cream) 100%
  );
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.solution::before,
.solution::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

.solution::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    #FFFFFF 0%,
    rgba(255, 254, 250, 0) 100%
  );
}

.solution::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    #FBF9F2 0%,
    rgba(255, 243, 210, 0) 100%
  );
}

.solution__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.solution__decor--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  opacity: 0.22;
  filter: blur(60px);
}

.solution__decor--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--em) 0%, transparent 70%);
  bottom: 10%;
  left: -100px;
  opacity: 0.16;
  filter: blur(80px);
}

/* solutionスコープ:--lightバリアントの上書き(ペールティール背景用) */
.solution .eyebrow--light { color: var(--primary); }
.solution .eyebrow--light::before { background: var(--primary); }
.solution .section-title--light { color: var(--ink); }
.solution .section-title--light em { color: var(--em); }
.solution .section-lead--light { color: var(--ink-soft); }

.solution__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.solution__head .section-lead { margin: 0 auto; }

/* ===== 全体像ダイアグラム ===== */
.solution-overview {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 79, 77, 0.14);
  border-radius: 32px;
  padding: 48px 48px 36px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(180, 140, 0, 0.12);
  margin-bottom: 88px;
}

.solution-overview__caption {
  text-align: center;
  margin-bottom: 36px;
}

.solution-overview__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--primary);
  background: rgba(65, 169, 165, 0.12);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.solution-overview__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.solution-overview__title em {
  color: var(--em);
}

.solution-overview__diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.overview-phase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(26, 79, 77, 0.12);
  border-radius: 24px;
  padding: 24px 20px 22px;
  box-shadow: 0 6px 18px rgba(180, 140, 0, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.overview-phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(180, 140, 0, 0.18);
}

.overview-phase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 14px;
}

.overview-phase__num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.overview-phase__chip {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--em);
  background: var(--em-pale);
  padding: 4px 10px;
  border-radius: 999px;
}

.overview-phase__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  color: var(--primary);
  margin-bottom: 14px;
}

.overview-phase__icon svg {
  width: 28px;
  height: 28px;
}

.overview-phase__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.overview-phase__role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(65, 169, 165, 0.4);
  width: 100%;
}

.overview-phase__desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
  flex-grow: 1;
}

.overview-phase__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(254, 200, 0, 0.18);
  border: 1px solid rgba(254, 200, 0, 0.4);
  padding: 6px 12px;
  border-radius: 8px;
}

.overview-phase__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.7;
}

.overview-phase__connector svg {
  width: 24px;
  height: 24px;
}

.solution-overview__legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.solution-overview__legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--em);
}

/* ===== タイムライン詳細 ===== */
.solution-timeline {
  position: relative;
  z-index: 2;
}

.solution-timeline__head {
  text-align: center;
  margin-bottom: 48px;
}

.solution-timeline__head .section-lead { margin: 0 auto; }

.solution-timeline__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--primary);
  background: rgba(65, 169, 165, 0.12);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.solution-timeline__title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  color: var(--ink);
}

.solution-timeline__title em {
  color: var(--em);
}

.solution-timeline__track {
  position: relative;
  padding-left: 80px;
}

.solution-timeline__track::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 31px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(65, 169, 165, 0.55) 0%,
    rgba(65, 169, 165, 0.55) 60%,
    rgba(230, 126, 98, 0.5) 100%
  );
  z-index: 0;
}

.t-step {
  position: relative;
  margin-bottom: 32px;
}

.t-step:last-child {
  margin-bottom: 0;
}

.t-step__marker {
  position: absolute;
  top: 0;
  left: -80px;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.t-step__marker-label {
  position: absolute;
  top: -22px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--primary);
}

.t-step__marker-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  box-shadow: 0 6px 18px rgba(65, 169, 165, 0.28);
}

.t-step__duration {
  position: absolute;
  top: 80px;
  right: 36px;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--em);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(230, 126, 98, 0.35);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(180, 140, 0, 0.1);
}

.t-step__slot {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(65, 169, 165, 0.04),
      rgba(65, 169, 165, 0.04) 10px,
      rgba(65, 169, 165, 0.08) 10px,
      rgba(65, 169, 165, 0.08) 20px
    );
  border-color: rgba(65, 169, 165, 0.3);
  box-shadow: 0 6px 18px rgba(65, 169, 165, 0.18);
}

.t-step__slot .img-slot__label {
  color: var(--primary);
  font-size: 9px;
}

.t-step__slot .img-slot__name {
  color: var(--ink-soft);
  font-size: 10px;
}

.t-step__slot .img-slot__file {
  background: rgba(65, 169, 165, 0.1);
  color: var(--ink-soft);
  font-size: 9px;
}

.t-step__slot::before {
  background: var(--primary);
  opacity: 0.4;
}

.t-step__card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 79, 77, 0.14);
  border-radius: 24px;
  padding: 32px 36px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(180, 140, 0, 0.12);
  transition: all 0.4s var(--ease);
}

.t-step__card:hover {
  background: #fff;
  border-color: rgba(26, 79, 77, 0.24);
  transform: translateX(4px);
}

.t-step__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(26, 79, 77, 0.18);
}

.t-step__header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.t-step__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.t-step__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.t-step__subtitle::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--primary);
}

.t-step__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
  align-items: start;
}

.t-step__col-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--primary);
  background: rgba(65, 169, 165, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.t-step__col-label--accent {
  color: #fff;
  background: var(--primary);
}

.t-step__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-step__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
}

.t-step__list-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  letter-spacing: 0.08em;
  margin-top: 3px;
  flex-shrink: 0;
  width: 26px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.t-step__col--deliver {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(26, 79, 77, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
}

.t-step__deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-step__deliverable-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.t-step__deliverable-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.t-step__highlight {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 79, 77, 0.12);
  border-radius: 14px;
  padding: 16px 20px 16px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
  overflow: hidden;
}

.t-step__highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--em);
}

.t-step__highlight em {
  color: var(--em);
  font-size: 1.1em;
  font-weight: 800;
}

/* タイムライン上のサブCTA */
.t-cta {
  position: relative;
  margin-bottom: 32px;
}

.t-cta__marker {
  position: absolute;
  top: 50%;
  left: -64px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px dashed var(--em);
  z-index: 1;
}

.t-cta__marker::after {
  content: "→";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--em);
  font-size: 14px;
  font-weight: 800;
}

.t-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  border: 1px dashed rgba(230, 126, 98, 0.6);
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.t-cta__inner:hover {
  background: linear-gradient(135deg, var(--surface-dark-soft), var(--surface-dark));
  border-color: transparent;
  color: #fff;
}

.t-cta__text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}

.t-cta__inner:hover .t-cta__text {
  color: #fff;
}

.t-cta__text::before {
  content: "↓";
  color: var(--em);
  font-size: 18px;
  transition: color 0.4s var(--ease);
}

.t-cta__inner:hover .t-cta__text::before {
  color: var(--accent);
}

.solution__why {
  margin-top: 96px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.solution__why-text {
  display: inline-block;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
  max-width: 880px;
}

.solution__why-text em {
  color: var(--em);
  font-size: 1.12em;
}

/* 表示制御ユーティリティ：PC では改行、SP では取り除く */
.br-pc { display: inline; }
@media (max-width: 767px) {
  .br-pc { display: none; }
}

/* ===== ベネフィット ===== */
.benefit {
  padding: 180px 0 140px;
  background: var(--bg-cream);
  position: relative;
}

.benefit__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.benefit__head-text { max-width: 600px; }

.benefit__slot {
  width: 100%;
  height: 220px;
  border-radius: 24px;
}

.benefit__head .section-lead { margin: 0; }

.benefit__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(65, 169, 165, 0.06);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.benefit__item {
  display: grid;
  grid-template-columns: 80px auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  background: var(--bg-base);
  transition: all 0.4s var(--ease);
  position: relative;
  cursor: default;
}

.benefit__item:hover {
  background: linear-gradient(135deg, var(--surface-dark-soft), var(--surface-dark));
  color: #fff;
}

.benefit__item:hover .benefit__num,
.benefit__item:hover .benefit__title { color: #fff; }

.benefit__item:hover .benefit__text { color: rgba(255, 255, 255, 0.85); }

.benefit__item:hover .benefit__icon {
  background: var(--accent);
  color: var(--ink);
  transform: rotate(-12deg);
}

.benefit__num {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  transition: color 0.4s var(--ease);
}

.benefit__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.benefit__icon svg { width: 30px; height: 30px; }

.benefit__body { min-width: 0; }

.benefit__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color 0.4s var(--ease);
}

.benefit__text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  transition: color 0.4s var(--ease);
}

.benefit__text em {
  color: var(--em);
  font-weight: 700;
}

.benefit__item:hover .benefit__text em { color: var(--em); }

.benefit__quote {
  margin-top: 64px;
  text-align: center;
  padding: 64px;
  background:
    radial-gradient(circle at 100% 0%, rgba(65, 169, 165, 0.15), transparent 50%),
    var(--bg-base);
  border-radius: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.benefit__quote::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
}

.benefit__quote-cross {
  display: inline-block;
  font-size: 18px;
  color: var(--text-mute);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.benefit__quote-main {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.benefit__quote-main em {
  color: var(--em);
  font-size: 1.15em;
  position: relative;
}

.benefit__quote-main em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--em-pale);
  border-radius: 4px;
  z-index: -1;
}

/* ===== 強み ===== */
.strength {
  padding: 140px 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.strength__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.strength__visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 480 / 320;
  container-type: inline-size;
}

.strength__circle {
  position: absolute;
  width: 41.6667%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
  font-size: clamp(10px, 2.92cqi, 14px);
  transition: all 0.5s var(--ease);
}

.strength__circle--1 {
  background: var(--primary);
  color: #fff;
  top: 6.25%;
  left: 0;
  z-index: 2;
}

.strength__circle--3 {
  background: var(--accent);
  color: var(--ink);
  top: 6.25%;
  left: 58.3333%;
  z-index: 1;
}

.strength__slot {
  position: absolute;
  width: 41.6667%;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  top: 25%;
  left: 29.1667%;
  z-index: 3;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(65, 169, 165, 0.08),
      rgba(65, 169, 165, 0.08) 10px,
      rgba(65, 169, 165, 0.16) 10px,
      rgba(65, 169, 165, 0.16) 20px
    );
  border: 2px dashed var(--primary);
}

.strength__visual:hover .strength__circle--1 { transform: translate(-20px, -10px); }
.strength__visual:hover .strength__circle--3 { transform: translate(20px, -10px); }

.strength__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
}

.strength__card {
  padding: 48px 36px;
  background: var(--bg-base);
  border-right: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.strength__card:last-child { border-right: none; }

.strength__card:hover {
  background: var(--bg-cream);
}

.strength__card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.strength__card-num::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--primary);
}

.strength__card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.4;
}

.strength__card-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 32px;
}

.strength__card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strength__card-keyword {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.strength__tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.strength__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--surface-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.strength__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== オファー ===== */
.offer {
  padding: 120px 0;
  background: var(--bg-cream);
  position: relative;
}

.offer__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--bg-base);
  border-radius: 40px;
  border: 1px solid var(--border);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.offer__inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--primary-pale);
}

.offer__inner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(254, 200, 0, 0.18);
}

.offer__body {
  position: relative;
  z-index: 1;
}

.offer__title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  margin: 16px 0 24px;
}

.offer__title em { color: var(--em); }

.offer__desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 32px;
}

.offer__price-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--surface-dark-soft) 0%, var(--surface-dark) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.offer__price-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
}

.offer__price-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.offer__price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.offer__price-num {
  font-size: clamp(48px, 6vw, 64px);
  letter-spacing: -0.03em;
}

.offer__price-unit {
  font-size: 24px;
  font-weight: 600;
}

.offer__price-from {
  font-size: 14px;
  color: var(--accent);
  opacity: 0.85;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.offer__price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== FAQ ===== */
.faq {
  padding: 140px 0;
  background: var(--bg-base);
}

.faq__head {
  text-align: center;
  margin-bottom: 64px;
}

.faq__head .section-lead { margin: 0 auto; }

.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-cream);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.faq__item:hover {
  border-color: var(--primary);
}

.faq__item[open] {
  background: var(--bg-base);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  user-select: none;
  color: var(--ink);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__q-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  flex-shrink: 0;
  width: 36px;
}

.faq__q-text {
  flex: 1;
  line-height: 1.5;
}

.faq__q-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-dark);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq__q-icon::before,
.faq__q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s var(--ease);
}

.faq__q-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq__q-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__q-icon { background: var(--ink); }
.faq__item[open] .faq__q-icon::before,
.faq__item[open] .faq__q-icon::after { background: #fff; }
.faq__item[open] .faq__q-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__answer {
  padding: 0 32px 32px 92px;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.95;
  position: relative;
}

.faq__answer::before {
  content: "A";
  position: absolute;
  top: -2px;
  left: 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  width: 36px;
}

/* ===== クロージング ===== */
.closing {
  padding: 140px 0;
  background: linear-gradient(165deg, var(--surface-dark-deeper) 0%, var(--surface-dark) 50%, var(--surface-dark-soft) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.closing__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.closing__circle--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  opacity: 0.35;
  filter: blur(40px);
}

.closing__circle--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: 0.18;
  filter: blur(60px);
}

.closing__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing__title {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.closing__title em {
  color: #FEC800;
  position: relative;
  display: inline-block;
}

.closing__title em::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: #FEC800;
  opacity: 0.5;
  border-radius: 2px;
}

.closing__lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  margin-bottom: 36px;
}

.closing__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.closing__notes li {
  font-size: 12px;
  font-weight: 600;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.closing__notes li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.closing__cta-card {
  background: var(--bg-cream);
  color: var(--ink);
  padding: 48px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.closing__cta-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--em));
  opacity: 0.22;
}

.closing__slot {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(65, 169, 165, 0.08),
      rgba(65, 169, 165, 0.08) 8px,
      rgba(65, 169, 165, 0.16) 8px,
      rgba(65, 169, 165, 0.16) 16px
    );
  position: relative;
  z-index: 1;
}

.closing__slot .img-slot__file {
  font-size: 9px;
}

.closing__cta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  display: block;
}

.closing__cta-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.closing__cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.closing__cta-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

.closing__cta-points li::before {
  content: "→";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.closing__cta-card .btn {
  position: relative;
  z-index: 1;
}

/* ===== フッター ===== */
.footer {
  padding: 80px 0 32px;
  background: var(--surface-dark-deeper);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
}

.footer__logo-mark::before,
.footer__logo-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.footer__logo-mark::before {
  inset: 0;
  background: var(--accent);
}

.footer__logo-mark::after {
  inset: 6px 6px 6px 16px;
  background: var(--surface-dark);
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 320px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer__nav-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__nav-link::before {
  content: "→";
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
  color: var(--accent);
}

.footer__nav-link:hover { color: #fff; padding-left: 4px; }
.footer__nav-link:hover::before { opacity: 1; transform: translateX(0); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.footer__legal { display: flex; gap: 24px; }

.footer__legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal-link:hover { color: var(--accent); }

/* ===== フローティング CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 20px;
  background: var(--surface-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(65, 169, 165, 0.22);
  z-index: 50;
  transition: all 0.3s var(--ease);
}

.floating-cta__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.floating-cta__circle svg { width: 14px; height: 14px; }

.floating-cta:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* ===== アニメーション ===== */
[data-anim] {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

[data-anim="fade-up"] { transform: translateY(40px); }
[data-anim="fade-left"] { transform: translateX(40px); }
[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim="scale"] { transform: scale(0.95); }

[data-anim].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  .header__inner { padding: 0 28px; gap: 16px; }
  .header__nav { gap: 24px; }
  .header__nav-item { font-size: 12px; }

  .hero { padding: 110px 0 90px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .hero__visual {
    order: -1;
    min-height: 420px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__main-slot {
    width: 360px;
    height: 360px;
  }

  .hero__sticker--1 { width: 200px; height: 200px; }
  .hero__sticker--2 { width: 170px; height: 170px; }
  .hero__sticker--3 { width: 150px; height: 150px; }

  .hero__lead,
  .hero__points,
  .hero__answer-arrow,
  .hero__answer { max-width: none; }

  .empathy { padding: 110px 0; }
  .empathy__head { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
  .empathy__head-image { display: none; }
  .empathy__head-text { max-width: none; }

  .solution { padding: 130px 0; }
  .solution-overview { padding: 36px 28px 28px; margin-bottom: 64px; }
  .solution-overview__diagram {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .overview-phase { padding: 22px 20px 20px; }
  .overview-phase__connector {
    transform: rotate(90deg);
  }

  .solution-timeline__track { padding-left: 64px; }
  .solution-timeline__track::before { left: 23px; }
  .t-step__marker { left: -64px; width: 48px; }
  .t-step__marker-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-width: 2px;
  }
  .t-step__marker-label { top: -18px; font-size: 9px; }
  .t-step__duration {
    top: 56px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 11px;
    padding: 3px 8px;
  }

  .t-step__card { padding: 28px 26px; }
  .t-step__header { gap: 18px; }
  .t-step__slot { width: 90px; height: 90px; }
  .t-step__body { grid-template-columns: 1fr; gap: 20px; }

  .t-cta__marker { left: -52px; width: 28px; height: 28px; }

  .benefit { padding: 130px 0 110px; }
  .benefit__head {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }
  .benefit__head-text { max-width: none; }
  .benefit__slot { height: 200px; }
  .benefit__item {
    grid-template-columns: 64px auto 1fr;
    gap: 24px;
    padding: 30px 32px;
  }

  .strength { padding: 110px 0; }
  .strength__head {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }

  .strength__visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .strength__cards { grid-template-columns: 1fr; }
  .strength__card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 32px;
  }
  .strength__card:last-child { border-bottom: none; }

  .offer { padding: 100px 0; }
  .offer__inner { grid-template-columns: 1fr; padding: 48px; gap: 32px; }

  .faq { padding: 110px 0; }

  .closing { padding: 110px 0; }
  .closing__inner { grid-template-columns: 1fr; gap: 48px; }
  .closing__cta-card { padding: 40px; }

  .footer__inner { gap: 48px; }
}

@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .header__inner { padding: 0 20px; }

  .header { padding: 16px 0; }
  .header.is-scrolled { padding: 10px 0; }
  .header__logo-mark { height: 40px; }

  .header__nav,
  .header__cta { display: none; }

  .header__menu-btn { display: block; margin-left: auto; }

  .mobile-menu { padding: 100px 24px 40px; align-items: flex-start; overflow-y: auto; }
  .mobile-menu__item { font-size: 22px; }
  .mobile-menu__cta { font-size: 15px; padding: 18px; }

  .hero {
    padding: 100px 0 72px;
    min-height: auto;
  }

  .hero__tag {
    font-size: 10px;
    letter-spacing: 0.25em;
    padding: 8px 18px 8px 12px;
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: clamp(30px, 8vw, 40px);
    margin-bottom: 24px;
  }

  .hero__circle-bg {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -200px;
  }

  .hero__lead { font-size: 14px; margin-bottom: 22px; }

  .hero__points {
    padding: 18px 20px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  .hero__points li { font-size: 13px; gap: 10px; }
  .hero__points-mark { font-size: 10px; }

  .hero__ctas { gap: 12px; }
  .hero__ctas .btn { width: 100%; justify-content: space-between; }

  .hero__visual {
    min-height: 320px;
    max-width: 420px;
  }

  .hero__main-slot {
    width: min(280px, 72vw);
    height: min(280px, 72vw);
  }

  .hero__sticker--1 {
    width: 130px;
    height: 130px;
    top: 0;
    right: 0;
  }
  .hero__sticker--2 {
    width: 110px;
    height: 110px;
    bottom: 8%;
    left: 0;
  }
  .hero__sticker--3 {
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 8%;
  }

  .hero__scroll { display: none; }

  .section-title { margin-bottom: 18px; }
  .section-lead { font-size: 15px; line-height: 1.85; }

  .empathy,
  .solution,
  .benefit,
  .strength,
  .faq,
  .closing,
  .offer { padding: 72px 0; }

  .empathy__head { margin-bottom: 40px; }
  .empathy__conclusion {
    padding: 32px 24px;
    text-align: center;
    gap: 18px;
    border-radius: 24px;
  }

  .solution-overview { padding: 28px 20px 22px; border-radius: 24px; margin-bottom: 48px; }
  .solution-timeline__track { padding-left: 52px; }
  .solution-timeline__track::before { left: 19px; }
  .t-step__marker { left: -52px; width: 40px; }
  .t-step__marker-num {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .t-step__marker-label { display: none; }
  .t-step__duration {
    top: 46px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 10px;
    padding: 2px 7px;
  }

  .t-step { margin-bottom: 24px; }
  .t-step__card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .t-step__header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }
  .t-step__slot {
    width: 80px;
    height: 80px;
    justify-self: start;
  }
  .t-step__title { font-size: 20px; }
  .t-step__highlight { font-size: 14px; padding: 14px 16px 14px 24px; }

  .t-cta__marker { left: -42px; width: 24px; height: 24px; }
  .t-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .solution__why { margin-top: 72px; }
  .solution__why-text {
    font-size: 20px;
    line-height: 1.65;
  }

  .benefit__list { border-radius: 24px; }
  .benefit__head { margin-bottom: 40px; }
  .benefit__slot { height: 180px; }
  .benefit__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 22px;
    text-align: left;
  }

  .benefit__num { font-size: 12px; }
  .benefit__title { font-size: 18px; }

  .benefit__quote { padding: 40px 24px; margin-top: 48px; border-radius: 28px; }
  .benefit__quote-cross { font-size: 15px; }

  .strength__head { margin-bottom: 48px; }
  .strength__visual {
    max-width: 300px;
  }

  .strength__card { padding: 36px 26px; }
  .strength__card-title { font-size: 20px; margin-bottom: 16px; }
  .strength__card-num { margin-bottom: 22px; }

  .strength__tags { margin-top: 40px; gap: 8px; }
  .strength__tag { padding: 10px 18px; font-size: 12px; }

  .offer__inner { padding: 32px 22px; border-radius: 28px; }
  .offer__inner > * { min-width: 0; }
  .offer__price-card { padding: 28px 24px; border-radius: 22px; }
  .offer__body .btn {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
    line-height: 1.4;
    text-align: left;
  }
  .offer__body .btn > span:first-child { flex: 1; }

  .closing__notes { grid-template-columns: 1fr; gap: 10px; }

  .closing__cta-card { padding: 32px 24px; border-radius: 24px; }
  .closing__cta-title { font-size: 19px; }

  .faq__head { margin-bottom: 40px; }
  .faq__question {
    padding: 20px 22px;
    font-size: 14px;
    gap: 14px;
  }

  .faq__q-num { font-size: 11px; width: 32px; }
  .faq__q-icon { width: 30px; height: 30px; }

  .faq__answer { padding: 0 22px 24px 68px; font-size: 14px; }
  .faq__answer::before { left: 22px; font-size: 11px; }

  .footer { padding: 60px 0 24px; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal { justify-content: center; flex-wrap: wrap; }

  .floating-cta { display: inline-flex; }

  .btn { font-size: 14px; padding: 6px 6px 6px 22px; gap: 12px; }
  .btn--primary { padding-left: 24px; }
  .btn--cream { padding-left: 24px; }
  .btn--large { font-size: 15px; padding: 8px 8px 8px 28px; }
  .btn--large .btn__circle { width: 48px; height: 48px; }
  .btn__circle { width: 40px; height: 40px; }
  .btn__circle svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header__inner { padding: 0 16px; }

  .hero { padding: 90px 0 60px; }
  .hero__title { font-size: clamp(26px, 8.4vw, 32px); }
  .hero__visual { min-height: 280px; }

  .hero__sticker--1 { width: 110px; height: 110px; }
  .hero__sticker--2 { width: 92px; height: 92px; }
  .hero__sticker--3 { width: 84px; height: 84px; }

  .empathy,
  .solution,
  .benefit,
  .strength,
  .faq,
  .closing,
  .offer { padding: 60px 0; }

  .empathy__slide-card {
    grid-template-columns: 1fr;
    padding: 24px 18px 22px;
    gap: 14px;
  }
  .empathy__voice-slot { width: 90px; height: 90px; align-self: flex-end; }
  .empathy__bubble {
    width: 44px;
    height: 44px;
    font-size: 18px;
    top: -20px;
    right: 20px;
  }

  .empathy__conclusion { padding: 28px 20px; border-radius: 20px; }
  .empathy__conclusion-text { font-size: 16px; }

  .solution__why-text { font-size: 17px; line-height: 1.6; }

  .benefit__quote-main { font-size: 22px; }
  .benefit__quote-cross { font-size: 14px; }

  .offer__price-num { font-size: 44px; }
  .offer__price-unit { font-size: 20px; }

  .closing__title { font-size: 26px; }
  .closing__cta-card { padding: 28px 20px; }
  .closing__cta-title { font-size: 17px; }

  .footer__nav { grid-template-columns: 1fr; gap: 20px; }

  .floating-cta {
    bottom: 14px;
    right: 14px;
    padding: 5px 5px 5px 16px;
    font-size: 12px;
  }
  .floating-cta__circle { width: 32px; height: 32px; }
}

/* ===== お問い合わせページ (page-contact) ===== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(165deg, var(--surface-dark-deeper) 0%, var(--surface-dark) 50%, var(--surface-dark-soft) 100%);
  color: #fff;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__circle--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: -160px;
  right: -120px;
  opacity: 0.32;
  filter: blur(40px);
}

.page-hero__circle--2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  opacity: 0.18;
  filter: blur(60px);
}

.page-hero__breadcrumb {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.page-hero__breadcrumb a:hover { color: var(--accent); }

.page-hero__breadcrumb span[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin: 16px 0 24px;
}

.page-hero__title em {
  color: #FEC800;
  font-style: normal;
  position: relative;
  display: inline-block;
}

.page-hero__title em::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: #FEC800;
  opacity: 0.5;
  border-radius: 2px;
}

.page-hero__lead {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.contact-form-section {
  padding: 100px 0 140px;
  background: var(--bg-cream);
}

.contact-form-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 56px;
  border-radius: 32px;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.18);
}

.contact-form-card__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 14px;
}

.contact-form-card__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
}

.contact-form-card__note {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-form-card__required {
  color: var(--em);
  font-weight: 700;
  margin: 0 2px;
}

/* CF7 出力 (.wpcf7-form) と静的ダミーマークアップの両方に効くようにする */
.contact-form-card__body p {
  margin: 0 0 22px;
}

.contact-form-card__body label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.contact-form-card__body input[type="text"],
.contact-form-card__body input[type="email"],
.contact-form-card__body input[type="tel"],
.contact-form-card__body textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg-cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form-card__body input[type="text"]:focus,
.contact-form-card__body input[type="email"]:focus,
.contact-form-card__body input[type="tel"]:focus,
.contact-form-card__body textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary);
}

.contact-form-card__body textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form-card__body input[type="submit"],
.contact-form-card__body .wpcf7-submit,
.contact-form-card__body .contact-form-card__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 999px;
  padding: 16px 40px;
  margin-top: 16px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-form-card__body input[type="submit"]:hover,
.contact-form-card__body .wpcf7-submit:hover,
.contact-form-card__body .contact-form-card__submit:hover {
  background: var(--surface-dark-deeper);
  transform: translateY(-2px);
}

.contact-form-card__body .wpcf7 form .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form-card__body .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--em);
}

.contact-form-card__body .wpcf7-spinner {
  margin-left: 12px;
}

.contact-form-card__static-notice {
  background: rgba(254, 200, 0, 0.16);
  border-left: 3px solid #FEC800;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 0 28px;
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.7;
}

.contact-form-card__recaptcha-notice {
  margin: 28px 0 0;
  font-size: 11.5px;
  color: var(--text-sub);
  line-height: 1.7;
  text-align: center;
}

.contact-form-card__recaptcha-notice a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-card__recaptcha-notice a:hover {
  text-decoration: none;
}

/* reCAPTCHA v3 のフローティングバッジを非表示にする (上の注記表示で Google ToS 準拠) */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

@media (max-width: 768px) {
  .page-hero { padding: 130px 0 70px; }
  .page-hero__circle--1 { width: 320px; height: 320px; }
  .page-hero__circle--2 { width: 220px; height: 220px; }
  .page-hero__breadcrumb { font-size: 11px; gap: 8px; }
  .page-hero__title { font-size: 30px; }
  .page-hero__lead { font-size: 14.5px; line-height: 1.9; }

  .contact-form-section { padding: 60px 0 100px; }
  .contact-form-card { padding: 32px 22px; border-radius: 24px; }
  .contact-form-card__title { font-size: 20px; }
  .contact-form-card__body input[type="submit"],
  .contact-form-card__body .wpcf7-submit,
  .contact-form-card__body .contact-form-card__submit {
    width: 100%;
    padding: 16px 28px;
  }
}

/* ===== 解決策フェーズ１ 二極化レイアウト (overview/timeline) ===== */

/* OVERVIEW: 1 box の中に 2 タグを縦並びで表示。
   max-content の grid 列で 2 タグを同幅に揃え、
   box 内中央寄せ (Phase 02/03 の content-width タグと統一感)。 */
.overview-phase--split .overview-phase__tags {
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  gap: 6px;
}

.overview-phase--split .overview-phase__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

.overview-phase--split .overview-phase__tag::before {
  content: "▸";
  color: var(--em);
  font-weight: 800;
  flex-shrink: 0;
}

/* TIMELINE: 1 枚のカード内で共有ヘッダー + 2 プラン横並び */
.t-step__card--split .t-step__split-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.t-step__card--split .t-step__split-body > .t-step__plan + .t-step__plan {
  border-left: 1px dashed rgba(26, 79, 77, 0.18);
  padding-left: 32px;
}

.t-step__plan {
  display: flex;
  flex-direction: column;
}

.t-step__plan-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px dashed rgba(26, 79, 77, 0.14);
}

.t-step__plan-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: 0;
}

.t-step__plan-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  width: 100%;
}

.t-step__plan-subtitle::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--primary);
}

/* split body 内では duration を absolute から static に切り替えて plan-head 内に並べる */
.t-step__plan-head .t-step__duration {
  position: static;
  margin-left: auto;
  align-self: center;
  transform: none;
  white-space: nowrap;
}

/* plan-body は narrow column なので PROCESS / DELIVERABLES を縦積み */
.t-step__plan-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* highlight をプランブロック下部に揃える */
.t-step__plan .t-step__highlight {
  margin-top: auto;
  font-size: 14px;
  padding: 14px 18px 14px 26px;
}

@media (max-width: 1024px) {
  .t-step__card--split .t-step__split-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .t-step__card--split .t-step__split-body > .t-step__plan + .t-step__plan {
    border-left: none;
    border-top: 1px dashed rgba(26, 79, 77, 0.18);
    padding-left: 0;
    padding-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim] { opacity: 1; transform: none; }
}