/* ============================================================
   解体見積EX — ランディングページ スタイルシート
   構成：
     1. CSS カスタムプロパティ（デザイントークン）
     2. リセット / ベース
     3. ユーティリティ
     4. ボタン
     5. ヘッダー / ナビゲーション
     6. ヒーローセクション
     7. セクション共通
     8. 課題セクション（Pain）
     9. 製品紹介セクション（About）
    10. ソリューションセクション（Solutions）
    11. 導入メリットセクション（Benefit）
    12. 機能詳細セクション（Features）
    13. 比較表セクション（Compare）
    14. 価格セクション（Price）
    15. FAQセクション
    16. CTAセクション
    17. フッター
    18. フローティング資料請求ボタン
    19. アニメーション / reveal
    20. レスポンシブ（タブレット・スマートフォン）
============================================================ */


/* ============================================================
   1. CSS カスタムプロパティ（デザイントークン）
============================================================ */
:root {
  /* --- カラーパレット --- */
  --bg: #FFFFFF;
  /* メイン背景（白） */
  --bg-soft: #DDDFE3;
  /* セクション背景 */
  --bg-deep: #181237;
  /* 基調ネイビー */
  --ink: #0D004C;
  /* メインテキスト */
  --ink-soft: #3A316E;
  /* サブテキスト */
  --ink-mute: #6A6298;
  /* 補足テキスト */
  --line: #C9CDD9;
  /* 境界線（薄） */
  --line-strong: #0D004C;
  /* 境界線（強） */
  --paper: #F4F5F8;
  /* 用紙調背景 */
  --accent: #e84639;
  /* アクセント */
  --accent-soft: rgba(186, 14, 0, 0.20);
  /* アクセント薄 */
  --signal: #e84639;
  /* 注意・強調 */
  --good: #e84639;
  /* 成功・良好 */

  /* --- タイポグラフィ --- */
  --font-base: "Inter", "Zen Kaku Gothic Antique", "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* --- レイアウト --- */
  --maxw: 1280px;
  /* コンテナ最大幅 */
  --section-py: 96px;
  /* セクション上下余白 */
  --radius: 8px;
  /* 角丸（標準） */
  --radius-lg: 16px;
  /* 角丸（大） */
  --radius-full: 9999px;
  /* 完全丸 */

  /* --- トランジション --- */
  --transition: 0.25s ease;
  --global-header-offset: 0px;
  --sub-header-height: 72px;
}


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

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

