/* ==========================================
   voice value LP - スタイルシート
   ブルー系SaaS / ホワイトベース
   ==========================================
   セクション目次
   1. リセット・ベース
   2. デザイントークン（CSS変数）
   3. 共通ユーティリティ
   4. ボタン
   5. ヘッダー
   6. ファーストビュー
   7. 受賞・実績バナー
   8. 導入企業ロゴ
   9. voice valueとは（About）
   10. 主要機能・特徴（Features）
   11. 外部連携（Integration）
   12. 利用シーン（Usecase）
   13. 導入事例（Case Study）
   14. FAQ
   15. 導入の流れ（Flow）
   16. フッターCTA
   17. フッター
   18. モバイルスティッキーバー
   19. レスポンシブ（〜768px / 〜1024px）
========================================== */


/* ==========================================
   1. リセット・ベース
========================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--c-text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease, color .2s ease;
}

a:hover {
  opacity: .85;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}


/* ==========================================
   2. デザイントークン（CSS変数）
========================================== */
:root {
  /* カラー（SYNVOICEブランドトーン：コーラル→ピンク→グリーンのグラデ） */
  --c-primary: #cf4a7d;          /* SYNVOICEコーラルオレンジ（CTA基軸） */
  --c-primary-dark: #b23a68;     /* ホバー時 */
  --c-primary-light: #fbe9f1;    /* 薄オレンジ背景 */

  --c-accent-pink: #e26c95;      /* SYNVOICEピンク */
  --c-accent-green: #88c63f;     /* SYNVOICEグリーン */
  --c-accent-lime: #b7d34f;      /* SYNVOICEライム */
  --c-accent: var(--c-accent-green);

  /* グラデーション（見出し・装飾用） */
  --g-brand: linear-gradient(120deg, #ee8055 0%, #e26c95 50%, #88c63f 100%);

  --c-text-dark: #232a44;        /* 見出し（修正案：#2d2d2d→#1a1a1a） */
  --c-text: #222222;             /* 本文（修正案：#4a4a4a→#222222） */
  --c-text-sub: #4a4a4a;         /* サブテキスト（修正案：#767676→#4a4a4a） */
  --c-text-muted: #767676;       /* 注釈（修正案：#a3a3a3→#767676） */

  --c-bg: #ffffff;
  --c-bg-soft: #f5f5f5;          /* セクション交互背景（ニュートラルグレー） */
  --c-bg-card: #ffffff;
  --c-border: #e0e0e0;
  --c-border-light: #ededed;

  /* タイポ */
  --ff-en: 'Montserrat', sans-serif;
  --ff-jp: 'Noto Sans JP', sans-serif;

  /* スペーシング */
  --space-section: 96px;         /* セクション縦余白（PC） */
  --space-section-sp: 64px;      /* セクション縦余白（SP） */

  /* レイアウト */
  --container-max: 1120px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, .08);
  --shadow-lg: 0 16px 48px rgba(10, 37, 64, .12);
}


/* ==========================================
   3. 共通ユーティリティ
========================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* セクション共通 */
.section {
  padding: var(--space-section) 0;
}

.section--soft {
  background: var(--c-bg-soft);
}

/* セクション英字ラベル */
.section-label {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}

/* セクション見出し（直下にブランドグラデのアクセント線を追加） */
.section-title {
  font-size: 1.875rem;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.7;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-primary);
  margin: 16px auto 0;
}

.section-lead {
  font-size: 1rem;
  color: var(--c-text);
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.9;
}


/* ==========================================
   4. ボタン
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn--sm {
  padding: 10px 20px;
  font-size: .85rem;
}

.btn--lg {
  padding: 20px 40px;
  font-size: 1.05rem;
}

/* プライマリ（無料トライアル） */
.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(207, 74, 125, .28);
}

.btn-primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(207, 74, 125, .35);
  opacity: 1;
}

/* セカンダリ（資料DL） */
.btn-secondary {
  background: #fff;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn-secondary:hover {
  background: var(--c-primary-light);
  opacity: 1;
}

/* ゴースト（デモ依頼） */
.btn-ghost {
  background: transparent;
  color: var(--c-text-dark);
  border-color: var(--c-border);
}

.btn-ghost:hover {
  border-color: var(--c-text-dark);
  opacity: 1;
}


/* ==========================================
   5. ヘッダー
========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-border-light);
}

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

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__group-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--c-text-sub);
  padding: 2px 8px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}

.header__nav a {
  position: relative;
  font-size: .9rem;
  color: var(--c-text);
  font-weight: 500;
  transition: color .2s;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.header__nav a:hover {
  color: var(--c-primary);
  opacity: 1;
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__menu-btn {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text-dark);
  border-radius: 2px;
  transition: transform .2s ease;
}


/* ==========================================
   6. ファーストビュー
========================================== */
.fv {
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse at bottom right, rgba(207, 74, 125, .06), transparent 55%),
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.fv__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.fv__lead {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.fv__category {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.fv__category-tag {
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: .02em;
}

/* カテゴリタグ：1番目＝ダーク塗り、2番目＝アウトライン（BtoBトーン） */
.fv__category-tag:nth-child(1) {
  background: var(--c-text-dark);
  color: #fff;
}

.fv__category-tag:nth-child(2) {
  background: #fff;
  color: var(--c-text-dark);
  border: 1px solid var(--c-border);
}

.fv__heading {
  font-size: 2.25rem;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  line-height: 1.4;
}

.fv__heading em {
  font-style: normal;
  color: var(--c-primary);
}

.fv__sub {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.9;
  margin-bottom: 32px;
}

.fv__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

/* FVボタンはグリッド2列の各列を100%幅で埋める */
.fv__buttons .btn {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.fv__note {
  font-size: .8rem;
  color: var(--c-text-muted);
}

.fv__image {
  position: relative;
}

/* FVのPC＋スマホ合成モック（透過PNG） */
.fv__devices {
  width: 100%;
  display: block;
  filter: drop-shadow(0 22px 38px rgba(10, 37, 64, .16));
}

/* ベゼル色は画面キャプチャ内のノッチと同色（#302e43）にして馴染ませる */
.laptop-mock__screen {
  background: #302e43;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
}

.laptop-mock__screen img {
  width: 100%;
  display: block;
  border-radius: 5px 5px 0 0;
}

.laptop-mock__base {
  height: 14px;
  background: linear-gradient(180deg, #e8ebf0 0%, #c6ccd5 65%, #9da4af 100%);
  border-radius: 2px 2px 12px 12px;
  margin: 0 -4.5%;
  position: relative;
}

/* 開閉用のくぼみ */
.laptop-mock__base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 13%;
  height: 5px;
  background: #abb2bd;
  border-radius: 0 0 6px 6px;
}


/* ==========================================
   7. 受賞・実績バナー
========================================== */
.awards {
  padding: 32px 0;
  background: var(--c-text-dark);
  color: #fff;
  position: relative;
}

/* awardsバー上端：アクセントライン */
.awards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-primary);
}

.awards__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.awards__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
}

