@charset "UTF-8";
/*====================================================================================
  LP OMO v2 – OMO・オムニチャネル構築 専用スタイル
  ・lp-mall-v2.css のアーキテクチャを継承（BEM・カスタムプロパティ・命名規則統一）
  ・OMO固有セクション（チャンネル統合図・比較表・差別化ブロック）を追加
  ・文字サイズ：`--fz-*` トークン（767px 以下は見出しトークンのみ一段コンパクト）
  ・rem基準 = html font-size: 62.5% → 1rem = 10px
====================================================================================*/


/* =====================================================
   0. LP 内のみリセット（グローバル * リセットはヘッダー・CF7・FA を壊すため禁止）
   ===================================================== */
.wrap.lp-omo,
.wrap.lp-omo *,
.wrap.lp-omo *::before,
.wrap.lp-omo *::after {
  box-sizing: border-box;
}
.wrap.lp-omo ul,
.wrap.lp-omo ol {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.wrap.lp-omo .lp-hero a,
.wrap.lp-omo .lp-btn,
.wrap.lp-omo .lp-mid-cta a,
.wrap.lp-omo .lp-cta a,
.wrap.lp-omo .lp-fixed-cta a,
.wrap.lp-omo .lp-back-to-top {
  text-decoration: none;
}
.wrap.lp-omo .lp-hero a:hover,
.wrap.lp-omo .lp-btn:hover,
.wrap.lp-omo .lp-mid-cta a:hover,
.wrap.lp-omo .lp-cta a:hover,
.wrap.lp-omo .lp-fixed-cta a:hover {
  opacity: .85;
}
.wrap.lp-omo .lp-hero img,
.wrap.lp-omo .lp-section img,
.wrap.lp-omo .lp-pain img,
.wrap.lp-omo .lp-case img,
.wrap.lp-omo .lp-mid-cta img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* =====================================================
   1. CSS カスタムプロパティ（デザイントークン）
   ===================================================== */
:root {
  --font-base: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
               "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;

  --fz-caption: 1.2rem;
  --fz-sm:      1.4rem;
  --fz-body:    1.6rem;
  --fz-h4:      2.0rem;
  --fz-h3:      2.4rem;
  --fz-h2:      3.0rem;
  --fz-h1:      3.4rem;
  --fz-hero:    4.2rem;
  --lh-body:    1.8;
  --lh-tight:   1.5;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px  8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);

  --transition:  .2s ease-in-out;

  --container-max:   1240px;
  --container-narrow: 820px;
  --section-pt:      80px;
  --section-pb:      80px;

  --color-primary:        #005bac;
  --color-primary-dark:   #056249;
  --color-primary-light:  #e8f1fb;
  --color-accent:         #f0a500;
  --color-accent-dark:    #c98400;

  /* メインCTA（オレンジ〜赤グラデ） */
  --gradient-cta: linear-gradient(270deg, #fa6e30 0%, #ef380e 100%);
  --color-cta-end: #ef380e;
  --color-text:           #333333;
  --color-text-muted:     #666666;
  --color-text-light:     #888888;
  --color-bg:             #ffffff;
  --color-bg-gray:        #f7f8fa;
  --color-bg-dark:        #0d1f3c;
  --color-border:         #dde3ec;
  --color-success:        #1a9e5c;
  --color-danger:         #d63333;

  /* OMOチャネル強調（ティール） */
  --color-omo:        #00897b;
  --color-omo-light:  #e0f2f1;
  --color-border-strong: #b8c5d8;

  --header-h: 64px;
}
@media (max-width: 767px) {
  :root {
    --section-pt: 64px;
    --section-pb: 64px;
    --header-h: 56px;
    /* SP: 見出し系のみ一段階下げ（本文 1.6rem / キャプションは据え置き） */
    --fz-hero: 3.4rem;
    --fz-h1:   3rem;
    --fz-h2:   2.4rem;
    --fz-h3:   2rem;
    --fz-h4:   1.6rem;
  }
}

body {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* =====================================================
   2. ユーティリティ
   ===================================================== */
.u-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.u-ta-c { text-align: center; }
.u-mt-auto { margin-top: auto; }

.u-sp-only { display: block; }
.u-pc-only { display: none; }
@media (min-width: 768px) {
  .u-sp-only { display: none; }
  .u-pc-only { display: inline; }
}


/* =====================================================
   3. レイアウト共通
   ===================================================== */
.l-wrap { position: relative; overflow: hidden; }

/* テーマ .wrap の PC 上余白（29px）を打ち消し（base.css 対策） */
.wrap.lp-omo { padding-top: 0 !important; }

.l-container {
  width: 100%;
  max-width: var(--container-max);
  margin-right: auto;
  margin-left:  auto;
  padding-right: 20px;
  padding-left:  20px;
}
@media (min-width: 768px) {
  .l-container { padding-right: 40px; padding-left: 40px; }
}

.l-container--narrow { max-width: var(--container-narrow); }

.lp-section {
  padding-top:    var(--section-pt);
  padding-bottom: var(--section-pb);
}
.lp-section--bg-gray    { background: var(--color-bg-gray); }
.lp-section--bg-dark    { background: var(--color-bg-dark); color: #fff; }
.lp-section--bg-primary { background: var(--color-primary); color: #fff; }
.lp-section--bg-omo     { background: var(--color-omo); color: #fff; }


/* =====================================================
   4. ヘッダー
   ===================================================== */
.v2-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.v2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .v2-header__inner { padding: 0 40px; }
}

/* ロゴ */
.v2-header__logo img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 768px) {
  .v2-header__logo img { height: 36px; }
}
@media (min-width: 1024px) {
  .v2-header__logo img { height: 38px; }
}
.v2-header__logo svg {
  height: 30px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .v2-header__logo svg { height: 36px; }
}
@media (min-width: 1024px) {
  .v2-header__logo svg { height: 38px; }
}

/* PC ナビ */
.v2-nav { display: none; }
@media (min-width: 1024px) {
  .v2-nav { display: flex; align-items: center; gap: 4px; }
}
.v2-nav__item { position: relative; }
.v2-nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  font-size: var(--fz-sm);
  font-weight: bold;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.v2-nav__link:hover { background: var(--color-primary-light); color: var(--color-primary); opacity: 1; }
.v2-nav__link--cta {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}
.v2-nav__link--cta:hover { background: var(--color-primary-dark); opacity: 1; }

/* ドロップダウン */
.v2-nav__item:hover .v2-nav__dropdown { display: block; }
.v2-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px); left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  z-index: 100;
}
.v2-nav__dropdown-link {
  display: block;
  padding: 11px 20px;
  font-size: var(--fz-sm);
  font-weight: normal;
  color: var(--color-text);
  background: var(--color-bg);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: var(--lh-tight);
}
.v2-nav__dropdown-link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  opacity: 1;
  padding-left: 24px;
}