body.kaitai-page {
  font-family: var(--font-base);
  background: var(--bg);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.kaitai-lp {
  color: var(--ink);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

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

.kaitai-lp a {
  color: inherit;
  text-decoration: none;
}

.kaitai-lp ul,
.kaitai-lp ol {
  list-style: none;
}

.kaitai-lp button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* フォーム要素リセット */
.kaitai-lp input,
.kaitai-lp select,
.kaitai-lp textarea {
  font: inherit;
  color: inherit;
}

/* スクリーンリーダー専用テキスト */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============================================================
   3. ユーティリティ
============================================================ */

/* コンテナ */
.kaitai-lp .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

/* モノスペースフォント */
.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* プレースホルダー（画像読み込み失敗時） */
.img-placeholder {
  background: var(--bg-soft);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  font-size: 0.85rem;
}

.img-placeholder::after {
  content: "画像を準備中";
}

.is-hidden {
  display: none !important;
}

/* ============================================================
   4. ボタン
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

/* --- 黒（ダーク）ボタン --- */
.btn-dark {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}

.kaitai-lp a.btn-dark {
  color: var(--bg);
}

.btn-dark:hover {
  background: #241566;
  border-color: #241566;
  color: var(--bg);
}

/* --- 黄（アンバー）ボタン --- */
.btn-amber {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.kaitai-lp a.btn-amber,
.kaitai-lp a.btn-amber:visited,
.kaitai-lp a.btn-amber:hover {
  color: #fff;
}

.btn-amber:hover {
  background: #c93d2d;
  border-color: #c93d2d;
}

/* --- 黄（アンバー）ボタン: 枠線なしバリアント --- */
.btn-amber-no-border,
.btn-amber-no-border:hover,
.btn-amber-no-border:focus {
  border: none;
}

.btn-amber-no-border.btn-lg,
.btn-amber-no-border.btn-lg:hover,
.btn-amber-no-border.btn-lg:focus {
  border: none;
}

/* --- ゴースト（枠線のみ）ボタン --- */
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.kaitai-lp a.btn-ghost,
.kaitai-lp a.btn-ghost:visited {
  color: var(--ink);
}

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

.kaitai-lp a.btn-ghost:hover,
.kaitai-lp a.btn-ghost:focus {
  color: var(--ink);
}

/* --- 白枠ボタン（ダーク背景用） --- */
.btn-outline-white {
  background: transparent;
  color: var(--bg);
  border: 1px solid var(--bg);
}

.btn-outline-white:hover {
  background: var(--bg);
  color: var(--ink);
}

/* --- サイズバリエーション --- */
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border: solid 1px #0D004C;
}


/* ============================================================
   5. ヘッダー / ナビゲーション
============================================================ */
.site-header {
  position: fixed;
  top: var(--global-header-offset);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 2100;
  height: var(--sub-header-height);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
  transition: top 0.25s ease, box-shadow var(--transition), background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header.fixed {
  top: 0;
}

.kaitai-breadcrumb-wrap {
  position: absolute;
  top: calc(var(--global-header-offset) + var(--sub-header-height) + 16px);
  left: 0;
  right: 0;
  z-index: 1200;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv {
  position: relative;
  z-index: 1;
}

.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb {
  margin: 0;
  padding: 0 !important;
  background: none;
  display: flex;
  align-items: center;
  gap: 0;
  pointer-events: auto;
}

.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item,
.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item a,
.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(13, 0, 76, 0.92);
  font-size: 13px;
  font-weight: 500;
}

.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item {
  padding-left: 1rem;
}

.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: rgba(13, 0, 76, 0.6);
  padding: 0 1rem 0 0;
}

.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item a:hover {
  color: var(--signal);
}

.kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item.active {
  color: rgba(13, 0, 76, 0.55);
}

.kaitai-hero-tel {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(13, 0, 76, 0.92);
  white-space: nowrap;
}

.kaitai-hero-tel-display,
.kaitai-hero-tel-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kaitai-hero-tel-call {
  display: none;
}

.kaitai-lp .kaitai-hero-tel-icon {
  display: none;
}

.kaitai-hero-tel-link:hover {
  color: var(--signal);
  text-decoration: underline;
}

.kaitai-hero-tel-call:hover,
.kaitai-hero-tel-call:active,
.kaitai-hero-tel-call:focus-visible {
  text-decoration: none;
}

.kaitai-hero-tel-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.01em;
}

.site-header-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  min-height: 40px;
}

/* ブランドロゴ */
.brand {
  flex-shrink: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  min-height: 40px;
}

.brand-img {
  display: block;
  width: 150px;
  max-width: none;
  height: 24px;
  object-fit: contain;
}

/* ブランドテキスト（画像フォールバック） */
.brand-text {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* PCナビ */
.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
  flex: 0 0 auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding-inline: 0.75em;
  font-size: clamp(0.813rem, 0.632rem + 0.38vw, 0.938rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink-soft);
  transition: color var(--transition);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ink);
}

/* ヘッダーCTAボタン群 */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-cta .btn-amber {
  border: 1px solid #fff;
}

.header-cta .btn-amber:hover {
  background: #c93d2d;
  border-color: #c93d2d;
}

.header-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  padding: 0 20px;
  font-size: 0.875rem;
  line-height: 1;
  border: solid 1px #0D004C;
}

.header-cta .btn-amber-no-border,
.header-cta .btn-amber-no-border:hover,
.header-cta .btn-amber-no-border:focus {
  border: none;
}

/* このページだけ共通ヘッダー内ロゴ位置を補正 */
body.kaitai-page #main-header .navbar-brand {
  display: inline-flex;
  align-items: center;
}

body.kaitai-page #main-header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

body.kaitai-page #main-header .navbar-brand img {
  display: block;
  position: relative;
  top: 0;
}

/* ハンバーガーボタン（SP） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ハンバーガー アクティブ状態（✕） */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* SPメニュー */
.sp-menu {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 16px 24px 24px;
}

.sp-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.sp-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.sp-menu-cta .btn {
  text-align: center;
  justify-content: center;
}


/* ============================================================
   6. ヒーローセクション
============================================================ */
.section-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(84vh - var(--global-header-offset));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: calc(var(--global-header-offset) + var(--sub-header-height));
  background:
    radial-gradient(circle at 15% 20%, rgba(186, 14, 0, 0.20), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(13, 0, 76, 0.08), transparent 36%),
    linear-gradient(180deg, #f7f8fb 0%, #ffffff 58%, #f2f3f7 100%);
}

.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  --hero-veil-opacity: 0.88;
  /* ← ここだけ変更（0〜1）*/
  background:
    linear-gradient(rgba(247, 248, 251, var(--hero-veil-opacity)), rgba(247, 248, 251, var(--hero-veil-opacity))),
    url("../img/mv_kaitai-mitsumori.png") center center / cover no-repeat;
  transform: scale(1.02);
}