.awards__item::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--c-primary);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
}


/* ==========================================
   8. 導入企業ロゴ
========================================== */
.clients__lead {
  text-align: center;
  font-size: .95rem;
  color: var(--c-text-sub);
  max-width: 640px;
  margin: 0 auto 40px;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}

.clients__logo {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  text-align: center;
  font-size: .85rem;
  color: var(--c-text-sub);
  font-weight: 500;
}

.clients__logo--primary {
  background: var(--c-primary-light);
  color: var(--c-primary);
  font-weight: 700;
}


/* ==========================================
   9. voice valueとは（About）
========================================== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--c-primary-light);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.about-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

.about-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-text-dark);
}

.about-card__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}


/* ==========================================
   10. 主要機能・特徴（Features）
========================================== */
.features__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-row--reverse .feature-row__image {
  order: 2;
}

.feature-row__image {
  background: linear-gradient(135deg, var(--c-primary-light) 0%, #f3f9e8 100%);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.feature-row__image img {
  max-width: 100%;
}

.feature-row__number {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: .15em;
  margin-bottom: 12px;
}

.feature-row__title {
  font-size: 1.625rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.feature-row__title--strong {
  font-size: 1.875rem;
}

.feature-row__text {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.9;
  margin-bottom: 12px;
}

/* 目玉機能ハイライト（リアルタイムモニタリング） */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin-top: 16px;
  text-align: left;
}

.feature-highlight__badge {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  background: var(--c-primary);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.feature-highlight__title {
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.feature-highlight__desc {
  font-size: .95rem;
  color: var(--c-text);
  line-height: 1.9;
}

.feature-highlight__image img {
  width: 100%;
}

/* 補助機能カードグリッド */
.functions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.function-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

.function-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--c-primary-light);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.function-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.function-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text-dark);
}

.function-card__desc {
  font-size: .85rem;
  color: var(--c-text-sub);
  line-height: 1.7;
}


/* ==========================================
   11. 外部連携（Integration）
========================================== */
.integration__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.integration-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
}

.integration-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.integration-card__title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
}

.integration-card__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}


/* ==========================================
   12. 利用シーン（Usecase）
========================================== */
.usecase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.usecase-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.usecase-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--c-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.usecase-card__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.usecase-card__body {
  flex: 1;
}

.usecase-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text-dark);
}

.usecase-card__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}


/* ==========================================
   13. 導入事例（Case Study）
========================================== */
/* 事例カードを横2列で並べる */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
  align-items: start;
}

.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* 画像エリア（16:9で上部全幅） */
.case-card__image {
  background: var(--c-primary-light);
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 360px;
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-card__body {
  padding: 32px 32px 36px;
  text-align: left;
}

.case-card__company {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.case-card__headline {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--c-text-dark);
  line-height: 1.5;
}

.case-card__comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.case-card__col-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-text-sub);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--c-bg-soft);
  display: inline-block;
  margin-bottom: 12px;
}

.case-card__col--after .case-card__col-label {
  background: #ebf6db;
  color: #5a8a1f;
}

.case-card__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-card__col li {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.case-card__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--c-text-muted);
  border-radius: 50%;
}

.case-card__col--after li::before {
  background: var(--c-accent-green);
}


/* ==========================================
   14. FAQ
========================================== */
.faq__list {
  max-width: 800px;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}

.faq-item.is-open {
  border-color: var(--c-primary);
}

.faq-item__question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--c-text-dark);
  font-size: 1rem;
}

.faq-item__question:hover {
  color: var(--c-primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--c-primary);
  border-radius: 1px;
  transition: transform .2s ease;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--c-text);
  line-height: 1.9;
}


/* ==========================================
   15. 導入の流れ（Flow）
========================================== */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.flow-step {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  position: relative;
}

.flow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.flow-step__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 6px;
}

.flow-step__desc {
  font-size: .8rem;
  color: var(--c-text-sub);
  line-height: 1.7;
}


/* ==========================================
   16. フッターCTA
========================================== */
.footer-cta {
  background: linear-gradient(135deg, #392339 0%, #232a44 55%, #1d2438 100%);
  color: #fff;
  padding: var(--space-section) 0;
  position: relative;
}

/* CTAブロック上端：アクセントライン */
.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-primary);
}

.footer-cta__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-cta__heading {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.footer-cta__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 48px;
  line-height: 1.9;
}

.footer-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.cta-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-card__desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
  margin-bottom: 20px;
  min-height: 56px;
}

.cta-card .btn {
  width: 100%;
}

.cta-card .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.cta-card .btn-secondary:hover {
  background: rgba(255, 255, 255, .15);
}

.cta-card .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}


/* ==========================================
   17. フッター
========================================== */
.footer {
  background: #232a44;
  color: rgba(255, 255, 255, .7);
  padding: 40px 24px 24px;
  text-align: center;
  font-size: .85rem;
}

.footer__company {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer__company-note {
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: .85rem;
}

.footer__links a:hover {
  color: #fff;
}

.footer__copyright {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
}


/* ==========================================
   18. モバイルスティッキーバー
========================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: 10px 12px;
  display: none;
  box-shadow: 0 -4px 16px rgba(10, 37, 64, .08);
}

.sticky-bar.is-visible {
  display: block;
}

.sticky-bar__buttons {
  display: flex;
  gap: 8px;
}

.sticky-bar .btn {
  flex: 1;
  padding: 12px 8px;
  font-size: .85rem;
}


/* ==========================================
   追加セクション群（刷新版）
   ※下記は2026年刷新時に追加したセクション専用スタイルです。
========================================== */


/* ----- ペインセクション（Problems） ----- */
/* 課題→解決を1行ずつ、大きな画面キャプチャとともに見せる構成 */
.problems {
  background: var(--c-bg-soft);
}

.problems__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 16px;
}

.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

/* 偶数行は画像を左に */
.problem-row:nth-child(even) .problem-row__image {
  order: -1;
}

/* 課題ボックス：グレー基調で「お悩み」として見せる */
.problem-row__issue-box {
  background: #fff;
  border-left: 4px solid #b3bac4;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.problem-row__issue-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-text-sub);
  margin-bottom: 6px;
}

.problem-row__issue {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.6;
}

/* 課題→解決への下向き矢印 */
.problem-row__arrow {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid var(--c-primary);
  margin: 16px 0 16px 36px;
}

.problem-row__badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  background: var(--c-primary);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: .04em;
}

.problem-row__solution-text {
  font-size: .95rem;
  color: var(--c-text);
  line-height: 1.9;
}

/* 透過済みのPC画像をそのまま浮かせて表示 */
.problem-row__image img {
  width: 100%;
  filter: drop-shadow(0 16px 28px rgba(10, 37, 64, .16));
}