/* ヘッダーCTA（右端） */
.v2-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}
.v2-header__tel {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  line-height: var(--lh-tight);
}
@media (min-width: 1024px) {
  .v2-header__tel { display: flex; }
}
.v2-header__tel-num {
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: .04em;
}
.v2-header__tel-note {
  font-size: var(--fz-caption);
  color: var(--color-text-muted);
}

/* ハンバーガー */
.v2-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.v2-hamburger:hover { background: var(--color-bg-gray); }
@media (min-width: 1024px) { .v2-hamburger { display: none; } }
.v2-hamburger__bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform .3s, opacity .2s;
}
body.is-spNavOpen .v2-hamburger .v2-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.is-spNavOpen .v2-hamburger .v2-hamburger__bar:nth-child(2) { opacity: 0; }
body.is-spNavOpen .v2-hamburger .v2-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SP ナビ */
.v2-sp-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: #fff;
  overflow-y: auto;
  z-index: 999;
  padding: 24px 20px;
  border-top: 1px solid var(--color-border);
}
body.is-spNavOpen .v2-sp-nav { display: block; }
.v2-sp-nav__link {
  display: block;
  padding: 14px 0;
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.v2-sp-nav__link--cta {
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  text-align: center;
  border-bottom: none;
  font-size: var(--fz-body);
}
.v2-sp-nav__tel {
  margin-top: 20px;
  font-size: var(--fz-h4);
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
  display: block;
}
.v2-sp-nav__tel-note { font-size: var(--fz-sm); color: var(--color-text-muted); text-align: center; margin-top: 4px; }

/* ヘッダー高さ分のオフセット */
.v2-body { padding-top: var(--header-h); }


/* =====================================================
   5. 共通見出し
   ===================================================== */
.lp-h2 {
  font-size: clamp(var(--fz-h3), 3vw, var(--fz-h1));
  font-weight: bold;
  line-height: var(--lh-tight);
  color: var(--color-text);
  text-align: center;
  letter-spacing: .03em;
}
.lp-h2 strong { color: var(--color-primary); font-weight: inherit; }
.lp-h2--left { text-align: left; }

.lp-h3 {
  font-size: clamp(var(--fz-h4), 2.4vw, var(--fz-h3));
  font-weight: bold;
  line-height: var(--lh-tight);
  color: var(--color-primary);
  letter-spacing: .02em;
}

/* AIO定義文（H2直下） */
.lp-lead {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 100%;
  margin: 20px auto 0;
}
@media (max-width: 767px) {
  .lp-lead { font-size: var(--fz-body); text-align: left; }
}

/* セクションヘッダーラッパー */
.lp-sec-head { margin-bottom: 64px; }
@media (max-width: 767px) {
  .lp-sec-head { margin-bottom: 40px; }
}


/* =====================================================
   6. ボタン
   ===================================================== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  font-size: var(--fz-body);
  font-weight: bold;
  letter-spacing: .05em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: var(--lh-tight);
}
.lp-btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.lp-btn--primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); opacity: 1; }

.lp-btn--accent {
  background: var(--gradient-cta);
  color: #fff;
  border-color: var(--color-cta-end);
  box-shadow: 0 4px 16px rgba(239, 56, 14, .28);
}
.lp-btn--accent:hover {
  background: linear-gradient(270deg, #ff7a42 0%, #d92f0b 100%);
  border-color: #d92f0b;
  box-shadow: 0 6px 24px rgba(239, 56, 14, .35);
  opacity: 1;
}

.lp-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.lp-btn--outline:hover { background: var(--color-primary-light); opacity: 1; }

.lp-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.lp-btn--outline-white:hover { background: rgba(255,255,255,.12); opacity: 1; }

.lp-btn--lg { padding: 20px 48px; font-size: var(--fz-h4); }
.lp-btn--sm { padding: 10px 24px; font-size: var(--fz-sm); }

@media (max-width: 767px) {
  .lp-btn { padding: 16px 28px; font-size: var(--fz-body); }
  .lp-btn--lg { padding: 18px 32px; font-size: var(--fz-body); }
}


/* =====================================================
   7. フェードインアニメーション
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
.fade-in--delay-1 { transition-delay: .1s; }
.fade-in--delay-2 { transition-delay: .2s; }
.fade-in--delay-3 { transition-delay: .3s; }
.fade-in--delay-4 { transition-delay: .4s; }


/* =====================================================
   8. ファーストビュー（FV）- OMO版
   ===================================================== */
.lp-hero {
  position: relative;
  /* OMO：オンライン（青）とオフライン（ティール）の融合をグラデーションで表現 */
  background-color: #0d1f3c;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%),
    radial-gradient(circle, rgba(0, 137, 123, 0.25) 0%, transparent 70%),
    linear-gradient(135deg, #0d1f3c 0%, #005bac 45%, #007a6e 100%);
  background-repeat: no-repeat;
  background-size: 700px 700px, 600px 600px, auto;
  background-position: right -200px top -200px, left -150px bottom -300px, 0 0;
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
/* content.css の #cloudec-lp-main 系は v2-main には当たらない。
   `.cloudec-lp_bg` の min-height / 背景はファイル末尾の .wrap.lp-omo ブロックで打ち消し */
/* ヒーロー背景画像（アルファ 20%）。装飾リングは .lp-hero の複数背景側へ移動 */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/cloudec/omo/sp_bg_omo_top.png) no-repeat center / cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .lp-hero {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 600px;
    display: flex;
    align-items: center;
  }
  .lp-hero::before {
    background: url(../images/cloudec/omo/bg_omo_top.png) no-repeat center / cover;

  }
}
@media (min-width: 1024px) {
  .lp-hero {
    min-height: 680px;
    padding-top: 160px;
  }
  .lp-hero::before {
    background: url(../images/cloudec/omo/bg_omo_top.png) no-repeat center / cover;

  }
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .lp-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media (min-width: 1024px) {
  .lp-hero__inner {
    grid-template-columns: 55% 1fr;
    gap: 64px;
  }
}

.lp-hero__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* バッジ群 */
.lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-full);
  font-size: var(--fz-sm);
  font-weight: bold;
  color: #fff;
  letter-spacing: .03em;
  backdrop-filter: blur(4px);
}
.lp-hero__badge i { color: #ffd166; font-size: var(--fz-caption); }

/* H1 */
.lp-hero__h1 {
  font-size: clamp(var(--fz-h3), 3.5vw, var(--fz-h1));
  font-weight: 900;
  line-height: var(--lh-tight);
  letter-spacing: .02em;
  color: #fff;
}
.lp-hero__h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffd166, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* サブコピー */
.lp-hero__sub {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,.88);
}