/* --- グリッド背景 --- */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(13, 0, 76, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 0, 76, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.56;
  pointer-events: none;
}

.hero-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.06) 16%,
      rgba(244, 245, 248, 0.22) 28%,
      rgba(244, 245, 248, 0.48) 50%,
      rgba(244, 245, 248, 0.22) 72%,
      rgba(255, 255, 255, 0.06) 84%,
      rgba(255, 255, 255, 0.02) 100%);
}

/* --- フローティングバッジ --- */
.hero-float-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  animation: floatBadge 6s ease-in-out infinite;
}

/* バッジごとにアニメーション遅延 */
.float-badge:nth-child(odd) {
  animation-delay: 0s;
}

.float-badge:nth-child(even) {
  animation-delay: 1.5s;
}

.float-badge:nth-child(3n) {
  animation-delay: 3s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* --- ヒーロー本文コンテナ --- */
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 0 60px;
}

.hero-inner::before {
  content: none;
}

.hero-copy-bubbles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px auto 25px;
  max-width: 1280px;
}

.bubble-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 30px;
  border-radius: 9999px;
  background: #F4F5F8;
  border: 2px dotted var(--line-strong);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 18px rgba(13, 0, 76, 0.08);
  animation: bubbleSway 6s ease-in-out infinite;
}

.bubble-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 14px;
  height: 14px;
  background: #F4F5F8;
  border-left: 2px dotted var(--line-strong);
  border-bottom: 2px dotted var(--line-strong);
  transform: translateX(-50%) rotate(-45deg);
}

.bubble-chip:nth-child(2n) {
  animation-delay: 0.9s;
}

.bubble-chip:nth-child(3n) {
  animation-delay: 1.8s;
}

@keyframes bubbleSway {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(6px, -6px, 0);
  }
}