/* ----- ご利用シーン（業種カード横5枚） ----- */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

.industry-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-light);
  border-radius: var(--radius-md);
  color: var(--c-primary);
}

.industry-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

.industry-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 8px;
}

.industry-card__text {
  font-size: .78rem;
  color: var(--c-text-sub);
  line-height: 1.7;
}


/* ----- ご利用方法（3ステップ・iPad前提） ----- */
.usage__intro {
  text-align: center;
  margin: 0 auto 40px;
  padding: 14px 24px;
  background: var(--c-primary-light);
  border-radius: 999px;
  color: var(--c-primary-dark);
  font-weight: 700;
  font-size: .95rem;
  max-width: 600px;
}

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

.usage-step {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 40px 24px 28px;
  text-align: center;
  position: relative;
}

.usage-step__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-text-dark);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 1.1rem;
}

.usage-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.usage-step__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}


/* ----- 3つの提供価値（Values） ----- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.value-card__number {
  font-family: var(--ff-en);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.value-card__badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  background: var(--c-accent-green);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: .05em;
  align-self: flex-start;
}

.value-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.value-card__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.9;
}


/* ----- SOLUTION（3つのお悩み × 各2機能） ----- */
.solution__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  align-items: center;
}

.solution-row__problem {
  padding-right: 24px;
  border-right: 1px dashed var(--c-border);
}

.solution-row__problem-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-text-sub);
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.solution-row__problem-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-dark);
  line-height: 1.6;
}

.solution-row__answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solution-row__answer {
  background: var(--c-primary-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.solution-row__answer-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.solution-row__answer-text {
  font-size: .92rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.5;
}


/* ----- 料金訴求（Pricing／初期費用無料・1ヶ月無料の2カード。金額は記載しない） ----- */
.pricing-free__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 40px auto 0;
}

.pricing-free__card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-top: 3px solid var(--c-primary);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.pricing-free__label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text-sub);
  margin-bottom: 8px;
}

.pricing-free__value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.2;
  letter-spacing: .02em;
}

.pricing-free__cta {
  margin-top: 36px;
}

.pricing-free__cta-lead {
  font-size: .95rem;
  color: var(--c-text);
  margin-bottom: 16px;
}


/* ----- 料金プラン（旧3カード版・参考残置） ----- */
.pricing__lead-strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 8px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--popular {
  border-color: var(--c-primary);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 8px;
}

.pricing-card__target {
  font-size: .85rem;
  color: var(--c-text-sub);
  margin-bottom: 20px;
}

.pricing-card__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-text-dark);
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--ff-en);
}

.pricing-card__price-unit {
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-text-sub);
  margin-left: 4px;
  font-family: var(--ff-jp);
}

.pricing-card__price-note {
  font-size: .78rem;
  color: var(--c-text-sub);
  margin-bottom: 20px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  border-top: 1px solid var(--c-border-light);
  padding-top: 20px;
  flex: 1;
}

.pricing-card__features li {
  font-size: .85rem;
  color: var(--c-text);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: var(--c-accent-green);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
}

.pricing-card__cta {
  width: 100%;
}

.pricing__note {
  margin-top: 24px;
  text-align: center;
  font-size: .8rem;
  color: var(--c-text-sub);
}


/* ----- 安心ポイント（Trust） ----- */
.trust__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.trust-card {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.trust-card--primary {
  background: linear-gradient(135deg, var(--c-primary-light) 0%, #fff 65%);
  border-color: var(--c-primary);
  border-width: 1.5px;
}

.trust-card--primary .trust-card__label {
  background: var(--g-brand);
  color: #fff;
}

.trust-card__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-text-sub);
  background: var(--c-bg-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: .05em;
}

.trust-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.trust-card--primary .trust-card__title {
  font-size: 1.25rem;
}

.trust-card__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.9;
}


/* ----- 中間CTAブロック（mid-cta） ----- */
.mid-cta {
  background: var(--c-primary-light);
  padding: 56px 0;
  text-align: center;
  position: relative;
}

.mid-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-primary);
}

.mid-cta__heading {
  font-size: 1.4rem;
  color: var(--c-text-dark);
  margin-bottom: 24px;
  line-height: 1.5;
}

.mid-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
}


/* ----- FV用テキストリンク（料金プランへ） ----- */
.fv__price-link {
  display: inline-block;
  margin-top: 4px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fv__price-link:hover {
  color: var(--c-primary-dark);
  opacity: 1;
}


/* ----- 導入の流れ（6ステップ対応） ----- */
.flow--6 .flow__steps {
  grid-template-columns: repeat(6, 1fr);
}


/* ==========================================
   19. レスポンシブ（〜1024px / 〜768px）
========================================== */

/* タブレット */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.625rem;
  }

  .fv__heading {
    font-size: 2.25rem;
  }

  .fv__inner {
    gap: 32px;
  }

  .feature-row {
    gap: 32px;
  }

  .feature-row__title {
    font-size: 1.4rem;
  }

  .feature-row__title--strong {
    font-size: 1.6rem;
  }

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

  .integration__grid {
    grid-template-columns: 1fr 1fr;
  }

  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-cta__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  /* 追加セクション（タブレット） */
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-row {
    gap: 32px;
  }

  .feature-highlight {
    gap: 32px;
    padding: 36px 40px;
  }

  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .flow--6 .flow__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマートフォン */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .section {
    padding: var(--space-section-sp) 0;
  }

  .container { padding: 0 20px; }

  /* ヘッダー */
  .header__inner {
    padding: 12px 20px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--c-border-light);
  }

  .header__group-label {
    display: none;
  }

  .header__buttons .btn-secondary--dark,
  .header__buttons .btn-secondary {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  /* FV */
  .fv {
    padding: 100px 0 56px;
  }

  .fv__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fv__heading {
    font-size: 1.875rem;
  }

  .fv__buttons {
    grid-template-columns: 1fr;
  }

  .fv__buttons .btn {
    width: 100%;
  }

  /* awards */
  .awards__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 24px;
  }

  /* clients */
  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* about */
  .about__grid {
    grid-template-columns: 1fr;
  }

  /* features */
  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row--reverse .feature-row__image {
    order: 0;
  }

  .feature-row__image {
    min-height: 200px;
    padding: 24px;
  }

  .functions__grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .feature-highlight__title {
    font-size: 1.3rem;
  }

  /* integration */
  .integration__grid {
    grid-template-columns: 1fr;
  }

  /* usecase */
  .usecase__grid {
    grid-template-columns: 1fr;
  }

  .usecase-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  /* case study */
  .case-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-card__image {
    min-height: 200px;
  }

  .case-card__body {
    padding: 24px;
  }

  .case-card__comparison {
    grid-template-columns: 1fr;
  }

  /* flow */
  .flow__steps {
    grid-template-columns: 1fr 1fr;
  }

  .flow--6 .flow__steps {
    grid-template-columns: 1fr 1fr;
  }

  /* footer cta */
  .footer-cta__heading {
    font-size: 1.5rem;
  }

  .footer-cta__grid {
    grid-template-columns: 1fr;
  }

  /* 追加セクション（SP） */
  .problems__list {
    gap: 48px;
  }

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

  /* SPでは常にテキスト→画像の順 */
  .problem-row:nth-child(even) .problem-row__image {
    order: 0;
  }

  .problem-row__issue {
    font-size: 1.2rem;
  }

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

  .usage__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 24px;
  }

  .solution-row__problem {
    padding-right: 0;
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px dashed var(--c-border);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing-free__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .pricing-free__card {
    padding: 28px 20px;
  }

  .pricing-free__value {
    font-size: 2rem;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .mid-cta {
    padding: 40px 20px;
  }

  .mid-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .mid-cta__buttons .btn {
    width: 100%;
  }
}

/* SP（小） */
@media (max-width: 375px) {
  .flow__steps {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   トヨコールLP専用スタイル（チラシ準拠構成）
========================================== */

/* --- FV：PC画面＋着信ポップアップの重ね合わせ --- */
.tc-fv-mock {
  position: relative;
  padding-bottom: 9%;
}

.tc-fv-mock::before {
  content: '';
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(closest-side, rgba(207, 74, 125, .13), transparent 72%);
  z-index: -1;
}

.tc-fv-mock__screen {
  width: 88%;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-lg);
}

.tc-fv-mock__popup {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  border-radius: 10px;
  border: 1px solid var(--c-border-light);
  box-shadow: 0 18px 30px rgba(10, 37, 64, .24);
}

/* --- FV：効能チップ（チラシのベネフィットバー） --- */
.tc-fv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 28px;
}

.tc-fv-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 6px 14px;
}