/* 右カラム：訴求バッジ（lp-hero__actions-badges）＋図解（CTA は左 .lp-hero__actions） */
.lp-hero__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.lp-hero__right > .lp-hero__actions-badges {
  width: 100%;
  max-width: 520px;
  align-self: stretch;
}
.lp-hero__actions {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
}
.lp-hero__actions-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.lp-hero__actions-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: var(--fz-body);
  font-weight: bold;
  color: #fff;
}
.lp-hero__actions-badge i { color: #ffd166; }
.lp-hero__actions-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.lp-hero__actions-cta .lp-btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .lp-hero__actions-cta {
    flex-direction: row;
    align-items: stretch;
  }
  .lp-hero__actions-cta .lp-btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
}
.lp-hero__actions-note {
  margin: 0;
  font-size: var(--fz-sm);
  color: rgba(255,255,255,.85);
  line-height: var(--lh-body);
  text-align: left;
}
.lp-hero__viz {
  width: 100%;
  max-width: 480px;
}
@media (max-width: 767px) {
  .lp-hero__actions { max-width: 560px; }
  .lp-hero__right > .lp-hero__actions-badges { max-width: 560px; }
  .lp-hero__actions-badge { font-size: var(--fz-sm); padding: 9px 14px; }
  .lp-hero__actions-note { font-size: var(--fz-caption); }
}