/* 上部バッジ */
.hero-badge-top {
  display: block;
  background: transparent;
  color: var(--ink);
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

/* キャッチコピー */
.hero-catch {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-catch .catch-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* キャッチコピー ハイライト */
.hero-catch mark {
  color: var(--accent);
  background: none;
  padding: 0 0.12em;
}

/* リード文 */
.hero-lead {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 500;
}

/* CTAボタングループ */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* 信頼バッジリスト */
.hero-trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-list i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* スクロールヒント */
.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--ink-mute), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ティッカー（横スクロールテキスト） */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 12px 0;
  border-top: 2px solid var(--accent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 500;
}

.ticker-track strong {
  font-weight: 900;
  color: var(--accent);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ============================================================
   7. セクション共通スタイル
============================================================ */
.section {
  padding: var(--section-py) 0;
}

.related-products-section {
  padding: var(--section-py) 0;
}

.related-products-section .lp-inner {
  width: min(90%, var(--maxw));
  margin-inline: auto;
}

.related-products-section .container {
  max-width: none;
  padding-inline: 12px;
}

.related-products-section .lp-block-title {
  margin-bottom: 40px;
  text-align: center;
}

.related-products-section .related-prod-list-container {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.related-products-section .related-prod-list-container > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

@media (max-width: 640px) {
  .related-products-section {
    padding: 56px 0;
  }

  .related-products-section .lp-block-title {
    margin-bottom: 28px;
  }
}

/* セクションヘッダー */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

/* セクション番号（装飾） */
.section-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

/* セクションラベル */
.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 0;
}

.section-label::after {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  background: var(--line-strong);
  margin: 14px auto 16px;
}

/* セクションタイトル */
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title mark {
  color: #fff;
  background: var(--accent);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* セクションリード */
.section-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* CTAミニ（セクション内） */
.section-cta-mini {
  margin-top: 56px;
  padding: 24px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: var(--radius, 12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.section-cta-mini p {
  font-size: 1rem;
  font-weight: 700;
}

.section-cta-mini .btn {
  padding: 16px 36px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.cta-mini-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.cta-mini-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-mini-btns-right {
  justify-content: flex-end;
  width: 100%;
}


/* ============================================================
   8. 課題セクション（Pain）
============================================================ */
.section-pain {
  background: var(--bg);
}

/* 課題カードリスト（2列グリッド） */
.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* 課題カード */
.pain-card {
  display: flex;
  gap: 24px;
  padding: 40px 36px;
  background: var(--bg);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transition: background var(--transition);
}

.pain-card:hover {
  background: var(--paper);
}

/* 偶数列は右ボーダーなし */
.pain-card:nth-child(2n) {
  border-right: none;
}

/* 下2枚は下ボーダーなし */
.pain-card:nth-child(3),
.pain-card:nth-child(4) {
  border-bottom: none;
}

/* アイコン */
.pain-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #6A6298;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
}

/* 課題タイトル */
.pain-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* 課題説明 */
.pain-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* 現場の声 */
.pain-quote {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mute);
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.kaitai-lp .fa-solid,
.kaitai-lp .fas {
  font-size: 3rem;
}


/* ============================================================
   9. 製品紹介セクション（About）
============================================================ */
.section-about {
  background: var(--bg-deep);
  color: var(--bg);
}

.section-about .section-label,
.section-about .section-title,
.section-about .section-lead {
  color: var(--bg);
}

.section-about .section-num {
  color: rgba(255, 255, 255, 0.32);
}

.section-about .section-label::after {
  background: rgba(255, 255, 255, 0.56);
}

.section-about .btn-dark {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.section-about .btn-dark:hover {
  background: var(--ink);
  border-color: var(--ink);
}

/* スクリーンショット */
.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}

.about-screen {
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  justify-self: end;
  width: 100%;
  max-width: 740px;
}

.about-screen img {
  width: 100%;
}

/* ポイントリスト */
.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-point {
  display: flex;
  gap: 20px;
}

.point-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.3rem, 3.2vw, 2.9rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.about-point h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--bg);
}

.about-point p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

/* 業界初訴求ブロック */
.about-proof {
  margin-top: 36px;
  margin-bottom: 48px;
  border: 1px solid var(--accent);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  background: rgba(255, 255, 255, 0.03);
}

.about-proof-left {
  padding: 28px 24px;
  border-right: 1px solid var(--accent);
  display: grid;
  gap: 8px;
  align-content: center;
}

.about-proof-kicker {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.about-proof-big {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: #FFB3AD;
}

.about-proof-mid {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.45;
  font-weight: 800;
  color: var(--bg);
}

.about-proof-right {
  padding: 28px 30px;
}

.about-proof-title {
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 1.4;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 14px;
}

.about-proof-title strong {
  color: #FF9C93;
}

.about-proof-lead {
  font-size: 0.96rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.about-proof-em {
  color: #FF9C93;
  font-weight: 700;
}


/* ============================================================
   10. ソリューションセクション（Solutions）
============================================================ */
.section-solutions {
  background: var(--bg-soft);
}

/* ソリューションリスト */
.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* ソリューション各アイテム */
.solution-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
}

/* 左：番号・ラベル */
.solution-head {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.solution-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.solution-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.74);
}

/* 右：本文 */
.solution-body {
  padding: 24px;
  background: var(--bg);
}

.solution-pain-ref {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  padding: 10px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 9999px;
  background: #F4F5F8;
}

.solution-pain-ref::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 12px;
  height: 12px;
  background: #F4F5F8;
  border-right: 1px dashed var(--line-strong);
  border-bottom: 1px dashed var(--line-strong);
  transform: translateX(-50%) rotate(45deg);
}

.solution-title {
  font-size: clamp(1.35rem, 2.35vw, 1.58rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.4;
}

.solution-desc {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* 解決策ポイントリスト */
.solution-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.solution-bullets li {
  font-size: 0.88rem;
  padding-left: 20px;
  position: relative;
}

.solution-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 900;
}

.solution-detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  transition: background var(--transition), color var(--transition);
}

.solution-detail-link:hover {
  background: var(--ink);
  color: var(--bg);
}


/* ============================================================
   11. 導入メリットセクション（Benefit）
============================================================ */
.section-benefit {
  background: var(--bg-soft);
}

/* 6列グリッド（3+3） */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* メリットカード */
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(186, 14, 0, 0.22);
}

/* カードアイコン */
.benefit-icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #e84639;
  padding: 1rem 0 1.5rem;
  margin-bottom: 0;
  align-self: center;
}

/* 変化を示す見出し（数字） */
.benefit-num {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.benefit-num span {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 900;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}


/* ============================================================
   12. 機能詳細セクション（Features）
============================================================ */
.section-features {
  background: var(--bg);
}

.section-features .container {
  max-width: 1520px;
}

/* タブナビ全体 */
.features-tab-nav {
  margin-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border: 2px solid var(--line-strong);
}

/* インデックスバー */
.features-tab-index-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-deep);
  padding: 10px 20px;
}