.tc-fv-chips li::before {
  content: '';
  flex: none;
  width: 13px;
  height: 13px;
  background: var(--c-primary);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
}

/* --- システム連携（トヨコール × 次期J） --- */
.tc-sync {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: stretch;
  max-width: 880px;
  margin: 16px auto 0;
}

.tc-sync__box {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-top: 3px solid var(--c-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  text-align: center;
}

.tc-sync__box--j {
  border-top-color: #454b55;
}

.tc-sync__box-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-text-dark);
}

.tc-sync__box-sub {
  font-size: .8rem;
  color: var(--c-text-sub);
  margin: 4px 0 16px;
}

.tc-sync__box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.tc-sync__box li {
  font-size: .78rem;
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-bg-soft);
  border-radius: 999px;
  padding: 5px 12px;
}

.tc-sync__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.tc-sync__arrows {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
}

.tc-sync__label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: .08em;
}

.tc-sync-shot {
  max-width: 760px;
  margin: 40px auto 0;
}

.tc-sync-shot img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-md);
}

.tc-sync-shot figcaption {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--c-text-muted);
  text-align: center;
}

/* --- 機能ジグザグ（3つの機能） --- */
#features .feature-row__image {
  background: linear-gradient(160deg, #f7f9fb 0%, #edf0f4 100%);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
}

#features .feature-row__image img {
  max-height: 380px;
  width: auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(10, 37, 64, .13);
}

#features .feature-row--reverse .feature-row__image {
  order: -1;
}

.feature-row__title {
  letter-spacing: -.01em;
}

.tc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.tc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--c-text);
  line-height: 1.7;
}

.tc-feature-list li::before {
  content: '';
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  background: var(--c-primary);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
}

/* --- 導入事例（横型カード＋導入前後の比較） --- */
.tc-case {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 960px;
  margin: 16px auto 0;
  text-align: left;
}

.tc-case__image {
  min-height: 100%;
}

.tc-case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-case__body {
  padding: 30px 34px;
}

.tc-case__company {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 6px;
}

.tc-case__headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.55;
  margin-bottom: 10px;
}

.tc-case__desc {
  font-size: .85rem;
  color: var(--c-text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}

.tc-ba {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  gap: 6px;
  align-items: stretch;
  margin-bottom: 16px;
}

.tc-ba__box {
  background: #f6f8fa;
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}

.tc-ba__box--after {
  background: var(--c-primary-light);
}

.tc-ba__label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--c-text-sub);
  margin-bottom: 4px;
}

.tc-ba__box--after .tc-ba__label {
  color: var(--c-primary-dark);
}

.tc-ba__value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-text-dark);
  line-height: 1.25;
  white-space: nowrap;
}

.tc-ba__box--after .tc-ba__value {
  color: var(--c-primary-dark);
}

.tc-ba__value small {
  font-size: .8rem;
  font-weight: 700;
}

.tc-ba__desc {
  display: block;
  font-size: .72rem;
  color: var(--c-text-sub);
  margin-top: 4px;
}

.tc-ba__arrow {
  width: 0;
  height: 0;
  align-self: center;
  justify-self: center;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid var(--c-primary);
}

.tc-case__quote {
  padding: 12px 16px;
  background: #fafbfc;
  border-left: 3px solid var(--c-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  color: var(--c-text);
  line-height: 1.8;
}

/* --- 選ばれる3つの理由 --- */
.tc-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
  text-align: left;
}

.tc-reason {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
}

.tc-reason__num {
  display: block;
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(207, 74, 125, .4);
  margin-bottom: 14px;
}

.tc-reason__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.6;
  margin-bottom: 10px;
}

.tc-reason__text {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}

/* --- 料金の単位・注記 --- */
.pricing-free__unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-sub);
  margin-left: 4px;
}

.pricing-free__notes {
  margin-top: 24px;
  font-size: .85rem;
  color: var(--c-text-sub);
  line-height: 1.9;
}

/* --- フッターCTA：電話窓口 --- */
.tc-tel {
  margin: -24px auto 40px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
}

.tc-tel strong {
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .02em;
}

/* --- レスポンシブ（トヨコール） --- */
@media (max-width: 1024px) {
  .tc-sync {
    grid-template-columns: 1fr 90px 1fr;
  }
}

@media (max-width: 768px) {
  .tc-fv-mock__popup {
    width: 40%;
  }

  .tc-fv-chips {
    margin-bottom: 24px;
  }

  .tc-sync {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tc-sync__link {
    padding: 14px 0;
  }

  .tc-sync__arrows {
    transform: rotate(90deg);
  }

  #features .feature-row--reverse .feature-row__image {
    order: 0;
  }

  .tc-case {
    grid-template-columns: 1fr;
  }

  .tc-case__image img {
    max-height: 220px;
  }

  .tc-case__body {
    padding: 24px 20px;
  }

  .tc-ba {
    grid-template-columns: 1fr;
  }

  .tc-ba__arrow {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 12px solid var(--c-primary);
    border-bottom: none;
  }

  .tc-reasons {
    grid-template-columns: 1fr;
  }
}

