@charset "UTF-8";
/*
 * Velmor サービスサイト（LP）スタイル
 * build-velmor-template.py により elementor-embed-light-pattern2.html から自動生成。直接編集しないこと。
 * url(#...) はページ内インラインSVGのフラグメント参照のためそのまま。
 */

/* ==== block 1 ==== */
  /* テキスト選択ハイライト：テーマ(Astra)の紫を上書き。明暗セクション両対応で文字色は各要素のまま維持 */
  ::selection { background: rgba(26,109,255,0.30) !important; color: inherit !important; }
  ::-moz-selection { background: rgba(26,109,255,0.30) !important; color: inherit !important; }

  :root {
    --navy: #0b1628;
    --navy-mid: #152040;
    --navy-light: #1e2f56;
    --blue: #1a6dff;
    --blue-mid: #3d8bff;
    --blue-light: #e6f1ff;
    --blue-pale: #f0f6ff;
    --teal: #00c4a7;
    --teal-light: #e0faf6;
    --white: #ffffff;
    --gray-100: #f4f6fb;
    --gray-200: #e8ecf5;
    --gray-400: #9ba6be;
    --gray-600: #5c6880;
    --gray-800: #2d3348;
    --text-primary: #0b1628;
    --text-secondary: #4a5570;
    --text-muted: #7d89a3;
    --border: rgba(26,109,255,0.15);
    --border-gray: rgba(0,0,0,0.08);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --header-height: 64px;
    --cmax: 1440px;
  }

  @media (min-width: 1025px) {
    :root {
      --header-height: 80px;
    }
  }

/* ====== APPS REDESIGN ====== */
.apps-new-section {
  background: #ffffff;
  padding: 96px 0 120px;
  position: relative;
}
.apps-new-section .container { max-width: var(--cmax); margin: 0 auto; padding: 0 24px; }

.apps-new-header { max-width: var(--cmax); margin: 0 auto 56px; }

.apps-eyebrow {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #1a6dff;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.apps-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: #1a6dff;
}

.apps-new-h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(27px, 4vw, 52px); /* 上下セクションの .section-title と統一 */
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #0b1628;
  margin: 0 0 24px;
  text-wrap: balance;
}
.apps-new-h2 .accent { color: #1a6dff; }

.apps-new-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 17px); /* 上下セクションの .section-lead と統一 */
  line-height: 1.8;
  color: #4a5570;
  margin: 0;
  max-width: 720px; /* 1行目（〜業務課題を、）が収まり、案Aの改行が2行できれいに出る幅 */
}

/* Group label */
.apps-group-label {
  max-width: var(--cmax);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.apps-group-label .pill {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #1a6dff;
  background: #f0f6ff;
  padding: 6px 14px;
  border-radius: 100px;
}
.apps-group-label .title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #0b1628;
}
.apps-group-label .rule { flex: 1; height: 1px; background: rgba(11,22,40,0.07); }

/* Cards grid */
.apps-cards-grid {
  max-width: var(--cmax);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* App card */
.apps-card {
  background: #ffffff;
  border: 1px solid rgba(11,22,40,0.07);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: 0;
  /* transform は使わない：横スクロール棚(overflow-x:auto → overflow-y も auto に計算される)内で
     カードが浮くと縦スクロールが発生するため、ホバーは影・枠線のみで表現する */
  transition: box-shadow 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
              border-color 0.32s ease;
  box-shadow: 0 1px 0 rgba(11,22,40,0.02);
}
.apps-card:hover {
  box-shadow: 0 18px 40px -18px rgba(11,22,40,0.18), 0 6px 16px -8px rgba(26,109,255,0.12);
  border-color: rgba(26,109,255,0.25);
}
.apps-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a6dff, #00c4a7);
  z-index: 2;
}