/* OMO統合図プレースホルダー */
.lp-hero__visual-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-width: 480px;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,.5);
}
.lp-hero__visual-icon { font-size: var(--fz-hero); }
.lp-hero__visual-label { font-size: var(--fz-sm); }

/* OMO統合図（FV右カラム・画像） */
.lp-hero__omo-diagram {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lp-hero__visual-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}


/* =====================================================
   9. 課題訴求セクション
   ===================================================== */
.lp-pain {
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
  background: var(--color-bg-gray);
}
.lp-pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .lp-pain__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 479px) {
  .lp-pain__grid { grid-template-columns: 1fr; }
}

.lp-pain__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 16px;
  align-items: start;
}
.lp-pain__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.lp-pain__num {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fz-body);
  font-weight: bold;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.lp-pain__icon {
  grid-column: 1;
  grid-row: 1;
  font-size: var(--fz-h2);
  color: var(--color-primary);
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.lp-pain__ttl {
  grid-column: 2;
  grid-row: 1;
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-text);
  margin: 8px 0 0;
  line-height: var(--lh-tight);
  min-width: 0;
  align-self: center;
}
.lp-pain__txt {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: var(--fz-sm);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}
.lp-pain__resolve {
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: var(--fz-h4);
  font-weight: bold;
  line-height: var(--lh-body);
}
@media (max-width: 767px) {
  .lp-pain__resolve { padding: 24px 20px; font-size: var(--fz-body); }
}


/* =====================================================
   10. オムニチャネルとは？（新規追加セクション）
   ===================================================== */
.lp-omni-def__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .lp-omni-def__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
}

.lp-omni-def__grid .lp-omo-def__card {
  background: #fff;
}

/* チャネル統合イメージ */
.lp-omni-channels {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 767px) {
  .lp-omni-channels { padding: 28px 20px 24px; }
}

.lp-omni-channels__list {
  margin-bottom: 24px;
  text-align: center;
}

.lp-omni-channels__list-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lp-omni-channels__list { margin-bottom: 20px; }
}

.lp-omni-channels__note {
  text-align: center;
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: var(--lh-body);
}
@media (max-width: 767px) {
  .lp-omni-channels__note { font-size: var(--fz-sm); flex-direction: column; gap: 6px; }
}


/* =====================================================
   10b. OMOとは？（SEOコンテンツ・定義セクション）
   ===================================================== */
.lp-omo-def__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  min-width: 0;
  width: 100%;
}
/* grid 子の min-width:auto だと表の min-width が列幅を押し広げて横はみ出す */
.lp-omo-def__grid > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .lp-omo-def__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* 定義文カード */
.lp-omo-def__card {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--color-primary);
}
.lp-omo-def__card-ttl {
  font-size: var(--fz-h4);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-omo-def__card-txt {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}
.lp-omo-def__card-txt strong { color: var(--color-text); font-weight: bold; }

/* OMO比較表（O2O・オムニチャネル・OMOの違い） */
.lp-omo-compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}
.lp-omo-compare__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
}
.lp-omo-compare__table thead tr {
  background: var(--color-primary);
}
.lp-omo-compare__table th {
  color: #fff;
  font-weight: bold;
  padding: 13px 18px;
  font-size: var(--fz-sm);
  white-space: nowrap;
  text-align: center;
}
.lp-omo-compare__table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  color: var(--color-text);
  text-align: center;
  font-size: var(--fz-body);
}
.lp-omo-compare__table td:first-child {
  font-weight: bold;
  text-align: left;
  background: var(--color-bg-gray);
  white-space: nowrap;
}
.lp-omo-compare__table tbody tr:last-child td { border-bottom: none; }
/* OMO列を強調 */
.lp-omo-compare__table th:last-child {
  background: var(--color-omo);
}
.lp-omo-compare__table td:last-child {
  background: var(--color-omo-light);
  font-weight: bold;
  color: var(--color-omo);
}
.lp-omo-compare__table tbody tr:nth-child(even) td:not(:first-child):not(:last-child) {
  background: rgba(247,248,250,.8);
}