/* --- ヘッダー：トヨコールロゴ --- */
.header__logo img.tc-logo {
  height: 48px;
}

/* --- 3つの機能（3カラム） --- */
.tc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  text-align: left;
}

.tc-feature {
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 28px;
}

.tc-feature__image {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f7f9fb 0%, #edf0f4 100%);
  border: 1px solid var(--c-border-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.tc-feature__image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(10, 37, 64, .12);
}

.tc-feature__num {
  display: block;
  font-family: var(--ff-en);
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: .15em;
  margin-bottom: 8px;
}

.tc-feature__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.6;
  margin-bottom: 14px;
}

@media (max-width: 1024px) {
  .tc-features {
    gap: 16px;
  }

  .tc-feature__image {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .header__logo img.tc-logo {
    height: 42px;
  }

  .tc-features {
    grid-template-columns: 1fr;
  }

  .tc-feature__image {
    height: 220px;
  }
}


/* ==========================================
   トヨコールLP：FVラップトップ／連携図洗練／事例リッチ化
========================================== */

/* --- FV：MacBook風ラップトップモック --- */
.tc-laptop {
  width: 88%;
  filter: drop-shadow(0 24px 40px rgba(10, 37, 64, .20));
}

.tc-laptop__screen {
  background: #302e43;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
}

.tc-laptop__screen img {
  width: 100%;
  display: block;
  border-radius: 5px 5px 0 0;
}

.tc-laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #e8ebf0 0%, #c6ccd5 65%, #9da4af 100%);
  border-radius: 2px 2px 12px 12px;
  margin: 0 -4.5%;
  position: relative;
}

.tc-laptop__base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 13%;
  height: 5px;
  background: #abb2bd;
  border-radius: 0 0 6px 6px;
}

/* --- 連携図：ブランドマーク付きカード＋双方向フロー --- */
.tc-sync {
  grid-template-columns: 1fr 230px 1fr;
}

.tc-sync__box {
  border-top: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px 26px;
}

.tc-sync__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.tc-sync__titles {
  text-align: left;
}

.tc-sync__box-sub {
  margin: 2px 0 0;
}

.tc-sync__mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: none;
}

.tc-sync__mark--j {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #454b55;
  border-radius: 12px;
  color: #fff;
}

.tc-sync__mark--j svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.tc-sync__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 0 16px;
}

.tc-sync__flow {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tc-sync__flow-label {
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.tc-sync__flow--to-tc .tc-sync__flow-label {
  color: var(--c-text-sub);
}

.tc-sync__flow--to-j .tc-sync__flow-label {
  color: var(--c-primary);
}

.tc-sync__flow-line {
  position: relative;
  height: 2px;
  border-radius: 1px;
}

.tc-sync__flow--to-tc .tc-sync__flow-line {
  background: #9aa1ac;
}

.tc-sync__flow--to-j .tc-sync__flow-line {
  background: var(--c-primary);
}

/* 矢印の向き：同期＝トヨコール側（左）へ、書き戻し＝次期J側（右）へ */
.tc-sync__flow--to-tc .tc-sync__flow-line::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: 9px solid #9aa1ac;
}

.tc-sync__flow--to-j .tc-sync__flow-line::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 9px solid var(--c-primary);
}

/* --- 事例：写真オーバーレイ＋選定理由の統合 --- */
.tc-case__image {
  position: relative;
}

.tc-case__image::after {
  content: '';
  position: absolute;
  inset: 55% 0 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 28, 38, .72) 100%);
}

.tc-case__image-name {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.tc-case-reasons-title {
  margin: 56px 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text-dark);
}

@media (max-width: 768px) {
  .tc-sync__link {
    gap: 14px;
    padding: 18px 0;
  }

  .tc-sync__flow-line {
    display: none;
  }

  .tc-sync__flow--to-tc .tc-sync__flow-label::before {
    content: '↑ ';
  }

  .tc-sync__flow--to-j .tc-sync__flow-label::after {
    content: ' ↓';
  }

  .tc-case-reasons-title {
    margin-top: 40px;
    font-size: 1.1rem;
  }
}


/* ==========================================
   トヨコールLP：連携図・フッターCTAの調整
========================================== */

/* 連携フロー：左右対称の固定幅にして矢印の見切れを防ぐ */
.tc-sync__flow {
  width: 180px;
  margin: 0 auto;
}

.tc-sync__flow--to-tc .tc-sync__flow-line::before {
  left: 0;
}

.tc-sync__flow--to-j .tc-sync__flow-line::after {
  right: 0;
}

/* 機能ピルの途中改行を防止 */
.tc-sync__box li {
  white-space: nowrap;
}

/* フッターCTA：2カードを中央寄せで */
.footer-cta__grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .footer-cta__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* 日本語見出しの自然な改行（対応ブラウザではBudouXによる文節区切り） */
.section-title,
.section-lead,
.fv__heading,
.fv__sub,
.tc-feature__title,
.tc-reason__title,
.tc-case__headline,
.tc-case__desc,
.tc-case-reasons-title,
.mid-cta__heading,
.footer-cta__heading,
.footer-cta__lead {
  word-break: auto-phrase;
}

/* --- 導入の流れ：4ステップ --- */
.flow__steps--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .flow__steps--4 {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================
   連携図：チラシ配色版（ピンク×ネイビー）
========================================== */
:root {
  --tc-pink: #cf4a7d;
  --tc-navy: #232a44;
}

.tc-sync-title .tc-pink {
  color: var(--tc-pink);
}

.tc-sync-panel {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 40px 44px;
  margin-top: 16px;
}

.tc-sync {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 28px;
  align-items: stretch;
}

/* ボックス共通（旧スタイルの上書き含む） */
.tc-sync__box {
  background: #fff;
  border-radius: 12px;
  box-shadow: none;
  padding: 26px 24px 22px;
  text-align: center;
}

.tc-sync__box--tc {
  border: 2px solid var(--tc-pink);
}

.tc-sync__box--j {
  border: 2px solid var(--tc-navy);
}

.tc-sync__box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tc-navy);
  margin-bottom: 14px;
}

.tc-sync__box-title--tc {
  color: var(--tc-pink);
}

.tc-sync__sf {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

/* トヨコール側：3アイコン */
.tc-sync__icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 14px;
}

.tc-sync__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tc-sync__icon-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
}

.tc-sync__icon-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}