.tab-index-label {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.tab-index-count {
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

/* タブボタンリスト（横スクロール対応） */
.features-tabs-list {
  display: flex;
  background: var(--bg-deep);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-deep);
}

.features-tabs-list::-webkit-scrollbar {
  height: 3px;
}

.features-tabs-list::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

.features-tabs-list::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* 各タブボタン */
.feat-tab {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bg-deep);
  color: var(--bg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  line-height: 1.3;
  transition: background var(--transition);
  cursor: pointer;
  text-align: left;
  min-width: 120px;
  max-width: 160px;
}

.feat-tab:hover {
  background: rgba(255, 255, 255, 0.08);
}

.feat-tab.active {
  background: var(--accent);
  color: #fff;
}

/* タブ番号 */
.tab-n {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
}

/* タブバッジ */
.tab-badge {
  display: inline-block;
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: var(--good);
  color: #fff;
}

/* アクティブタブ内バッジ：ステイ時カラー */
.feat-tab.active .tab-badge {
  background: var(--bg-deep);
  color: #fff;
}

/* タブテキスト */
.tab-short {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* パネルグループ */
.features-panels {
  position: relative;
  display: grid;
  /* パネルを同セルに重ね置き → 最背丈パネルで高さ確定 */
  border: 1px solid var(--line-strong);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: visible;
  margin-bottom: 70px;
}

/* 各機能パネル */
.feat-panel {
  grid-area: 1 / 1;
  /* 全パネルを同グリッドセルに重ね置き */
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feat-panel[hidden] {
  display: grid;
  /* hidden でも空間を保持して最背丈パネルで高さを決める */
  visibility: hidden;
  pointer-events: none;
}

.feat-panel.active {
  visibility: visible;
  pointer-events: auto;
}

/* パネル左：画像 */
.feat-panel-img {
  background: var(--bg-soft);
  border-right: 2px solid var(--line-strong);
  border-radius: 0 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 360px;
}

.feat-panel-img img {
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* パネル右：テキスト */
.feat-panel-body {
  padding: 48px 40px;
  overflow-y: auto;
}

/* パネル機能タグ */
.feat-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 16px;
}

/* パネルタイトル */
.feat-panel-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.feat-panel-title em {
  font-style: normal;
  color: var(--signal);
}

/* パネルバッジ */
.feat-badge {
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--good);
  color: #fff;
}

/* パネル説明 */
.feat-panel-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* サブ機能リスト */
.feat-sublist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat-sublist li {
  padding: 16px 20px;
  background: #fff;
  border-radius: 0;
  border-left: 5px solid var(--accent);
}

.feat-sublist h4 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.feat-sublist p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* 矢印ナビ */
.feat-nav-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.feat-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: var(--ink) !important;
  color: var(--bg) !important;
  border: 2px solid var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: background var(--transition), box-shadow var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

.feat-prev {
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.feat-next {
  right: 0;
  transform: translate(50%, -50%);
  pointer-events: auto;
}

.feat-arrow:hover {
  background: #241566 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.feat-arrow .fa-solid,
.feat-arrow .fas {
  font-size: 0.75rem !important;
  color: var(--bg) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.feat-arrow:disabled {
  background: rgba(13, 0, 76, 0.6) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  cursor: not-allowed;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* ============================================================
   13. 比較表セクション（Compare）
============================================================ */
.section-compare {
  background: var(--bg);
}

/* テーブルラッパー（横スクロール対応） */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
}

/* 比較テーブル */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: 20px 28px;
  border-bottom: 1px solid var(--ink-soft);
  font-size: 1.5rem;
  vertical-align: top;
}

.compare-table thead tr {
  background: var(--bg-deep);
  color: var(--bg);
}

/* ヘッダーセル */
.th-label {
  width: 22%;
  font-size: 0.85rem;
  font-weight: 700;
}

.th-conv {
  width: 39%;
  font-weight: 700;
}

.th-conv small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 4px;
}

.th-fad {
  width: 39%;
  background: var(--bg-deep);
  font-weight: 700;
}

.th-fad small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* RECOMMENDED バッジ */
.recommended-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 8px;
  vertical-align: middle;
}

/* 自社列セル */
.td-fad {
  background: #ffe8e8;
  font-weight: 500;
}

.td-fad small {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 400;
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
  border-bottom: none;
}

.compare-table tbody th {
  font-weight: 700;
  font-size: 1rem;
  background: var(--bg);
  vertical-align: middle;
}

.compare-table tbody td {
  font-size: 1.2rem;
  color: var(--ink-soft);
  vertical-align: middle;
}

.compare-table td small {
  display: block;
  font-size: 0.75rem;
  margin-top: 4px;
}


/* ============================================================
   14. サポートセクション（Support）
============================================================ */
.section-support {
  background: #EEEFF2;
}

/* サポートリスト */
.support-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

/* サポートアイテム */
.support-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.support-item:not(:last-child) {
  border-right: 1px solid var(--line-strong);
  padding-right: 32px;
  margin-right: 32px;
}

.support-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.support-item h3 {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.support-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

/* サポート締めテキスト */
.support-closing {
  background: linear-gradient(135deg, rgba(186, 14, 0, 0.08), rgba(13, 0, 76, 0.08));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.support-closing p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--ink);
  margin: 0;
}

.support-closing strong {
  color: var(--accent);
  font-weight: 900;
}


/* ============================================================
   15. 導入プロセスセクション（Process）
============================================================ */
.section-process {
  background: #EEEFF2;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  counter-reset: none;
  position: relative;
}

/* ステップ間の矢印ライン */
.process-list::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--ink));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}