@media (max-width: 767px) {
  .lp-omo-compare__table {
    min-width: 0;
    table-layout: fixed;
  }
  .lp-omo-compare__table th,
  .lp-omo-compare__table td {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 8px 10px;
    font-size: var(--fz-caption);
    line-height: var(--lh-tight);
  }
  .lp-omo-compare__table th {
    white-space: normal;
  }
  .lp-omo-compare__table td:first-child {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* 「なぜ今OMOか」エリア */
.lp-omo-why {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 32px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .lp-omo-why {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}
.lp-omo-why__icon {
  font-size: var(--fz-hero);
  color: #ffd166;
  line-height: 1;
}
.lp-omo-why__ttl {
  font-size: var(--fz-h4);
  font-weight: bold;
  margin-bottom: 16px;
  line-height: var(--lh-tight);
}
.lp-omo-why__txt {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,.88);
}


/* =====================================================
   11. ソリューション（選ばれる3つの理由）
   ===================================================== */
.lp-reason__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 767px) { .lp-reason__list { gap: 48px; } }

.lp-reason__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .lp-reason__item {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .lp-reason__item:nth-child(even) > :first-child { order: 2; }
  .lp-reason__item:nth-child(even) > :last-child  { order: 1; }
}

/* 番号エリア */
.lp-reason__num-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  min-height: 280px;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.lp-reason__num-block::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(0,91,172,.08);
  pointer-events: none;
}

.lp-reason__num-badge {
  font-size: calc(var(--fz-hero) + var(--fz-h2));
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -.04em;
  opacity: .2;
  position: absolute;
  left: 20px;
  top: 10px;
  z-index: 0;
  pointer-events: none;
}
.lp-reason__num-icon {
  font-size: calc(var(--fz-h1) + var(--fz-h3));
  color: var(--color-primary);
  position: relative; z-index: 1;
}
.lp-reason__num-label {
  font-size: var(--fz-sm);
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: .1em;
  position: relative; z-index: 1;
}

/* 理由01：左カラム（num-block）内のチャネル展開フロー */
.lp-reason__num-block .lp-reason__channel-flow {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  margin-top: 8px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.lp-reason__channel-flow-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 理由02・03：左カラム（num-block）内の lp-data-platform / lp-table-wrap */
.lp-reason__num-block > .lp-data-platform,
.lp-reason__num-block > .lp-table-wrap {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.lp-reason__num-block > .lp-data-platform {
  padding: 0;
  background: transparent;
  margin-top: 8px;
  overflow: visible;
}
.lp-data-platform__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 理由03：num-block 内のテーブルはカード幅に収め、セルは折り返し */
.lp-reason__num-block > .lp-table-wrap {
  overflow-x: hidden;
}
.lp-reason__num-block .lp-table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}
.lp-reason__num-block .lp-table th,
.lp-reason__num-block .lp-table td {
  white-space: normal;
  word-break: break-word;
  padding: 8px 10px;
}

.lp-reason__body { display: flex; flex-direction: column; gap: 20px; }
.lp-reason__tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--fz-sm);
  font-weight: bold;
  letter-spacing: .06em;
  width: fit-content;
}

.lp-reason__ttl {
  font-size: clamp(var(--fz-h4), 2.4vw, var(--fz-h3));
  font-weight: bold;
  line-height: var(--lh-tight);
  color: var(--color-text);
}
.lp-reason__txt {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}
.lp-reason__txt strong { color: var(--color-text); font-weight: bold; }

/* 図解プレースホルダー */
.lp-reason__diagram {
  background: var(--color-bg-gray);
  border: 2px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fz-sm);
}
.lp-reason__diagram-note {
  font-size: var(--fz-caption);
  color: var(--color-text-light);
  margin-top: 8px;
  font-style: italic;
}

/* データ統合（理由02）：PNG 図解のみのラッパー */
.lp-data-platform {
  margin-top: 20px;
  text-align: center;
  position: relative;
}


/* =====================================================
   12. 中間CTA
   ===================================================== */