.tc-sync__icon-mark--green { color: #6cba71; }
.tc-sync__icon-mark--orange { color: #e8865a; }
.tc-sync__icon-mark--purple { color: #8f6bb5; }

.tc-sync__icon-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text-dark);
}

.tc-sync__box-text {
  font-size: .95rem;
  color: var(--c-text-dark);
  line-height: 1.9;
  margin-bottom: 12px;
}

.tc-sync__box-sub {
  font-size: .8rem;
  color: var(--c-text-sub);
}

/* 中央：太い双方向矢印 */
.tc-sync__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.tc-sync__flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-sync__flow-label {
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.tc-sync__flow-label--navy { color: var(--tc-navy); }
.tc-sync__flow-label--pink { color: var(--tc-pink); }

.tc-sync__flow-line {
  position: relative;
  height: 14px;
  border-radius: 2px;
}

/* ← 顧客情報（ネイビー・左向き） */
.tc-sync__flow-line--navy {
  background: var(--tc-navy);
  margin-left: 18px;
}

.tc-sync__flow-line--navy::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  border: 14px solid transparent;
  border-left: none;
  border-right: 18px solid var(--tc-navy);
}

/* → 発着信履歴など（ピンク・右向き） */
.tc-sync__flow-line--pink {
  background: var(--tc-pink);
  margin-right: 18px;
}

.tc-sync__flow-line--pink::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  border: 14px solid transparent;
  border-right: none;
  border-left: 18px solid var(--tc-pink);
}