/* Visual area */
.apps-card-visual {
  flex: 0 0 auto;
  width: 100%;
  height: 240px;
  background: #f0f6ff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 1px solid rgba(26,109,255,0.08);
}
.apps-card-visual svg {
  width: 100%;
  height: 100%;
  max-height: 160px;
  display: block;
}
.apps-card-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text area */
.apps-card-text {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.apps-card-num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #1a6dff;
  letter-spacing: 0.16em;
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.apps-card-num .big {
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #0b1628;
}
.apps-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.45;
  color: #0b1628;
  margin: 0;
  letter-spacing: 0.005em;
}
.apps-field { display: flex; flex-direction: column; }
.apps-field-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.apps-field-label::before {
  content: ""; width: 6px; height: 6px; border-radius: 2px; background: currentColor;
}
.apps-field-label--problem { color: #e8553c; }
.apps-field-label--can { color: #009e87; }
.apps-problem-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: #4a5570;
  margin: 0;
}
.apps-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.apps-tag {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #0b1628;
  background: #f4f6fb;
  border: 1px solid rgba(11,22,40,0.07);
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* More button + expandable */
.apps-more-wrap {
  max-width: var(--cmax);
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
}
.apps-more-btn {
  appearance: none;
  background: transparent;
  border: 1.5px solid #1a6dff;
  color: #1a6dff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.03em;
}
.apps-more-btn:hover { background: #1a6dff; color: #fff; transform: translateY(-1px); }
.apps-more-btn .chev { display: inline-block; transition: transform 0.3s ease; }
.apps-more-btn.is-open .chev { transform: rotate(180deg); }

.apps-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2,0.7,0.2,1), opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}
.apps-expandable.is-open { max-height: 4000px; opacity: 1; margin-top: 24px; }

.apps-group-divider { max-width: var(--cmax); margin: 48px auto 24px; height: 1px; background: rgba(11,22,40,0.07); }

/* End CTA */
.apps-end-cta { max-width: var(--cmax); margin: 64px auto 0; display: flex; justify-content: center; }
.apps-end-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #1a6dff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.apps-end-cta a:hover { background: #0f5ce8; transform: translateY(-1px); }
.apps-end-cta a .arrow { display: inline-block; transition: transform 0.2s ease; }
.apps-end-cta a:hover .arrow { transform: translateX(4px); }

/* SP対応 */
@media (max-width: 1024px) {
  .apps-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .apps-new-section { padding: 64px 0 80px; }
  .apps-new-header { margin-bottom: 36px; }
  .apps-group-label .pill { font-size: 10px; padding: 4px 10px; }
  .apps-group-label .title-jp { font-size: 12px; }
  .apps-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .apps-card { flex-direction: column; min-height: 0; }
  .apps-card-visual {
    flex: 0 0 auto; width: 100%; height: 200px; max-height: none;
    border-right: none; border-bottom: 1px solid rgba(26,109,255,0.08); padding: 0;
  }
  .apps-card-visual svg { max-height: 160px; }
  .apps-card-text { padding: 20px 20px 24px; gap: 12px; }
  .apps-card-title { font-size: 17px; }
}
/* ====== END APPS REDESIGN ====== */

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
  }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
  }

  .container { max-width: var(--cmax); margin: 0 auto; padding: 0 24px; }
  .section { padding: 96px 0; background: var(--white); color: var(--text-primary); }
  .section--dark { background: var(--navy); color: var(--white); }
  .section--gray { background: var(--gray-100); }
  .section--blue-pale { background: var(--blue-pale); }

  /* ===== LMS説明ゾーン（標準機能 → システム要件 → カスタマイズ）=====
     3セクションを1つの塊として背景を統一し、上(#apps=白)・下(#usecases=グレー)と差別化する。
     --blue-pale(#f0f6ff) は下の --gray-100(#f4f6fb) とほぼ同値で境目が消えるため --blue-light を使う。
     ID指定なので .lms-features-section / .section の background より優先される。 */
  #lp-function,
  #lp-runtime,
  #lp-customize { background: var(--blue-light); }
  /* 塊の中の境目は消し、外側（上下）との境目だけを見せる */
  #lp-runtime,
  #lp-customize { padding-top: 0; }

  /* セクション見出しラベル：ボタンと差別化した「淡い青のアウトラインチップ」。
     塗り・グローはボタン(.btn-cta)専用にし、ラベルは軽い eyebrow に格下げ */
  .label {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--blue);
    background: rgba(26,109,255,0.10);
    border: 1px solid rgba(26,109,255,0.22);
    padding: 6px 15px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  /* 濃色背景セクション用（白文字の淡いチップ） */
  .label--white {
    color: #ffffff;
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.34);
  }

  h2.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(27px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  /* テーマ(Astra等)の見出し一律スタイル（text-transform:uppercase／Bellezaフォント）を打ち消す
     （ブランド名「Velmor」が VELMOR と大文字化されるのを防ぐ／日本語見出しの意図を守る） */
  .hero-title, .section-title,
  h1, h2, h3, h4, h5, h6 {
    text-transform: none;
    font-family: 'Noto Sans JP', sans-serif;
  }
  h2.section-title--white { color: var(--white); }
  /* モバイルでは見出しの明示改行を無効化し、自然折り返しに任せる（3行ガタつき防止） */
  @media (max-width: 600px) {
    .section-title br,
    .apps-new-h2 br,
    .hero-title br,
    .vl-title br,
    .section-lead br,
    .apps-new-lead br { display: none; }
  }
  .section-lead {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.8;
  }
  .section-lead--white { color: rgba(255,255,255,0.7); }

  /* CTA BUTTON */
  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a6dff 0%, #0053d4 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 10px 34px rgba(26,109,255,0.45);
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(26,109,255,0.55); }
  /* テーマ(Astra等)の a:hover/visited 色（紫）がボタン文字に乗るのを防ぐ */
  .btn-cta,
  .btn-cta:link,
  .btn-cta:visited,
  .btn-cta:hover,
  .btn-cta:focus,
  .btn-cta:active { color: var(--white) !important; }
  .btn-cta svg { flex-shrink: 0; }
  .btn-cta--lg { font-size: 18px; padding: 22px 52px; }

  /* HEADER */
  .lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(11,22,40,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0 24px;
    display: block !important;
  }
  .header-inner {
    max-width: var(--cmax);
    margin: 0 auto;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img {
    height: 32px;
    width: auto;
    display: block;
  }
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
  }
  /* Astraのグローバル a:hover 色が残るため、全状態で白文字・下線なしを明示して上書き（.lp-header スコープで優先） */
  .lp-header .header-cta,
  .lp-header .header-cta:link,
  .lp-header .header-cta:visited { color: var(--white); text-decoration: none; }
  .lp-header .header-cta:hover,
  .lp-header .header-cta:focus,
  .lp-header .header-cta:active { background: var(--blue-mid); color: var(--white); text-decoration: none; }

  /* ヘッダー右側のボタン群。現在はCTAのみだが、要素が増えても間隔を保つため残す */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* NAV */
  .header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .header-nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
  }
  .header-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
  }
  /* お役立ちコラムは別ページ遷移だが、並びはスクロール遷移リンクと揃える。
     Astraの a 色（紫）が乗るため全状態で明示する */
  .lp-header .header-nav__column,
  .lp-header .header-nav__column:link,
  .lp-header .header-nav__column:visited { color: rgba(255,255,255,0.75); text-decoration: none; }
  .lp-header .header-nav__column:hover,
  .lp-header .header-nav__column:focus,
  .lp-header .header-nav__column:active {
    color: var(--white);
    background: rgba(255,255,255,0.07);
    text-decoration: none;
  }
  /* ナビ項目が1つ増えたぶん、1024〜1280px では詰めて折り返しを防ぐ */
  @media (max-width: 1280px) {
    .header-nav { gap: 0; }
    .header-nav a { padding: 5px 6px; }
    .header-cta { padding: 10px 16px; }
  }
  /* ドロワーへ切り替わる直前（1025〜1100px）が最も窮屈なのでさらに詰める */
  @media (max-width: 1100px) {
    .header-nav a { padding: 5px 4px; }
    .header-cta { padding: 10px 14px; }
  }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background .2s;
  }
  .hamburger:hover { background: rgba(255,255,255,0.07); }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE DRAWER */
  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(11,22,40,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 99;
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color .2s;
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:hover { color: var(--white); }
  .mobile-nav .mobile-nav-cta {
    margin-top: 12px;
    display: block;
    text-align: center;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    padding: 14px;
    border-radius: 100px;
    border-bottom: none;
  }
  .mobile-nav .mobile-nav-cta:hover { background: var(--blue-mid); }

  @media (max-width: 1024px) {
    .header-nav { display: none; }
    .hamburger { display: flex; }
    .header-cta { display: none; }
  }

  /* SP固定フッターCTA */
  .sp-fixed-cta {
    display: none;
  }
  @media (max-width: 1024px) {
    .sp-fixed-cta {
      display: flex;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 98;
      padding: 12px 16px;
      background: rgba(11,22,40,0.96);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .sp-fixed-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: linear-gradient(135deg, #1a6dff 0%, #0053d4 100%);
      color: var(--white);
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 15px 20px;
      border-radius: 100px;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(26,109,255,0.4);
      transition: opacity .2s;
    }
    .sp-fixed-cta a:hover { opacity: .88; }
    /* フッター固定CTAの分だけ本文の下余白を確保 */
    body { padding-bottom: 76px; }
  }

  /* HERO */
  .hero {
    background: #000a1c;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
  }
  /* BG: 2カラムレイアウトのため背景画像は非表示 */
  .hero-bg {
    display: none;
  }
  .hero-overlay {
    display: none;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(26,109,255,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,196,167,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .hero-text {
    min-width: 0;
  }
  .hero-visual {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-visual img {
    width: 100%;
    max-width: none;
    height: min(620px, calc(100vh - var(--header-height) - 96px));
    object-fit: contain;
    object-position: right center;
    display: block;
    border-radius: 0;
    mix-blend-mode: lighten;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%),
                linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
    mask-composite: intersect;
  }
  .hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--teal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
  }
  .hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -.01em;
  }
  .hero-title span { color: var(--blue-mid); }
  .hero-sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .hero-note {
    font-size: clamp(14px, 1.4vw, 15px);
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    margin-bottom: 32px;
  }
  .hero-cta-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-cta-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hero-cta-value::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--teal);
  }

  /* KV 3本柱リスト（強み一言＋要素名の箇条書き） */
  .hero-pillar-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 9px;
  }
  .hero-pillar-list li {
    position: relative; padding-left: 24px;
    font-size: 14px; font-weight: 600; line-height: 1.5;
    color: rgba(255,255,255,0.9);
  }
  .hero-pillar-list li::before {
    content: ''; position: absolute; left: 4px; top: 0.28em;
    width: 5px; height: 9px;
    border: solid var(--teal); border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .hero-pillar-list li b { color: var(--teal); font-weight: 700; }

  /* KVトーンABテスト */
  html[data-kv-tone="executive"] .hero {
    background:
      radial-gradient(circle at 78% 22%, rgba(26,109,255,0.18) 0%, transparent 32%),
      linear-gradient(135deg, #ffffff 0%, #f7faff 46%, #eef6ff 100%);
  }
  html[data-kv-tone="executive"] .hero::before {
    top: -220px; left: auto; right: -180px;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(26,109,255,0.12) 0%, transparent 70%);
  }
  html[data-kv-tone="executive"] .hero::after {
    bottom: -160px; left: -180px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(0,196,167,0.10) 0%, transparent 68%);
  }
  html[data-kv-tone="executive"] .hero-inner {
    grid-template-columns: minmax(340px, 0.88fr) minmax(520px, 1.12fr);
    gap: 64px;
  }
  html[data-kv-tone="executive"] .hero-text {
    border-left: 4px solid var(--blue);
    padding-left: 28px;
  }
  html[data-kv-tone="executive"] .hero-eyebrow,
  html[data-kv-tone="executive"] .hero-cta-value {
    color: var(--blue);
  }
  html[data-kv-tone="executive"] .pulse-dot,
  html[data-kv-tone="executive"] .hero-cta-value::before {
    background: var(--blue);
  }
  html[data-kv-tone="executive"] .hero-title {
    color: var(--navy);
  }
  html[data-kv-tone="executive"] .hero-title span {
    color: var(--blue);
  }
  html[data-kv-tone="executive"] .hero-note {
    color: var(--text-secondary);
    font-weight: 500;
  }
  html[data-kv-tone="executive"] .hero-pillar-list li {
    color: var(--text-secondary);
  }
  html[data-kv-tone="executive"] .btn-cta-ghost {
    color: var(--navy);
    background: rgba(255,255,255,0.72);
    border-color: rgba(26,109,255,0.22);
  }
  html[data-kv-tone="executive"] .btn-cta-ghost:hover {
    color: var(--blue);
    background: var(--white);
    border-color: rgba(26,109,255,0.36);
  }
  html[data-kv-tone="executive"] .hero-visual {
    position: relative;
    align-self: stretch;
  }
  html[data-kv-tone="executive"] .hero-visual::before { display: none; }
  html[data-kv-tone="executive"] .hero-visual img {
    position: relative;
    z-index: 1;
    mix-blend-mode: normal;
    -webkit-mask-image: none;
    mask-image: none;
    /* 画像自体を白枠にして中央でフィット（縦長図が枠からはみ出さないように） */
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(720px, calc(100vh - var(--header-height) - 72px));
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    border: 1px solid rgba(26,109,255,0.18);
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(11,22,40,0.14);
  }

  html[data-kv-tone="ai"] .hero {
    background:
      linear-gradient(115deg, rgba(5,11,24,0.98) 0%, rgba(11,22,40,0.98) 45%, rgba(4,34,46,0.98) 100%),
      radial-gradient(circle at 70% 34%, rgba(0,196,167,0.18), transparent 36%);
  }
  html[data-kv-tone="ai"] .hero::before {
    top: -260px; left: -180px;
    width: 760px; height: 760px;
    background: radial-gradient(circle, rgba(26,109,255,0.22) 0%, transparent 68%);
  }
  html[data-kv-tone="ai"] .hero::after {
    left: auto; right: -160px; bottom: -180px;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(0,196,167,0.18) 0%, transparent 70%);
  }
  html[data-kv-tone="ai"] .hero-inner {
    grid-template-columns: minmax(340px, 0.86fr) minmax(560px, 1.14fr);
    gap: 64px;
  }
  html[data-kv-tone="ai"] .hero-title span {
    color: transparent;
    background: linear-gradient(90deg, var(--blue-mid), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
  }
  html[data-kv-tone="ai"] .hero-note {
    color: rgba(255,255,255,0.58);
  }
  html[data-kv-tone="ai"] .hero-visual {
    position: relative;
  }
  html[data-kv-tone="ai"] .hero-visual::before {
    content: '';
    position: absolute;
    inset: 8% 2% 8% 8%;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, rgba(26,109,255,0.14), rgba(0,196,167,0.08));
  }
  html[data-kv-tone="ai"] .hero-visual::after {
    content: '';
    position: absolute;
    inset: 12% 6%;
    z-index: 0;
    opacity: 0.16;
    background-image:
      linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  html[data-kv-tone="ai"] .hero-visual img {
    position: relative;
    z-index: 1;
    mix-blend-mode: screen;
    filter: saturate(1.18) contrast(1.08) drop-shadow(0 22px 54px rgba(0,196,167,0.18));
    transform: translateX(10px) scale(1.02);
  }

  .kv-tone-switcher {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(11,22,40,0.88);
    box-shadow: 0 16px 42px rgba(11,22,40,0.22);
    backdrop-filter: blur(10px);
  }
  html[data-kv-picker="1"] .kv-tone-switcher {
    display: flex;
  }
  .kv-tone-switcher button {
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 13px;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
  }
  .kv-tone-switcher button:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.38);
  }
  .kv-tone-switcher button[aria-pressed="true"] {
    background: var(--blue);
    border-color: var(--blue);
  }
  @media (max-width: 980px) {
    html[data-kv-tone="executive"] .hero-inner,
    html[data-kv-tone="ai"] .hero-inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }
    html[data-kv-tone="executive"] .hero-visual,
    html[data-kv-tone="ai"] .hero-visual {
      order: -1;
      align-self: auto;
    }
    html[data-kv-tone="ai"] .hero-visual img {
      transform: none;
    }
  }
  @media (max-width: 768px) {
    html[data-kv-tone="executive"] .hero-text {
      padding-left: 18px;
      border-left-width: 3px;
    }
    html[data-kv-tone="executive"] .hero-visual::before,
    html[data-kv-tone="ai"] .hero-visual::before {
      inset: 8% 0;
      border-radius: 22px;
    }
    .kv-tone-switcher {
      right: 12px;
      left: 12px;
      bottom: 88px;
      justify-content: center;
      overflow-x: auto;
    }
    .kv-tone-switcher button {
      flex: 0 0 auto;
    }
  }

  /* HERO IMAGE (FV右カラム) */
  .hero-image-wrap {
    position: relative;
  }
  .hero-image-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
    box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  }

  /* 3-LAYER DIAGRAM (hero) */
  .diagram-wrap { position: relative; }
  .diagram {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
  }
  .diagram::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
  }
  .d-label {
    font-size: 10px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px;
  }
  .d-layer {
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
    position: relative;
  }
  .d-layer:last-child { margin-bottom: 0; }
  .d-layer-top { background: linear-gradient(135deg, rgba(26,109,255,0.2), rgba(0,196,167,0.1)); border: 1px solid rgba(26,109,255,0.3); }
  .d-layer-mid { background: rgba(26,109,255,0.12); border: 1px solid rgba(26,109,255,0.2); }
  .d-layer-bot { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
  .d-layer-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
  .d-layer-desc { font-size: 12px; color: rgba(255,255,255,0.55); }
  .d-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
  .d-chip {
    font-size: 10px; font-weight: 500;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px; border-radius: 100px;
  }
  .d-ai-band {
    position: absolute; right: -1px; top: -1px; bottom: -1px;
    width: 44px;
    background: linear-gradient(180deg, rgba(0,196,167,0.15), rgba(0,196,167,0.05));
    border-left: 1px solid rgba(0,196,167,0.2);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    display: flex; align-items: center; justify-content: center;
    writing-mode: vertical-rl;
    font-size: 9px; font-weight: 700; letter-spacing: .1em; color: var(--teal);
  }
  .d-connector {
    display: flex; align-items: center; justify-content: center;
    height: 16px; margin: -6px 0; position: relative; z-index: 1;
  }
  .d-connector::before {
    content: ''; width: 1px; height: 100%;
    background: linear-gradient(180deg, rgba(26,109,255,0.5), rgba(26,109,255,0.2));
  }

  /* PROBLEM */
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  @media (max-width: 1024px) {
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .problem-grid { grid-template-columns: 1fr !important; }
  }
  .problem-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    position: relative; overflow: hidden;
    transition: box-shadow .2s, transform .2s;
  }
  .problem-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
  .problem-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
  }
  .problem-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #f0f6ff;
  }
  .problem-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .problem-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 22px;
  }
  .problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); line-height: 1.45; }
  .problem-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.85; }
  /* 強みカード：スクロールで左から順に“ふわっと”（スタッガー） */
  #strengths .problem-card { opacity: 0; translate: 0 40px; }
  #strengths .problem-card.is-visible { animation: strengthReveal .7s cubic-bezier(.2,.7,.2,1) forwards; }
  #strengths .problem-card:nth-child(2).is-visible { animation-delay: .12s; }
  #strengths .problem-card:nth-child(3).is-visible { animation-delay: .24s; }
  #strengths .problem-card:nth-child(4).is-visible { animation-delay: .36s; }
  @keyframes strengthReveal { to { opacity: 1; translate: 0 0; } }
  @media (prefers-reduced-motion: reduce) {
    #strengths .problem-card { opacity: 1; translate: 0 0; }
    #strengths .problem-card.is-visible { animation: none; }
  }
  .problem-strong {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    margin-top: 48px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .problem-strong-text {
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 700; color: var(--white); line-height: 1.6; position: relative;
  }
  .problem-strong-text em { color: var(--teal); font-style: normal; }

  /* WHY LMS IMAGE */
  .why-img-wrap {
    margin-top: 40px;
    text-align: center;
  }
  .why-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0 auto;
  }

  /* VELMOR LMS SECTION */
  .vlms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 0;
  }
  .vlms-content .section-title { margin-bottom: 12px; }
  .vlms-sub-lead {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    margin-top: 8px;
  }
  .vlms-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .vlms-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: box-shadow .2s;
  }
  .vlms-point:hover { box-shadow: 0 4px 20px rgba(26,109,255,0.07); }
  .vlms-point--accent {
    border-color: rgba(26,109,255,0.2);
    background: var(--blue-pale);
  }
  .vlms-point-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: var(--blue-pale);
    border: 1px solid rgba(26,109,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    margin-top: 2px;
  }
  .vlms-point-icon--accent {
    background: var(--blue-light);
    border-color: rgba(26,109,255,0.25);
  }
  .vlms-point h3 {
    font-size: 14px; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px; line-height: 1.4;
  }
  .vlms-point p {
    font-size: 12px; color: var(--text-secondary);
    line-height: 1.65; margin-bottom: 8px;
  }
  .vlms-chips {
    display: flex; flex-wrap: wrap; gap: 5px;
  }
  .vlms-chip {
    font-size: 10px; font-weight: 500;
    padding: 2px 9px; border-radius: 100px;
    background: var(--gray-100);
    color: var(--text-secondary);
    border: 1px solid var(--border-gray);
  }
  .vlms-chip--blue {
    background: var(--blue-light);
    color: var(--blue);
    border-color: rgba(26,109,255,0.2);
  }
  /* right visual */
  .vlms-visual { display: flex; align-items: center; justify-content: center; }
  .vlms-visual-inner {
    background: var(--blue-pale);
    border: 1px solid rgba(26,109,255,0.12);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: 0 8px 40px rgba(26,109,255,0.1);
  }
  .vlms-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
  }
  .vlms-note {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .vlms-note::before {
    content: '→ ';
    color: var(--blue);
    font-weight: 700;
  }
  @media (max-width: 768px) {
    .vlms-grid { grid-template-columns: 1fr; gap: 36px; }
    .vlms-visual { order: -1; }
  }

  /* WHY LMS – NEW FLOW DIAGRAM */
  .why-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-step {
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
  }
  .why-step--lms {
    background: var(--white);
    border: 1.5px solid var(--border-gray);
  }
  .why-step--gap {
    background: rgba(26,109,255,0.05);
    border: 1.5px solid rgba(26,109,255,0.18);
  }
  .why-step--solution {
    background: linear-gradient(135deg, #1a6dff, #0053d4);
    border: none;
    color: var(--white);
  }
  .why-step-tag {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 3px 12px; border-radius: 100px;
    margin-bottom: 12px;
  }
  .why-step-tag--lms { background: var(--blue-light); color: var(--blue); }
  .why-step-tag--gap { background: rgba(26,109,255,0.12); color: var(--blue); }
  .why-step-tag--solution { background: rgba(255,255,255,0.2); color: var(--white); }
  .why-step h3 {
    font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4;
  }
  .why-step--solution h3 { color: var(--white); }
  .why-chips {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
  }
  .why-chip {
    font-size: 12px; font-weight: 500;
    padding: 5px 14px; border-radius: 100px;
  }
  .why-chip--lms { background: var(--blue-light); color: var(--blue); }
  .why-chip--gap {
    background: rgba(26,109,255,0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(26,109,255,0.15);
  }
  .why-chip--gap-warn {
    background: rgba(186,117,23,0.08);
    color: #854f0b;
    border: 1px solid rgba(186,117,23,0.2);
  }
  .why-chip--solution { background: rgba(255,255,255,0.2); color: var(--white); }
  .why-arrow {
    display: flex; align-items: center; justify-content: center;
    height: 36px; position: relative;
  }
  .why-arrow::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 1.5px; height: 100%;
    background: linear-gradient(180deg, var(--border-gray), rgba(26,109,255,0.3));
  }
  .why-arrow-icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--white);
    border: 1.5px solid rgba(26,109,255,0.3);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
    font-size: 12px; color: var(--blue);
  }
  .why-step--gap p { font-size: 13px; color: var(--text-secondary); margin-top: 4px; line-height: 1.7; }
  .why-step--solution p { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 8px; line-height: 1.7; }

  /* ── SOLUTION: flat 4-layer diagram ── */
  .sol-diagram {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  /* shared card base */
  .sl {
    width: 100%;
    border-radius: var(--radius-md);
    padding: 22px 28px;
    position: relative;
  }

  /* row 1 – 経営課題の解決 : white, blue border, narrowest */
  .sl--goal {
    width: 74%;
    background: var(--white);
    border: 1.5px solid #1a6dff;
  }

  /* row 2 – AIエージェント : deep navy */
  .sl--ai {
    width: 82%;
    background: #0b1628;
    border: 1.5px solid #1e2f56;
  }

  /* row 3 – 業務連動アプリ : vivid blue */
  .sl--app {
    width: 91%;
    background: #1a6dff;
    border: 1.5px solid #1a6dff;
  }

  /* row 4 – LMS : pale blue-gray, widest */
  .sl--lms {
    width: 100%;
    background: #eef3fb;
    border: 1.5px solid #c2d3f0;
  }

  /* header row inside each card */
  .sl-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .sl-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }
  .sl--goal  .sl-title { color: #0b1628; }
  .sl--ai    .sl-title { color: #ffffff; }
  .sl--app   .sl-title { color: #ffffff; }
  .sl--lms   .sl-title { color: #1a3460; }

  .sl-corner {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .sl--goal  .sl-corner { color: #1a6dff; border: 1px solid #c2d3f0; }
  .sl--ai    .sl-corner { color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.12); }
  .sl--app   .sl-corner { color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.25); }
  .sl--lms   .sl-corner { color: #5080b0; border: 1px solid #c2d3f0; }

  .sl-desc {
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 12px;
  }
  .sl--goal .sl-desc { color: #4a5570; }
  .sl--ai   .sl-desc { color: rgba(255,255,255,.62); }
  .sl--app  .sl-desc { color: rgba(255,255,255,.82); }
  .sl--lms  .sl-desc { color: #4a6080; }

  .sl-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .sl-chip {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 11px;
    border-radius: 100px;
  }
  .sl--goal .sl-chip { background: #eef3fb; color: #1a6dff; border: 1px solid #c2d3f0; }
  .sl--ai   .sl-chip { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); }
  .sl--app  .sl-chip { background: rgba(255,255,255,.16); color: #ffffff; border: 1px solid rgba(255,255,255,.22); }
  .sl--lms  .sl-chip { background: #dce8f8; color: #1a5aaa; border: 1px solid #c2d3f0; }

  /* arrow between layers */
  .sl-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    position: relative;
  }
  .sl-arrow::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    background: #c2d3f0;
    transform: translateX(-50%);
  }
  .sl-arrow svg {
    position: relative;
    z-index: 1;
    background: var(--gray-100);
    border-radius: 50%;
    padding: 3px;
    color: #5080b0;
  }

  /* bottom note */
  .sol-note {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* mobile */
  @media (max-width: 768px) {
    .sl--goal { width: 100%; }
    .sl--ai   { width: 100%; }
    .sl--app  { width: 100%; }
    .sl--lms  { width: 100%; }
  }

  /* SOLUTION IMAGE */
  .sol-img-wrap {
    margin-top: 40px;
    text-align: center;
  }
  .sol-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0 auto;
  }

  /* AI mechanism diagram */
  .ai-mech-wrap {
    margin-top: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
  }
  .ai-mech-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 20px;
  }
  .ai-mech-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    margin: 0 auto;
  }

  /* AI AGENT SECTION */
  .ai-section { background: var(--navy); }

  /* flow diagram */
  .ai-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 44px auto 0;
    max-width: 720px;
  }

  /* shared row card */
  .af {
    width: 100%;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    position: relative;
  }

  /* row 1 – input */
  .af--input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
  }
  /* row 2 – data hub */
  .af--data {
    background: rgba(26,109,255,0.12);
    border: 1px solid rgba(26,109,255,0.25);
  }
  /* row 3 – AI agent */
  .af--ai {
    background: linear-gradient(135deg,#1a6dff 0%,#0b5fd4 100%);
    border: 1px solid rgba(255,255,255,0.15);
  }
  /* row 4 – outputs */
  .af--out {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  /* row 5 – results */
  .af--result {
    background: rgba(0,196,167,0.08);
    border: 1px solid rgba(0,196,167,0.2);
  }

  .af-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .af-title {
    font-size: 15px; font-weight: 700;
  }
  .af--input  .af-title { color: rgba(255,255,255,.85); }
  .af--data   .af-title { color: #80b4ff; }
  .af--ai     .af-title { color: #ffffff; font-size: 18px; }
  .af--out    .af-title { color: rgba(255,255,255,.8); }
  .af--result .af-title { color: var(--teal); }

  .af-corner {
    font-size: 9px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 2px 8px; border-radius: 4px;
  }
  .af--input  .af-corner { color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.1); }
  .af--data   .af-corner { color: #5090e0; border: 1px solid rgba(26,109,255,.25); }
  .af--ai     .af-corner { color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.25); }
  .af--out    .af-corner { color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.1); }
  .af--result .af-corner { color: rgba(0,196,167,.6); border: 1px solid rgba(0,196,167,.2); }

  .af-sub {
    font-size: 11px; color: rgba(255,255,255,.45);
    margin-bottom: 10px; line-height: 1.5;
  }
  .af--data .af-sub   { color: rgba(128,180,255,.7); }
  .af--ai .af-sub     { color: rgba(255,255,255,.75); font-size: 12px; }
  .af--result .af-sub { color: rgba(0,196,167,.65); }

  .af-chips {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .af-chip {
    font-size: 11px; font-weight: 500;
    padding: 3px 11px; border-radius: 100px;
  }
  .af--input  .af-chip { background: rgba(255,255,255,.06); color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.1); }
  .af--data   .af-chip { background: rgba(26,109,255,.15); color: #80b4ff; border: 1px solid rgba(26,109,255,.2); }
  .af--out    .af-chip { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.1); }
  .af--result .af-chip { background: rgba(0,196,167,.1); color: var(--teal); border: 1px solid rgba(0,196,167,.2); }

  /* arrow between rows */
  .af-arrow {
    height: 28px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    width: 100%;
  }
  .af-arrow::before {
    content: '';
    position: absolute; top:0; bottom:0; left:50%;
    width: 1px; background: rgba(255,255,255,.12);
    transform: translateX(-50%);
  }
  .af-arrow svg {
    position: relative; z-index:1;
    background: var(--navy);
    border-radius: 50%;
    padding: 3px;
    color: rgba(255,255,255,.3);
  }

  /* 6 feature cards */
  .ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .ai-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 20px 20px;
    transition: background .2s, border-color .2s;
  }
  .ai-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(26,109,255,.3);
  }
  .ai-card-num {
    font-family: 'Poppins', sans-serif;
    font-size: 10px; font-weight: 800;
    color: var(--blue-mid); letter-spacing: .1em;
    margin-bottom: 8px; display: block;
  }
  .ai-card h3 {
    font-size: 13px; font-weight: 700;
    color: var(--white); margin-bottom: 6px; line-height: 1.4;
  }
  .ai-card p {
    font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.65;
  }

  /* supplement text */
  .ai-supplement {
    margin-top: 40px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-left: 3px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 24px;
    font-size: 13px; color: rgba(255,255,255,.55);
    line-height: 1.8;
  }

  /* closing copy */
  .ai-close {
    margin-top: 48px;
    text-align: center;
    font-size: clamp(14px,1.6vw,17px);
    font-weight: 700;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
  }
  .ai-close em { color: var(--teal); font-style: normal; }

  /* sub link */
  .ai-sublink {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,.15);
    transition: color .2s;
  }
  .ai-sublink:hover { color: rgba(255,255,255,.7); }

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

  /* responsive */
  
  
  

  /* APPS REASSURANCE */
  .apps-reassurance {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    background: var(--blue-pale);
    border: 1px solid rgba(26,109,255,0.2);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    line-height: 1.7;
    display: inline-block;
  }

  /* APP CARDS */
  .apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .app-num {
    font-family: 'Poppins', sans-serif;
    font-size: 10px; font-weight: 800;
    color: var(--blue-mid); letter-spacing: .1em;
    margin-bottom: 6px;
    display: block;
  }
  .app-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
  .app-field { display: flex; flex-direction: column; gap: 4px; }
  .app-field-label {
    font-size: 9px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 2px 8px; border-radius: 100px;
    display: inline-block; align-self: flex-start;
  }
  .app-field-label--problem { background: rgba(26,109,255,0.08); color: #1a6dff; }
  .app-field-label--feature { background: var(--teal-light); color: #0f6e56; }
  .app-field-label--warn { background: rgba(186,117,23,0.1); color: #854f0b; }
  .app-field-text {
    font-size: 11.5px; color: var(--text-secondary); line-height: 1.65;
  }

  /* MID CTA */
  .mid-cta {
    background: linear-gradient(135deg, #0b1628 0%, #152040 60%, #1a3a6e 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
  }
  .mid-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,109,255,0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .mid-cta-inner {
    text-align: center;
    position: relative;
  }
  .mid-cta h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700; color: var(--white);
    margin-bottom: 12px; line-height: 1.3;
  }
  .mid-cta-lead {
    font-size: 15px; color: rgba(255,255,255,0.65);
    margin-bottom: 8px; line-height: 1.7;
  }
  .mid-cta-note {
    font-size: 12px; color: rgba(255,255,255,0.4);
    margin-bottom: 32px; line-height: 1.7;
  }

  /* OUTCOMES */
  .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px; margin-top: 48px;
  }
  .outcome-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: background .2s, border-color .2s;
  }
  .outcome-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(26,109,255,0.3); }
  .outcome-icon { font-size: 28px; margin-bottom: 14px; }
  .outcome-card h3 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.4; }
  .outcome-card p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.65; }

  /* OUTCOMES NEW LAYOUT */
  .outcomes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
  }
  .outcomes-layout > * { min-width: 0; }
  .outcomes-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  }
  .outcomes-image {
    width: 100%;
    height: auto;
    display: block;
  }
  .outcomes-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .outcomes-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .outcomes-item:last-child { border-bottom: none; padding-bottom: 0; }
  .outcomes-item-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .outcomes-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.4;
  }
  .outcomes-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0;
  }
  @media (max-width: 768px) {
    .outcomes-layout { grid-template-columns: 1fr; gap: 36px; }
  }

  /* CASE */
  .case-ba {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-gray);
    margin-top: 40px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  }
  .case-before {
    background: var(--gray-100);
    padding: 36px 32px;
    border-right: 1px solid var(--border-gray);
    position: relative;
  }
  .case-after {
    background: var(--white);
    padding: 36px 32px;
    position: relative;
  }
  .case-ba-label {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    margin-bottom: 16px;
  }
  .case-ba-label--before { background: rgba(163,45,45,0.1); color: #a32d2d; }
  .case-ba-label--after { background: rgba(0,196,167,0.1); color: #0f6e56; }
  .case-ba-body { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
  .case-ba-body li {
    display: flex; align-items: flex-start; gap: 8px;
    margin-bottom: 8px; list-style: none;
  }
  .case-ba-body li::before {
    content: '・';
    flex-shrink: 0;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 1px;
  }
  .case-after .case-ba-body li::before { content: '✓'; color: var(--teal); font-weight: 700; }
  .case-intro {
    background: var(--navy);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
  }
  .case-intro-badge {
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    text-align: center;
  }
  .case-intro-badge span:first-child {
    display: block; font-size: 9px; font-weight: 700;
    letter-spacing: .08em; color: rgba(255,255,255,0.4);
    text-transform: uppercase; margin-bottom: 4px;
  }
  .case-intro-badge span:last-child {
    display: block; font-size: 13px; font-weight: 700; color: var(--white);
  }
  .case-intro-text {
    font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.8;
  }
  .case-note {
    font-size: 11px; color: var(--text-muted);
    padding: 12px 32px;
    background: var(--gray-100);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    border: 1px solid var(--border-gray); border-top: none;
  }

  /* UC SCENE IMAGES */
  .uc-img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
  }
  .uc-img svg,
  .uc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-fit: cover;
  }

  /* USE CASES */
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .uc-grid > * { min-width: 0; }
  @media (max-width: 1024px) {
    .uc-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .uc-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s, transform .2s;
  }
  .uc-card:hover {
    box-shadow: 0 10px 36px rgba(26,109,255,0.09);
    transform: translateY(-2px);
  }
  .uc-num {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--blue);
  }
  .uc-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gray);
  }
  .uc-block {
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .uc-block--problem { background: #fdf4f4; border-left: 3px solid #e07070; }
  .uc-block--image   { background: var(--blue-pale); border-left: 3px solid var(--blue); }
  .uc-block--result  { background: var(--teal-light); border-left: 3px solid var(--teal); }
  .uc-block-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .uc-block--problem .uc-block-label { color: #a32d2d; }
  .uc-block--image   .uc-block-label { color: var(--blue); }
  .uc-block--result  .uc-block-label { color: #0f6e56; }
  .uc-block p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
  }
  /* section CTA */
  .uc-cta {
    margin-top: 56px;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 44px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .uc-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26,109,255,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .uc-cta-title {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
  }
  .uc-cta-lead {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    position: relative;
  }
  .uc-cta .btn-cta { position: relative; }

  @media (max-width: 768px) {
    .uc-grid { grid-template-columns: 1fr; }
    .uc-cta { padding: 36px 24px; }
  }

  /* USER VOICE */
  .voice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  .voice-grid > * { min-width: 0; }
  @media (max-width: 1024px) { .voice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 768px) { .voice-grid { grid-template-columns: 1fr; } }
  .voice-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .voice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -18px rgba(11,22,40,0.18);
    border-color: var(--border);
  }
  .voice-quote-mark {
    font-family: "Poppins", sans-serif;
    font-size: 52px;
    line-height: 0.6;
    color: var(--blue);
    opacity: 0.22;
  }
  .voice-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-primary);
    flex: 1;
    margin: 0;
  }
  .voice-person {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-gray);
    padding-top: 16px;
  }
  .voice-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex: 0 0 auto;
  }
  .voice-meta-name { font-weight: 700; font-size: 14px; color: var(--text-primary); margin: 0; }
  .voice-meta-role { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }
  .voice-cat {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--blue);
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-gray);
  }
  .voice-foot {
    border-top: 1px solid var(--border-gray);
    padding-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
  }
  .voice-note { font-size: 13px; color: var(--text-muted); margin: 24px 0 0; line-height: 1.7; }

  /* DIAGNOSIS */
  .diag-wrap {
    background: linear-gradient(135deg, #0b1628, #152040);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(26,109,255,0.2);
  }
  .diag-wrap::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,109,255,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .diag-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center; position: relative;
  }
  .diag-list { list-style: none; margin-top: 24px; }
  .diag-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6;
  }
  .diag-list li:last-child { border-bottom: none; }
  .diag-check {
    flex-shrink: 0; width: 20px; height: 20px;
    border-radius: 50%; background: var(--teal);
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
  }
  .diag-check svg { width: 11px; height: 11px; }

  /* FAQ */
  .faq-list { margin-top: 48px; }
  .faq-item {
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden; background: var(--white);
  }
  .faq-q {
    width: 100%; text-align: left;
    background: none; border: none;
    padding: 22px 28px;
    font-size: 15px; font-weight: 700;
    color: var(--text-primary); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-family: 'Noto Sans JP', sans-serif; line-height: 1.5;
  }
  .faq-q:hover { background: var(--gray-100); }
  .faq-icon {
    flex-shrink: 0; width: 24px; height: 24px;
    border-radius: 50%; border: 1.5px solid var(--blue);
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s;
  }
  .faq-icon svg { width: 12px; height: 12px; color: var(--blue); }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-item.open .faq-a { max-height: 400px; }
  .faq-a-inner {
    padding: 0 28px 22px;
    font-size: 14px; color: var(--text-secondary); line-height: 1.8;
    border-top: 1px solid var(--border-gray); padding-top: 18px;
  }

  /* FORM */
  .form-section { background: var(--navy); padding: 96px 0; }
  .form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    max-width: 640px;
    margin: 48px auto 0;
  }
  .form-row { margin-bottom: 20px; }
  .form-row label { display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
  .form-row label span.req { color: var(--teal); margin-left: 4px; }
  .form-row input,
  .form-row textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px; color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color .2s, background .2s;
    outline: none;
  }
  .form-row input::placeholder,
  .form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-row input:focus,
  .form-row textarea:focus { border-color: var(--blue-mid); background: rgba(26,109,255,0.08); }
  .form-row textarea { resize: vertical; min-height: 120px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit { margin-top: 32px; text-align: center; }
  .form-privacy { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 16px; }

  /* FORM DIAG BOX */
  .form-diag-box {
    max-width: 560px;
    margin: 0 auto 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: left;
  }
  .form-diag-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
  }
  .form-diag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-diag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    line-height: 1.5;
  }
  .form-diag-check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
  }
  .form-diag-check svg { width: 10px; height: 10px; }
  @media (max-width: 768px) {
    .form-diag-grid { grid-template-columns: 1fr; }
  }

  /* UPDATED 2-COLUMN EDUCATION DX SECTIONS */
  .edx-flow-section { position: relative; overflow: hidden; }
  .edx-flow-section .container { position: relative; z-index: 1; }
  .edx-flow-section::before {
    content: "";
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,109,255,0.12), rgba(26,109,255,0));
    pointer-events: none;
  }
  .edx-flow-section:nth-of-type(odd)::before { right: -160px; top: 40px; }
  .edx-flow-section:nth-of-type(even)::before { left: -160px; bottom: 20px; }

  .edx-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
  }
  .edx-two-col--reverse { grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr); }
  /* グリッド子要素が min-content（画像実寸）で膨張するのを防ぎ、列を縮められるようにする
     ※ これがないとモバイルで1列化しても画像が列幅を押し広げ横はみ出しする */
  .edx-two-col > *,
  .edx-two-col--reverse > * { min-width: 0; }
  .edx-copy { max-width: 610px; }
  .edx-copy .section-title { margin-bottom: 18px; }
  .edx-body {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 24px;
  }
  .section--dark .edx-body { color: rgba(255,255,255,0.72); }
  .edx-body + .edx-body { margin-top: -8px; }

  .edx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
  }
  .edx-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.84);
    color: var(--navy-mid);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(11,22,40,0.04);
  }
  .edx-tag::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(0,196,167,0.14);
  }
  .section--dark .edx-tag {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: var(--white);
  }

  .edx-mini-cards {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }
  .edx-mini-card {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.86);
    box-shadow: 0 12px 36px rgba(11,22,40,0.05);
  }
  .edx-mini-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy);
  }
  .edx-mini-card p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-secondary);
  }

  .edx-visual-card {
    position: relative;
    border: 1px solid rgba(26,109,255,0.16);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(240,246,255,0.92));
    box-shadow: 0 28px 70px rgba(11,22,40,0.13);
    padding: clamp(22px, 3.2vw, 34px);
    overflow: hidden;
  }
  .edx-visual-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -90px auto;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,196,167,0.16), rgba(0,196,167,0));
  }
  .edx-visual-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .edx-visual-title strong {
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--blue);
    text-transform: uppercase;
  }
  .edx-visual-pill {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-light);
    padding: 4px 10px;
    border-radius: 999px;
  }

  .lms-ui { position: relative; z-index: 1; }
  .lms-window {
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(11,22,40,0.12);
  }
  .lms-bar { height: 38px; background: var(--navy); display: flex; align-items: center; gap: 7px; padding: 0 16px; }
  .lms-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.34); }
  .lms-screen { display: grid; grid-template-columns: 110px 1fr; min-height: 310px; }
  .lms-side { background: #f7faff; padding: 18px 14px; border-right: 1px solid var(--gray-200); }
  .lms-side-line { height: 10px; border-radius: 99px; background: var(--gray-200); margin-bottom: 14px; }
  .lms-side-line:nth-child(1) { width: 74px; background: var(--blue); }
  .lms-side-line:nth-child(2) { width: 52px; }
  .lms-side-line:nth-child(3) { width: 68px; }
  .lms-side-line:nth-child(4) { width: 46px; }
  .lms-main { padding: 20px; }
  .lms-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
  .lms-stat { padding: 14px; border-radius: 14px; background: var(--blue-pale); }
  .lms-stat span { display:block; height: 8px; width: 42px; border-radius: 99px; background: var(--gray-400); opacity: .55; margin-bottom: 12px; }
  .lms-stat b { display:block; font-size: 22px; color: var(--navy); line-height: 1; }
  .lms-chart { height: 92px; border-radius: 16px; background: linear-gradient(180deg, var(--blue-light), rgba(255,255,255,0)); border: 1px solid var(--gray-200); display:flex; align-items:flex-end; gap:9px; padding: 14px; margin-bottom: 16px; }
  .lms-chart i { display:block; flex:1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--blue), var(--blue-mid)); opacity:.88; }
  .lms-chart i:nth-child(1) { height: 42%; } .lms-chart i:nth-child(2) { height: 70%; } .lms-chart i:nth-child(3) { height: 54%; } .lms-chart i:nth-child(4) { height: 86%; } .lms-chart i:nth-child(5) { height: 62%; }
  .lms-table { display:grid; gap: 9px; }
  .lms-row { display:grid; grid-template-columns: 1fr 72px 52px; gap: 12px; align-items:center; }
  .lms-row span { height: 10px; border-radius: 99px; background: var(--gray-200); }
  .lms-row span:nth-child(2) { background: var(--blue-light); }
  .lms-row span:nth-child(3) { background: var(--teal-light); }

  .edx-flow-diagram { position: relative; z-index: 1; display: grid; gap: 12px; }
  .flow-step {
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    padding: 18px;
    box-shadow: 0 12px 30px rgba(11,22,40,0.06);
  }
  .flow-step--muted { background: #f7faff; }
  .flow-step--accent { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); border-color: rgba(255,255,255,0.12); }
  .flow-step small { display:block; font-size: 11px; font-weight: 800; letter-spacing:.08em; color: var(--blue); margin-bottom: 7px; text-transform: uppercase; }
  .flow-step--accent small { color: var(--teal); }
  .flow-step h3 { font-size: 16px; margin-bottom: 10px; }
  .flow-chip-list { display:flex; flex-wrap: wrap; gap: 7px; }
  .flow-chip { font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 999px; background: var(--blue-light); color: var(--blue); }
  .flow-step--accent .flow-chip { background: rgba(255,255,255,0.1); color: var(--white); }
  .flow-arrow { text-align:center; color: var(--blue); font-weight: 800; line-height: 1; }

  .architecture-stack { position: relative; z-index: 1; display:grid; gap: 12px; }
  .arch-layer {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 12px 32px rgba(11,22,40,0.06);
  }
  .arch-layer--dark { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); }
  .arch-layer--blue { background: linear-gradient(135deg, var(--blue), #0053d4); color: var(--white); }
  .arch-layer--teal { background: linear-gradient(135deg, var(--teal), #13a894); color: var(--white); }
  .arch-icon { width: 58px; height: 58px; border-radius: 18px; display:flex; align-items:center; justify-content:center; background: rgba(26,109,255,0.1); color: var(--blue); font-size: 24px; }
  .arch-layer--dark .arch-icon, .arch-layer--blue .arch-icon, .arch-layer--teal .arch-icon { background: rgba(255,255,255,0.15); color: var(--white); }
  .arch-layer h3 { font-size: 17px; margin-bottom: 4px; }
  .arch-layer p { font-size: 12px; line-height: 1.6; color: var(--text-secondary); }
  .arch-layer--dark p, .arch-layer--blue p, .arch-layer--teal p { color: rgba(255,255,255,0.78); }
  .arch-arrow { text-align: center; font-weight: 800; color: var(--blue); margin: -2px 0; }

  .ai-agent-map { position: relative; z-index:1; display:grid; gap: 12px; }
  .ai-node { border-radius: 18px; border: 1px solid rgba(26,109,255,0.16); background: rgba(255,255,255,0.92); padding: 16px; box-shadow: 0 12px 30px rgba(11,22,40,0.06); }
  .ai-node h3 { font-size: 15px; margin-bottom: 8px; color: var(--navy); }
  .ai-node p { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
  .ai-node--center { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); text-align:center; padding: 22px; }
  .ai-node--center h3 { color: var(--white); font-size: 20px; }
  .ai-node--center p { color: rgba(255,255,255,0.7); }
  .ai-output-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ai-output-grid span { font-size: 11px; font-weight:700; color: var(--blue); background: var(--blue-light); border-radius: 999px; padding: 7px 9px; text-align:center; }
  .ai-benefit { background: var(--teal-light); border-color: rgba(0,196,167,0.18); }

  @media (max-width: 768px) {
    .edx-two-col, .edx-two-col--reverse { grid-template-columns: 1fr; gap: 28px; }
    .edx-two-col--reverse .edx-copy { order: 1; }
    .edx-two-col--reverse .edx-visual-card { order: 2; }
    .edx-copy { max-width: none; }
    .lms-screen { grid-template-columns: 86px 1fr; min-height: 260px; }
    .lms-stats { grid-template-columns: 1fr; }
    .edx-visual-card { border-radius: 24px; }
  }
  @media (max-width: 768px) {
    .edx-body { font-size: 15px; line-height: 1.85; }
    .edx-tags { gap: 8px; }
    .edx-tag { font-size: 12px; min-height: 34px; padding: 7px 11px; }
    .lms-screen { grid-template-columns: 1fr; }
    .lms-side { display:none; }
    .lms-main { padding: 16px; }
    .edx-mini-card { padding: 14px; }
    .arch-layer { grid-template-columns: 54px 1fr; padding: 15px; }
    .arch-icon { width: 46px; height: 46px; border-radius: 14px; font-size: 20px; }
    .ai-output-grid { grid-template-columns: 1fr; }
  }

  /* FOOTER */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 56px 24px 32px;
  }
.footer-extlink-ic{ width:.72em; height:.72em; margin-left:5px; vertical-align:-0.04em; opacity:.6; }
.footer-col ul a:hover .footer-extlink-ic{ opacity:.9; }
.footer-certs{ margin-top:30px; display:flex; flex-direction:column; gap:12px; }
.footer-certs-label{ font-size:11px; font-weight:700; letter-spacing:.1em; color:rgba(255,255,255,0.5); }
.footer-certs-logos{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.footer-cert-chip{ display:inline-flex; align-items:center; justify-content:center; background:#fff; border-radius:8px; width:132px; height:84px; padding:10px; box-sizing:border-box; }
.footer-cert{ display:block; max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
  .footer-inner { max-width: var(--cmax); margin: 0 auto; }
  .footer-logo { display: inline-block; margin-bottom: 12px; text-decoration: none; }
  .footer-logo img { height: 26px; width: auto; display: block; opacity: .85; }

  /* 上段：ブランド紹介 ＋ リンク3列 */
  .footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .footer-tagline {
    font-size: 13px; line-height: 1.9;
    color: rgba(255,255,255,0.58);
    max-width: 320px;
  }
  .footer-col-title {
    font-size: 12px; font-weight: 700; letter-spacing: .08em;
    color: var(--white);
    margin-bottom: 14px;
  }
  .footer-col ul { list-style: none; margin: 0; padding: 0; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 13px; line-height: 1.6;
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--white); }

  /* 中段：会社概要 */
  .footer-company { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .footer-company dl { margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-company div { display: flex; gap: 16px; }
  .footer-company dt {
    flex: 0 0 88px;
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.42);
  }
  .footer-company dd {
    margin: 0; font-size: 13px; line-height: 1.7;
    color: rgba(255,255,255,0.72);
  }

  /* 下段：コピーライト */
  .footer-copy {
    margin-top: 24px; text-align: center;
    font-size: 12px; color: rgba(255,255,255,0.32);
  }

  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-tagline { max-width: none; }
  }
  @media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-company div { flex-direction: column; gap: 2px; }
    .footer-company dt { flex: none; }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .solution-cards { grid-template-columns: 1fr; }
    .case-ba { grid-template-columns: 1fr; }
    .case-before { border-right: none; border-bottom: 1px solid var(--border-gray); }
    .diag-inner { grid-template-columns: 1fr; gap: 32px; }
    .diag-wrap { padding: 40px 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wrap { padding: 36px 24px; }
  }
  @media (max-width: 768px) {
    .section { padding: 64px 0; }
    .form-section { padding: 64px 0; }
    .hero { padding-top: var(--header-height); }
    .hero-inner { padding: 48px 0; }
    .outcomes-grid { grid-template-columns: 1fr 1fr; }
    .btn-cta--lg { font-size: 15px; padding: 18px 28px; white-space: normal; text-align: center; }
    .problem-strong { padding: 28px 24px; }
    .case-intro { flex-direction: column; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .edx-visual-card--image { padding: 0; overflow: hidden; background: transparent; border: 0; box-shadow: none; }
  .edx-visual-card--image .vlms-visual,
  .edx-visual-card--image .why-img-wrap,
  .edx-visual-card--image .sol-img-wrap,
  .edx-visual-card--image .ai-mech-wrap { margin: 0; width: 100%; }
  .edx-preserved-img { display: block; width: 100%; height: auto; }

  /* REQUEST UPDATE: larger alternating images + use cases 5 x 2 */
  #velmor-lms .edx-two-col,
  #solution .edx-two-col {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(28px, 4.5vw, 56px);
  }
  #lms-gap .edx-two-col--reverse,
  #ai-agent .edx-two-col--reverse {
    grid-template-columns: minmax(520px, 1.22fr) minmax(0, 0.78fr);
    gap: clamp(28px, 4.5vw, 56px);
  }
  .edx-visual-card--image {
    transform: scale(1.04);
    transform-origin: center;
  }
  .edx-visual-card--image .vlms-visual-inner {
    padding: 12px;
    border-radius: 28px;
  }
  .edx-visual-card--image .ai-mech-wrap {
    padding: 16px;
  }
  #ai-agent .ai-mech-wrap {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(94, 207, 207, 0.28);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(0, 78, 180, 0.22);
    padding: 18px;
  }
  #ai-agent .ai-mech-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 78, 180, 0.18);
    border-radius: 999px;
    background: #edf6ff;
    color: var(--navy);
    letter-spacing: .08em;
  }
  #ai-agent .ai-mech-img {
    border-radius: 24px;
  }
  .edx-preserved-img {
    width: 100%;
    max-width: none;
  }

  /* #why-lms / #ai-agent: 図を下に移動して縦積みで見せる（テキスト上→図下） */
  #why-lms .edx-two-col--reverse,
  #ai-agent .edx-two-col--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  #why-lms .edx-copy,
  #ai-agent .edx-copy { order: 0; }
  #why-lms .edx-visual-card--image,
  #ai-agent .edx-visual-card--image {
    order: 1;
    transform: none;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }
  /* #why-lms のみ：図を幅いっぱいに大きく表示。
     図の16:9キャンバス上下の透明な余白（約8%）を負マージンで吸収し、
     テキストとの間延びを解消する（中身は切れない） */
  #why-lms .edx-visual-card--image {
    max-width: none;
    margin: -7% auto -6%;
  }
  /* 案B：テキストを中央寄せにして図と中心線を揃え、間隔を詰めて一体化 */
  #why-lms .edx-two-col--reverse {
    gap: clamp(16px, 2.4vw, 28px);
    align-items: center;
    justify-items: center;
  }
  #why-lms .edx-copy {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
  }
  #why-lms .edx-copy .edx-body {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  /* #why-lms：テキストはスクロールでふわっと登場（図は内部アニメで自走） */
  #why-lms .edx-copy {
    opacity: 0;
    translate: 0 44px;
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), translate .9s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, translate;
  }
  #why-lms .edx-copy.is-visible { opacity: 1; translate: 0 0; }
  @media (prefers-reduced-motion: reduce) {
    #why-lms .edx-copy { opacity: 1; translate: 0 0; transition: none; }
  }

  @media (max-width: 1024px) {
    #velmor-lms .edx-two-col,
    #solution .edx-two-col,
    #lms-gap .edx-two-col--reverse {
      grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    }
    #lms-gap .edx-two-col--reverse {
      grid-template-columns: minmax(430px, 1.12fr) minmax(0, 0.88fr);
    }
  }
  @media (max-width: 768px) {
    #velmor-lms .edx-two-col,
    #solution .edx-two-col,
    #lms-gap .edx-two-col--reverse,
    #ai-agent .edx-two-col--reverse {
      grid-template-columns: 1fr;
    }
    .edx-visual-card--image { transform: none; }
  }

  /* Hero 2カラムレイアウト レスポンシブ */
  @media (max-width: 768px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 56px 0 48px;
    }
    .hero-visual {
      order: -1;
    }
    .hero-visual img {
      max-width: 420px;
      height: 240px;
      object-fit: cover;
      object-position: center top;
      margin: 0 auto;
    }
  }
  @media (max-width: 768px) {
    .hero-inner {
      padding: 40px 0 36px;
      gap: 24px;
    }
    .hero-title {
      font-size: clamp(28px, 9vw, 40px);
    }
    .hero-visual img {
      max-width: 100%;
      height: 220px;
      object-fit: cover;
      object-position: center top;
    }
  }

  /* HERO 2nd CTA (ghost button for material download) *//* HERO 2nd CTA (ghost button for material download) */
  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
  }
  .btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.22);
    transition: background .2s, color .2s, border-color .2s, transform .2s;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
    backdrop-filter: blur(6px);
  }
  .btn-cta-ghost:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-color: rgba(255,255,255,0.42);
    transform: translateY(-1px);
  }
  .btn-cta-ghost svg { flex-shrink: 0; opacity: 0.85; }

  /* SOLUTION small CTA at section end */
  .sol-mini-cta-row {
    margin-top: 36px;
    display: flex;
    justify-content: flex-end;
  }
  .sol-mini-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(26,109,255,0.32);
    padding: 6px 2px 8px;
    transition: color .2s, border-color .2s, gap .2s;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .sol-mini-cta:hover {
    color: var(--blue-mid);
    border-bottom-color: var(--blue-mid);
    gap: 12px;
  }
  .sol-mini-cta svg { flex-shrink: 0; }

  /* APPS show-more button (SP-only behaviour) */
  .apps-show-more-wrap { display: none; }
  .apps-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border: 1.5px solid rgba(26,109,255,0.32);
    border-radius: 100px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background .2s, border-color .2s, transform .2s;
  }
  .apps-show-more-btn:hover {
    background: var(--blue-pale);
    border-color: var(--blue);
    transform: translateY(-1px);
  }
  .apps-show-more-btn svg { transition: transform .2s; }

  /* ============ SP HERO (≤ 640px) ============ */
  @media (max-width: 768px) {
    .hero-cta-value { font-size: 12px; margin-bottom: 2px; }
    .hero-cta-row {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      width: 100%;
    }
    .hero .btn-cta--lg {
      width: 100%;
      justify-content: center;
      padding: 18px 22px;
      font-size: 15px;
      white-space: normal;
    }
    .btn-cta-ghost {
      width: 100%;
      justify-content: center;
      padding: 14px 18px;
      font-size: 13px;
    }
  }

  /* ============ APPS SP COLLAPSE (≤ 640px) ============ */
  @media (max-width: 768px) {
    .apps-show-more-wrap {
      display: flex;
      justify-content: center;
      margin: 24px 0 8px;
    }
    body:not(.apps-collapsed) .apps-show-more-wrap { display: none; }
  }

  /* ============================================================
     FUNCTION / CUSTOMIZE / PRICE セクション（OUTCOMES直下）
  ============================================================ */

  /* --- 標準機能一覧 --- */
  .func-img-wrap {
    margin: 48px auto 0;
    max-width: 960px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11,22,40,0.08);
    border: 1px solid rgba(11,22,40,0.06);
  }
  .func-img-wrap img { width: 100%; height: auto; display: block; }

  .runtime-spec {
    width: 100%;
    max-width: 100%;
    margin: 36px 0 0;
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(11,22,40,0.06), 0 1px 4px rgba(11,22,40,0.04);
    overflow: hidden;
    position: relative;
  }
  /* カスタマイズ節と同じ ブルー→ティール の上辺グラデーションバー（トンマナ統一） */
  .runtime-spec::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    z-index: 1;
  }
  .runtime-spec__header {
    padding: 22px 24px 16px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-gray);
  }
  .runtime-spec__title {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.45;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
  }
  .runtime-spec__body { padding: 22px 24px; }
  /* 動作環境 / コンテンツ形式 を横2カラムに（幅を活かし間延び解消・構成整理） */
  .runtime-spec__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
  .runtime-spec__subhead {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--blue);
    margin: 0 0 10px;
    padding-left: 11px;
    position: relative;
  }
  .runtime-spec__subhead::before {
    content: "";
    position: absolute;
    left: 0; top: 2px; bottom: 2px;
    width: 4px; border-radius: 2px;
    background: var(--blue);
  }
  .runtime-spec__subhead--content { color: var(--teal); }
  .runtime-spec__subhead--content::before { background: var(--teal); }
  .runtime-spec__table-wrap {
    border: 1px solid var(--border-gray);
    border-radius: 12px;
  }
  .runtime-spec__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
  }
  .runtime-spec__table th,
  .runtime-spec__table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border-gray);
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
  }
  .runtime-spec__table tbody th {
    width: 160px;
    color: var(--text-primary);
    font-weight: 700;
    background: #fafcff;
  }
  .runtime-spec__table tr:last-child th,
  .runtime-spec__table tr:last-child td { border-bottom: none; }
  .runtime-spec__notes {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .runtime-spec__notes li {
    position: relative;
    padding-left: 1.15em;
    color: var(--text-secondary);
    font-size: 12.5px;
    line-height: 1.6;
  }
  .runtime-spec__notes li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--text-muted);
  }

  @media (max-width: 768px) {
    .runtime-spec { margin-top: 24px; border-radius: 16px; }
    .runtime-spec__header { padding: 20px; }
    .runtime-spec__body { padding: 20px; }
    .runtime-spec__cols { grid-template-columns: 1fr; gap: 22px; }
    .runtime-spec__table th,
    .runtime-spec__table td { padding: 13px 14px; font-size: 13px; }
    .runtime-spec__notes { grid-template-columns: 1fr; }
    .runtime-spec__notes li { font-size: 12px; }
  }

  /* --- カスタマイズ設計 3カード --- */
  .section--pale { background: #f0f6ff; }

  .customize-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
  }
  .customize-card {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(11,22,40,0.06), 0 1px 4px rgba(11,22,40,0.04);
    position: relative;
    overflow: hidden;
  }
  .customize-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
  }
  .customize-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 1.5;
  }
  .customize-card-desc {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-gray);
  }
  .customize-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* テキストのみのシンプルタグ（バックエンド用） */
  .customize-tags > span.customize-tag {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
    color: #2d3348;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.10);
    border-bottom: 2px solid rgba(0,0,0,0.13);
    box-shadow: 0 2px 6px rgba(11,22,40,0.07), 0 1px 2px rgba(11,22,40,0.05);
    text-align: center;
    white-space: nowrap;
    transition: box-shadow 0.2s, transform 0.2s;
    display: inline-block;
  }
  .customize-tags > span.customize-tag:hover {
    box-shadow: 0 4px 12px rgba(11,22,40,0.12), 0 1px 3px rgba(11,22,40,0.07);
    transform: translateY(-1px);
  }

  /* アイコン＋説明付きのカードタグ */
  .customize-tags > div.customize-tag {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
    border: 1px solid rgba(0,0,0,0.10);
    border-bottom: 2px solid rgba(0,0,0,0.13);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(11,22,40,0.07), 0 1px 2px rgba(11,22,40,0.04);
    padding: 12px 12px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .customize-tags > div.customize-tag:hover {
    box-shadow: 0 6px 16px rgba(11,22,40,0.11), 0 1px 3px rgba(11,22,40,0.06);
    transform: translateY(-2px);
  }

  .ctag-icon {
    width: 40px; height: 40px;
    background: var(--blue-pale);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ctag-icon .material-symbols-rounded {
    font-size: 22px;
    color: var(--blue);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  }
  .ctag-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .ctag-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
  }
  .ctag-desc {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
  }
  /* フロント＝ブルー／バック＝ティールで色分け（上辺バー＋アイコン） */
  .customize-card--front::before { background: var(--blue); }
  .customize-card--back::before  { background: var(--teal); }
  .customize-card--back .ctag-icon { background: var(--teal-light); }
  .customize-card--back .ctag-icon .material-symbols-rounded { color: #009e86; }
  /* バックエンド：2サブカードを1つのグループに内包 */
  .customize-group {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(11,22,40,0.06), 0 1px 4px rgba(11,22,40,0.04);
    position: relative;
    overflow: hidden;
  }
  .customize-group::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; }
  .customize-group--back::before { background: var(--teal); }
  .customize-group-title { font-size:14px; font-weight:700; color:var(--text-primary); margin:0 0 10px; line-height:1.5; }
  .customize-group-desc { font-size:14px; line-height:1.85; color:var(--text-secondary); margin:0 0 24px; padding-bottom:24px; border-bottom:1px solid var(--border-gray); }
  .customize-group-cards { display:grid; grid-template-columns:1fr; gap:20px; }
  .customize-subcard { background:#f7fbfa; border:1px solid #d9efe9; border-radius:12px; padding:16px 16px 18px; }
  .customize-subcard-label { display:inline-block; font-size:12px; font-weight:800; letter-spacing:.04em; color:#009e86; background:var(--teal-light); padding:5px 12px; border-radius:999px; margin:0 0 12px; }
  .customize-subcard .customize-tags { grid-template-columns:repeat(3,1fr); }
  .customize-subcard-note { font-size:13.5px; line-height:1.9; color:var(--text-secondary); margin:0; }
  .customize-subcard-note b { color:#009e86; font-weight:700; }
  .customize-subcard-points { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
  .customize-subcard-points span { font-size:12px; font-weight:700; color:#009e86; background:var(--teal-light); border:1px solid #cdeee7; border-radius:999px; padding:6px 13px; white-space:nowrap; }
  .customize-group--back .ctag-icon { background: var(--teal-light); }
  .customize-group--back .ctag-icon .material-symbols-rounded { color:#009e86; }
  @media (max-width:700px){ .customize-subcard .customize-tags { grid-template-columns:1fr 1fr; } }
  @media (max-width:460px){ .customize-subcard .customize-tags { grid-template-columns:1fr; } }
  /* フロントカード等 subcard外のタグもスマホで段組みを減らす（3列だと窮屈＆はみ出し） */
  @media (max-width:700px){ .customize-tags { grid-template-columns:1fr 1fr; } }
  @media (max-width:460px){ .customize-tags { grid-template-columns:1fr; } }

  /* 3プランカード */
  .price-plans-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
    gap: 24px;
    margin: 48px auto 0;
    max-width: 1080px;
    align-items: stretch;
  }
  .price-plan-card {
    background: #f6f7ff;
    border: 1px solid rgba(11,22,40,0.10);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 28px rgba(11,22,40,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .price-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(11,22,40,0.10);
  }
  .price-plan-card--advanced {
    background: #f2fbfa;
    border-color: rgba(0,196,167,0.45);
    border-width: 2px;
    box-shadow: 0 18px 48px rgba(0,153,133,0.18);
    transform: translateY(-8px);
  }
  .price-plan-card--advanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 56px rgba(0,153,133,0.22);
  }
  .price-plan-header {
    min-height: 88px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }
  .price-plan-card--basic .price-plan-header {
    background: #0b1628;
  }
  .price-plan-card--standard .price-plan-header {
    background: #1a6dff;
  }
  .price-plan-card--advanced .price-plan-header {
    background: linear-gradient(135deg, #00c4a7 0%, #009e87 100%);
  }
  .price-plan-name {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 1.35;
    margin: 0;
    text-align: center;
  }
  .price-plan-body {
    padding: 30px 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .price-plan-fee {
    margin: 0 0 24px;
  }
  .price-plan-label {
    font-size: 14px;
    font-weight: 700;
    color: #7d89a3;
    margin: 0 0 8px;
  }
  .price-plan-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
  }
  .price-plan-value {
    font-size: 30px;
    font-weight: 900;
    color: #0b1628;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .price-plan-monthly {
    font-size: 34px;
  }
  .price-plan-card--basic .price-plan-monthly {
    color: #0b1628;
  }
  .price-plan-card--standard .price-plan-monthly {
    color: #1a6dff;
  }
  .price-plan-card--advanced .price-plan-monthly {
    color: #00a78f;
  }
  .price-plan-unit {
    font-size: 13px;
    color: #7d89a3;
    font-weight: 700;
    white-space: nowrap;
  }
  .price-plan-divider {
    height: 1px;
    background: #dde1ef;
    margin: 2px 0 22px;
  }
  .price-plan-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
  }
  .price-plan-specs li {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
    color: #151a34;
  }
  .price-plan-specs strong {
    font-weight: 800;
  }
  .price-plan-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.5;
  }
  /* 初期費用内訳・オプション */
  .price-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1080px;
    margin: 40px auto 0;
  }
  @media (max-width: 768px) { .price-detail-grid { grid-template-columns: 1fr; } }
  /* 料金セクション：上段カードと同じ幅に揃える */
  #lp-price .price-detail-grid--wide { max-width: 100%; margin-left: auto; margin-right: auto; }
  .price-detail {
    background: var(--gray-100);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .price-detail-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gray);
  }
  .price-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
  }
  .price-detail-list li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
  }
  .price-detail-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 7px; height: 7px;
    border-radius: 2px;
    background: var(--blue);
  }
  .price-detail-list strong { color: var(--text-primary); font-weight: 700; }
  /* 受託開発オファーブロック（● 見出し＋説明＋例の箇条書き） */
  .price-offer { margin: 0 0 22px; padding: 0 0 22px; border-bottom: 1px solid var(--border-gray); }
  .price-offer:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .price-offer-name {
    font-size: 15px; font-weight: 800; color: var(--text-primary);
    margin: 0 0 7px; padding-left: 17px; position: relative; line-height: 1.5;
  }
  .price-offer-name::before {
    content: "●"; position: absolute; left: 0; top: 1px;
    font-size: 10px; color: var(--blue); line-height: 1.9;
  }
  .price-offer-desc {
    font-size: 13.5px; line-height: 1.8; color: var(--text-secondary); margin: 0 0 10px;
  }
  .price-offer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
  .price-offer-list li {
    font-size: 13px; line-height: 1.65; color: var(--text-secondary);
    padding-left: 16px; position: relative;
  }
  .price-offer-list li::before { content: "・"; position: absolute; left: 0; top: 0; color: var(--blue); }
  /* 上段：導入料金（左）＋初期費用に含まれること（右） */
  .price-included-grid {
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 640px);
    justify-content: center;
    gap: 32px;
    max-width: var(--cmax);
    margin: 48px auto 0;
    align-items: stretch;
  }
  .price-right-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
  }
  .price-right-stack > .price-detail { flex: 1; }
  @media (max-width: 768px) { .price-included-grid { grid-template-columns: 1fr; } }
  /* 導入料金カード（親）に2カードを内包するレイアウト */
  #lp-price .price-plan-card--wide {
    max-width: 100%;
    margin: 48px auto 0;
  }
  .price-plan-body--split {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 36px;
    padding: 40px 44px;
  }
  .price-plan-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .price-nested-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-width: 0;
  }
  .price-nested-card {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 22px 24px;
  }
  .price-nested-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
  }
  @media (max-width: 768px) {
    .price-plan-body--split { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
    .price-plan-main { justify-content: flex-start; }
  }
  /* 下段：オプション（全幅） */
  .price-detail--full { max-width: var(--cmax); margin: 24px auto 0; }
  .price-detail-list--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
  }
  @media (max-width: 768px) { .price-detail-list--cols { grid-template-columns: 1fr; } }
  .price-plan-note {
    text-align: right;
    font-size: 14px;
    color: #7d89a3;
    margin: 24px auto 0;
    max-width: 100%;
    line-height: 1.8;
  }
  @media (max-width: 768px) {
    .price-plans-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .price-plan-card--advanced { transform: none; }
    .price-plan-card--advanced:hover { transform: translateY(-4px); }
    .price-plan-body { padding: 28px 24px; }
    .price-plan-name { font-size: 22px; }
    .price-plan-value { font-size: 27px; }
    .price-plan-monthly { font-size: 31px; }
    .price-plan-note { max-width: 380px; text-align: left; }
  }

  /* ============================
     #lp-price 料金体系（3カラム組み合わせ型）
  ============================ */
  #lp-price .pr2-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 40px;
  }
  #lp-price .pr2-sub .pr2-num {
    color: var(--blue);
    font-weight: 800;
  }
  /* Elementor/テーマの .container 衝突・変数未定義に負けないよう、
     料金セクションの幅・余白・中央寄せをID付き＋!important で再指定
     （動作環境テーブルと同じ、未知テーマに勝つための方針） */
  #lp-price .container {
    max-width: var(--cmax, 1280px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }
  #lp-price .pr2-grid {
    display: grid;
    /* minmax(0,1fr)：Elementor等の狭いコンテナでもトラックが縮んではみ出さない */
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  /* カード内側の余白：ここ1か所で調整（上 右 下 左）。
     Elementor/テーマが .pr2-card の padding を打ち消すため !important で強制 */
  #lp-price { --pr2-card-pad: 32px 32px 36px; }
  #lp-price .pr2-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    box-sizing: border-box !important;
    border-radius: 20px;
    padding: var(--pr2-card-pad) !important;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
    will-change: transform;
  }
  /* 上辺カラーバー（#lp-function のカテゴリカードと統一） */
  .pr2-card--dev::before,
  .pr2-card--option::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }
  .pr2-card--dev::before { background: var(--blue); }
  .pr2-card--option::before { background: var(--teal); }
  .pr2-card--basic {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 32px rgba(11,22,40,0.16);
  }
  .pr2-card--dev,
  .pr2-card--option {
    background: var(--gray-100);
    border: 1px solid var(--border-gray);
    color: var(--text-primary);
    box-shadow: 0 8px 28px rgba(11,22,40,0.07);
  }
  @media (hover: hover) and (pointer: fine) {
    .pr2-card--basic:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(11,22,40,0.30); }
    .pr2-card--dev:hover,
    .pr2-card--option:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(11,22,40,0.13); }
  }
  .pr2-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 4px;
  }
  .pr2-head-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
  }
  .pr2-card--basic .pr2-head-icon { background: rgba(255,255,255,0.12); color: var(--white); }
  .pr2-card--dev .pr2-head-icon { background: #e6f1ff; color: var(--blue); }
  .pr2-card--option .pr2-head-icon { background: var(--teal-light); color: var(--teal); }
  @media (hover: hover) and (pointer: fine) {
    .pr2-card:hover .pr2-head-icon { transform: scale(1.08) rotate(-3deg); }
  }
  .pr2-title {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0;
    /* Astraのh3色が継承(カード色)を上書きして黒くなるのを防ぐ。カードのcolor(基本=白/他=濃紺)を継承させる */
    color: inherit;
  }
  .pr2-title .pr2-tnum { margin-right: 4px; }
  .pr2-lead {
    font-size: 14px;
    line-height: 1.7;
    margin: 4px 0 0;
  }
  .pr2-card--basic .pr2-lead { color: rgba(255,255,255,0.75); }
  .pr2-card--dev .pr2-lead,
  .pr2-card--option .pr2-lead { color: var(--text-secondary); }
  .pr2-hr {
    height: 1px;
    margin: 22px 0;
  }
  .pr2-card--basic .pr2-hr { background: rgba(255,255,255,0.16); }
  .pr2-card--dev .pr2-hr,
  .pr2-card--option .pr2-hr { background: var(--border-gray); }
  /* 基本プラン：料金 */
  .pr2-fee { margin: 0 0 18px; }
  .pr2-fee-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin: 0 0 4px;
  }
  .pr2-fee-value {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--white);
    margin: 0;
  }
  .pr2-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }
  .pr2-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
  }
  .pr2-specs svg { flex: 0 0 auto; opacity: 0.85; }
  .pr2-note {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 12px 0 0;
  }
  .pr2-included {
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.16);
  }
  .pr2-included-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin: 0 0 8px;
  }
  .pr2-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 5px;
  }
  .pr2-included li {
    position: relative;
    padding-left: 15px;
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
  }
  .pr2-included li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.7);
  }
  .pr2-included .pr2-note { margin-top: 8px; }
  /* 開発／オプション：機能リスト */
  .pr2-feature {
    display: flex;
    gap: 14px;
    padding: 0 0 20px;
  }
  .pr2-feature + .pr2-feature {
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
  }
  .pr2-feature-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    padding: 9px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease;
  }
  .pr2-card--dev .pr2-feature-icon { background: #e6f1ff; color: var(--blue); }
  .pr2-card--option .pr2-feature-icon { background: var(--teal-light); color: var(--teal); }
  @media (hover: hover) and (pointer: fine) {
    .pr2-feature:hover .pr2-feature-icon { transform: translateY(-2px) scale(1.06); }
    .pr2-card--dev .pr2-feature:hover .pr2-feature-icon { box-shadow: 0 8px 18px -8px rgba(26,109,255,0.6); }
    .pr2-card--option .pr2-feature:hover .pr2-feature-icon { box-shadow: 0 8px 18px -8px rgba(0,196,167,0.6); }
  }
  .pr2-feature-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 4px;
  }
  .pr2-feature-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
  }
  .pr2-etc {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 4px 0 0;
  }
  .pr2-etc strong { color: var(--text-primary); font-weight: 800; display: block; }
  .pr2-pill {
    margin-top: auto;
    padding-top: 22px;
  }
  .pr2-pill span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 14px 16px;
    border-radius: 12px;
    line-height: 1.5;
    transition: transform .28s cubic-bezier(.2,.7,.2,1), filter .28s ease;
  }
  .pr2-card--dev .pr2-pill span { background: var(--blue-light); color: var(--blue); }
  .pr2-card--option .pr2-pill span { background: var(--teal-light); color: var(--teal); }
  @media (hover: hover) and (pointer: fine) {
    .pr2-card:hover .pr2-pill span { transform: translateY(-2px); filter: brightness(0.98); }
  }
  /* ＋ コネクタ */
  .pr2-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
  }
  .pr2-plus span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(11,22,40,0.18);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    background: var(--white);
    transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, color .3s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    .pr2-plus:hover span { transform: rotate(90deg); border-color: var(--blue); color: var(--blue); }
  }
  /* 下段：注記＋CTA */
  .pr2-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    margin: 28px auto 0;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .pr2-foot-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
  }
  .pr2-foot-note svg { flex: 0 0 auto; color: var(--blue); }
  .pr2-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a6dff 0%, #0053d4 100%);
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(26,109,255,0.35);
    white-space: nowrap;
  }
  .pr2-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(26,109,255,0.45); }
  /* テーマ(Astra等)の a:hover/visited 色（紫）がボタン文字に乗るのを防ぐ */
  .pr2-cta,
  .pr2-cta:link,
  .pr2-cta:visited,
  .pr2-cta:hover,
  .pr2-cta:focus,
  .pr2-cta:active { color: var(--white) !important; }
  @media (max-width: 900px) {
    /* ID付きで指定（#lp-price .pr2-grid の5カラム定義に勝たせ、スマホで確実に1カラム縦積み） */
    #lp-price .pr2-grid {
      grid-template-columns: 1fr;
      gap: 16px;
      max-width: 420px;
    }
    .pr2-plus {
      width: 100%;
      height: 40px;
    }
    .pr2-foot { flex-direction: column; align-items: stretch; }
    .pr2-cta { justify-content: center; }
    .pr2-fee-value { font-size: 34px; }
  }
  /* スマホ：料金カードのタイトル・アイコン・余白を詰めてカード内に収める */
  @media (max-width: 600px) {
    #lp-price { --pr2-card-pad: 24px 20px 28px; }
    #lp-price .pr2-head { gap: 10px; }
    #lp-price .pr2-head-icon { width: 42px; height: 42px; }
    #lp-price .pr2-title { font-size: 18px; }
    #lp-price .pr2-fee-value { font-size: 30px; }
    #lp-price .pr2-grid { max-width: 100%; }
  }
  /* スマホ：小さめの二次コンテンツ本文を最低14pxに引き上げて読みやすく */
  @media (max-width: 600px) {
    .step-body,
    .step-bullets li,
    .ts-card-list li,
    #why-alnetz .edx-body,
    .runtime-spec__table th,
    .runtime-spec__table td { font-size: 14px !important; }
  }
  @media (prefers-reduced-motion: reduce) {
    .pr2-card,
    .pr2-head-icon,
    .pr2-feature-icon,
    .pr2-pill span,
    .pr2-plus span,
    .pr2-cta { transition: none; }
    .pr2-card:hover,
    .pr2-card:hover .pr2-head-icon,
    .pr2-feature:hover .pr2-feature-icon,
    .pr2-card:hover .pr2-pill span,
    .pr2-plus:hover span,
    .pr2-cta:hover { transform: none; }
  }

  /* レスポンシブ */
  @media (max-width: 768px) {
    .customize-grid { grid-template-columns: 1fr; }
  }

  /* ============================
     #flow — ご利用の流れ
  ============================ */
  #flow .container { max-width: var(--cmax); padding: 0 24px; }

  .phase-header { margin-bottom: 28px; }

  .phase-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--phase-color);
    color: #fff;
    padding: 10px 24px 10px 40px;
    border-radius: 0 100px 100px 0;
    margin-left: -40px;
  }
  .phase-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .phase-icon svg {
    width: 16px; height: 16px;
    stroke: #fff; fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  }
  .phase-text-wrap { line-height: 1.2; }
  .phase-num  { font-size: 10px; font-weight: 700; letter-spacing: .12em; opacity: .72; text-transform: uppercase; }
  .phase-name { font-size: 15px; font-weight: 800; }

  .phase--1 { --phase-color: var(--teal); }
  .phase--2 { --phase-color: var(--blue); }
  .phase--3 { --phase-color: var(--navy); }

  .steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
    margin-bottom: 8px;
  }
  @media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
  .steps::before { display: none; }
  .phase--1 .steps { --phase-color: var(--teal); }
  .phase--2 .steps { --phase-color: var(--blue); }
  .phase--3 .steps { --phase-color: var(--navy); }

  .step { position: relative; }

  .step-circle {
    position: absolute;
    left: 20px; top: -18px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--phase-color);
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(11,22,40,0.14);
  }
  .step-num { font-size: 12px; font-weight: 900; color: var(--phase-color); letter-spacing: .02em; }

  .step-card {
    background: #fff;
    border: 1px solid rgba(11,22,40,0.07);
    border-radius: 16px;
    padding: 30px 26px 22px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(11,22,40,0.05);
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
  }
  .step-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--phase-color);
    opacity: 0.45;
  }
  .step-card:hover { box-shadow: 0 6px 20px rgba(11,22,40,0.09); transform: translateY(-1px); }

  .step-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
    padding: 3px 10px 3px 8px; border-radius: 100px; margin-bottom: 8px;
  }
  .step-tag svg { width: 12px; height: 12px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  /* 期間＝ティール／条件・タイミング＝ブルーで意味を区別 */
  .step-tag--time { background: rgba(0,149,125,0.10); color: #00957d; }
  .step-tag--cond { background: rgba(26,109,255,0.10); color: var(--blue); }

  .step-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
  .step-body  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 0; }

  .step-bullets { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 3px; }
  .step-bullets li { font-size: 12.5px; color: var(--gray-600); display: flex; align-items: flex-start; gap: 6px; }
  .step-bullets li::before { content: "›"; font-weight: 700; color: var(--phase-color); flex-shrink: 0; font-size: 15px; line-height: 1.3; }

  .feature-chips-wrap { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(11,22,40,0.06); }
  .feature-chips-label { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; }
  .feature-chips { display: flex; flex-wrap: wrap; gap: 6px; }
  .feature-chip {
    font-size: 12px; font-weight: 700;
    padding: 5px 12px; border-radius: 100px;
    display: inline-flex; align-items: center; gap: 5px;
    white-space: nowrap;
  }
  .feature-chip svg { width: 14px; height: 14px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .phase--2 .feature-chip { background: rgba(26,109,255,0.08); border: 1px solid rgba(26,109,255,0.18); color: var(--blue); }
  .phase--3 .feature-chip { background: rgba(11,22,40,0.07);   border: 1px solid rgba(11,22,40,0.14); color: var(--navy); }

  .ai-note {
    margin-top: 16px;
    background: rgba(26,109,255,0.04);
    border: 1px solid rgba(26,109,255,0.16);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex; align-items: flex-start; gap: 12px;
  }
  .ai-note-icon { flex-shrink: 0; margin-top: 1px; color: var(--blue); }
  .ai-note-icon svg { width: 18px; height: 18px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .ai-note-label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
  .ai-note-text  { font-size: 13px; color: var(--text-secondary); line-height: 1.8; }

  .insight {
    margin: 24px auto;
    max-width: 1040px;
    background: var(--blue-pale);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .insight-icon  { flex-shrink: 0; margin-top: 1px; color: var(--blue); }
  .insight-icon svg { width: 22px; height: 22px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .insight-body  { min-width: 0; }
  .insight-label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
  .insight-quote { font-size: 13px; color: var(--text-secondary); line-height: 1.85; font-style: italic; }
  .insight-quote + .insight-quote { margin-top: 4px; }

  .phase-divider { display: flex; align-items: center; gap: 12px; margin: 32px 0 36px; }
  .phase-divider::before, .phase-divider::after { content: ""; flex: 1; height: 1px; background: rgba(11,22,40,0.08); }
  .divider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(11,22,40,0.15); }

  .roadmap-cta { text-align: center; padding: 40px 0 0; border-top: 1px solid rgba(11,22,40,0.07); margin-top: 48px; }
  .cta-note { font-size: 12px; color: var(--gray-400); margin-top: 10px; }

  .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--blue);
    background: var(--blue-pale);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: #fff;
    font-weight: 800; font-size: 15px;
    padding: 16px 40px; border-radius: 100px;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 8px 24px rgba(26,109,255,0.30);
  }
  .btn-primary:hover { opacity: .85; transform: translateY(-2px); }
  /* テーマ(Astra等)の a:hover/visited 色（紫）がボタン文字に乗るのを防ぐ */
  .btn-primary,
  .btn-primary:link,
  .btn-primary:visited,
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active { color: #fff !important; }

  @media (max-width: 768px) {
    #flow .container { padding: 0 24px; }
    .phase-badge { margin-left: -24px; padding-left: 24px; }
    .step-card { padding: 16px 18px; }
    .steps { padding-left: 44px; }
    .step-circle { left: -44px; width: 30px; height: 30px; top: 14px; }
    .steps::before { left: 13px; }
    .feature-chip { font-size: 11px; }
  }

/* ====== PROLOGUE ====== */
.prologue {
  position: relative;
  text-align: center;
  background:
    radial-gradient(62% 48% at 50% 0%, rgba(26,109,255,0.09) 0%, rgba(26,109,255,0) 62%),
    radial-gradient(50% 40% at 50% 100%, rgba(0,196,167,0.07) 0%, rgba(0,196,167,0) 60%),
    var(--white);
  padding: 128px 40px;
}
.prologue::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
  opacity: 0.30;
}
.prologue__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.prologue__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 22px;
}
.prologue__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--blue);
}
.prologue__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.5;
  color: var(--navy);
  margin: 0 auto 96px;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap; /* 明示改行(<br>)どおりに表示し、自動折り返しを防ぐ */
}
@media (max-width: 768px) {
  .prologue__title { white-space: normal; } /* タブレット以下では折り返しを許可（横はみ出し防止） */
}
.prologue__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 各ブロックを「見出し（左）＋本文（右）」の横並びにし、縦に積む（1440幅を活用） */
.pblock {
  display: block;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0;
  /* スクロールで“ふわっと”登場（#prologue のJSで is-visible 付与） */
  opacity: 0;
  transform: translateY(52px) scale(0.985);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.pblock.is-visible { opacity: 1; transform: none; }
/* ラベル「What is Velmor」とタイトルも同じくスクロールでふわっと登場 */
#prologue .label,
.prologue__title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.prologue__title { transition-delay: .1s; } /* ラベルの少し後にタイトル */
#prologue .label.is-visible,
.prologue__title.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pblock,
  #prologue .label,
  .prologue__title { opacity: 1; transform: none; transition: none; }
}
.pblock + .pblock { border-top: 1px solid rgba(11,22,40,0.08); }
.pblock__main { max-width: 600px; margin: 0 auto; }
@media (max-width: 900px) {
  .pblock { padding: 44px 0; }
}
.pblock--origin { border-left-color: var(--teal); }
.pblock--solve  { border-left-color: var(--blue); }
.pblock--vision { border-left-color: var(--blue-mid); }
.pblock__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy);
  margin: 0 0 16px;
}
.pblock__head { position: relative; margin-bottom: 18px; }
.pblock__head::before {
  content: "";
  display: block;
  width: 40px; height: 3px;
  border-radius: 2px;
  background: var(--blue);
  margin: 0 auto 20px;
}
.pblock--origin .pblock__head::before { background: var(--teal); }
.pblock--solve  .pblock__head::before { background: var(--blue); }
.pblock--vision .pblock__head::before { background: var(--blue-mid); }
.pblock__label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}
.pblock--origin .pblock__label { color: var(--teal); }
.pblock--solve  .pblock__label { color: var(--blue); }
.pblock--vision .pblock__label { color: var(--blue-mid); }
.pblock__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
}
.pblock__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.0;
  color: var(--text-secondary);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.pblock__body:last-of-type { margin-bottom: 0; }