.lp-mid-cta {
  background: var(--color-bg-dark);
  padding: var(--section-pt) 0 var(--section-pb);
  color: #fff;
  text-align: center;
}
.lp-mid-cta__ttl {
  font-size: clamp(var(--fz-h4), 2.8vw, var(--fz-h2));
  font-weight: bold;
  line-height: var(--lh-tight);
  margin-bottom: 16px;
}
.lp-mid-cta__txt {
  font-size: var(--fz-body);
  color: rgba(255,255,255,.8);
  line-height: var(--lh-body);
  max-width: 100%;
  margin: 0 auto 32px;
}
.lp-mid-cta__btns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  max-width: 420px;
  margin: 0 auto;
}
.lp-mid-cta__btns .lp-btn {
  width: 100%;
  justify-content: center;
}

.lp-mid-cta__note {
  margin-top: 22px;
  font-size: var(--fz-sm);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: .02em;
}
.lp-mid-cta__note i {
  margin-right: 6px;
  color: var(--color-success);
}
@media (max-width: 768px) {
  .lp-mid-cta__note {
    font-size: var(--fz-caption);
    line-height: var(--lh-body);
  }
}


/* =====================================================
   13. 導入事例
   ===================================================== */
.lp-case__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .lp-case__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .lp-case__grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-case__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.lp-case__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.lp-case__thumb {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-gray);
}
.lp-case__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-case__body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-case__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--fz-sm);
  font-weight: bold;
  width: fit-content;
  letter-spacing: .04em;
}
.lp-case__company {
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: 10px;
}
.lp-case__title {
  font-size: var(--fz-h4);
  font-weight: bold;
  color: var(--color-primary);
  line-height: var(--lh-tight);
}
.lp-case__issue {
  font-size: var(--fz-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}
.lp-case__issue strong {
  font-weight: bold;
  color: var(--color-text);
}


/* =====================================================
   14. テーブル共通
   ===================================================== */
.lp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.lp-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: var(--fz-caption);
  line-height: var(--lh-tight);
}
.lp-table thead tr { background: var(--color-primary); }
.lp-table th {
  color: #fff;
  font-weight: bold;
  padding: 14px 18px;
  font-size: var(--fz-caption);
  white-space: nowrap;
}
.lp-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  color: var(--color-text);
}
.lp-table tbody tr:last-child td { border-bottom: none; }
.lp-table tbody tr:nth-child(even) { background: var(--color-bg-gray); }
.lp-table tbody tr:hover { background: var(--color-primary-light); }


/* =====================================================
   15. セキュリティ・コンプライアンス
   ===================================================== */
.lp-security__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}
.lp-security__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.lp-security__badge-icon { font-size: var(--fz-h2); color: var(--color-primary); flex-shrink: 0; }
.lp-security__badge-ttl { font-size: var(--fz-body); font-weight: bold; color: var(--color-primary); display: block; }
.lp-security__badge-sub { font-size: var(--fz-caption); color: var(--color-text-muted); display: block; }

.lp-security__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .lp-security__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 479px) { .lp-security__grid { grid-template-columns: 1fr; } }

.lp-security__item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
}
.lp-security__item:hover { box-shadow: var(--shadow-md); }
.lp-security__item-icon {
  font-size: var(--fz-h2);
  color: var(--color-primary);
  margin-bottom: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lp-security__item-ttl {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  align-self: center;
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-text);
}
.lp-security__item-txt {
  flex: 1 1 100%;
  width: 100%;
  margin: 0;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}
.lp-security__item > .lp-security__badges {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 0;
  justify-content: flex-start;
}

#v2-strength .lp-security__item-icon {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
}
#v2-strength .lp-security__item-ttl {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  line-height: var(--lh-tight);
}


/* =====================================================
   16. 導入ステップ
   ===================================================== */
.lp-step__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .lp-step__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

.lp-step__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
}
.lp-step__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
  position: relative;
}
.lp-step__item:not(:last-child) { padding-bottom: 32px; }

/* 縦線コネクター */
.lp-step__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px; left: 23px;
  width: 2px;
  bottom: 0;
  background: var(--color-primary-light);
}

.lp-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fz-h4);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--color-primary-light);
}
.lp-step__body { padding-top: 10px; }
.lp-step__ttl {
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: var(--lh-tight);
}
.lp-step__txt {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}