@media (max-width: 768px) {
  .tc-sync-panel {
    padding: 24px 20px;
  }

  .tc-sync {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* SPでは矢印を縦の流れとして簡略表示 */
  .tc-sync__link {
    gap: 14px;
    padding: 4px 0;
  }

  .tc-sync__flow-line {
    display: none;
  }

  .tc-sync__flow-label--navy::before { content: '↑ '; }
  .tc-sync__flow-label--pink::after { content: ' ↓'; }
}


/* ==========================================
   導入事例：縦型カード（画像は元比率のまま・上配置）
========================================== */
.tc-case {
  display: block;
  grid-template-columns: none;
  max-width: 680px;
}

.tc-case__image {
  position: relative;
  min-height: 0;
}

/* トリミングせず元比率で表示 */
.tc-case__image img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

.tc-case__body {
  padding: 28px 32px 32px;
  text-align: left;
}

@media (max-width: 768px) {
  .tc-case__image img {
    max-height: none;
  }
}


/* ==========================================
   グラデーション＆黄緑の差し色（ロゴのレインボーに寄せる）
========================================== */
:root {
  --tc-green: #93c649;
  --tc-green-dark: #6da32c;
  --tc-green-light: #f2f8e6;
  --g-tc: linear-gradient(120deg, #cf4a7d 0%, #8f6bb5 55%, #93c649 100%);
}

/* 見出し下のバー・各帯のアクセントラインをグラデに */
.section-title::after {
  background: var(--g-tc);
}

.awards::before,
.mid-cta::before,
.footer-cta::before {
  background: var(--g-tc);
}

/* チェックマーク類は黄緑に（ピンクの圧を下げる差し色） */
.awards__item::before {
  background: var(--tc-green);
}

.tc-solution__points li::before {
  background: var(--tc-green);
}

.tc-feature-list li::before {
  background: var(--tc-green);
}

/* 導入後ボックス＝改善は黄緑系に */
.tc-ba__box--after {
  background: var(--tc-green-light);
}

.tc-ba__box--after .tc-ba__label,
.tc-ba__box--after .tc-ba__value {
  color: var(--tc-green-dark);
}

/* FV背景：ピンク＋黄緑のごく薄いグラデ */
.fv {
  background:
    radial-gradient(ellipse at bottom right, rgba(207, 74, 125, .06), transparent 55%),
    radial-gradient(ellipse at top left, rgba(147, 198, 73, .07), transparent 55%),
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
}

/* FVモックの光彩もピンク→緑のブレンドに */
.tc-fv-mock::before {
  background:
    radial-gradient(closest-side at 30% 40%, rgba(207, 74, 125, .10), transparent 72%),
    radial-gradient(closest-side at 75% 70%, rgba(147, 198, 73, .10), transparent 72%);
}

/* 中間CTA帯：薄ピンク→薄黄緑のグラデ */
.mid-cta {
  background: linear-gradient(90deg, #fbe9f1 0%, #f2f8e6 100%);
}


/* ==========================================
   導入事例カード：一回り小さく＋画像に白フレーム
========================================== */
.tc-case {
  max-width: 600px;
}

.tc-case__image {
  padding: 18px 18px 0;
}

.tc-case__image img {
  border-radius: 8px;
}

/* 画像下端のグラデを外し、社名はネイビーのチップ表示に */
.tc-case__image::after {
  content: none;
}

.tc-case__image-name {
  position: absolute;
  left: 32px;
  bottom: 14px;
  background: rgba(35, 42, 68, .88);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  text-shadow: none;
}

.tc-case__body {
  padding: 24px 30px 30px;
}


/* ==========================================
   チラシ準拠トーン：クリーム背景×グラデピル×マルチカラー
========================================== */
:root {
  --c-bg-soft: #f2efe6;            /* ソフト背景をチラシのクリームに */
  --tc-orange: #e8865a;
  --tc-purple: #9a6fb8;
  --g-pill: linear-gradient(90deg, #c94f4f 0%, #8e5ba6 100%);
}

.tc-pink {
  color: var(--tc-pink);
}

/* セクションラベル→チラシのグラデーションピル */
.section-label {
  display: inline-block;
  background: var(--g-pill);
  color: #fff;
  font-family: var(--ff-jp);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: none;
  padding: 9px 48px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* FV：トヨタ販売店様向けチップ（チラシのピンク枠） */
.tc-chip {
  display: inline-block;
  background: #faeef2;
  border: 1.5px solid var(--tc-pink);
  color: var(--tc-pink);
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 26px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* FV背景：クリーム寄りに */
.fv {
  background:
    radial-gradient(ellipse at top left, rgba(147, 198, 73, .08), transparent 55%),
    linear-gradient(180deg, #f4f1e8 0%, #ffffff 100%);
}

/* 連携パネルもクリームに */
.tc-sync-panel {
  background: var(--c-bg-soft);
}

/* ---- 機能カード：チラシの3色カード ---- */
.tc-features {
  align-items: start;
}

.tc-feature {
  background: var(--c-bg-soft);
  border: none;
  border-radius: 4px;
  box-shadow: none;
  padding: 0 22px 22px;
  text-align: center;
}

.tc-feature--green  { border-top: 5px solid #8bc17c; border-bottom: 5px solid #8bc17c; }
.tc-feature--orange { border-top: 5px solid var(--tc-orange); border-bottom: 5px solid var(--tc-orange); }
.tc-feature--purple { border-top: 5px solid var(--tc-purple); border-bottom: 5px solid var(--tc-purple); }

.tc-feature__pill {
  display: inline-block;
  color: #fff;
  font-family: var(--ff-en);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 7px 30px;
  border-radius: 999px;
  margin: 22px 0 18px;
}

.tc-feature--green  .tc-feature__pill { background: #8bc17c; }
.tc-feature--orange .tc-feature__pill { background: var(--tc-orange); }
.tc-feature--purple .tc-feature__pill { background: var(--tc-purple); }

.tc-feature__icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
}

.tc-feature__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}

.tc-feature--green  .tc-feature__icon { color: #8bc17c; }
.tc-feature--orange .tc-feature__icon { color: var(--tc-orange); }
.tc-feature--purple .tc-feature__icon { color: var(--tc-purple); }

.tc-feature__title {
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.tc-feature--green  .tc-feature__title { border-bottom: 3px solid #8bc17c; }
.tc-feature--orange .tc-feature__title { border-bottom: 3px solid var(--tc-orange); }
.tc-feature--purple .tc-feature__title { border-bottom: 3px solid var(--tc-purple); }

/* 箇条書きはチラシと同じ「・」スタイル */
.tc-feature .tc-feature-list {
  text-align: left;
  margin: 0 auto 16px;
  max-width: 300px;
}

.tc-feature .tc-feature-list li {
  font-size: .88rem;
}

.tc-feature .tc-feature-list li::before {
  content: '・';
  background: none;
  -webkit-mask: none;
  mask: none;
  width: auto;
  height: auto;
  margin-top: 0;
  color: var(--c-text-dark);
  font-weight: 700;
}

/* スクショは白台紙で下配置 */
.tc-feature__image {
  height: auto;
  background: #fff;
  border: 1px solid #e5e0d3;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 0;
}

.tc-feature__image img {
  max-height: 240px;
  box-shadow: none;
}

/* 3枚のカードの高さ・下線の位置を揃える */
.tc-features {
  align-items: stretch;
}

.tc-feature {
  display: flex;
  flex-direction: column;
}

.tc-feature__image {
  margin-top: auto;
}


/* ==========================================
   見出しラベル・機能カードを従来形式へ戻す（色味は現行のまま）
========================================== */

/* セクションラベル：小さな英字ラベル（ピル廃止） */
.section-label {
  display: inline-block;
  background: none;
  color: var(--c-primary);
  font-family: var(--ff-en);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
}

/* 機能カード：白カード・画像上・チェックリスト形式 */
.tc-feature {
  display: block;
  background: #fff;
  border: 1px solid var(--c-border-light);
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 28px;
  text-align: left;
}

/* 画像プレート：高さ統一・上配置（アスペクト差を吸収） */
.tc-feature__image {
  order: 0;
  margin: 0 0 20px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2ea;
  border: 1px solid #eae5d8;
  border-radius: 8px;
  padding: 16px;
}

.tc-feature__image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(35, 42, 68, .10);
}

.tc-feature__num {
  display: block;
  font-family: var(--ff-en);
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: .15em;
  margin-bottom: 8px;
}

.tc-feature__title {
  display: block;
  border-bottom: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.6;
  padding-bottom: 0;
  margin-bottom: 14px;
}

/* チェックリストに戻す（チェックは黄緑の差し色） */
.tc-feature .tc-feature-list {
  max-width: none;
  margin: 0;
}

.tc-feature .tc-feature-list li {
  font-size: .9rem;
}

.tc-feature .tc-feature-list li::before {
  content: '';
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: transparent;
  background: var(--tc-green);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/></svg>") no-repeat center / contain;
}

@media (max-width: 768px) {
  .tc-feature__image {
    height: 210px;
  }
}


/* ==========================================
   トーン最終調整
========================================== */

/* クリーム背景をやめ、ニュートラルなソフトグレーに統一 */
:root {
  --c-bg-soft: #f5f5f5;
}

.fv {
  background:
    radial-gradient(ellipse at bottom right, rgba(207, 74, 125, .05), transparent 55%),
    radial-gradient(ellipse at top left, rgba(147, 198, 73, .05), transparent 55%),
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
}

.tc-sync-panel {
  background: #f5f6f8;
}

.tc-feature__image {
  background: linear-gradient(160deg, #f7f9fb 0%, #edf0f4 100%);
  border-color: #e4e8ee;
}

/* チップ：ピンク枠ピル→ダークタグ（vv同様の落ち着いた形） */
.tc-chip {
  background: var(--c-text-dark);
  border: none;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 6px 16px;
  border-radius: 4px;
}

/* 主要CTA：ピンク→パープルのグラデーション */
.btn-primary {
  background: linear-gradient(100deg, #cf4a7d 0%, #9a5fa8 100%);
}

.btn-primary:hover {
  background: linear-gradient(100deg, #b23a68 0%, #82489a 100%);
}


/* ==========================================
   サイズ調整：機能カードの整列＆連携図の拡大
========================================== */

/* 機能カード：画像プレートを大きく、行位置を揃える */
.tc-features {
  align-items: stretch;
}

.tc-feature__image {
  height: 270px;
  padding: 12px;
}

/* タイトルは2行分の高さを確保して、リスト開始位置を3枚で揃える */
.tc-feature__title {
  min-height: 3.4em;
}

/* 連携図：ひと回り大きく */
.tc-sync {
  grid-template-columns: 1.15fr 240px 1.15fr;
  gap: 32px;
}

.tc-sync-panel {
  padding: 48px 52px;
}

.tc-sync__box {
  padding: 34px 30px 30px;
}

.tc-sync__box-title {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.tc-sync__sf {
  width: 30px;
  height: 30px;
}

.tc-sync__icons {
  gap: 34px;
  margin-bottom: 18px;
}

.tc-sync__icon-mark {
  width: 42px;
  height: 42px;
}

.tc-sync__icon-label {
  font-size: .92rem;
}

.tc-sync__box-text {
  font-size: 1.05rem;
  line-height: 2;
}

.tc-sync__box-sub {
  font-size: .88rem;
}

.tc-sync__flow-label {
  font-size: .88rem;
}

.tc-sync__flow-line {
  height: 16px;
}

@media (max-width: 768px) {
  .tc-sync-panel {
    padding: 24px 20px;
  }

  .tc-feature__image {
    height: 230px;
  }
}


/* ==========================================
   全体のサイズ感アップ＆信頼バンドの色味調整
========================================== */

/* --- タイポグラフィをひと回り大きく --- */
.section-title {
  font-size: 2.05rem;
}

.section-lead {
  font-size: 1.05rem;
}

.fv__heading {
  font-size: 2.5rem;
}

.fv__sub {
  font-size: 1.05rem;
}

.btn {
  font-size: 1rem;
}

.tc-feature__num {
  font-size: .85rem;
}

.tc-feature__title {
  font-size: 1.2rem;
}

.tc-feature .tc-feature-list li {
  font-size: .95rem;
}

.tc-case__headline {
  font-size: 1.45rem;
}

.tc-case__desc,
.tc-case__quote {
  font-size: .95rem;
}

.tc-reason__title {
  font-size: 1.18rem;
}

.tc-reason__text {
  font-size: .95rem;
}

.faq-item__question span:first-child {
  font-size: 1.02rem;
}

.faq-item__answer-inner {
  font-size: .95rem;
}

.flow-step__title {
  font-size: 1.05rem;
}

.mid-cta__heading {
  font-size: 1.55rem;
}

/* --- 信頼バンド：ネイビー→パステルのグラデ帯に --- */
.awards {
  background: linear-gradient(90deg, #fbe9f1 0%, #f6f2f8 50%, #f2f8e6 100%);
  color: var(--c-text-dark);
  padding: 26px 0;
}

.awards__item {
  color: var(--c-text-dark);
  font-weight: 600;
  font-size: .98rem;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .fv__heading {
    font-size: 2rem;
  }
}

/* 事例カード：ひと回り大きく */
.tc-case {
  max-width: 720px;
}

.tc-case__body {
  padding: 28px 36px 34px;
}

/* 事例カード内テキストの拡大 */
.tc-case__company {
  font-size: 1.05rem;
  font-weight: 700;
}

.tc-case__headline {
  font-size: 1.55rem;
}

.tc-case__desc {
  font-size: 1rem;
}

.tc-ba__label {
  font-size: .95rem;
}

.tc-ba__value {
  font-size: 1.7rem;
}

.tc-ba__desc {
  font-size: .88rem;
}


/* ==========================================
   信頼バンド＝ブランドグラデ／ボタン＝単色に整理
========================================== */
.awards {
  background: var(--g-tc);
  color: #fff;
}

.awards::before {
  display: none;
}

.awards__item {
  color: #fff;
}

.awards__item::before {
  background: #fff;
}

.btn-primary {
  background: var(--c-primary);
}

.btn-primary:hover {
  background: var(--c-primary-dark);
}


/* ==========================================
   グラデーションを「レッド→パープル」ベースに統一（緑を除外）
========================================== */
:root {
  --g-tc: linear-gradient(100deg, #c94f4f 0%, #8e5ba6 100%);
}

/* FV背景・モック光彩の緑味もパープルに */
.fv {
  background:
    radial-gradient(ellipse at bottom right, rgba(201, 79, 79, .05), transparent 55%),
    radial-gradient(ellipse at top left, rgba(142, 91, 166, .06), transparent 55%),
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
}

.tc-fv-mock::before {
  background:
    radial-gradient(closest-side at 30% 40%, rgba(201, 79, 79, .09), transparent 72%),
    radial-gradient(closest-side at 75% 70%, rgba(142, 91, 166, .10), transparent 72%);
}

/* 中間CTA帯：ピンク→ラベンダーのパステルに */
.mid-cta {
  background: linear-gradient(90deg, #fbe9f1 0%, #f1ecf7 100%);
}

/* --- 試し：主要CTAを緑ベースに --- */
.btn-primary {
  background: #7fb53c;
  box-shadow: 0 6px 16px rgba(127, 181, 60, .3);
}

.btn-primary:hover {
  background: #6da32c;
  box-shadow: 0 10px 24px rgba(127, 181, 60, .38);
}


/* ==========================================
   中間CTA：グラデ帯×白ボタン（緑ボタン試行は撤回）
========================================== */
.btn-primary {
  background: var(--c-primary);
  box-shadow: 0 6px 16px rgba(207, 74, 125, .28);
}

.btn-primary:hover {
  background: var(--c-primary-dark);
  box-shadow: 0 10px 24px rgba(207, 74, 125, .35);
}

.mid-cta {
  background: var(--g-tc);
}

.mid-cta::before {
  display: none;
}

.mid-cta__heading {
  color: #fff;
}

/* 帯の上は白ボタンに反転 */
.mid-cta .btn-primary {
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 8px 20px rgba(35, 42, 68, .18);
}

.mid-cta .btn-primary:hover {
  background: #fdf3f7;
  color: var(--c-primary-dark);
}

.mid-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .85);
}

.mid-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

/* ボタン：より優しいピンクに */
.btn-primary {
  background: #d9739c;
  box-shadow: 0 6px 16px rgba(217, 115, 156, .3);
}

.btn-primary:hover {
  background: #c65e8a;
  box-shadow: 0 10px 24px rgba(217, 115, 156, .38);
}

/* ボタン：濃すぎと薄すぎの中間の塩梅に */
.btn-primary {
  background: #d45f8e;
  box-shadow: 0 6px 16px rgba(212, 95, 142, .3);
}

.btn-primary:hover {
  background: #c04a79;
  box-shadow: 0 10px 24px rgba(212, 95, 142, .38);
}


/* ==========================================
   フッターCTA：ブランドグラデ背景に
========================================== */
.footer-cta {
  background: var(--g-tc);
}

.footer-cta::before {
  display: none;
}

.footer-cta__heading,
.footer-cta__lead,
.tc-tel {
  color: #fff;
}

.tc-tel strong {
  color: #fff;
}

/* カードは半透明の白ガラス調に */
.cta-card {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
}

.cta-card__title {
  color: #fff;
}

.cta-card__desc {
  color: rgba(255, 255, 255, .88);
}

/* 帯上のボタンは白基調に反転 */
.footer-cta .btn-primary {
  background: #fff;
  color: var(--c-primary);
  box-shadow: 0 8px 20px rgba(35, 42, 68, .18);
}

.footer-cta .btn-primary:hover {
  background: #fdf3f7;
  color: var(--c-primary-dark);
}

.footer-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .8);
}

.footer-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  color: #fff;
}


/* ==========================================
   フッター白背景 ／ CTA見出し周りの余白調整
========================================== */
.footer {
  background: #fff;
  color: var(--c-text-sub);
  border-top: 1px solid var(--c-border-light);
}

.footer__company {
  color: var(--c-text-dark);
}

.footer__links a {
  color: var(--c-text-sub);
}

.footer__links a:hover {
  color: var(--c-primary);
}

.footer__links span {
  color: var(--c-border);
}

.footer__copyright {
  color: var(--c-text-muted);
}

/* CTA見出し〜電話番号の行間を広げる */
.footer-cta__heading {
  margin-bottom: 18px;
}

.tc-tel {
  margin-bottom: 40px;
  line-height: 1.9;
}

/* 電話番号のネガティブマージンを打ち消して間隔を確保 */
.footer-cta .tc-tel {
  margin-top: 0;
}


/* ==========================================
   選ばれた理由：各カードに画面キャプチャを追加
========================================== */
.tc-reason {
  display: flex;
  flex-direction: column;
}

/* 画像はカード下端に揃えて配置（3枚で位置が揃う） */
.tc-reason__image {
  margin-top: auto;
  padding-top: 20px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-reason__image img {
  max-width: 100%;
  max-height: 190px;
  border-radius: 6px;
  border: 1px solid var(--c-border-light);
  box-shadow: 0 6px 16px rgba(35, 42, 68, .10);
}

@media (max-width: 768px) {
  .tc-reason__image {
    height: auto;
    padding-top: 18px;
  }

  .tc-reason__image img {
    max-height: 220px;
  }
}