.pblock__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 14px 0 0;
}
.pblock b, .pblock strong {
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 768px) {
  .prologue { padding: 64px 24px; }
  .prologue__eyebrow { font-size: 11px; gap: 12px; margin-bottom: 18px; }
  .prologue__eyebrow::before { width: 22px; }
  .prologue__title { font-size: 27px; margin-bottom: 40px; }
  .prologue__blocks { gap: 40px; }
  .pblock { padding-left: 18px; }
  .pblock__lead { font-size: 16px; }
  .pblock__heading { font-size: 15px; padding: 10px 14px; }
  .pblock__body { font-size: 14px; line-height: 1.95; }
  .pblock__note { font-size: 12px; }
}

  /* ============================================================
     Elementor 埋め込み調整
     - 埋め込み先コンテナ（dd96d8b）を全幅・余白ゼロに
     - テーマ既定フッター（重複）を非表示
     ※ この LP は独自フッターを内包しているため、テーマ側フッターは隠す
  ============================================================ */
  .elementor-element-dd96d8b {
    --padding-block-start: 0px;
    --padding-block-end: 0px;
    --padding-inline-start: 0px;
    --padding-inline-end: 0px;
    --content-width: 100%;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .elementor-element-dd96d8b > .e-con-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .elementor-element-6a6ea04,
  .entry-footer.default-max-width,
  #colophon.site-footer {
    display: none !important;
  }

  /* テーマの button 既定色（暗い背景・明色文字）対策：FAQ開閉ボタンを白系に固定
     ※ テーマ規則 button:not(:hover):not(:active):not(.has-background) に勝つため ID で詳細度を上げる */
  #faq .faq-q,
  #faq .faq-q:focus {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--text-primary) !important;
    border: none !important;
    box-shadow: none !important;
  }
  #faq .faq-q:hover {
    background: var(--gray-100) !important;
    background-color: var(--gray-100) !important;
  }
  /* FAQカード自体の白背景も明示 */
  #faq .faq-item { background: var(--white) !important; }

  /* テーブルの暗いボーダー（テーマ既定の全辺ボーダー）・全幅間延び・空列対策：
     動作環境テーブルをローカル準拠（2列ぴったり・横罫線のみ・薄色・薄い外枠）に固定 */
  /* ブロックを中央寄せ＆最大幅固定（.container がテーマと衝突して幅制限が外れても安全） */
  .runtime-spec { max-width: 1280px !important; margin-left: auto !important; margin-right: auto !important; }
  .runtime-spec__table-wrap { max-width: 100% !important; border: 1px solid var(--border-gray) !important; border-radius: 12px !important; }
  /* テーブルは必ずラッパー幅いっぱいに（テーマの width:auto を打ち消し、空き列を防ぐ） */
  .runtime-spec__table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    border-width: 0 !important;
    border-style: none !important;
    background: var(--white) !important;
  }
  /* 余計な全辺ボーダーを table / thead / tbody / tr すべてで排除（太さ0で固定） */
  .runtime-spec__table thead,
  .runtime-spec__table tbody,
  .runtime-spec__table tr { border-width: 0 !important; border-style: none !important; }
  /* 列幅：左ラベル列 200px、内容列が残り全部（→空列が出ない） */
  .runtime-spec__table th:first-child,
  .runtime-spec__table td:first-child { width: 200px !important; }
  /* 2カラム構成時はブロック幅が半分になるため、ラベル列を詰める */
  .runtime-spec__cols .runtime-spec__table th:first-child,
  .runtime-spec__cols .runtime-spec__table td:first-child { width: 128px !important; }
  /* 罫線は太さ・スタイル・色をすべて明示（色未指定→currentColor=ネイビー化を防ぐ）
     下辺だけ1px・薄グレー、他辺は0 */
  .runtime-spec__table th,
  .runtime-spec__table td {
    border-style: solid !important;
    border-color: var(--border-gray) !important;
    border-width: 0 0 1px 0 !important;
  }
  .runtime-spec__table tr:last-child th,
  .runtime-spec__table tr:last-child td { border-width: 0 !important; }
  .runtime-spec__table tbody th { background: #fafcff !important; color: var(--text-primary) !important; }

/* ==== block 2 ==== */
.hero-visual .kv-anim-wrap{ position:relative; overflow:hidden; border-radius:16px; box-shadow:0 30px 80px -28px rgba(0,0,0,.6); background:#eef4fc; }
/* KV図：iframe表示までのつなぎアニメ（シマー＋ブランド色ドット） */
.kv-anim-loader{ position:absolute; inset:0; z-index:2; display:flex; align-items:center; justify-content:center; background:#eef4fc; overflow:hidden; transition:opacity .55s ease; }
.kv-anim-loader::after{ content:""; position:absolute; inset:0; background:linear-gradient(105deg, transparent 32%, rgba(255,255,255,.7) 50%, transparent 68%); transform:translateX(-100%); animation:kvShimmer 1.5s ease-in-out infinite; }
.kv-loader-dots{ position:relative; z-index:1; display:flex; gap:9px; }
.kv-loader-dots span{ width:11px; height:11px; border-radius:50%; background:var(--blue-mid); animation:kvLoaderDot 1s ease-in-out infinite; }
.kv-loader-dots span:nth-child(2){ animation-delay:.15s; }
.kv-loader-dots span:nth-child(3){ animation-delay:.3s; }
@keyframes kvShimmer{ to{ transform:translateX(100%); } }
@keyframes kvLoaderDot{ 0%,100%{ transform:translateY(0); opacity:.35; } 50%{ transform:translateY(-9px); opacity:1; } }
.hero-visual .kv-anim-wrap.is-loaded .kv-anim-loader{ opacity:0; pointer-events:none; }
@media (prefers-reduced-motion: reduce){ .kv-anim-loader::after, .kv-loader-dots span{ animation:none; } }
/* KV右下：スクロール誘導アニメーション */
.hero-scroll{ position:absolute; right:32px; bottom:26px; z-index:6; display:inline-flex; flex-direction:column; align-items:center; gap:12px; text-decoration:none; }
.hero-scroll-text{ font-family:"Poppins",sans-serif; font-size:12px; font-weight:800; letter-spacing:.3em; writing-mode:vertical-rl; color:rgba(255,255,255,.92); text-shadow:0 1px 6px rgba(0,0,0,.35); transition:color .2s; }
.hero-scroll-line{ position:relative; width:1px; height:52px; background:rgba(255,255,255,.22); overflow:hidden; }
.hero-scroll-dot{ position:absolute; left:-2px; top:0; width:5px; height:5px; border-radius:50%; background:var(--blue-mid); animation:heroScrollDot 1.9s cubic-bezier(.7,0,.3,1) infinite; }
@keyframes heroScrollDot{ 0%{ transform:translateY(-8px); opacity:0; } 20%{ opacity:1; } 80%{ opacity:1; } 100%{ transform:translateY(52px); opacity:0; } }
.hero-scroll:hover .hero-scroll-text{ color:#fff; }
@media(max-width:860px){ .hero-scroll{ display:none; } }
@media (prefers-reduced-motion: reduce){ .hero-scroll-dot{ animation:none; } }
.hero-visual .kv-anim-frame{ width:1160px !important; min-width:1160px; max-width:none !important; border:0; display:block; transform-origin:top left; background:transparent; }
@media(max-width:860px){ .hero-visual .kv-anim-wrap{ margin:0 auto; } }
@media(max-width:768px){ .hero .hero-visual{ display:none !important; } .hero .hero-inner{ grid-template-columns:1fr; } }

/* ==== block 3 ==== */
/* --- WHY ALNETZ --- */
#why-alnetz{ background:linear-gradient(180deg,#f6f9fe 0%, #ffffff 46%); }
#why-alnetz .wa-accent{ color:var(--blue); }
#why-alnetz [data-io]{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
#why-alnetz [data-io].is-in{ opacity:1; transform:none; }
#why-alnetz .wa-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin:40px 0 0; }
#why-alnetz .wa-stat{ position:relative; background:var(--white); border:1px solid var(--border-gray); border-left:4px solid var(--blue); border-radius:var(--radius-md); padding:26px 22px; transition:transform .26s ease, box-shadow .26s ease; }
#why-alnetz .wa-stat:hover{ transform:translateY(-6px); box-shadow:0 24px 44px -26px rgba(11,22,40,.45); }
#why-alnetz .wa-stat-cap{ font-size:11px; font-weight:800; letter-spacing:.14em; color:var(--text-muted); margin:0 0 12px; }
#why-alnetz .wa-stat-num{ font-size:clamp(38px,4.4vw,54px); font-weight:800; color:var(--navy); line-height:1; margin:0 0 12px; display:flex; align-items:baseline; }
#why-alnetz .wa-stat-unit{ font-size:.4em; font-weight:700; margin-left:5px; }
#why-alnetz .wa-stat-note{ font-size:12.5px; color:var(--text-secondary); line-height:1.6; margin:0; }
#why-alnetz .wa-stat--group{ background:var(--navy); border-left-color:var(--navy); border-color:var(--navy); }
#why-alnetz .wa-stat--group:hover{ box-shadow:0 24px 44px -22px rgba(26,109,255,.6); }
#why-alnetz .wa-stat--group .wa-stat-cap{ color:var(--blue-mid); }
#why-alnetz .wa-badge{ display:inline-block; background:rgba(61,139,255,.16); color:#9ecbff; border:1px solid rgba(61,139,255,.4); font-size:11px; font-weight:800; padding:5px 10px; border-radius:5px; margin:0 0 12px; }
#why-alnetz .wa-group-name{ font-size:clamp(19px,2vw,23px); font-weight:800; color:#fff; line-height:1.25; margin:0 0 10px; }
#why-alnetz .wa-stat--group .wa-stat-note{ color:rgba(255,255,255,.72); }
#why-alnetz .wa-heritage{ margin:40px 0 0; background:linear-gradient(160deg,#0d1a30 0%, #0b1628 100%); border:1px solid rgba(120,170,255,.18); border-radius:var(--radius-lg); padding:40px 44px; display:grid; grid-template-columns:auto 1fr; align-items:center; gap:44px; position:relative; overflow:hidden; }
#why-alnetz .wa-heritage::after{ content:"1998"; position:absolute; right:8px; bottom:-46px; font-family:'Noto Serif JP',serif; font-weight:700; font-size:150px; line-height:1; color:rgba(255,255,255,.035); pointer-events:none; }
#why-alnetz .wa-emblem{ position:relative; width:132px; height:132px; display:flex; flex-direction:column; align-items:center; justify-content:center; flex:0 0 auto; }
#why-alnetz .wa-emblem::before{ content:""; position:absolute; inset:0; border-radius:50%; border:2px solid rgba(184,199,220,.7); }
#why-alnetz .wa-emblem::after{ content:""; position:absolute; inset:8px; border-radius:50%; border:1px solid rgba(184,199,220,.35); }
#why-alnetz .wa-emblem-since{ font-size:12px; font-weight:800; letter-spacing:.26em; color:#c3d0e2; margin-left:.26em; }
#why-alnetz .wa-emblem-year{ font-family:'Noto Serif JP',serif; font-size:40px; font-weight:700; color:#fff; line-height:1.15; }
#why-alnetz .wa-emblem-note{ font-size:11px; color:rgba(255,255,255,.6); margin-top:4px; }
#why-alnetz .wa-metrics{ display:grid; grid-template-columns:repeat(3,1fr); }
#why-alnetz .wa-metric{ padding:0 26px; }
#why-alnetz .wa-metric + .wa-metric{ border-left:1px solid rgba(120,170,255,.16); }
#why-alnetz .wa-metric-cap{ font-size:11px; font-weight:800; letter-spacing:.16em; color:#c3d0e2; margin:0 0 12px; }
#why-alnetz .wa-metric-num{ display:flex; align-items:baseline; color:#fff; margin:0 0 10px; }
#why-alnetz .wa-ser{ font-family:'Noto Serif JP',serif; font-weight:700; font-size:clamp(40px,4.6vw,58px); line-height:1; letter-spacing:.01em; }
#why-alnetz .wa-metric-unit{ font-size:16px; font-weight:600; color:rgba(255,255,255,.72); margin-left:8px; }
#why-alnetz .wa-metric-note{ font-size:12px; color:rgba(255,255,255,.55); margin:0; line-height:1.5; }
#why-alnetz .wa-authority{ grid-column:1 / -1; margin:8px 0 0; padding-top:22px; border-top:1px solid rgba(120,170,255,.16); font-size:12.5px; font-weight:600; color:rgba(255,255,255,.62); text-align:center; }
#why-alnetz .wa-authority-badge{ display:inline-block; background:rgba(184,199,220,.14); border:1px solid rgba(184,199,220,.5); color:#d6dfec; font-weight:800; padding:3px 10px; border-radius:4px; margin-right:10px; }
@media(max-width:900px){
  #why-alnetz .wa-heritage{ grid-template-columns:1fr; gap:28px; padding:32px 24px; text-align:center; }
  #why-alnetz .wa-emblem{ margin:0 auto; }
  #why-alnetz .wa-metric-num{ justify-content:center; }
}
@media(max-width:560px){
  #why-alnetz .wa-metrics{ grid-template-columns:1fr; }
  #why-alnetz .wa-metric{ padding:0; }
  #why-alnetz .wa-metric + .wa-metric{ border-left:0; border-top:1px solid rgba(120,170,255,.16); margin-top:22px; padding-top:22px; }
}
#why-alnetz .wa-subhead{ font-size:clamp(18px,2.2vw,24px); font-weight:800; color:var(--navy); margin:52px 0 24px; padding-bottom:4px; border-bottom:2px solid var(--blue); display:inline-block; }
#why-alnetz .wa-bands{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:40px; }
#why-alnetz .wa-band{ background:var(--white); border:1px solid var(--border-gray); border-radius:var(--radius-md); overflow:hidden; transition:transform .26s ease, box-shadow .26s ease; }
#why-alnetz .wa-band:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -26px rgba(11,22,40,.4); }
#why-alnetz .wa-band-head{ font-size:13px; font-weight:800; letter-spacing:.06em; color:#fff; padding:16px 24px; }
#why-alnetz .wa-band-head--edu{ background:var(--navy); }
#why-alnetz .wa-band-head--dev{ background:linear-gradient(135deg,#1a6dff,#0053d4); }
#why-alnetz .wa-band-body{ padding:24px; }
#why-alnetz .wa-band-title{ font-size:18px; font-weight:800; color:var(--navy); margin:0 0 12px; }
#why-alnetz .wa-band-text{ font-size:13.5px; color:var(--text-secondary); line-height:1.85; margin:0; }
#why-alnetz .wa-node{ position:relative; width:104px; height:104px; border-radius:50%; background:var(--navy); border:3px solid var(--blue); display:flex; flex-direction:column; align-items:center; justify-content:center; z-index:2; box-shadow:0 14px 32px -10px rgba(26,109,255,.6); }
#why-alnetz .wa-node::before{ content:""; position:absolute; inset:-9px; border-radius:50%; border:2px solid rgba(120,170,255,.55); pointer-events:none; }
#why-alnetz .wa-node-arm{ position:absolute; top:50%; height:3px; width:26px; background:var(--blue); transform:translateY(-50%); }
#why-alnetz .wa-node-arm--l{ right:100%; margin-right:10px; }
#why-alnetz .wa-node-arm--r{ left:100%; margin-left:10px; }
#why-alnetz .wa-node-arm::after{ content:""; position:absolute; top:50%; transform:translateY(-50%); width:0; height:0; border-top:6px solid transparent; border-bottom:6px solid transparent; }
#why-alnetz .wa-node-arm--l::after{ right:-2px; border-left:10px solid var(--blue); }
#why-alnetz .wa-node-arm--r::after{ left:-2px; border-right:10px solid var(--blue); }
#why-alnetz .wa-node-arm::before{ content:""; position:absolute; top:50%; transform:translateY(-50%); width:9px; height:9px; border-radius:50%; background:var(--blue); }
#why-alnetz .wa-node-arm--l::before{ left:-4px; }
#why-alnetz .wa-node-arm--r::before{ right:-4px; }
#why-alnetz .wa-node-main{ color:#fff; font-size:23px; font-weight:800; line-height:1; }
#why-alnetz .wa-node-sub{ color:var(--blue-mid); font-size:11px; font-weight:700; margin-top:3px; }
#why-alnetz .wa-node[data-io]{ transform:scale(.35); }
#why-alnetz .wa-node[data-io].is-in{ transform:scale(1); transition:transform .7s cubic-bezier(.22,.61,.36,1) .2s, opacity .5s ease .2s; }
#why-alnetz .wa-foot{ text-align:center; font-size:14px; font-weight:700; color:var(--text-secondary); margin:32px 0 0; }

/* WHY ALNETZ：ALNETZ×FRONTEOグループロゴ（濃紺カード上部・白ロゴ横断行） */
.wa-grouplogo{ grid-column:1 / -1; text-align:left; padding-bottom:22px; border-bottom:1px solid rgba(120,170,255,.18); }
.wa-grouplogo img{ height:52px; width:auto; max-width:100%; display:inline-block; }

@media(max-width:768px){
  .wa-grouplogo{ padding-bottom:16px; text-align:center; }
  .wa-grouplogo img{ height:36px; }
  .wa-cert--pmark{ height:56px; }
  .wa-cert--isms{ height:50px; }
}
@media(max-width:900px){
  #why-alnetz .wa-stats{ grid-template-columns:repeat(2,1fr); }
  #why-alnetz .wa-bands{ grid-template-columns:1fr; gap:14px; justify-items:center; }
  #why-alnetz .wa-band{ width:100%; }
  #why-alnetz .wa-node-arm{ display:none; }
}
@media(max-width:560px){ #why-alnetz .wa-stats{ grid-template-columns:1fr; } }

@media(max-width:560px){
  #the-solution .ts-cards{ gap:16px; margin-top:28px; }
  #the-solution .ts-card-head{ padding:16px 18px; }
  #the-solution .ts-card-body{ padding:18px; }
  #the-solution .ts-card-title{ min-height:0; margin-bottom:12px; }
  #the-solution .ts-card-list{ gap:9px; }
  #the-solution .ts-foot{ margin-top:26px; }
}
/* --- why-lms: boundary accent + mobile compact --- */
#why-lms{ background:linear-gradient(180deg,#e3ecfa 0%, #eef4ff 34%); }
@media(max-width:560px){
  #why-lms .edx-two-col, #why-lms .edx-two-col--reverse{ gap:22px; }
  #why-lms .edx-flow-diagram{ gap:10px; }
}
#apps .apps-dots{ display:none; }
@media(max-width:768px){
  #apps .apps-dots{ display:flex; justify-content:center; gap:7px; margin:16px 0 0; }
  #apps .apps-dot{ width:7px; height:7px; border-radius:50%; background:rgba(26,109,255,.28); transition:width .22s ease, background .22s ease; }
  #apps .apps-dot.is-on{ width:22px; border-radius:4px; background:#1a6dff; }
}
/* --- apps: スマホ「横スワイプできます」ヒントピル（矢印ボタンの代替アフォーダンス） --- */
.apps-swipe-hint{ display:none; }
@media(max-width:768px){
  .apps-swipe-hint{
    display:inline-flex; align-items:center; gap:7px;
    position:absolute; right:12px; bottom:12px; z-index:5;
    padding:8px 14px; border-radius:100px;
    background:rgba(11,22,40,.82); color:#fff;
    font-family:"Noto Sans JP",sans-serif; font-weight:700; font-size:12px; letter-spacing:.02em;
    box-shadow:0 8px 20px -8px rgba(11,22,40,.5);
    pointer-events:none; white-space:nowrap;
    animation:appsHintFloat 1.8s ease-in-out infinite;
    transition:opacity .45s ease, transform .45s ease;
  }
  .apps-swipe-hint-arrow{
    display:inline-flex; font-size:15px; line-height:1;
    animation:appsHintArrow 1.8s ease-in-out infinite;
  }
  .apps-shelf.swiped .apps-swipe-hint{ animation:none; opacity:0; transform:translateY(8px); }
}
@keyframes appsHintFloat{ 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(-7px); } }
@keyframes appsHintArrow{ 0%,100%{ transform:translateX(0); opacity:.55; } 50%{ transform:translateX(4px); opacity:1; } }
@media(prefers-reduced-motion: reduce){
  .apps-swipe-hint, .apps-swipe-hint-arrow{ animation:none !important; }
}
/* --- apps card: mobile head stack + short labels --- */
@media(max-width:768px){
  /* スマホ：アイコン左・右に番号＋タイトルの横並び（縦長感を解消） */
  #apps .apps-card-head{ flex-direction:row; align-items:center; gap:13px; padding:14px 18px 12px; }
  #apps .apps-card-icon{ width:52px !important; height:52px !important; border-radius:14px !important; }
  #apps .apps-card-headinfo{ flex:1 1 auto; min-width:0; }
  #apps .apps-card-cat{ margin:0 0 5px; }
  #apps .apps-card-badge{ font-size:9px; padding:2px 8px; }
  #apps .apps-card-title{ font-size:16px; line-height:1.4; }
  #apps .apps-field-label--problem{ font-size:0 !important; }
  #apps .apps-field-label--problem::after{ content:"課題"; font-size:10px; font-weight:700; letter-spacing:.1em; }
  #apps .apps-field-label--can{ font-size:0 !important; }
  #apps .apps-field-label--can::after{ content:"できること"; font-size:10px; font-weight:700; letter-spacing:.1em; }
}
/* --- customize: mobile padding/gap compaction + correct grids --- */
@media(max-width:768px){
  #lp-customize .customize-card, #lp-customize .customize-group{ padding:24px 18px; }
  #lp-customize .customize-grid{ gap:28px; }
  #lp-customize .customize-group-cards{ grid-template-columns:1fr; gap:16px; }
  #lp-customize .customize-subcard{ padding:16px 14px; }
  #lp-customize .customize-subcard .customize-tags{ grid-template-columns:1fr 1fr !important; gap:10px; }
}
@media(min-width:341px) and (max-width:460px){
  #lp-customize .customize-subcard .customize-tag{ flex-direction:column !important; align-items:flex-start !important; gap:7px !important; padding:10px 10px 9px !important; }
  #lp-customize .customize-subcard .ctag-icon{ width:32px !important; height:32px !important; }
  #lp-customize .customize-subcard .ctag-icon .material-symbols-rounded{ font-size:18px !important; }
}
@media(max-width:340px){
  #lp-customize .customize-subcard .customize-tags{ grid-template-columns:1fr !important; }
}
/* --- runtime spec: mobile label column narrower --- */
@media(max-width:600px){
  #lp-runtime .runtime-spec__table th:first-child,
  #lp-runtime .runtime-spec__table td:first-child{ width:90px !important; }
}
/* --- usecases mobile: hide intro image + compact card padding --- */
@media(max-width:768px){
  #usecases .uc-intro-visual{ display:none !important; }
  #usecases .uc-card{ padding:22px 18px !important; }
}
/* --- flow: mobile vertical compaction --- */
@media(max-width:768px){
  #flow .phase-divider{ margin:18px 0 16px !important; }
  #flow .phase-header{ margin-bottom:16px !important; }
  #flow .steps{ gap:16px !important; }
  #flow .insight{ margin:14px auto !important; padding:14px 16px !important; }
  #flow .feature-chips-wrap{ margin-top:12px !important; padding-top:12px !important; }
  #flow .ai-note{ margin-top:12px !important; }
  #flow .roadmap-cta{ margin-top:28px !important; padding-top:24px !important; }
}
/* --- mobile audit: heading unify + white-run break --- */
#apps .apps-new-h2{ display:block !important; }
#apps .section-title .accent{ color:var(--blue); }
/* #lp-function の背景はLMS説明ゾーンの統一背景（冒頭の #lp-function,#lp-runtime,#lp-customize）に集約したため削除 */
/* --- ai-agent mobile: only AI card under title; steps back to original spot --- */
@media(max-width:768px){
  #ai-agent .edx-two-col--reverse{ gap:18px !important; }
  #ai-agent .edx-copy{ display:contents; }
  #ai-agent .edx-visual-card--image{ display:contents; }
  #ai-agent .ai-mech-wrap{ display:contents; }
  #ai-agent .aic{ display:contents; }
  #ai-agent .edx-copy > .label{ order:0; justify-self:start; }
  #ai-agent .edx-copy > .section-title{ order:1; }
  #ai-agent .aic-center{ order:2 !important; }
  #ai-agent .edx-copy > .edx-body{ order:3; }
  #ai-agent .edx-copy > .edx-tags{ order:4; }
  #ai-agent .aic-node{ order:5 !important; }
  #ai-agent .ai-mech-caption{ order:6; }
  #ai-agent .ai-mech-label{ display:none; }
  #ai-agent .aic-ring{ display:none; }
}
/* --- runtime: mobile move notes below content-format group --- */
@media(max-width:768px){
  #lp-runtime .runtime-spec__block:first-of-type{ display:contents; }
  #lp-runtime .runtime-spec__notes{ order:1; margin-top:0; }
}
/* --- ai-agent mobile: rotating conic gradient bg on the AI card --- */
@keyframes aicSpin{ to{ transform:translate(-50%,-50%) rotate(360deg); } }
@media(max-width:768px){
  #ai-agent .aic-center{ position:relative; left:auto; top:auto; right:auto; transform:none; overflow:hidden; isolation:isolate; }
  #ai-agent .aic-center > *{ position:relative; z-index:1; }
  #ai-agent .aic-center::before{
    content:""; position:absolute; z-index:0; top:50%; left:50%;
    width:230%; aspect-ratio:1; transform:translate(-50%,-50%);
    background:conic-gradient(from 0deg, #1a6dff, #00c4a7, #3d8bff, #0b1628, #12244a, #1a6dff);
    opacity:.5; filter:blur(16px); pointer-events:none;
    animation:aicSpin 9s linear infinite;
  }
  #ai-agent .aic-center::after{
    content:""; position:absolute; z-index:0; inset:0; pointer-events:none;
    background:radial-gradient(120% 90% at 50% 40%, rgba(11,22,40,0) 30%, rgba(11,22,40,.55) 100%);
  }
}
@media(max-width:768px) and (prefers-reduced-motion:reduce){
  #ai-agent .aic-center::before{ animation:none; }
}
/* --- WHY ALNETZ dark heritage theme (full-section) --- */
#why-alnetz{ background:linear-gradient(180deg,#17284c 0%, #12223e 100%); color:#fff; border-bottom:2px solid rgba(184,199,220,.5); }
#why-alnetz .section-title{ color:#fff; }
#why-alnetz .section-lead{ color:rgba(255,255,255,.72); }
#why-alnetz .wa-subhead{ color:#fff; }
#why-alnetz .wa-band{ background:#1e3157; border:1px solid rgba(120,170,255,.16); }
#why-alnetz .wa-band-title{ color:#fff; }
#why-alnetz .wa-band-text{ color:rgba(255,255,255,.66); }
#why-alnetz .wa-band:hover{ box-shadow:0 26px 48px -24px rgba(0,0,0,.6); }
#why-alnetz .wa-band-head--edu{ background:linear-gradient(135deg,#16264a,#101e3a); }
#why-alnetz .wa-foot{ color:rgba(255,255,255,.6); }
#why-alnetz .wa-heritage{ background:linear-gradient(160deg,#0e1c38 0%, #0a1428 100%); border-color:rgba(184,199,220,.3); }
#outcomes{ background:linear-gradient(180deg,#17284c 0%, #12223e 100%); border-bottom:2px solid rgba(184,199,220,.5); }
#the-solution{ background:#edf0f6; }

/* --- WHY ALNETZ mobile: compact + node vertical connector --- */
@media(max-width:900px){
  #why-alnetz .wa-bands{ gap:22px; }
}
@media(max-width:560px){
  #why-alnetz .wa-heritage{ margin-top:28px; padding:24px 16px; gap:20px; }
  #why-alnetz .wa-emblem{ width:106px; height:106px; }
  #why-alnetz .wa-emblem-year{ font-size:34px; }
  #why-alnetz .wa-metric + .wa-metric{ margin-top:16px; padding-top:16px; }
  #why-alnetz .wa-authority{ margin-top:14px; padding-top:18px; font-size:11.5px; line-height:1.7; }
  #why-alnetz .wa-subhead{ margin:30px 0 18px; }
  #why-alnetz .wa-foot{ margin-top:24px; }
  #why-alnetz .wa-band-body{ padding:18px; }
}
/* --- THE SOLUTION --- */
#the-solution .ts-accent{ color:var(--blue); }
#the-solution .ts-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin:44px 0 0; align-items:start; }
#the-solution .ts-card{ position:relative; background:var(--white); border:1px solid var(--border-gray); border-radius:var(--radius-md); overflow:hidden; transition:opacity .5s ease, transform .3s ease, box-shadow .3s ease; }

#the-solution .ts-card:hover{ transform:translateY(-8px); box-shadow:0 28px 52px -28px rgba(11,22,40,.5); }
/* reveal (gated by .anim-ready so content stays visible without JS) */
#the-solution.anim-ready [data-io]{ opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
#the-solution.anim-ready [data-io].is-in{ opacity:1; transform:none; }
#the-solution.anim-ready .ts-card{ opacity:0; transform:translateY(22px); }

#the-solution.anim-ready .ts-card.is-in{ opacity:1; transform:none; }

#the-solution .ts-card-head{ display:flex; align-items:center; gap:14px; padding:22px 24px; color:#fff; }
#the-solution .ts-card-head--01{ background:linear-gradient(135deg,#0b1628,#16294a); }
#the-solution .ts-card-head--02{ background:linear-gradient(135deg,#12336b,#0b2350); }
#the-solution .ts-card-head--03{ background:linear-gradient(135deg,#0a3f3a,#0c5148); }
#the-solution .ts-card-no{ font-family:'Noto Serif JP',serif; font-size:34px; font-weight:700; line-height:1; opacity:.95; }
#the-solution .ts-card-en{ display:flex; flex-direction:column; gap:3px; }
#the-solution .ts-card-en strong{ font-size:17px; font-weight:800; }
#the-solution .ts-card-en small{ font-size:10.5px; font-weight:700; letter-spacing:.1em; opacity:.78; }
#the-solution .ts-card-body{ padding:24px; }
#the-solution .ts-card-title{ font-size:18px; font-weight:800; color:var(--navy); line-height:1.5; margin:0 0 18px; min-height:54px; }
#the-solution .ts-card-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
#the-solution .ts-card-list li{ position:relative; padding-left:22px; font-size:13.5px; color:var(--text-secondary); line-height:1.6; }
#the-solution .ts-card-list li::before{ content:""; position:absolute; left:2px; top:8px; width:7px; height:7px; border-radius:2px; background:var(--blue); }
#the-solution .ts-card--03 .ts-card-list li::before{ background:var(--teal); }
#the-solution .ts-foot{ text-align:center; font-size:clamp(16px,2.2vw,21px); line-height:1.7; font-weight:700; color:var(--text-secondary); margin:40px 0 0; }
#the-solution .ts-foot strong{ color:var(--blue); }
/* --- THE SOLUTION extra motion --- */
#the-solution .ts-card-head{ position:relative; overflow:hidden; }
#the-solution .ts-card-head::after{ content:""; position:absolute; top:0; left:-60%; width:50%; height:100%; background:linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent); transform:skewX(-18deg); pointer-events:none; }
#the-solution.anim-ready .ts-card.is-in .ts-card-head::after{ animation:ts-sheen 1s ease .35s 1; }
@keyframes ts-sheen{ from{ left:-60%; } to{ left:150%; } }

/* bullet cascade */
#the-solution.anim-ready .ts-card-list li{ opacity:0; transform:translateX(-8px); transition:opacity .45s ease, transform .45s ease; }
#the-solution.anim-ready .ts-card.is-in .ts-card-list li{ opacity:1; transform:none; }
@media(max-width:900px){ #the-solution .ts-cards{ grid-template-columns:1fr; }  }

/* ==== block 4 ==== */
/* #why-lms 図：成果カードもホバー反応（他カードと同様に枠・背景・影が変化） */
#lmsflow.done [data-anim="outcome"]{
  transition: box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}
#lmsflow.done [data-anim="outcome"]:hover{
  border-color: #1a6dff !important;
  background: #eef4ff !important;
  box-shadow: 0 18px 46px rgba(0,59,186,.30) !important;
  z-index: 10 !important;
  cursor: default;
}

/* ==== block 5 ==== */
/* #why-lms 図：完成後（.done）に各カードのホバー体験（ズーム＋色変化） */
#lmsflow.done [data-anim="card"]{
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}
#lmsflow.done [data-anim="card"]:hover{
  z-index: 10 !important;
  border-color: #1a6dff !important;
  background: #eef4ff !important;
  box-shadow: 0 16px 38px rgba(0,59,186,.24) !important;
}
/* アイコンボックス：反転（青地に白）／ラベル：ブルー */
#lmsflow.done [data-anim="card"]:hover > div:first-child{
  background: #1a6dff !important;
  color: #ffffff !important;
}
#lmsflow.done [data-anim="card"]:hover > div:last-child{
  color: #1a6dff !important;
}
/* LMS・業務連動アプリ（中心）カードのホバー体験（ズーム＋色変化） */
#lmsflow.done [data-anim="lms"],
#lmsflow.done [data-anim="center"]{
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}
#lmsflow.done [data-anim="lms"]:hover,
#lmsflow.done [data-anim="center"]:hover{
  border-color: #1a6dff !important;
  background: #eef4ff !important;
  box-shadow: 0 16px 42px rgba(0,59,186,.3) !important;
  z-index: 10 !important;
}
/* 成果へ向かうグレー三角矢印：左→右へ流れる */
#lmsflow.done [data-anim="arrow"]{
  animation: lmsArrowFlow 1.5s ease-in-out infinite;
}
@keyframes lmsArrowFlow{
  0%   { transform: translateX(-5px); opacity: .4; }
  50%  { opacity: 1; }
  100% { transform: translateX(7px);  opacity: .4; }
}
@media (prefers-reduced-motion: reduce){
  #lmsflow.done [data-anim="card"]{ transition: none; }
  #lmsflow.done [data-anim="card"]:hover{ transform: none !important; }
  #lmsflow.done [data-anim="lms"]:hover,
  #lmsflow.done [data-anim="center"]:hover{ transform: none !important; }
  #lmsflow.done [data-anim="arrow"]{ animation: none; }
}