/* 費用ボックス */
.lp-step__cost {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.lp-step__cost-ttl {
  font-size: var(--fz-h4);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-step__cost-txt {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}
.lp-step__cost-txt strong { color: var(--color-text); font-weight: bold; }


/* =====================================================
   17. FAQ
   ===================================================== */
.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.lp-faq__item {
  border-bottom: 1px solid var(--color-border);
}
.lp-faq__item:first-child { border-top: 1px solid var(--color-border); }

.lp-faq__q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 8px;
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__q:hover { background: var(--color-primary-light); }
.lp-faq__item[open] .lp-faq__q { background: var(--color-primary-light); }

.lp-faq__q-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fz-body);
  font-weight: bold;
  display: flex; align-items: center; justify-content: center;
}
.lp-faq__q-txt {
  flex: 1;
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-text);
  line-height: var(--lh-tight);
}
.lp-faq__q-arrow {
  flex-shrink: 0;
  font-size: var(--fz-sm);
  color: var(--color-text-muted);
  padding-top: 4px;
  transition: transform var(--transition);
}
.lp-faq__item[open] .lp-faq__q-arrow { transform: rotate(180deg); }

.lp-faq__a {
  padding: 18px 8px 22px calc(30px + 16px + 8px);
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
  border-top: 1px dashed var(--color-border);
}


/* =====================================================
   18. クロージングCTA
   ===================================================== */
.lp-cta {
  background: linear-gradient(135deg, #0d1f3c 0%, #005bac 100%);
  padding: var(--section-pt) 0 var(--section-pb);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}
.lp-cta__inner {
  text-align: center;
  position: relative; z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.lp-cta__ttl {
  font-size: clamp(var(--fz-h3), 3vw, var(--fz-h1));
  font-weight: 900;
  line-height: var(--lh-tight);
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.lp-cta__sub {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
}
.wrap.lp-omo .lp-cta__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 40px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.lp-cta__checklist li {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,.9);
  padding-left: 28px;
  position: relative;
}
.lp-cta__checklist li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: 0; top: 2px;
  color: #ffd166;
  font-size: var(--fz-sm);
  line-height: 1;
}
.lp-cta__btns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  max-width: 420px;
  margin: 0 auto 24px;
}
.lp-cta__btns .lp-btn {
  width: 100%;
  justify-content: center;
}
.lp-cta__note {
  font-size: var(--fz-sm);
  color: rgba(255,255,255,.65);
  line-height: var(--lh-body);
}


/* =====================================================
   19. お問い合わせフォーム
   ===================================================== */
.lp-contact {
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
  background: var(--color-bg-gray);
}

/* テーマ共通 CF7 ブロック — .lp-section と同じ縦リズム（content の #id より詳細度を上げる） */
.wrap.lp-omo #cloudec-lp-contact.Wrap {
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
  background: var(--color-bg-gray);
}
.wrap.lp-omo #cloudec-lp-contact.Wrap h2.hdg-2 {
  font-size: var(--fz-h3);
  font-weight: bold;
  color: var(--color-text);
  text-align: center;
  margin: 0 auto 28px;
}
@media (min-width: 768px) {
  .wrap.lp-omo #cloudec-lp-contact.Wrap h2.hdg-2 {
    font-size: var(--fz-h2);
    margin-bottom: 36px;
  }
}
.lp-contact__note, .lp-contact__caution {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}
.lp-contact__caution { color: var(--color-danger); }
.lp-contact__note a { color: var(--color-primary); text-decoration: underline; }

/* 安心感ベネフィット（フォーム前のCRO要素） */
.lp-contact__benefits {
  list-style: none;
  margin: 0 auto 32px;
  padding: 22px 24px;
  max-width: 760px;
  background: #f3f8fc;
  border: 1px solid #d8e6f1;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.lp-contact__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text);
}
.lp-contact__benefits i {
  color: var(--color-primary);
  font-size: var(--fz-h4);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.lp-contact__benefits strong {
  color: var(--color-omo);
  font-weight: bold;
}
@media (max-width: 768px) {
  .lp-contact__benefits {
    grid-template-columns: 1fr;
    padding: 18px 18px;
    gap: 10px;
  }
  .lp-contact__benefits li {
    font-size: var(--fz-sm);
  }
}

.lp-form {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 767px) {
  .lp-form { padding: 32px 24px; }
}

.lp-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .lp-form__row {
    grid-template-columns: 200px 1fr;
    gap: 16px;
    align-items: flex-start;
  }
}

.lp-form__label {
  font-size: var(--fz-body);
  font-weight: bold;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
}
.lp-form__required {
  display: inline-block;
  padding: 2px 8px;
  background: var(--color-danger);
  color: #fff;
  font-size: var(--fz-caption);
  font-weight: bold;
  border-radius: var(--radius-sm);
}
.lp-form__optional {
  display: inline-block;
  padding: 2px 8px;
  background: var(--color-bg-gray);
  color: var(--color-text-muted);
  font-size: var(--fz-caption);
  border-radius: var(--radius-sm);
}