.process-step-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.15;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.process-step-num span {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent), var(--ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-step-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--ink);
}

.process-step-desc {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
  text-align: left;
}

/* ============================================================
   16. 価格セクション（Price）
============================================================ */
.section-price {
  background: var(--bg);
}

.price-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-columns .price-block,
.price-columns .price-block:last-of-type {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}

.price-columns .price-grid-two {
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ブロック見出し */
.price-block {
  display: block;
  width: 100%;
  margin-bottom: 52px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.price-block:last-of-type {
  margin-bottom: 40px;
}

.price-block-copy {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 16px;
  clear: both;
}

.price-block-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  font-weight: 700;
  margin-bottom: 10px;
  white-space: nowrap;
}

.price-block-title {
  font-size: clamp(1.52rem, 2vw, 1.82rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 8px;
}

.price-block-title-sub {
  font-size: 0.8em;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.price-block-lead {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* 2カラム料金カード */
.price-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  clear: both;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* 価格カード共通 */
.price-card {
  background: #f2f5fc;
  border-radius: var(--radius) !important;
  padding: 2rem;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* オプションカード */
.price-option {
  background: #f3f3f4;
  border: none;
}

/* 製品ライセンス - カードの見た目を薄い背景に統一 */
.price-grid-two:first-of-type .price-card:first-child {
  background: #F8FAFF;
  color: var(--ink);
}

.price-grid-two:first-of-type .price-card:first-child .price-card-type {
  background: #fff;
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.price-grid-two:first-of-type .price-card:first-child .price-card-name,
.price-grid-two:first-of-type .price-card:first-child .price-amount,
.price-grid-two:first-of-type .price-card:first-child .price-num {
  color: var(--ink);
}

.price-grid-two:first-of-type .price-card:first-child .price-card-desc,
.price-grid-two:first-of-type .price-card:first-child .price-note,
.price-grid-two:first-of-type .price-card:first-child .price-renewal {
  color: var(--ink-soft);
}

.price-grid-two:first-of-type .price-card:first-child .price-amount {
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

/* 製品ライセンス - 2番目のカードも薄い背景に統一 */
.price-grid-two:first-of-type .price-card:nth-child(2) {
  background: #F8FAFF;
  border: none;
  color: var(--ink);
}

.price-grid-two:first-of-type .price-card:nth-child(2) .price-card-type {
  background: #fff;
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.price-grid-two:first-of-type .price-card:nth-child(2) .price-card-name,
.price-grid-two:first-of-type .price-card:nth-child(2) .price-amount,
.price-grid-two:first-of-type .price-card:nth-child(2) .price-num {
  color: var(--ink);
}

.price-grid-two:first-of-type .price-card:nth-child(2) .price-card-desc,
.price-grid-two:first-of-type .price-card:nth-child(2) .price-note,
.price-grid-two:first-of-type .price-card:nth-child(2) .price-renewal {
  color: var(--ink-soft);
}

.price-grid-two:first-of-type .price-card:nth-child(2) .price-amount {
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

/* オプションカード - 薄い背景色に統一 */
.price-option {
  color: var(--ink);
}

.price-option .price-card-type {
  color: var(--ink);
  padding: 4px 0;
  border-radius: 4px;
  display: inline-block;
}

.price-option:first-child .price-card-type {
  background: transparent !important;
  color: var(--ink) !important;
}

.price-option .price-card-name,
.price-option .price-amount,
.price-option .price-num {
  color: var(--ink);
}

.price-option .price-card-desc,
.price-option .price-note {
  color: var(--ink);
}

.price-card-type {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
}

/* 最初の価格カード（BASE PRICE）のタイプを背景で目立たせる */
.price-card:first-child .price-card-type {
  background: var(--accent);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.price-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.7rem 0;
}

.price-card-desc {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
}

.price-amount {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 4px;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
}

.price-num {
  display: inline-block;
  font-size: 2rem;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.price-yen {
  display: inline-block;
  align-self: flex-end;
  line-height: 1;
  position: relative;
  top: -4px;
}

.price-note {
  display: inline-block;
  align-self: flex-end;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  top: -4px;
}

.price-renewal {
  margin-top: 4px;
  font-size: 0.76rem;
  line-height: 1.55;
}

/* 注意事項ボックス */
.price-notes {
  background: transparent;
  border-radius: 0;
  padding: 8px 0 0;
  margin-top: 16px;
  margin-bottom: 0;
}

.price-notes ul {
  display: flex;
  flex-direction: column;
}

.price-notes li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-left: 1.2em;
}

.price-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.price-notes mark {
  color: inherit;
  background: linear-gradient(transparent 72%, var(--accent) 72%);
  padding: 0 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}


/* ============================================================
   16. FAQセクション
============================================================ */
.section-faq {
  background: #EEEFF2;
}

/* FAQリスト */
.faq-list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQアイテム */
.faq-item {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q,
.faq-a {
  margin: 0;
}

/* 質問ボタン */
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3A316E;
  background: var(--bg);
  transition: background var(--transition);
}

/* products.css / bootstrap等の上書き */
.kaitai-lp .faq-btn {
  font-size: 1.2rem !important;
}

.faq-btn:hover {
  background: var(--paper);
}

/* FAQアイコン（回転） */
.faq-icon {
  flex-shrink: 0;
  font-size: 1rem !important;
  transition: transform var(--transition);
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* 回答 */
.faq-a {
  display: block;
  width: 100%;
  margin-inline-start: 0;
  padding: 1.5rem;
  background: var(--bg);
}

.faq-a p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ============================================================
   16. CONTACTセクション
============================================================ */
.section-contact {
  background: var(--bg);
}

.contact-steps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-step-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--ink-mute);
  margin-bottom: 8px;
}

.contact-step-title {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}

.contact-step-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.contact-step-points {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
}

.contact-step-points li {
  position: relative;
  padding-left: 1.35em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
}

.contact-step-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-step-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  min-height: 46px;
  text-align: center;
}

.contact-cta {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ============================================================
   16. アニメーション / Reveal（スクロール検知）
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延バリエーション */
.reveal[data-delay="100"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="200"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="300"] {
  transition-delay: 0.3s;
}

.reveal[data-delay="400"] {
  transition-delay: 0.4s;
}

.reveal[data-delay="500"] {
  transition-delay: 0.5s;
}


/* ============================================================
   20. レスポンシブ（タブレット：1024px以下）
============================================================ */
@media (max-width: 1024px) {

  :root {
    --section-py: 72px;
  }

  .kaitai-lp .container {
    padding: 0 28px;
  }

  /* ヘッダー */
  .site-nav {
    display: none;
  }

  .header-cta {
    display: flex;
    margin-left: auto;
    flex: 1;
    min-width: 0;
    gap: 6px;
  }

  .header-cta .btn {
    flex: 1;
    min-width: 0;
    height: 36px;
    padding: 0 10px;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    gap: 0;
  }

  .brand-img {
    width: 146px;
    height: auto;
  }

  .hamburger,
  .sp-menu {
    display: none !important;
  }

  /* ヒーロー */
  .hero-catch {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .hero-float-badges .float-badge:nth-child(n+5) {
    display: none;
    /* SP時は少なく表示 */
  }

  /* Aboutポイント */
  .about-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-screen {
    order: 1;
    justify-self: stretch;
    max-width: none;
  }

  .about-points {
    order: 2;
    gap: 24px;
  }

  .about-proof {
    grid-template-columns: 1fr;
    margin-top: 28px;
    margin-bottom: 40px;
  }

  .about-proof-left {
    border-right: none;
    border-bottom: 1px solid var(--accent);
    padding: 24px;
  }

  .feat-prev {
    left: 8px;
  }

  .feat-next {
    right: 8px;
  }

  .about-proof-right {
    padding: 24px;
  }

  /* 機能タブ */
  .feat-panel {
    grid-template-columns: 1fr;
  }

  .feat-panel-img {
    border-right: none;
    border-bottom: 2px solid var(--line-strong);
    min-height: 240px;
  }

  /* 比較テーブル */
  .compare-table th,
  .compare-table td {
    padding: 16px 20px;
  }

  /* 価格グリッド */
  .price-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .price-block {
    margin-bottom: 0;
  }

  .price-block-copy {
    margin-bottom: 16px;
  }

  .price-grid-two {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .price-card {
    padding: 28px 24px;
  }

}


/* ============================================================
   20b. レスポンシブ（スマートフォン：640px以下）
============================================================ */
@media (max-width: 640px) {

  :root {
    --section-py: 56px;
  }

  .kaitai-lp .container {
    padding: 0 20px;
  }

  /* ヘッダー */
  .site-header {
    padding: 0 12px;
  }

  .header-cta-trial {
    display: none !important;
  }

  .site-header-inner {
    gap: 8px;
  }

  .brand-img {
    width: 128px;
  }

  .header-cta {
    gap: 4px;
  }

  .header-cta .btn {
    height: 34px;
    padding: 0 8px;
    line-height: 1.1;
  }

  :root {
    --sub-header-height: 64px;
  }

  .kaitai-breadcrumb-wrap {
    top: calc(var(--global-header-offset) + var(--sub-header-height) + 12px);
    padding: 0 16px;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
    min-height: 2.8rem;
  }

  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv {
    display: block !important;
    flex: 1 1 auto;
    min-width: 0;
  }

  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb {
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
    min-height: 2.8rem;
  }

  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item {
    padding-left: 0.45rem;
  }

  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0.45rem;
  }

  .kaitai-hero-tel {
    margin-left: auto;
    flex: 0 0 auto;
    font-size: 11px;
    gap: 2px;
  }

  .kaitai-hero-tel-label {
    display: none;
  }

  .kaitai-hero-tel-display {
    display: none;
  }

  .kaitai-hero-tel-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .kaitai-lp .kaitai-hero-tel-icon {
    display: inline-block;
    font-size: 2.8rem;
    line-height: 1;
  }

  .kaitai-hero-tel-number {
    display: none;
  }

  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item,
  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item a,
  .kaitai-breadcrumb-wrap .lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item::before {
    font-size: 12px;
  }

  /* ヒーロー */
  .hero-inner {
    padding: 0 20px 28px;
  }

  .hero-catch {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .hero-badge-top {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    justify-content: center;
  }

  .section-cta-mini {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-mini-btns {
    width: 100%;
  }

  .cta-mini-btns,
  .contact-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta-mini .btn,
  .cta-mini-btns .btn,
  .contact-cta .btn,
  .contact-step-cta {
    width: 100%;
    justify-content: center;
  }

  .contact-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-step-card {
    padding: 20px;
  }

  .hero-copy-bubbles {
    gap: 14px;
    justify-content: flex-start;
  }

  .bubble-chip {
    font-size: 0.81rem;
    padding: 12px 18px;
  }

  .bubble-chip::after {
    width: 10px;
    height: 10px;
    bottom: -7px;
  }

  .hero-float-badges .float-badge {
    display: none;
    /* SP時は非表示 */
  }

  .feat-prev {
    left: 0;
    transform: translate(-50%, -50%);
  }

  .feat-next {
    right: 0;
    transform: translate(50%, -50%);
  }

  /* セクション見出し */
  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* 課題カード（1列） */
  .pain-list {
    grid-template-columns: 1fr;
  }

  .pain-card {
    border-right: none;
    border-bottom: 2px solid var(--line-strong);
  }

  .pain-card:nth-child(3) {
    border-bottom: 2px solid var(--line-strong);
  }

  .pain-card:last-child {
    border-bottom: none;
  }

  /* サポートリスト（1列） */
  .support-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* プロセスリスト（1列） */
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list::before {
    display: none;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    gap: 20px;
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .process-step-num {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 0.55rem;
  }

  .process-step-num span {
    font-size: 1.2rem;
  }

  .support-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--line-strong);
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 20px;
    margin-bottom: 0;
  }

  /* Aboutポイント（1列） */
  .about-content {
    gap: 20px;
  }

  .about-points {
    gap: 18px;
  }

  .about-proof {
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .about-proof-left,
  .about-proof-right {
    padding: 20px;
  }

  .about-proof-kicker {
    font-size: 0.76rem;
  }

  .about-proof-lead {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  /* ソリューション（1列） */
  .solution-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-item {
    display: flex;
  }

  .solution-head {
    padding: 18px 20px;
    align-items: center;
    gap: 10px;
  }

  .solution-num {
    font-size: 1.8rem;
  }

  .solution-body {
    padding: 20px;
  }

  /* メリットグリッド（1列） */
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .price-block-title {
    font-size: 1.62rem;
  }

  /* 比較テーブル */
  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 1.5rem;
  }
}


/* ============================================================
   印刷スタイル
============================================================ */
@media print {

  .site-header,
  .hero-float-badges,
  .hero-scroll-hint,
  .hero-ticker,
  .feat-nav-arrows,
  .hamburger,
  .sp-menu {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .section {
    padding: 24pt 0;
    page-break-inside: avoid;
  }
}