/* ==== block 6 ==== */
  #solution .edx-two-col{align-items:center;}
  #solution .edx-visual-card--image{transform:none;}
  #solution .sol-img-wrap{position:relative;width:100%;overflow:hidden;min-height:clamp(300px,52vw,520px);}
  #solution .sol-anim-frame{
    width:1256px !important;
    min-width:1256px;
    max-width:none !important;
    border:0;
    display:block;
    overflow:hidden;
    background:transparent;
    transform-origin:top left;
  }
  /* スマホ：1256px設計の構造レイヤー図は縮小すると判読不能なため非表示（テキストで訴求） */
  @media (max-width:768px){
    #solution .edx-visual-card--image{ display:block !important; }
  }

/* ==== block 7 ==== */
/* #ai-agent 図：抽出イラスト（元図構成：番号インライン＋テキスト左・イラスト右） */
.aic-node{ padding:11px 13px 11px; }
.aic-node .aic-num{ position:static; width:24px; height:24px; font-size:12px; flex:0 0 auto; }
.aic-node-top{ display:flex; align-items:center; gap:8px; margin-bottom:7px; }
.aic-node-top b{ margin-bottom:0; }
.aic-node-body{ flex:1; display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-top:1px solid rgba(26,109,255,.12); padding-top:8px; }
.aic-node-body > span{ flex:1; min-width:0; display:block; font-size:clamp(10.5px,1vw,12px); color:#4a5570; line-height:1.5; }
.aic-node-img{ flex:0 0 auto; width:clamp(50px,5.2vw,62px); height:clamp(50px,5.2vw,62px);
  object-fit:contain;
  transition:transform .28s cubic-bezier(.2,.7,.2,1); }
.aic-node:hover .aic-node-img{ transform:scale(1.12) rotate(-2deg); }
.aic-center-robot{ display:block; width:clamp(84px,9vw,112px); height:auto; margin:0 auto 8px;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.aic-center-rows li{ display:flex; align-items:center; gap:9px; }
.aic-row-icon{ flex:0 0 auto; width:28px; height:auto; }
.aic-center-rows li > div{ min-width:0; }
@media (max-width:768px){
  .aic-node .aic-num{ position:static; right:auto; }
}

/* ==== block 8 ==== */
/* #ai-agent 図：HTML再構築（各カードにホバーズーム） */
#ai-agent .ai-mech-wrap{ overflow:visible; }
.aic{ position:relative; width:100%; max-width:860px; margin:0 auto; aspect-ratio:1 / 0.92; }
.aic-ring{ position:absolute; inset:0; width:100%; height:100%; z-index:0; pointer-events:none; }
/* 円環：丸い点線が時計回りにゆっくり回る（マーチングアンツ／形はカード位置に固定） */
.aic-ring-path{ stroke-linecap:round; stroke-dasharray:0.01 3.6; animation:aicRingSpin 34s linear infinite; }
@keyframes aicRingSpin{ to{ stroke-dashoffset:-36; } }
/* 放射スポーク：丸い点線が中心から外へゆっくり流れる */
.aic-spoke{ stroke-linecap:round; stroke-dasharray:0.01 2.8; animation:aicSpokeFlow 3s linear infinite; }
@keyframes aicSpokeFlow{ from{ stroke-dashoffset:2.81; } to{ stroke-dashoffset:0; } }
@media (prefers-reduced-motion: reduce){
  .aic-ring-path, .aic-spoke{ animation:none; }
}
.aic-node{
  position:absolute; transform:translate(-50%,-50%);
  width:clamp(168px,24%,224px); height:clamp(138px,16vw,156px);
  display:flex; flex-direction:column;
  background:#fff; border:1px solid rgba(26,109,255,.18); border-radius:14px;
  padding:13px 15px 14px; box-shadow:0 8px 20px -10px rgba(11,54,120,.28);
  z-index:2; cursor:default;
  transition:transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.aic-node .aic-num{
  position:static; flex:0 0 auto; width:28px; height:28px; border-radius:50%;
  background:#1a6dff; color:#fff; font-family:"Noto Sans JP",sans-serif; font-weight:700; font-size:15px;
  display:flex; align-items:center; justify-content:center; line-height:1;
  box-shadow:0 3px 8px -3px rgba(26,109,255,.55);
}
.aic-node .aic-num--f{ background:#0bbf8a; }
.aic-node b{ display:block; font-size:clamp(12.5px,1.2vw,15px); color:#0b1628; line-height:1.35; margin-bottom:4px; }
.aic-node:hover{
  transform:translate(-50%,-50%) scale(1.14); z-index:20;
  border-color:#1a6dff; box-shadow:0 22px 44px -16px rgba(26,80,180,.5);
}
.aic-node:hover b{ color:#1a6dff; }
.aic-node--f{ border-color:rgba(11,191,138,.32); }
.aic-node--f:hover{ border-color:#0bbf8a; box-shadow:0 22px 44px -16px rgba(11,191,138,.45); }
.aic-node--f:hover b{ color:#0bbf8a; }
.aic-node--1{ left:28%; top:15%; }
.aic-node--2{ left:72%; top:15%; }
.aic-node--3{ left:88%; top:50%; }
.aic-node--4{ left:72%; top:85%; }
.aic-node--5{ left:28%; top:85%; }
.aic-node--f{ left:12%; top:50%; }
.aic-center{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:clamp(208px,30%,282px); z-index:4;
  background:linear-gradient(160deg,#12244a 0%, #0b1628 100%); color:#fff; border-radius:20px;
  padding:18px 18px 15px; text-align:center; box-shadow:0 18px 40px -14px rgba(11,22,40,.55);
  transition:transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease;
}
.aic-center:hover{ transform:translate(-50%,-50%) scale(1.05); box-shadow:0 26px 52px -14px rgba(26,80,180,.6); }
.aic-center-title{ font-size:clamp(16px,1.7vw,19px); font-weight:800; margin:0 0 4px; }
.aic-center-sub{ font-size:clamp(10px,1vw,11.5px); color:rgba(255,255,255,.72); margin:0 0 10px; line-height:1.5; }
.aic-center-rows{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:6px; }
.aic-center-rows li{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:9px; padding:6px 8px; text-align:left; }
.aic-center-rows b{ display:block; font-size:clamp(10px,1vw,12px); color:#a8edcb; line-height:1.35; }
.aic-center-rows li span{ display:block; font-size:clamp(9px,0.85vw,10.5px); color:rgba(255,255,255,.62); line-height:1.4; }
@media (max-width:768px){
  .aic{ aspect-ratio:auto; max-width:420px; display:flex; flex-direction:column; gap:14px; }
  .aic-ring{ display:none; }
  .aic-node, .aic-center{ position:static; transform:none; width:100%; }
  .aic-node{ height:auto; min-height:0; padding:12px 14px; }
  .aic-center{ order:-1; padding:16px; }
  .aic-node:hover{ transform:scale(1.03); }
  .aic-center:hover{ transform:scale(1.02); }
  /* 縦積みで幅に余裕があるので、円形配置用に詰めていた文字を読みやすいサイズへ引き上げ */
  .aic-center-title{ font-size:21px; }
  .aic-center-sub{ font-size:13px; }
  .aic-center-rows b{ font-size:13.5px; }
  .aic-center-rows li span{ font-size:12.5px; }
  .aic-node b{ font-size:16px; }
  .aic-node-body > span{ font-size:13.5px; }
  .aic-node-img{ width:56px; height:56px; }
}

/* ==== block 9 ==== */
/* AIエージェント図：白フレーム＋循環グロー＋スクロール登場 */
#ai-agent .edx-visual-card--image{position:relative;overflow:visible;}
#ai-agent .edx-visual-card--image::before{
  content:"";position:absolute;z-index:0;inset:-44px;border-radius:52px;
  background:conic-gradient(from 0deg,
    rgba(26,109,255,0) 0deg,
    rgba(26,109,255,0) 42deg,
    #1a6dff 135deg,
    #3d8bff 205deg,
    rgba(0,196,167,.55) 250deg,
    rgba(26,109,255,0) 320deg,
    rgba(26,109,255,0) 360deg);
  filter:blur(40px);opacity:0;transition:opacity 1s ease .15s;
  animation:aiOrbit 9s linear infinite;pointer-events:none;
}
#ai-agent .edx-visual-card--image.is-visible::before{opacity:.62;}
@keyframes aiOrbit{to{transform:rotate(360deg);}}
#ai-agent .ai-mech-wrap{position:relative;z-index:1;border-color:rgba(26,109,255,.22);}
#ai-agent .ai-mech-caption{
  position:relative;z-index:1;margin:20px auto 0;max-width:640px;text-align:center;
  font-size:clamp(13px,1.4vw,15px);line-height:1.7;color:rgba(255,255,255,.68);
}
#ai-agent .ai-mech-caption b{color:#fff;font-weight:700;}
/* スクロール登場：JS準備後のみ隠す（JS無効でも表示される） */
#ai-agent.ai-reveal-ready .ai-mech-wrap,
#ai-agent.ai-reveal-ready .ai-mech-caption{
  opacity:0;translate:0 28px;
  transition:opacity .8s ease,translate .8s cubic-bezier(.2,.7,.2,1);
}
#ai-agent.ai-reveal-ready .ai-mech-caption{transition-delay:.12s;}
#ai-agent.ai-reveal-ready .edx-visual-card--image.is-visible .ai-mech-wrap,
#ai-agent.ai-reveal-ready .edx-visual-card--image.is-visible .ai-mech-caption{opacity:1;translate:0 0;}
@media (prefers-reduced-motion: reduce){
  #ai-agent .edx-visual-card--image::before{animation:none;}
  #ai-agent.ai-reveal-ready .ai-mech-wrap,
  #ai-agent.ai-reveal-ready .ai-mech-caption{opacity:1;translate:0 0;transition:none;}
}

/* ==== block 10 ==== */
/* #ai-agent：PNG図（青＋白＋濃紺＋緑のライト図）に合わせてライト基調へ／図の視認性優先 */
#ai-agent{
  background: radial-gradient(1100px 460px at 50% -6%, rgba(26,109,255,.10), transparent 62%), var(--blue-pale);
}
#ai-agent .label--white{ color: #ffffff; background: var(--blue); }
#ai-agent h2.section-title--white,
#ai-agent .section-title--white{ color: var(--navy); }
#ai-agent .edx-body{ color: var(--text-secondary); }
#ai-agent .edx-tag{ background:#fff; border-color: rgba(11,22,40,.10); color: var(--navy); }
#ai-agent .ai-mech-caption{ color: var(--text-secondary); }
#ai-agent .ai-mech-caption b{ color: var(--navy); }
/* カードは透明：図を背景に直接なじませる（色なし） */
#ai-agent .ai-mech-wrap{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
}
/* 循環グローはライト背景向けに控えめに */
#ai-agent .edx-visual-card--image.is-visible::before{ opacity:.40; }
/* 2カラム（図=左／テキスト=右）は、図の円環がゆったり収まる広い画面のみ。
   1300px未満は図をフル幅で下に表示（円環に余白を確保）、768px以下は縦積みリスト。 */
@media (min-width: 1300px){
  #ai-agent .edx-two-col--reverse{
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  #ai-agent .edx-visual-card--image{ order:0; width:100%; max-width:none; margin:0; transform:none; }
  #ai-agent .edx-copy{ order:1; }
}

/* ==== block 11 ==== */
/* APPS：カードのホバーを明確に（インタラクティブ感を強化）
   ※浮き上がり(transform)は使わない。棚が縦スクロールしてしまうため色・影のみで表現する */
.apps-card{ transition: box-shadow .3s ease, border-color .3s ease; }
.apps-card::before{ transition: height .3s ease; }
.apps-card .apps-card-head{ transition: background .3s ease, border-color .3s ease; }
.apps-card .apps-card-title{ transition: color .3s ease; }
.apps-card:hover{
  border-color:#1a6dff;
  box-shadow:0 24px 50px -20px rgba(26,80,180,.36), 0 10px 22px -12px rgba(26,109,255,.24);
}
.apps-card:hover::before{ height:5px; }
.apps-card:hover .apps-card-head{
  background:linear-gradient(180deg,#e6f0ff 0%, #f4f9ff 100%);
  border-bottom-color:rgba(26,109,255,.24);
}
.apps-card:hover .apps-card-icon{
  /* スケールアップは行わない（色・影の変化のみでホバーを表現） */
  border-color:rgba(26,109,255,.5);
  box-shadow:0 16px 30px -10px rgba(26,80,180,.5);
}
.apps-card:hover .apps-card-title{ color:#1a6dff; }

/* ==== block 12 ==== */
/* APPS：カテゴリ見出し（GROUP番号廃止）＋横スクロール棚 */
.apps-cat-head{ max-width:var(--cmax); margin:0 auto 20px; }
.apps-cat-accent{ display:block; width:44px; height:3px; border-radius:2px;
  background:linear-gradient(90deg,#1a6dff,#00c4a7); margin-bottom:14px; }
.apps-cat-title{ font-family:"Noto Sans JP",sans-serif; font-weight:700; font-size:24px;
  line-height:1.4; color:#0b1628; margin:0 0 8px; }
.apps-cat-desc{ font-size:15px; line-height:1.85; color:#4a5570; margin:0; max-width:760px; }

.apps-shelf{ position:relative; max-width:var(--cmax); margin:0 auto 56px; }
.apps-shelf .apps-cards-grid{
  display:flex; grid-template-columns:none; gap:24px;
  overflow-x:auto; overflow-y:visible;
  scroll-snap-type:x proximity; scroll-behavior:smooth;
  padding:6px 2px 8px;
  scrollbar-width:none; -ms-overflow-style:none;
}
.apps-shelf .apps-cards-grid::-webkit-scrollbar{ display:none; }
.apps-shelf .apps-card{ flex:0 0 clamp(300px, 32%, 384px); scroll-snap-align:start; }
/* 端フェード（スクロール可能側だけ表示） */
.apps-shelf::before, .apps-shelf::after{
  content:""; position:absolute; top:0; bottom:8px; width:56px; z-index:3;
  pointer-events:none; opacity:0; transition:opacity .25s;
}
.apps-shelf::before{ left:0; background:linear-gradient(90deg,#fff,rgba(255,255,255,0)); }
.apps-shelf::after{ right:0; background:linear-gradient(270deg,#fff,rgba(255,255,255,0)); }
.apps-shelf.can-left::before{ opacity:1; }
.apps-shelf.can-right::after{ opacity:1; }
/* 矢印ボタン */
.apps-shelf-arrow{
  appearance:none;
  -webkit-appearance:none;
  position:absolute; top:50%; transform:translateY(-50%); z-index:4;
  width:48px !important; height:48px !important;
  min-width:48px !important; min-height:48px !important;
  max-width:48px !important; max-height:48px !important;
  aspect-ratio:1 / 1;
  padding:0 !important; margin:0;
  border-radius:50% !important; border:1px solid rgba(26,109,255,.35);
  background:#fff; color:#1a6dff; font-size:0; line-height:0; cursor:pointer;
  display:flex !important; align-items:center; justify-content:center;
  box-sizing:border-box;
  box-shadow:0 10px 26px -10px rgba(11,54,120,.4);
  transition:background .2s, color .2s, opacity .2s;
}
.apps-shelf-arrow::before{
  content:"";
  display:block;
  width:10px;
  height:10px;
  border-top:2px solid currentColor;
  border-right:2px solid currentColor;
  transform-origin:center;
}
.apps-shelf-arrow--prev::before{ transform:translateX(3px) rotate(-135deg); }
.apps-shelf-arrow--next::before{ transform:translateX(-3px) rotate(45deg); }
/* クリック後の :focus/:active にテーマ(Astra)の紫色が残らないよう、色を明示固定する。
   矢印は currentColor で描画されるため、focus時の色残りが山型に乗るのを防ぐ。 */
.apps-shelf-arrow:focus,
.apps-shelf-arrow:active{
  background:#fff !important; color:#1a6dff !important;
  border-color:rgba(26,109,255,.35) !important;
  box-shadow:0 10px 26px -10px rgba(11,54,120,.4) !important;
  outline:none;
}
/* :hover は :focus より後に置き、ホバー中は青塗りが勝つようにする */
.apps-shelf-arrow:hover{ background:#1a6dff !important; color:#fff !important; border-color:#1a6dff !important; }
/* キーボード操作時のみフォーカスリングを表示（マウスクリックでは出さない） */
.apps-shelf-arrow:focus-visible{ outline:2px solid #1a6dff !important; outline-offset:2px; }
.apps-shelf-arrow[hidden]{ display:none; }

/* 矢印はカードに重ねず、棚の下段右に並べる（カード内テキストを隠さないため）。
   矢印ぶんの余白を棚下に確保し、端フェードはカード領域だけに掛ける。 */
.apps-shelf{ padding-bottom:64px; margin-bottom:24px; }
.apps-shelf-arrow{ top:auto; bottom:0; transform:none; }
.apps-shelf-arrow--prev{ left:auto; right:60px; }
.apps-shelf-arrow--next{ right:0; }
.apps-shelf::before, .apps-shelf::after{ bottom:72px; }

/* 下段左：スクロールできることを示すヒント（右の矢印と対になるアフォーダンス）。
   まだ右に送れるとき(.can-right)だけ出し、一度スクロールしたら(.swiped)フェードで消す。 */
.apps-hint-pc{ display:none; }
.apps-hint-sp{ display:inline; }
@media (min-width:769px){
  .apps-hint-pc{ display:inline; }
  .apps-hint-sp{ display:none; }
  .apps-shelf.can-right .apps-swipe-hint{
    display:inline-flex; align-items:center; gap:7px;
    position:absolute; left:0; bottom:8px; z-index:5;
    padding:8px 14px; border-radius:100px;
    background:rgba(11,22,40,.82); color:#fff;
    font-family:"Noto Sans JP",sans-serif; font-weight:700; font-size:12px; letter-spacing:.02em;
    box-shadow:0 8px 20px -8px rgba(11,22,40,.5);
    pointer-events:none; white-space:nowrap;
    animation:appsHintFloat 1.8s ease-in-out infinite;
    transition:opacity .45s ease, transform .45s ease;
  }
  .apps-shelf.can-right .apps-swipe-hint-arrow{
    display:inline-flex; font-size:15px; line-height:1;
    animation:appsHintArrow 1.8s ease-in-out infinite;
  }
  .apps-shelf.swiped .apps-swipe-hint{ animation:none; opacity:0; transform:translateY(8px); }
}

@media (max-width:768px){
  .apps-cat-title{ font-size:20px; }
  .apps-shelf-arrow{ display:none !important; }
  .apps-shelf .apps-card{ flex-basis:82%; }
  /* SPは矢印非表示（ドット＋スワイプヒント）なので下余白を戻す */
  .apps-shelf{ padding-bottom:0; margin-bottom:56px; }
  .apps-shelf::before, .apps-shelf::after{ bottom:8px; }
}

/* ==== block 13 ==== */
/* APPS：squircleアイコン型ヘッダー（アプリらしさ強化） */
.apps-card-head{
  display:flex; align-items:center; gap:18px;
  padding:18px 24px 12px;
  background:linear-gradient(180deg,#f5f9ff 0%, #ffffff 100%);
  border-bottom:1px solid rgba(26,109,255,0.08);
}
.apps-card-icon{
  flex:0 0 auto; width:96px; height:96px; border-radius:24px;
  background:#ffffff; padding:6px;
  border:1px solid rgba(26,109,255,0.18);
  box-shadow:0 12px 24px -10px rgba(26,80,180,0.38), 0 2px 6px rgba(11,22,40,0.06);
  overflow:hidden; display:flex; align-items:center; justify-content:center;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.apps-card-icon img{ width:100%; height:100%; object-fit:cover; border-radius:18px; display:block; }
.apps-card-headinfo{ min-width:0; }
.apps-card-cat{
  display:flex; align-items:center; gap:10px; margin:0 0 8px;
  font-family:"Poppins",sans-serif; font-weight:800; font-size:11px; letter-spacing:.14em;
  color:#1a6dff; text-transform:uppercase;
}
.apps-card-badge{
  font-family:"Poppins",sans-serif; font-weight:800; font-size:10px; letter-spacing:.08em;
  color:#fff; background:#0b1628; padding:3px 10px; border-radius:100px; text-transform:none;
}
.apps-card-head .apps-card-title{ margin:0; font-size:17px; line-height:1.45; color:#0b1628; }
.apps-card-text{ padding:16px 24px 20px; gap:11px; }
@media (max-width:768px){
  .apps-card-icon{ width:84px; height:84px; border-radius:20px; }
}

/* ==== block 14 ==== */
/* 標準機能：atr 横並び構成（統合版・単一ソース） */
#lp-function .atr{ display:flex; flex-direction:row; align-items:center; justify-content:center; gap:20px; width:100%; max-width:none; margin:40px auto 0; }
#lp-function .atr-left{ flex:0 0 auto; display:flex; flex-direction:column; justify-content:center; gap:60px; }
#lp-function .atr-role-row{ display:flex; align-items:center; gap:12px; }
#lp-function .atr-admin{ flex:0 0 auto; display:flex; flex-direction:column; align-items:center; gap:12px; background:#f4f8ff; border:1px solid rgba(26,109,255,.16); border-radius:16px; padding:18px 16px; }
#lp-function .atr-learner{ flex:0 0 auto; display:flex; flex-direction:column; align-items:center; gap:12px; background:#f4f8ff; border:1px solid rgba(26,109,255,0.16); border-radius:16px; padding:18px 16px; }
#lp-function .atr-learner .atr-role-name{ flex-basis:100%; text-align:center; }
#lp-function .atr-role-name{ font-size:16px; font-weight:800; color:#0b1628; }
#lp-function .atr-person{ display:inline-flex; }
#lp-function .atr-person img{ display:block; height:auto; }
#lp-function .atr-admin .atr-person img{ width:112px; }
#lp-function .atr-persona .atr-person img{ width:92px; }
#lp-function .atr-arrows{ flex:0 0 auto; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:16px; }
/* 矢印＝縦書きテキストのピル（文字は絶対にクリップしない）＋三角ヘッドを別要素で */
#lp-function .atr-arrow{ position:relative; display:inline-flex; align-items:center; justify-content:center; writing-mode:vertical-rl; text-orientation:upright; font-weight:800; font-size:14px; letter-spacing:.12em; color:#fff; padding:16px 11px; border-radius:8px; }
#lp-function .atr-arrow--in{ background:#1a6dff; }
#lp-function .atr-arrow--in::after{ content:""; position:absolute; right:-14px; top:50%; transform:translateY(-50%); width:0; height:0; border-top:15px solid transparent; border-bottom:15px solid transparent; border-left:15px solid #1a6dff; }
#lp-function .atr-arrow--back{ background:#8fb8ff; }
#lp-function .atr-arrow--back::before{ content:""; position:absolute; left:-14px; top:50%; transform:translateY(-50%); width:0; height:0; border-top:15px solid transparent; border-bottom:15px solid transparent; border-right:15px solid #8fb8ff; }
#lp-function .atr-arrow--out{ background:#00c4a7; }
#lp-function .atr-arrow--out::before{ content:""; position:absolute; left:-14px; top:50%; transform:translateY(-50%); width:0; height:0; border-top:15px solid transparent; border-bottom:15px solid transparent; border-right:15px solid #00c4a7; }
#lp-function .atr-platform{ flex:1 1 auto; background:#f4f8ff; border:1px solid rgba(26,109,255,.16); border-radius:20px; padding:22px; }
#lp-function .atr-banner{ display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; text-align:center; font-weight:800; font-size:20px; color:#fff; background:linear-gradient(135deg,#12244a,#0b1628); border-radius:999px; padding:12px; margin:0 40px 26px; box-shadow:0 10px 26px -8px rgba(11,22,40,.4); }
#lp-function .atr-banner-badge{ font-size:12px; font-weight:800; letter-spacing:.06em; color:#0b1628; background:#a8edcb; padding:5px 13px; border-radius:999px; box-shadow:0 2px 8px rgba(11,22,40,.25); }
#lp-function .atr-cats{ display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:start; }
#lp-function .atr-col{ display:flex; flex-direction:column; gap:26px; }
#lp-function .atr-cat{ background:#fff; border:1px solid #e8ecf5; border-radius:12px; padding:16px 14px 14px; position:relative; }
#lp-function .atr-cat-label{ position:absolute; top:-13px; left:14px; font-size:13px; font-weight:700; padding:4px 14px; border-radius:999px; }
#lp-function .atr-cat--admin .atr-cat-label{ background:#e6f1ff; color:#1a6dff; }
#lp-function .atr-cat--learner .atr-cat-label{ background:#e0f7f2; color:#009e86; }
#lp-function .atr-feats{ display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:8px; }
#lp-function .atr-feat{ background:#16294f; color:#fff; font-size:13px; font-weight:600; text-align:center; padding:10px 6px; border-radius:6px; line-height:1.35; }
/* === 管理者＝ブルー／受講者＝ティールで面ごとにはっきり色分け === */
/* カード：淡色の下地＋同系の枠＋上辺カラーバー */
#lp-function .atr-cat--admin{ background:#f5f9ff; border:1px solid #bcd6ff; border-top:3px solid #1a6dff; }
#lp-function .atr-cat--learner{ background:#f1fbf8; border:1px solid #a8e6da; border-top:3px solid #00c4a7; }
/* 機能チップも左右で色分け（一番目立つ要素で区別を最大化） */
#lp-function .atr-cat--admin .atr-feat{ background:#1a6dff; }
#lp-function .atr-cat--learner .atr-feat{ background:#009e86; }
/* 列見出し：どちらの機能かを明示 */
#lp-function .atr-col-head{ font-size:14px; font-weight:800; letter-spacing:.04em; text-align:center; color:#fff; padding:9px 12px; border-radius:10px; }
#lp-function .atr-col-head--admin{ background:#1a6dff; box-shadow:0 8px 20px -8px rgba(26,109,255,.5); }
#lp-function .atr-col-head--learner{ background:#009e86; box-shadow:0 8px 20px -8px rgba(0,158,134,.5); }
#lp-function .atr-persona{ background:#ffffff; border:1px solid rgba(11,22,40,0.10); border-radius:12px; padding:12px 16px; display:flex; flex-direction:column; align-items:center; gap:6px; }
#lp-function .atr-persona-name{ font-size:14px; font-weight:700; color:#0b1628; }
/* 標準機能：各バーにホバー体験を追加 */
#lp-function .atr-banner,
#lp-function .atr-arrow,
#lp-function .atr-col-head,
#lp-function .atr-feat{
  position:relative;
  transform:translateZ(0) scale(1);
  transform-origin:center;
  transition:transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease, filter .22s ease, background .22s ease;
  will-change:transform;
}
#lp-function .atr-feat{ cursor:default; box-shadow:0 8px 18px -14px rgba(11,22,40,.55); }
@media (hover:hover) and (pointer:fine){
  #lp-function .atr-banner:hover,
  #lp-function .atr-col-head:hover{
    transform:translateY(-3px) scale(1.035);
    filter:saturate(1.08) brightness(1.04);
  }
  #lp-function .atr-banner:hover{ box-shadow:0 18px 42px -14px rgba(11,22,40,.48), 0 0 0 1px rgba(255,255,255,.28) inset; }
  #lp-function .atr-col-head--admin:hover{ box-shadow:0 16px 34px -13px rgba(26,109,255,.72); }
  #lp-function .atr-col-head--learner:hover{ box-shadow:0 16px 34px -13px rgba(0,158,134,.68); }
  #lp-function .atr-arrow:hover{
    transform:translateY(-2px) scale(1.06);
    filter:saturate(1.08) brightness(1.05);
    box-shadow:0 14px 30px -14px rgba(11,54,120,.58);
  }
  #lp-function .atr-feat:hover{
    transform:translateY(-3px) scale(1.055);
    filter:saturate(1.08) brightness(1.06);
    z-index:2;
  }
  #lp-function .atr-cat--admin .atr-feat:hover{ box-shadow:0 14px 28px -13px rgba(26,109,255,.78), 0 0 0 1px rgba(255,255,255,.25) inset; }
  #lp-function .atr-cat--learner .atr-feat:hover{ box-shadow:0 14px 28px -13px rgba(0,158,134,.72), 0 0 0 1px rgba(255,255,255,.24) inset; }
}
@media (prefers-reduced-motion: reduce){
  #lp-function .atr-banner,
  #lp-function .atr-arrow,
  #lp-function .atr-col-head,
  #lp-function .atr-feat{ transition:none; }
  #lp-function .atr-banner:hover,
  #lp-function .atr-arrow:hover,
  #lp-function .atr-col-head:hover,
  #lp-function .atr-feat:hover{ transform:none; }
}
@media (max-width:900px){
  #lp-function .atr{ flex-direction:column; align-items:center; }
  #lp-function .atr-arrows{ flex-direction:row; }
  #lp-function .atr-arrow{ writing-mode:horizontal-tb; padding:9px 22px; }
  #lp-function .atr-arrow::before,#lp-function .atr-arrow::after{ display:none; }
  #lp-function .atr-platform{ width:100%; }
  #lp-function .atr-learner{ flex-direction:row; flex-wrap:wrap; justify-content:center; }
}
/* スマホ：標準機能の図を縦積みで収める（横あふれ防止＋視認性優先） */
@media (max-width:600px){
  #lp-function .atr{ gap:24px; }
  #lp-function .atr-left{ width:100%; gap:20px; }
  #lp-function .atr-role-row{ flex-direction:column; gap:10px; width:100%; }
  #lp-function .atr-admin,
  #lp-function .atr-learner{ width:100%; box-sizing:border-box; }
  #lp-function .atr-admin .atr-person img{ width:88px; }
  #lp-function .atr-persona .atr-person img{ width:72px; }
  #lp-function .atr-arrows{ flex-direction:row; width:100%; justify-content:center; flex-wrap:wrap; }
  #lp-function .atr-platform{ padding:16px; box-sizing:border-box; }
  #lp-function .atr-banner{ margin:0 0 20px; font-size:16px; }
  #lp-function .atr-cats{ grid-template-columns:1fr; gap:26px; }
}
/* === A案プロトタイプ：機能タグを「白×アイコン」立体タグに統一（カスタマイズ節とトンマナ合わせ） === */
#lp-function .atr-feat--v2{
  background:linear-gradient(180deg,#ffffff 0%,#f4f6fb 100%);
  color:#1c2540;
  border:1px solid rgba(11,22,40,0.10);
  border-bottom:2px solid rgba(11,22,40,0.13);
  border-radius:10px;
  box-shadow:0 2px 8px rgba(11,22,40,0.07),0 1px 2px rgba(11,22,40,0.04);
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 10px;
  text-align:left;
}
#lp-function .atr-feat-ico{
  flex:0 0 auto;
  width:28px; height:28px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:7px;
  font-size:18px; line-height:1;
}
/* 管理者＝ブルー／受講者＝ティールはアイコン色で表現（ベタ塗り・上辺線とも解除して線を削減） */
#lp-function .atr-cat--admin .atr-feat--v2{ background:linear-gradient(180deg,#ffffff 0%,#f4f6fb 100%); }
#lp-function .atr-cat--admin .atr-feat--v2 .atr-feat-ico{ background:#e6f1ff; color:#1a6dff; }
#lp-function .atr-cat--learner .atr-feat--v2{ background:linear-gradient(180deg,#ffffff 0%,#f4f6fb 100%); }
#lp-function .atr-cat--learner .atr-feat--v2 .atr-feat-ico{ background:#e0f7f2; color:#009e86; }

/* ===== スマホ専用：標準機能の図解を「人物→機能」直結の縦フローに（PC非干渉） ===== */
#lp-function .atr-mact{ display:none; }
@media (max-width:600px){
  /* 宙に浮いた左の人物レール＋矢印はスマホでは畳む */
  #lp-function .atr-left{ display:none !important; }
  /* 各機能列の先頭に、その機能を使う人物のミニヘッダーを直結 */
  #lp-function .atr-mact{
    display:flex; align-items:center; gap:12px;
    border-radius:14px; padding:10px 13px; margin-bottom:2px;
  }
  #lp-function .atr-mact--admin{ background:linear-gradient(180deg,#eef5ff 0%,#ffffff 100%); border:1px solid #bcd6ff; }
  #lp-function .atr-mact--learner{ background:linear-gradient(180deg,#e9faf5 0%,#ffffff 100%); border:1px solid #a8e6da; }
  #lp-function .atr-mact-av{ flex:0 0 auto; display:inline-flex; }
  #lp-function .atr-mact-av img{ display:block; width:52px; height:auto; }
  #lp-function .atr-mact-txt{ display:flex; flex-direction:column; align-items:flex-start; gap:5px; min-width:0; }
  #lp-function .atr-mact-role{ font-size:17px; font-weight:800; color:#0b1628; line-height:1.15; }
  #lp-function .atr-mact-role small{ display:block; font-size:11px; font-weight:700; color:#4a5570; margin-top:2px; letter-spacing:.02em; }
  #lp-function .atr-mact-flow{ display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:800; letter-spacing:.03em; color:#fff; padding:4px 11px; border-radius:999px; }
  #lp-function .atr-mact-flow::before{ content:"→"; font-weight:900; font-size:12px; }
  #lp-function .atr-mact--admin .atr-mact-flow{ background:#1a6dff; }
  #lp-function .atr-mact--learner .atr-mact-flow{ background:#009e86; }
  /* 列間の余白を適正化 */
  #lp-function .atr-cats{ gap:32px; }
}

/* ==== block 15 ==== */
/* 標準機能：機能カテゴリを1グループに集約（役割バッジ＋色分け） */
#lp-function .vl-func-grid{ width:100%; max-width:none; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
#lp-function .vl-func-grid .vl-cat-card{ position:relative; overflow:hidden; }
#lp-function .vl-func-grid .vl-cat-card::before{ content:""; position:absolute; top:0; left:0; right:0; height:3px; }
#lp-function .vl-fcat--admin::before{ background:#1a6dff; }
#lp-function .vl-fcat--learner::before{ background:#00c4a7; }
#lp-function .vl-fcat-role{ display:inline-block; align-self:flex-start; font-size:10px; font-weight:800;
  letter-spacing:.06em; padding:3px 11px; border-radius:999px; margin-bottom:10px; }
#lp-function .vl-fcat-role--admin{ background:rgba(26,109,255,0.12); color:#1a6dff; }
#lp-function .vl-fcat-role--learner{ background:rgba(0,196,167,0.16); color:#009e86; }
#lp-function .vl-fcat--admin .vl-chip{ background:var(--vl-navy); }
#lp-function .vl-fcat--learner .vl-chip{ background:var(--vl-teal); }
@media (max-width:1024px){ #lp-function .vl-func-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ #lp-function .vl-func-grid{ grid-template-columns:1fr; } }

/* ==== block 16 ==== */
/* 標準機能一覧：LPトンマナに統一（左寄せ＋ブランド青/ティール＋タブ統一） */
#lp-function{
  --vl-primary:#1a6dff; --vl-primary-hover:#0053d4; --vl-secondary:#1a6dff;
  --vl-teal:#00c4a7; --vl-teal-dark:#009e86;
  --vl-navy:#0b1628; --vl-text:#0b1628; --vl-text-sub:#4a5570;
  --vl-font:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
}
/* ヘッダー左寄せ */
#lp-function .vl-header{ text-align:left; }
#lp-function .vl-lead{ margin:0; }
/* 眉ラベル → 他セクションの .label（淡い青アウトラインチップ）にトンマナ統一 */
#lp-function .vl-eyebrow{
  color:var(--blue); background:rgba(26,109,255,0.10);
  border:1px solid rgba(26,109,255,0.22);
  font-weight:800; font-size:13px; letter-spacing:.1em;
  padding:6px 15px; border-radius:100px; box-shadow:none;
}
/* 上段バナーのグラデもブランド青に */
#lp-function .vl-topbar{ background:linear-gradient(120deg,#0b1e52 0%, #1a6dff 55%, #0053d4 100%); }

/* ==== block 17 ==== */
/* Use Case：課題・活用イメージを同一枠にまとめる */
#usecases .uc-rationale-box{ background:#f5f7fa; border:1px solid rgba(11,22,40,0.07); border-radius:10px; padding:14px 16px; }
#usecases .uc-rationale-item + .uc-rationale-item{ margin-top:12px; padding-top:12px; border-top:1px solid rgba(11,22,40,0.08); }
#usecases .uc-ri-label{ display:block; font-size:10px; font-weight:700; letter-spacing:.06em; color:#7d89a3; margin-bottom:4px; }
#usecases .uc-rationale-box p{ margin:0; font-size:12.5px; line-height:1.75; color:var(--text-secondary); }

/* ==== block 18 ==== */
/* Use Case：成果を先出し（title→変化→根拠[課題・活用]）の構成調整 */
#usecases .uc-rationale{ display:flex; flex-direction:column; gap:8px; }
#usecases .uc-rationale-label{ margin:4px 0 0; font-size:11px; font-weight:700; letter-spacing:.05em; color:var(--text-muted); }
#usecases .uc-rationale .uc-block{ padding:10px 13px; }
#usecases .uc-rationale .uc-block p{ font-size:12.5px; }

/* ==== block 19 ==== */
/* Use Case：自分ごと化→成果の優先順に整える（タイトル拡大/課題ニュートラル/活用控えめ/変化を主役化） */
#usecases .uc-title{ font-size:19px; line-height:1.45; }
/* 課題：ニュートラル（ネガ先行を解消） */
#usecases .uc-block--problem{ background:#f4f6f9; border-left-color:#9aa4b2; }
#usecases .uc-block--problem .uc-block-label{ color:#7d89a3; }
/* 活用イメージ：淡い青グレーで控えめに */
#usecases .uc-block--image{ background:#f2f5fa; border-left-color:#aeb9d2; }
#usecases .uc-block--image .uc-block-label{ color:#8791a6; }
/* 期待できる変化：カードの視覚的ゴールとして主役化 */
#usecases .uc-block--result{ background:linear-gradient(135deg,#e2f7ee 0%, #cdf2e0 100%); border-left-width:5px; box-shadow:0 8px 22px -10px rgba(0,196,167,0.45); padding:15px 44px 15px 16px; }
#usecases .uc-block--result .uc-block-label{ color:#007a60; font-size:12px; }
#usecases .uc-block--result p{ color:#0b3b30; font-weight:600; }

/* ==== block 20 ==== */
/* Use Case：シーン固有アイコン＋キーワードでヘッダーを差別化 */
#usecases .uc-head{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
#usecases .uc-icon{ flex:0 0 auto; width:44px; height:44px; border-radius:11px;
  background:rgba(26,109,255,0.10); display:flex; align-items:center; justify-content:center; }
#usecases .uc-icon svg{ width:24px; height:24px; color:var(--blue); }
#usecases .uc-head-meta{ display:flex; flex-direction:column; gap:4px; min-width:0; }
#usecases .uc-head .uc-num{ margin:0; }
#usecases .uc-kw{ align-self:flex-start; font-size:12px; font-weight:700; color:var(--navy);
  background:rgba(11,22,40,0.06); padding:2px 11px; border-radius:100px; }

/* ==== block 21 ==== */
/* Use Case：期待できる変化を明るく強調＋✓バッジ（ポジティブな締め） */
#usecases .uc-block--result{
  position:relative;
  background:linear-gradient(135deg,#e8faf2 0%, #d2f4e5 100%);
  border-left-width:4px;
  padding-right:44px;
}
#usecases .uc-block--result .uc-block-label{ color:#00806a; font-size:11px; }
#usecases .uc-block--result p{ color:#123a30; }
#usecases .uc-block--result::after{
  content:"✓"; position:absolute; top:12px; right:12px;
  width:22px; height:22px; border-radius:50%;
  background:var(--teal); color:#fff; font-size:13px; font-weight:800;
  display:flex; align-items:center; justify-content:center; line-height:1;
  box-shadow:0 4px 10px -3px rgba(0,196,167,.6);
}

/* ==== block 22 ==== */
/* Use Case：イラストは1枚（イントロ2カラム）＋カードはテキスト特化 */
#usecases .uc-intro{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,0.82fr);
  gap: clamp(32px,5vw,64px);
  align-items:center;
}
#usecases .uc-intro-text{ min-width:0; }
#usecases .uc-intro-text .section-lead{ margin-bottom:0; }
#usecases .uc-intro-visual{
  border-radius:20px; overflow:hidden;
  border:1px solid rgba(26,109,255,.14);
  box-shadow:0 24px 60px -20px rgba(11,54,120,.28);
}
#usecases .uc-intro-visual img{ width:100%; height:auto; display:block; }
@media (max-width:860px){
  #usecases .uc-intro{ grid-template-columns:1fr; gap:28px; }
}
/* カード4枚：2列×2段 */
#usecases .uc-grid{ grid-template-columns:repeat(2,1fr); }
@media (max-width:768px){ #usecases .uc-grid{ grid-template-columns:1fr; } }

/* ==== block 23 ==== */
/* 導入企業の声：Elementor埋め込み時もカード内余白が崩れないよう、#voice配下で明示 */
#voice,
#voice *{ box-sizing:border-box; }
/* 2枚（声＋画像）の中身のまま、外枠を1枚の横長カードに見せる：
   枠線・影・角丸は voice-grid に付与し、中の2枚は枠を外して仕切り線で区切る */
#voice .voice-grid{
  display:grid !important;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
  gap:0 !important;
  margin:48px 0 0 !important;
  padding:0 !important;
  align-items:stretch;
  background:#fff;
  border:1px solid var(--border-gray);
  border-radius:var(--radius-lg);
  box-shadow:0 18px 44px -34px rgba(11,22,40,0.35);
  overflow:hidden;
}
#voice .voice-grid > *{ min-width:0; }
#voice .voice-card{
  width:100%;
  min-height:100%;
  padding:clamp(22px, 2.6vw, 32px) !important;
  display:flex !important;
  flex-direction:column !important;
  gap:18px !important;
  overflow:hidden;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}
/* 中央の仕切り線（左＝声カードの右辺） */
#voice .voice-card:first-child{ border-right:1px solid var(--border-gray) !important; }
/* 1枚カード化したので、中ペインが個別にホバーで浮かないよう無効化 */
#voice .voice-card:hover{ transform:none !important; box-shadow:none !important; }
#voice .voice-card > *{ margin-top:0 !important; margin-bottom:0 !important; }
#voice .voice-hero{
  width:100%;
  margin:0 !important;
  padding:22px 24px !important;
  display:flex !important;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
  background:#d9e8ff;
  border:1px solid rgba(26,109,255,0.14);
  border-radius:16px;
}
#voice .voice-hero-label{
  flex:0 0 100%;
  font-size:14px;
  font-weight:700;
  color:#0053d4;
  line-height:1.35;
}
#voice .voice-hero-num{
  font-family:"Poppins",sans-serif;
  font-weight:800;
  font-size:clamp(50px, 5vw, 64px);
  line-height:.92;
  color:#0053d4;
}
#voice .voice-hero-num i{ font-size:.48em; font-style:normal; margin-left:2px; }
#voice .voice-hero-suffix{ font-size:18px; font-weight:700; color:var(--navy); line-height:1.2; }
#voice .voice-outcomes{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  display:flex !important;
  flex-direction:column;
  gap:9px;
}
#voice .voice-outcomes li{
  position:relative;
  margin:0 !important;
  padding:0 0 0 28px !important;
  list-style:none !important;
  font-size:13.5px;
  font-weight:700;
  color:#20335a;
  line-height:1.55;
}
#voice .voice-outcomes li::marker{ content:""; }
#voice .voice-outcomes li::before{
  content:"\2713";
  position:absolute;
  left:0;
  top:.08em;
  width:18px;
  height:18px;
  border-radius:50%;
  background:rgba(26,109,255,0.15);
  color:#1a6dff;
  font-size:11px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
#voice .voice-quote{
  position:relative;
  margin:0 !important;
  padding:12px 0 0 !important;
  font-size:15.5px;
  line-height:1.9;
  color:var(--text-primary);
}
#voice .voice-quote::before{
  content:"\201C";
  position:absolute;
  top:-14px;
  left:-2px;
  font-family:Georgia,serif;
  font-size:50px;
  line-height:1;
  color:rgba(0,83,212,0.20);
}
#voice .voice-attr{
  display:flex !important;
  align-items:center;
  gap:12px;
  margin-top:auto !important;
  padding-top:16px !important;
  border-top:1px solid var(--border-gray);
}
#voice .voice-avatar{
  flex:0 0 auto;
  width:40px;
  height:40px;
  border-radius:12px;
  background:#eef4ff;
  border:1px solid rgba(26,109,255,0.20);
  color:var(--blue);
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}
#voice .voice-name{ font-size:14px; font-weight:700; color:var(--text-primary); margin:0 !important; line-height:1.45; }
#voice .voice-sub{ font-size:11px; color:var(--text-muted); margin:2px 0 0 !important; line-height:1.5; }
/* 右＝画像ペイン：枠いっぱいに敷き詰め（余白なし・角丸は外枠で処理） */
#voice .voice-card--image{ padding:0 !important; gap:0 !important; }
#voice .voice-card--image .voice-image{
  flex:1 1 auto;
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  display:block;
}
@media (max-width:768px){
  #voice .voice-grid{ grid-template-columns:1fr !important; margin-top:36px !important; }
  #voice .voice-card{ padding:22px !important; }
  #voice .voice-card--image{ padding:0 !important; }
  /* 縦積み時は仕切りを下辺に */
  #voice .voice-card:first-child{ border-right:0 !important; border-bottom:1px solid var(--border-gray) !important; }
  #voice .voice-hero{ padding:20px !important; border-radius:14px; }
}