.lp-form__input,
.lp-form__select,
.lp-form__textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: var(--fz-body);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.lp-form__input:focus,
.lp-form__select:focus,
.lp-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.lp-form__input::placeholder,
.lp-form__textarea::placeholder { color: var(--color-text-light); }

.lp-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.lp-form__textarea { min-height: 140px; resize: vertical; }

.lp-form__submit {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--gradient-cta);
  color: #fff;
  font-size: var(--fz-h4);
  font-weight: bold;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-cta-end);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  letter-spacing: .05em;
  box-shadow: 0 4px 16px rgba(239, 56, 14, .28);
  margin-top: 16px;
}
.lp-form__submit:hover {
  background: linear-gradient(270deg, #ff7a42 0%, #d92f0b 100%);
  border-color: #d92f0b;
  box-shadow: 0 6px 24px rgba(239, 56, 14, .35);
}

.lp-form__assurance {
  margin-top: 16px;
  font-size: var(--fz-sm);
  color: var(--color-text-muted);
  text-align: center;
  line-height: var(--lh-body);
  letter-spacing: .02em;
}
.lp-form__assurance i {
  margin-right: 4px;
  color: var(--color-success);
}

.lp-form__privacy {
  margin-top: 20px;
  font-size: var(--fz-sm);
  color: var(--color-text-muted);
  text-align: center;
  line-height: var(--lh-body);
}
.lp-form__privacy a { color: var(--color-primary); text-decoration: underline; }


/* =====================================================
   20. フッター
   ===================================================== */
.v2-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.7);
  padding: 40px 0;
  font-size: var(--fz-sm);
}
.v2-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.v2-footer__logo svg { height: 26px; width: auto; opacity: .8; }
.v2-footer__logo img { height: 26px; width: auto; opacity: .8; margin: 0 auto; }
.v2-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}
.v2-footer__links a {
  color: rgba(255,255,255,.6);
  font-size: var(--fz-sm);
  transition: color var(--transition);
}
.v2-footer__links a:hover { color: #fff; opacity: 1; }
.v2-footer__copy {
  font-size: var(--fz-caption);
  color: rgba(255,255,255,.45);
}


/* =====================================================
   21. 固定CTA（画面下部）
   ===================================================== */
.lp-fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,31,60,.95);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  z-index: 990;
  border-top: 1px solid rgba(255,255,255,.1);
  display: none;
}
.lp-fixed-cta.is-visible { display: block; }
.lp-fixed-cta__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-fixed-cta__copy {
  font-size: var(--fz-sm);
  font-weight: bold;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.lp-fixed-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .lp-fixed-cta { padding: 10px 16px; }
  .lp-fixed-cta__copy { display: none; }
  .lp-fixed-cta__btns { width: 100%; }
  .lp-fixed-cta__btns .lp-btn { flex: 1; font-size: var(--fz-sm); padding: 12px 16px; text-align: center; justify-content: center; }
}

/* トップへ戻る */
.lp-back-to-top {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-h4);
  box-shadow: var(--shadow-md);
  z-index: 980;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  cursor: pointer;
}
.lp-back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.lp-back-to-top:hover { background: var(--color-primary-dark); opacity: 1; }

/* ===================================================================
   content.css 打ち消し（OMO 新FV #v2-main）
   ・`.cloudec-lp_bg` の min-height:621px・旧 main-bg が新ヒーローと二重になる
   ・`.lp-omo .cloudec-lp_bg` の omo/main-bg.png もグラデと競合する
   =================================================================== */
.wrap.lp-omo > .cloudec-lp_bg {
  background-image: none;
  min-height: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .wrap.lp-omo > .cloudec-lp_bg {
    min-height: 0;
    padding-bottom: 0;
  }
}

.wrap.lp-omo #v2-main.lp-hero {
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.wrap.lp-omo #v2-main.lp-hero > .l-container {
  width: 100%;
  max-width: var(--container-max);
  flex: 1 1 auto;
}
.wrap.lp-omo #v2-main.lp-hero .lp-hero__h1 {
  margin: 0;
}
.wrap.lp-omo #v2-main.lp-hero .lp-hero__h1 em {
  -webkit-text-fill-color: transparent;
}

/* FA6：wp_head 後に読み込むが、body 継承や FA4 の .fa で font が潰れるのを防ぐ */
.wrap.lp-omo .fa-solid,
.wrap.lp-omo .fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: 1;
  text-rendering: auto;
}
.wrap.lp-omo .fa-brands,
.wrap.lp-omo .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.wrap.lp-omo .fa-regular,
.wrap.lp-omo .far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}