/* ==== block 24 ==== */
@keyframes sceneIn { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-14px) rotate(3deg); } }
@keyframes floatD { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-10px) rotate(-4deg); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes growUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes flow { to { stroke-dashoffset: -240; } }
@keyframes checkIn { 0%,60% { opacity: 0; transform: scale(0.4); } 75% { opacity: 1; transform: scale(1.25); } 100% { opacity: 1; transform: scale(1); } }
@keyframes rowIn { from { opacity: 0.25; } to { opacity: 1; } }
@keyframes glowPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 0.9; } }
@keyframes donutDraw { to { stroke-dashoffset: var(--to); } }
@keyframes dotPulse { 0%,100% { r: 3; opacity: 1; } 50% { r: 5; opacity: 0.6; } }
#outcomes .outcomes-image-wrap{ overflow:visible; box-shadow:none; border-radius:0; }
#outcomes .dxhero{ position:relative; width:100%; max-width:760px; margin:0 auto; aspect-ratio:1/1; animation:sceneIn 1s cubic-bezier(.22,.9,.3,1) both; }
#outcomes .dxhero-stage{ width:760px; height:760px; transform-origin:top left; transform:scale(1); }

/* ==== block 25 ==== */
/* 実現できる成果：最後の一押しCTA */
#outcomes .outcomes-cta{ margin-top:64px; padding-top:44px; border-top:1px solid rgba(255,255,255,0.10); text-align:center; }
#outcomes .outcomes-cta-lead{ font-size:clamp(20px,2.6vw,30px); font-weight:700; color:#fff; line-height:1.5; margin:0 0 12px; }
#outcomes .outcomes-cta-lead em{ font-style:normal; color:#7db1ff; }
#outcomes .outcomes-cta-sub{ font-size:15px; color:rgba(255,255,255,0.66); line-height:1.8; margin:0 0 28px; }
#outcomes .outcomes-cta-actions{ display:flex; justify-content:center; flex-wrap:wrap; gap:16px; }

/* ==== block 26 ==== */
/* 実現できる成果：ベネフィット見出しを17pxに拡大（中間階層を作る） */
#outcomes .outcomes-item strong{ font-size:17px; }

/* ==== block 27 ==== */
/* 実現できる成果：絵文字→洗練SVGアイコン（暗背景・青タイル） */
#outcomes .outcomes-item-icon{
  flex-shrink:0; width:42px; height:42px; border-radius:11px; margin-top:0;
  background:rgba(26,109,255,0.16); border:1px solid rgba(120,180,255,0.18);
  display:flex; align-items:center; justify-content:center;
}
#outcomes .outcomes-item-icon svg{ width:22px; height:22px; color:#7db1ff; }

/* ==== block 28 ==== */
/* =========================================================
   ご利用の流れ：分岐型プロセス（共通ステップ → 2分岐 → 合流ゴール）
   モバイルファースト。PC(769px〜)でのみ分岐カードを横並びにし、SVGのY字で合流させる。
   ※過去に「見やすさ改善パッチ」「完全合流型」「縦読みレイアウト」を上書きで重ねた結果、
     同一セレクタが最大7回再定義され、打ち消し合う状態だったため1系統に統合した。
   ========================================================= */
.flowb{ max-width:600px; margin:0 auto; }

/* ---- 共通ステップ（01・02） ---- */
.flowb-common{ display:flex; flex-direction:column; align-items:center; justify-content:center; }
.flowb-cstep{
  display:flex; align-items:center; gap:10px; width:100%;
  background:var(--blue-pale); border:1px solid rgba(26,109,255,.18);
  border-radius:12px; padding:14px 22px;
}
.flowb-no{
  display:inline-flex; align-items:center; justify-content:center;
  width:30px; height:30px; border-radius:50%;
  background:var(--blue); color:#fff;
  font-family:'Poppins',sans-serif; font-weight:800; font-size:14px;
}
.flowb-ctext{ display:flex; flex-direction:column; gap:2px; }
.flowb-clabel{ font-size:15px; font-weight:700; color:var(--navy); }

/* ---- 番号の横に置くステップアイコン ---- */
/* 色は番号バッジと揃えて「番号＋アイコン」を1組に見せる（分岐ごとに色が変わる） */
.flowb-icon{ flex:0 0 auto; width:22px; height:22px; color:var(--blue); }
.flowb-icon svg{
  width:100%; height:100%;
  fill:none; stroke:currentColor; stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
}
.flowb-branch--simple .flowb-icon{ color:var(--teal); }
.flowb-branch--dev .flowb-icon{ color:var(--blue); }
/* 分岐内は上揃えなので、見出し行の高さに合わせる */
.flowb-step .flowb-icon{ align-self:flex-start; margin-top:6px; }
.flowb-cdesc{ font-size:12px; line-height:1.55; color:var(--text-muted); font-weight:500; }
.flowb-cline{ width:2px; height:18px; margin:6px auto; background:rgba(26,109,255,.35); }

/* ---- 分岐ラベル（上に接続線） ---- */
.flowb-fork{
  position:relative; text-align:center; margin:22px 0 20px; padding-top:22px;
  font-size:14px; font-weight:700; color:var(--text-secondary);
}
.flowb-fork strong{ color:var(--blue); }
.flowb-fork::before{
  content:""; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:2px; height:14px; background:rgba(26,109,255,.3);
}

/* ---- 2分岐カード ---- */
.flowb-branches{ display:grid; grid-template-columns:1fr; align-items:stretch; }
.flowb-branch{ background:#fff; border:1px solid var(--border-gray); border-radius:16px; padding:0 0 22px; }
.flowb-branch--simple{ border-top:4px solid var(--teal); }

/* 「開発あり」は推奨ルート。枠線・影・淡い地色で控えめに持ち上げる
   （「なし」は既定のまま据え置き、対比で自然に引き立たせる） */
.flowb-branch--dev{
  border-color:rgba(26,109,255,.34);
  border-top:4px solid var(--blue);
  background:linear-gradient(180deg,#f5f9ff 0%,#ffffff 46%);
  box-shadow:0 16px 36px -18px rgba(26,109,255,.45);
}
.flowb-branch-head{ padding:16px 20px 2px; font-size:16px; font-weight:800; color:var(--navy); }
.flowb-branch-sub{ padding:0 20px 12px; font-size:12px; font-weight:700; letter-spacing:.04em; }
.flowb-branch--simple .flowb-branch-sub{ color:var(--teal); }
.flowb-branch--dev .flowb-branch-sub{ color:var(--blue); }

/* 縦積みになるSPでのみ出す「または」区切り（PCは横並びのため非表示） */
.flowb-or{
  display:flex; align-items:center; text-align:center; gap:12px; margin:16px 2px;
  color:var(--text-muted); font-size:12px; font-weight:800; letter-spacing:.08em;
}
.flowb-or::before, .flowb-or::after{ content:""; flex:1; height:1px; background:var(--border-gray); }

/* ---- 各分岐内のステップ ---- */
.flowb-steps{ list-style:none; margin:0; padding:0 20px; }
.flowb-step{ position:relative; display:flex; gap:14px; padding:11px 0; }
.flowb-step:not(:last-child)::before{
  content:''; position:absolute; left:15px; top:40px; bottom:-3px; width:2px; background:var(--border-gray);
}
.flowb-sno{
  position:relative; z-index:1; flex:0 0 auto;
  width:32px; height:32px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-family:'Poppins',sans-serif; font-weight:800; font-size:13px; color:#fff;
}
.flowb-branch--simple .flowb-sno{ background:var(--teal); }
.flowb-branch--dev .flowb-sno{ background:var(--blue); }
.flowb-sbody{ padding-top:5px; }
.flowb-stitle{ margin:0; font-size:14.5px; font-weight:700; color:var(--navy); line-height:1.5; }
.flowb-snote{ margin:4px 0 0; font-size:12px; line-height:1.6; color:var(--text-muted); }

/* ---- 合流コネクタ（SP=縦線 / PC=SVGのY字） ---- */
.flowb-converge{ position:relative; width:100%; height:28px; margin:0 auto; line-height:0; }
.flowb-converge svg{ display:none; }
.flowb-converge::before{
  content:""; position:absolute; left:50%; top:0; bottom:0; width:2px;
  background:#c3cee0; transform:translateX(-50%);
}

/* ---- 合流ゴールカード ---- */
.flowb-goal{
  max-width:720px; margin:0 auto;
  display:flex; flex-direction:column; align-items:center; gap:18px;
  text-align:center;
  background:linear-gradient(135deg,var(--navy) 0%,#12213e 100%);
  color:#fff; border-radius:16px; padding:22px 26px;
  box-shadow:0 14px 34px rgba(11,22,40,.18);
}
/* flex-basis は縦積み時に「高さ」として効くため指定しない
   （旧 flex:1 1 300px が横並び前提のまま残り、高さ300pxの空白を生んでいた） */
.flowb-goal-main{ display:flex; align-items:center; justify-content:center; gap:16px; }
.flowb-goal-badge{
  flex:0 0 auto; width:46px; height:46px; border-radius:50%;
  background:var(--teal); color:#04231c;
  display:inline-flex; align-items:center; justify-content:center;
}
.flowb-goal-title{ margin:0; font-size:17px; font-weight:800; line-height:1.4; }
.flowb-goal-sub{ margin:5px 0 0; font-size:12.5px; line-height:1.6; color:rgba(255,255,255,.72); }
.flowb-goal-action{ flex:0 0 auto; display:flex; flex-direction:column; align-items:center; gap:8px; }
.flowb-goal-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:#fff; color:var(--blue); font-weight:800; font-size:15px;
  padding:14px 26px; border-radius:999px; text-decoration:none; white-space:nowrap;
  box-shadow:0 8px 20px rgba(0,0,0,.18); transition:.2s ease;
}
.flowb-goal-btn:hover{ background:var(--blue-pale); transform:translateY(-1px); }
.flowb-goal-btn svg{ flex:0 0 auto; }
/* テーマ(Astra)の a:hover/visited 色（紫）がボタン文字に乗るのを防ぐ */
.flowb-goal-btn, .flowb-goal-btn:link, .flowb-goal-btn:visited,
.flowb-goal-btn:hover, .flowb-goal-btn:focus, .flowb-goal-btn:active{ color:var(--blue) !important; }
.flowb-goal-note{ margin:0; font-size:11.5px; color:rgba(255,255,255,.62); }

/* ---- SP調整 ---- */
@media(max-width:768px){
  .flowb-goal{ padding:20px; gap:14px; }
  .flowb-goal-title{ font-size:15.5px; }
  .flowb-goal-main{ flex-direction:column; gap:10px; }
  /* 親を全幅にしないと子の width:100% が内容幅にしか伸びない */
  .flowb-goal-action{ width:100%; }
  .flowb-goal-btn{ width:100%; max-width:340px; }
}

/* ---- PC(769px〜)：分岐カードのみ横並び＋SVGで合流 ---- */
@media(min-width:769px){
  /* PCは全体をピラミッド型に：共通ステップ(狭) → 2列カード(中) → ゴール(最も広い)。
     各段を中央寄せし、下にいくほど幅を広げる。 */
  .flowb{ max-width:1160px; }
  .flowb-common{ max-width:680px; margin:0 auto; }   /* 頂点：最も狭い */
  .flowb-cstep{ max-width:680px; }
  .flowb-branches{ max-width:920px; margin:0 auto; grid-template-columns:1fr 1fr; gap:24px; }  /* 中段 */
  .flowb-converge{ max-width:920px; margin:0 auto; height:auto; }  /* コネクタは中段カードに合わせる */
  .flowb-converge svg{ display:block; }
  .flowb-converge::before{ display:none; }
  .flowb-goal{ max-width:1160px; }                   /* 底辺：最も広い（2列カードより大きい） */
  .flowb-or{ display:none; }
}

/* ==== block 29 ==== */
/* =========================================================
   Velmor LMS — 標準機能一覧セクション
   単体HTMLで動作 / 既存サイトのbody内に <section> ごと移植可能
   ========================================================= */
.lms-features-section {
  /* ---- Color tokens ---- */
  --vl-primary: #003BBA;          /* royal blue (CTA / emphasis) */
  --vl-primary-hover: #002E96;
  --vl-secondary: #0059E6;        /* eyebrow / small accents */
  --vl-pale-blue: #EEF3FF;
  --vl-teal: #0E8F84;             /* 受講者サイド */
  --vl-teal-dark: #0B7269;
  --vl-pale-teal: #E7F6F3;
  --vl-navy: #16294F;             /* chips */
  --vl-bg: #FFFFFF;
  --vl-bg-grey: #F9F9F9;
  --vl-text: #2C2C2C;
  --vl-text-sub: #5A6472;
  --vl-border: #E8ECF5;
  --vl-shadow-card: 0 2px 16px rgba(0, 59, 186, 0.08);
  --vl-shadow-card-hover: 0 8px 32px rgba(0, 59, 186, 0.16);
  --vl-radius-sm: 4px;
  --vl-radius-md: 8px;
  --vl-radius-lg: 16px;
  --vl-radius-xl: 24px;
  --vl-font: "Plus Jakarta Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;

  font-family: var(--vl-font);
  color: var(--vl-text);
  background: var(--vl-bg);
  padding: 96px 0;
  line-height: 1.8;
  box-sizing: border-box;
}
.lms-features-section *,
.lms-features-section *::before,
.lms-features-section *::after { box-sizing: border-box; }

.lms-features-section .vl-container {
  width: 100%;
  max-width: var(--cmax, 1440px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ---------- Section header ---------- */
.lms-features-section .vl-header {
  text-align: center;
  margin-bottom: 64px;
}
.lms-features-section .vl-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--vl-secondary);
  background: var(--vl-pale-blue);
  padding: 6px 16px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.lms-features-section .vl-title {
  font-size: clamp(27px, 4vw, 52px); /* 上下セクションの .section-title と統一 */
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 16px;
}
.lms-features-section .vl-lead {
  font-size: clamp(15px, 1.6vw, 17px); /* 上下セクションの .section-lead と統一 */
  line-height: 1.8;
  color: var(--vl-text-sub);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Diagram layout ---------- */
.lms-features-section .vl-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto repeat(4, auto); /* 見出し + 4行（左右カラムで行トラックを共有） */
  gap: 16px 40px;
  margin-bottom: 24px;
}
/* 左右カラムを subgrid にして、各行の高さを左右で完全一致させる */
.lms-features-section .vl-side {
  display: grid;
  grid-row: 1 / -1;
  grid-template-rows: subgrid;
}
.lms-features-section .vl-side--admin  { grid-column: 1; }
.lms-features-section .vl-side--learner { grid-column: 2; }
/* スタックのラッパーは解除し、各カードを直接サブグリッドの行に載せる */
.lms-features-section .vl-cat-stack { display: contents; }

/* Side column headers */
.lms-features-section .vl-side-head {
  text-align: center;
  margin-bottom: 0; /* 行間はグリッドの gap で統一 */
  min-height: 216px; /* 左右カラムの識別ブロック（人物＋見出し＋説明）の高さを揃える */
}
.lms-features-section .vl-side-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}
.lms-features-section .vl-side-icon {
  display: flex; align-items: flex-end; justify-content: center;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 12px 18px 0;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 59, 186, 0.07);
}
.lms-features-section .vl-side--admin .vl-side-icon { background: var(--vl-pale-blue); }
.lms-features-section .vl-side--learner .vl-side-icon { background: var(--vl-pale-teal); }
.lms-features-section .vl-side-icon img {
  width: auto;
  height: clamp(96px, 11vw, 116px);
  display: block;
}
.lms-features-section .vl-side-sub {
  font-size: 13px;
  color: var(--vl-text-sub);
  margin: 0;
  line-height: 1.7;
}

/* Category cards：ラッパーは解除し、各カードを直接（サブグリッド／flex）の子にする */
.lms-features-section .vl-cat-stack {
  display: contents;
}
.lms-features-section .vl-cat-card {
  background: #fff;
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius-lg);
  padding: 18px 20px 20px;
  box-shadow: var(--vl-shadow-card);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.lms-features-section .vl-cat-card:hover {
  box-shadow: var(--vl-shadow-card-hover);
}
.lms-features-section .vl-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--vl-radius-sm);
  margin-bottom: 12px;
}
.lms-features-section .vl-cat-label svg {
  width: 15px; height: 15px;
  stroke-width: 2;
  flex: none;
}
.lms-features-section .vl-cat-label--blue {
  background: var(--vl-pale-blue);
  color: var(--vl-primary);
}
.lms-features-section .vl-cat-label--teal {
  background: var(--vl-pale-teal);
  color: var(--vl-teal-dark);
}
.lms-features-section .vl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lms-features-section .vl-chip {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: var(--vl-navy);
  padding: 8px 13px;
  border-radius: 999px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  cursor: default;
  white-space: nowrap;
}
.lms-features-section .vl-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(22, 41, 79, 0.28);
}
.lms-features-section .vl-side--learner .vl-chip {
  background: var(--vl-teal);
}
.lms-features-section .vl-side--learner .vl-chip:hover {
  box-shadow: 0 6px 14px rgba(14, 143, 132, 0.32);
}

/* 見出し内の対象者注記（受講者（社員・顧客）） */
.lms-features-section .vl-side-role {
  font-size: 15px;
  font-weight: 700;
  color: var(--vl-text-sub);
}

/* ---------- 相互連携（管理者・担当者 ⇄ 受講者） ---------- */
.lms-features-section .vl-relation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 30px;
}
.lms-features-section .vl-relation-role {
  flex: none;
  font-weight: 800;
  font-size: 15px;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.lms-features-section .vl-relation-role--admin   { color: var(--vl-primary);   background: var(--vl-pale-blue); }
.lms-features-section .vl-relation-role--learner { color: var(--vl-teal-dark); background: var(--vl-pale-teal); }
.lms-features-section .vl-relation-flow {
  flex: 1;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lms-features-section .vl-relation-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lms-features-section .vl-relation-arrow--r { color: var(--vl-primary); }
.lms-features-section .vl-relation-arrow--l { color: var(--vl-teal-dark); }
.lms-features-section .vl-relation-label {
  flex: none;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}
.lms-features-section .vl-rel-svg {
  flex: 1;
  height: 8px;
  min-width: 36px;
}
.lms-features-section .vl-rel-svg line {
  stroke: currentColor; stroke-width: 2; stroke-dasharray: 5 4;
}
.lms-features-section .vl-rel-svg path {
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- 上段バナー（Velmor LMS：機能全体の土台） ---------- */
.lms-features-section .vl-topbar {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(120deg, #072A73 0%, var(--vl-primary) 55%, #0653D6 100%);
  border-radius: var(--vl-radius-xl);
  padding: 24px 32px;
  color: #fff;
  box-shadow: 0 16px 48px rgba(0, 59, 186, 0.28);
  margin-bottom: 32px;
}
.lms-features-section .vl-topbar-monitor {
  flex: none;
  width: 92px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 12px 12px 14px;
}
.lms-features-section .vl-hub-monitor-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}
.lms-features-section .vl-hub-monitor-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.lms-features-section .vl-hub-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lms-features-section .vl-hub-rows i {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.30);
}
.lms-features-section .vl-hub-rows i:nth-child(1) { width: 88%; }
.lms-features-section .vl-hub-rows i:nth-child(2) { width: 64%; background: rgba(255,255,255,0.55); }
.lms-features-section .vl-hub-rows i:nth-child(3) { width: 76%; }
.lms-features-section .vl-topbar-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0 0 4px;
  line-height: 1.2;
}
.lms-features-section .vl-topbar-copy {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

/* ---------- Reveal animation ---------- */
.lms-features-section .vl-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--vl-delay, 0ms);
}
.lms-features-section .vl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .lms-features-section .vl-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .lms-features-section { padding: 72px 0; }
  .lms-features-section .vl-diagram { gap: 16px 24px; }
}
@media (max-width: 680px) {
  .lms-features-section { padding: 56px 0; }
  .lms-features-section .vl-container { padding: 0 20px; }
  .lms-features-section .vl-header { margin-bottom: 40px; }
  /* 1カラム化：サブグリッドを解除して縦積み（管理者→受講者） */
  .lms-features-section .vl-diagram {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .lms-features-section .vl-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .lms-features-section .vl-side-head { min-height: 0; } /* 縦積み時は高さ揃えを解除 */
  .lms-features-section .vl-topbar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 22px 20px;
  }
  .lms-features-section .vl-relation { flex-direction: column; gap: 12px; }
  .lms-features-section .vl-relation-flow { max-width: none; width: 100%; }
}

/* ==== block 30 ==== */
/* お役立ちコラム セクション */
#column .col-feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:32px; }
#column .col-feature-card{ display:flex; flex-direction:column; overflow:hidden; background:#fff; border:1px solid var(--border-gray); border-radius:16px; text-decoration:none; transition:.2s ease; }
#column .col-feature-card:hover{ transform:translateY(-4px); box-shadow:0 14px 34px rgba(11,22,40,.1); border-color:rgba(26,109,255,.28); }
#column .col-feature-media{ position:relative; aspect-ratio:16/9; overflow:hidden; background:var(--bg-light); }
#column .col-feature-media img{ width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
#column .col-feature-card:hover .col-feature-media img{ transform:scale(1.025); }
#column .col-feature-cat{ position:absolute; left:14px; bottom:14px; padding:6px 11px; border-radius:999px; background:rgba(255,255,255,.94); color:var(--navy); font-size:12px; font-weight:800; box-shadow:0 3px 12px rgba(11,22,40,.1); }
#column .col-feature-body{ display:flex; flex:1; flex-direction:column; padding:20px; }
#column .col-feature-title{ margin:0; color:var(--navy); font-size:18px; font-weight:800; line-height:1.55; }
#column .col-feature-desc{ margin:10px 0 0; color:var(--text-secondary); font-size:13px; line-height:1.75; }
#column .col-feature-more{ display:inline-flex; align-items:center; gap:7px; margin-top:auto; padding-top:18px; color:var(--blue); font-size:13px; font-weight:800; }
#column .col-feature-more svg{ width:15px; height:15px; transition:transform .2s ease; }
#column .col-feature-card:hover .col-feature-more svg{ transform:translateX(3px); }
#column .col-topics{ margin-top:38px; padding-top:30px; border-top:1px solid var(--border-gray); }
#column .col-topics-title{ margin:0 0 16px; color:var(--navy); font-size:17px; font-weight:800; }
#column .col-topic-list{ display:flex; flex-wrap:wrap; gap:10px; }
#column .col-topic{ display:inline-flex; align-items:center; gap:8px; padding:10px 15px; border:1px solid var(--border-gray); border-radius:999px; background:#fff; color:var(--navy); font-size:13px; font-weight:700; text-decoration:none; transition:.2s ease; }
#column .col-topic::after{ content:'\2192'; color:var(--blue); font-size:14px; }
#column .col-topic:hover{ border-color:rgba(26,109,255,.35); color:var(--blue); box-shadow:0 6px 18px rgba(11,22,40,.06); }
#column .col-more-wrap{ text-align:center; margin-top:30px; }
#column .col-more{ display:inline-flex; align-items:center; gap:9px; background:var(--navy); color:#fff; font-size:15px; font-weight:700; padding:14px 32px; border-radius:999px; text-decoration:none; transition:.2s ease; }
#column .col-more:hover{ background:var(--blue); transform:translateY(-1px); }
#column .col-more svg{ width:16px; height:16px; }
/* テーマ(Astra等)の a:hover/visited 色ブリード防止 */
#column .col-feature-card, #column .col-feature-card:link, #column .col-feature-card:visited, #column .col-feature-card:hover, #column .col-feature-card:focus, #column .col-feature-card:active{ color:inherit !important; }
#column .col-topic, #column .col-topic:link, #column .col-topic:visited{ color:var(--navy) !important; }
#column .col-topic:hover, #column .col-topic:focus, #column .col-topic:active{ color:var(--blue) !important; }
#column .col-more, #column .col-more:link, #column .col-more:visited, #column .col-more:hover, #column .col-more:focus, #column .col-more:active{ color:#fff !important; }
@media(max-width:860px){ #column .col-feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){
  #column .col-feature-grid{ grid-template-columns:1fr; gap:16px; margin-top:24px; }
  #column .col-feature-body{ padding:18px; }
  #column .col-feature-title{ font-size:17px; }
  #column .col-topics{ margin-top:30px; padding-top:24px; }
  #column .col-topic-list{ gap:8px; }
  #column .col-topic{ padding:9px 13px; font-size:12px; }
}
/* 公開記事が1〜2本のときにカードが間延びしないよう、列数と最大幅を本数に合わせる。
   3本のときは既定（repeat(3,1fr)）のまま。上のメディアクエリより後に置いて優先させる */
#column .col-feature-grid--1{ grid-template-columns:1fr; max-width:400px; margin-left:auto; margin-right:auto; }
#column .col-feature-grid--2{ grid-template-columns:repeat(2,1fr); max-width:800px; margin-left:auto; margin-right:auto; }
@media(max-width:560px){
  #column .col-feature-grid--2{ grid-template-columns:1fr; }
}

/* ==== block 31 ==== */
  /* 詳細度を html body で底上げし、Astra の customizer インラインCSS(!important) に勝たせる。
     display は Astra のJS(表示/非表示)が制御するので絶対に上書きしない。 */
  html body #ast-scroll-top {
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center;
    border: none !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #1a6dff 0%, #0053d4 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 32px rgba(26,109,255,0.35) !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  html body #ast-scroll-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #3d8bff 0%, #1a6dff 100%) !important;
    box-shadow: 0 14px 40px rgba(26,109,255,0.45) !important;
  }
  /* アイコン（AstraはインラインSVG or アイコンフォント::before のどちらか） */
  html body #ast-scroll-top svg,
  html body #ast-scroll-top .ahfb-svg-iconset,
  html body #ast-scroll-top .ast-icon svg {
    width: 20px !important;
    height: 20px !important;
    fill: #ffffff !important;
    color: #ffffff !important;
    vertical-align: middle;
  }
  html body #ast-scroll-top::before {
    color: #ffffff !important;
    font-size: 20px !important;
  }
  /* モバイルの固定CTAバー(.sp-fixed-cta)と重ならないよう、その分だけ持ち上げる */
  @media (max-width: 1024px) {
    html body #ast-scroll-top {
      bottom: 84px !important;
    }
  }
