@charset "UTF-8";
/* =========================================================
   TOPページ（kibidango LP.dc.html の実装 / 2026.07）
   ※ ヘッダー・フッター・顧客ロゴスライダーは既存のまま
   ========================================================= */

.home .lp {
  --navy: #16243f;
  --orange: #f29600;
  --orange-d: #c9560f;
  --cream: #fbf7f2;
  --line: #ede6dc;
  --line2: #efe8e0;
  --gray: #333333;
  --gray-l: #333333;
  --ink: #333333;

  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  padding-bottom: 0;
  -webkit-font-smoothing: antialiased;
}
.home .lp *,
.home .lp *::before,
.home .lp *::after {
  box-sizing: border-box;
}
/* a の色は style.css 側で inherit 済み。ここで色を指定すると
   詳細度が勝ってしまい各ボタンの文字色を潰すので、下線のみ消す。 */
.home .lp a {
  text-decoration: none;
}
.home .lp img {
  display: block;
  max-width: 100%;
}
.home .lp .zk {
  font-family: "Noto Sans JP", sans-serif;
}

@keyframes lpSun {
  0%, 100% { transform: scale(1); opacity: .95; }
  50% { transform: scale(1.06); opacity: 1; }
}
/* 共通 */
.lp-inner {
  max-width: 1200px;
  margin: 0 auto;
  /* セクションの基本の上下余白（2026.08 に60px→80px） */
  padding: 100px 24px; /* 2026.08 80px→100px */
}
.lp-lead {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}
.lp-h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  font-size: clamp(22px, 2.4vw, 28px);
  margin-top: 6px;
}
.lp-note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray);
}
/* セクション見出しは中央揃え（2026.07）
   小さなラベル・大見出し・説明文をひとまとまりで中央に置く。
   TOP・サービス個別ページ・無料AI診断で共通。 */
.lp-head {
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* 中央揃えの見出しブロックの中で幅を絞っている要素も中央に寄せる */
.lp-head .lp-ba__desc,
.lp-head .lp-note {
  margin-left: auto;
  margin-right: auto;
}
/* .lp-head を使っていないセクション見出し（TOPの「3つの入口」） */
.lp-entry__title,
.lp-entry__title + .lp-note {
  text-align: center;
}

/* ボタン */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 9px;
  padding: 11px 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity .2s, background-color .2s;
}
.lp-btn:hover { opacity: .88; }
.lp-btn--orange { background: var(--orange); color: #fff; }
.lp-btn--navy { background: var(--navy); color: #fff; }
.lp-btn--ghost {
  background: #fff;
  color: var(--navy);
  border: 1px solid #d9d0c4;
}
.lp-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
}
.lp-btn__circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: grid;
  place-items: center;
  flex: none;
}
.lp-btn--full {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 12px;
}

/* =========================================================
   HERO
   ========================================================= */
.lp-hero {
  position: relative;
  /* 背景グラフィック（2026.08）。もともと明るい図版なのでベールは重ねない */
  background-color: #fff;
  background-image: url("../img/mv-80.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  /* 約2:1のグラフィックなので、はみ出す分は切って全面に敷く */
  background-size: cover;
  padding-top: 100px; /* 既存ヘッダー（absolute）ぶん */
}
.lp-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 44px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.lp-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 6.4vw, 72px);
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--navy);
}
.lp-hero__title span { color: var(--orange); }
.lp-hero__desc {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
  font-weight: 500;
}
.lp-hero__cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  border: none;
  border-radius: 12px;
  padding: 16px 26px;
  text-align: left;
  cursor: pointer;
  color: #fff;
  transition: opacity .2s;
}
.lp-cta:hover { opacity: .9; }
.lp-cta--orange {
  background: var(--orange);
}
.lp-cta--navy { background: var(--navy); }
.lp-cta--glass {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
}
.lp-cta__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: .9;
}
.lp-cta__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.lp-cta__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex: none;
}

/* 実績カウンタ */
.lp-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid #f0e5d8;
  padding-top: 20px;
}
.lp-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-stat__mark {
  color: var(--orange);
  font-size: 20px;
}
.lp-stat__label {
  display: block;
  font-size: 12px;
  color: var(--gray-l);
}
.lp-stat__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}
.lp-stat__value small { font-size: 12px; }
.lp-stat__value--sm { font-size: 15px; }

/* 軌道図 */
.lp-orbit-wrap { text-align: center; }
.lp-orbit {
  --orbit-orange: #f29600;
  --orbit-orange-dark: #d98600;
  --orbit-navy: #16243f;
  --orbit-navy-dark: #0f1a30;
  --orbit-cream: #fbf7f2;
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 420px;
  margin: 0 auto;
  isolation: isolate;
}
.lp-orbit__svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.lp-orbit__grid-line {
  fill: none;
  stroke: rgba(242, 150, 0, .22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.lp-orbit__grid-fill {
  opacity: .72;
}
.lp-orbit__plane {
  fill: rgba(251, 247, 242, .66);
  stroke: rgba(22, 36, 63, .22);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.lp-orbit__axis {
  fill: none;
  stroke: rgba(22, 36, 63, .18);
  stroke-width: 1.2;
  stroke-dasharray: 4 8;
  vector-effect: non-scaling-stroke;
}
.lp-orbit__track {
  fill: none;
  stroke: var(--orbit-orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 3 7;
  stroke-opacity: .56;
  vector-effect: non-scaling-stroke;
}
.lp-orbit__track--inner {
  stroke: var(--orbit-navy);
  stroke-dasharray: 2 8;
  stroke-opacity: .22;
}
/* アイソメトリック台座の上に見出しを置く。クリックの邪魔をしないよう pointer-events は切っている。 */
.lp-orbit__center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 26; /* 手前のノード（JSで z 10〜40）は台座より上に出す */
  display: grid;
  place-items: center;
  width: 166px;
  min-height: 96px;
  padding: 19px 20px 23px;
  transform: translate(-50%, -49%);
  text-align: center;
  pointer-events: none;
  isolation: isolate;
}
.lp-orbit__center::before,
.lp-orbit__center::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.lp-orbit__center::before {
  inset: 0 0 16px;
  z-index: 1;
  background: #fff;
  border: 2px solid var(--orbit-navy);
  clip-path: polygon(50% 0, 100% 24%, 100% 82%, 50% 100%, 0 82%, 0 24%);
}
.lp-orbit__center::after {
  left: 12%;
  right: 12%;
  bottom: 0;
  z-index: 0;
  height: 18px;
  background: linear-gradient(90deg, var(--orbit-navy-dark) 0 50%, var(--orbit-orange-dark) 50% 100%);
  clip-path: polygon(0 0, 50% 42%, 100% 0, 88% 68%, 50% 100%, 12% 68%);
}
.lp-orbit__title {
  position: relative;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.36;
  color: var(--orbit-navy);
}
.lp-orbit__sub {
  font-size: 12px;
  line-height: 1.6;
  color: #333333;
  margin-top: 8px;
}
.lp-node {
  position: absolute;
  z-index: 10;
  width: 170px;
  height: 112px;
  --node-line: var(--orbit-orange);
  --node-side-left: var(--orbit-orange-dark);
  --node-side-right: var(--orbit-navy-dark);
  --node-static-lift: 0px;
  --node-hover-y: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orbit-navy);
  text-align: center;
  padding: 18px 16px 26px;
  transform-origin: center center;
  transition: transform .25s ease-out;
  isolation: isolate;
}
.lp-node::before,
.lp-node::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.lp-node::before {
  inset: 0 0 16px;
  z-index: 1;
  background: #fff;
  border: 2px solid var(--node-line);
  clip-path: polygon(50% 0, 100% 68%, 50% 100%, 0 68%);
  transition: background-color .25s ease-out, border-color .25s ease-out;
}
.lp-node::after {
  left: 12%;
  right: 12%;
  bottom: 0;
  z-index: 0;
  height: 16px;
  background: linear-gradient(90deg, var(--node-side-left) 0 50%, var(--node-side-right) 50% 100%);
  clip-path: polygon(0 0, 50% 40%, 100% 0, 88% 68%, 50% 100%, 12% 68%);
}
.lp-node:hover {
  --node-static-lift: -5px;
}
.lp-node:hover::before {
  background: #fffaf4;
}
.lp-node:focus-visible {
  outline: 2px solid var(--orbit-navy);
  outline-offset: 4px;
}
.lp-node--2,
.lp-node--4 {
  --node-line: var(--orbit-navy);
  --node-side-left: var(--orbit-navy-dark);
  --node-side-right: var(--orbit-orange-dark);
}

/* --- 楕円軌道に沿って回す（js/lp-orbit.js が動いているときだけ・2026.08）---
   JSが座標をinline styleで書くので、固定配置の left/top/right/bottom を無効にする。
   文字は傾けたくないので回転はさせず、位置・奥行きのスケールだけを動かしている。 */
.lp-orbit--live .lp-node {
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  margin: 0;
  transition: none;
  will-change: transform;
}
.lp-orbit--live .lp-node:hover {
  --node-hover-y: -5px;
}
.lp-node__name {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 130px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.32;
  color: var(--orbit-navy);
}
.lp-node__desc {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 132px;
  font-size: 12px;
  color: #333333;
  margin-top: 2px;
  line-height: 1.3;
}
.lp-node--1 { left: 50%; top: 26px; z-index: 18; transform: translateX(-50%) translateY(var(--node-static-lift)); }
.lp-node--2 { right: -8px; top: 135px; z-index: 28; transform: translateY(var(--node-static-lift)); }
.lp-node--3 { right: 66px; bottom: 12px; z-index: 36; transform: translateY(var(--node-static-lift)); }
.lp-node--4 { left: 66px; bottom: 12px; z-index: 36; transform: translateY(var(--node-static-lift)); }
.lp-node--5 { left: -8px; top: 135px; z-index: 24; transform: translateY(var(--node-static-lift)); }

/* =========================================================
   顧客ロゴスライダー（既存 .comps を LP に載せ替え）
   ========================================================= */
.home .comps {
  margin-top: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  background: #fff;
}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.lp-ba {
  --orange: #f29600;
  --ba-orange-soft: rgba(242, 150, 0, .18);
  --ba-orange-line: rgba(242, 150, 0, .5);
  background: var(--cream);
}
.lp-ba__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.42;
  color: var(--navy);
}
.lp-ba__desc {
  margin-top: 22px;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  max-width: 430px;
}
.lp-ba__cols {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
/* 左カラムの見出しブロック（2026.08 に lp-head から移動） */
.lp-ba__intro { text-align: left; }
.lp-ba__intro .lp-ba__desc { margin-left: 0; margin-right: 0; }
.lp-ba__eyebrow,
.lp-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
}
.lp-ba__eyebrow::before,
.lp-flow__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}

/* =========================================================
   3つの入口
   ========================================================= */
.home .lp .lp-entry > .lp-inner {
  max-width: 1000px;
}
.lp-entry__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.4;
  color: var(--navy);
}
.lp-col {
  border-radius: 16px;
  padding: 24px;
  background: #fbf9f6;
  border: 1px solid var(--line);
}
.lp-col--primary {
  background: linear-gradient(180deg, #fff3ea, #fffaf6);
  border-color: #f5e1d2;
}
.lp-col__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.lp-col--primary .lp-col__title { color: var(--orange); }
.lp-col__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lp-row {
  background: #fff;
  border: 1px solid #ece4d9;
  border-radius: 9px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .2s;
}
.lp-row:hover {
  border-color: var(--orange);
}
.lp-row__arrow { color: var(--orange); flex: none; }
.lp-row--icon { justify-content: flex-start; }
.lp-row__icon { color: var(--orange); flex: none; }

.lp-col__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.lp-tile {
  background: #fff;
  border: 1px solid #ece4d9;
  border-radius: 9px;
  padding: 18px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s;
}
.lp-tile:hover {
  border-color: var(--orange);
}
.lp-tile__icon {
  display: block;
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 4px;
}
.lp-col__btn { margin-top: 18px; }

/* =========================================================
   AI（ダーク）
   ========================================================= */
.lp-ai {
  background: #f29600;
  color: #fff;
}
.lp-ai .lp-h2 { color: #fff; }
.lp-ai .lp-note { color: #fff; }
.lp-ai__label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.lp-ai__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
/* カード型に変更（2026.08）
   番号バッジ → タイトル → 白い丸の中のアイコン → 詳しく見る の順に積む。
   アイコンがPNG（濃い緑）になったので、カードは明るい面にして読めるようにする。 */
.lp-ai__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px 14px 22px;
  border: 0;
  border-radius: 4px;
  background: #f4f2ee;
  color: var(--navy);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s ease-out;
}
.lp-ai__item:hover,
.lp-ai__item:focus-visible {
  background: #fff;
}
.lp-ai__name {
  display: block;
  min-height: 3.2em;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy);
  /* 正式名称は長いので、折り返しても揃うように上下中央へ */
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-ai__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 14px auto 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
}
.lp-ai__icon img,
.lp-ai__icon svg {
  width: 46px;
  height: 46px;
}
.lp-ai__more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  border: 0;
  transition: opacity .2s ease-out;
}
.lp-ai__item:hover .lp-ai__more,
.lp-ai__item:focus-visible .lp-ai__more {
  opacity: .75;
}

/* =========================================================
   事例
   ========================================================= */
.lp-case__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 420px;
}
.lp-case__stat span {
  font-size: 12px;
  color: var(--gray-l);
}
.lp-case__num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--orange);
}
.lp-case__num small { font-size: 13px; }
.lp-case__num--navy { color: var(--navy); }
.lp-case__period {
  font-size: 12px;
  color: #333333;
  margin-top: 10px;
}
.lp-case__cols {
  display: grid;
  grid-template-columns: 1fr 200px 260px;
  gap: 16px;
  align-items: start;
}
.lp-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.lp-panel--after {
  background: #fff3ea;
  border-color: #f5e1d2;
}
.lp-panel__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-l);
}
.lp-panel--after .lp-panel__tag { color: var(--orange); }
.lp-panel__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 10px;
}
.lp-panel__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #333333;
  line-height: 1.5;
}
.lp-panel__list div {
  display: flex;
  gap: 6px;
}
.lp-x { color: #e07b54; flex: none; }
.lp-check { color: var(--orange); flex: none; }
.lp-case__phone {
  background: var(--navy);
  border-radius: 22px;
  padding: 8px;
  height: 280px;
}
.lp-case__phone-in {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #e9edf3 center center / cover no-repeat;
}
.lp-voice {
  margin-top: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.lp-voice__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.lp-voice__text {
  font-size: 13px;
  color: #333333;
  margin-top: 6px;
  line-height: 1.7;
}
.lp-voice__name {
  font-size: 12px;
  color: var(--gray-l);
  margin-top: 8px;
}
.lp-btn--round {
  border-radius: 24px;
  padding: 12px 20px;
}

/* =========================================================
   業界データ
   ========================================================= */
.lp-industry { background: var(--cream); }
.lp-industry__cols {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.lp-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.lp-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.6fr .8fr;
  padding: 14px 16px;
  font-size: 12px;
  border-top: 1px solid #efe8df;
  align-items: center;
  gap: 8px;
}
.lp-table__row--head {
  background: #f5f0e9;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  border-top: none;
}
.lp-table__name {
  font-weight: 700;
  color: var(--navy);
}
.lp-table__cell { color: var(--gray); }
.lp-table__count {
  text-align: right;
  font-weight: 700;
  color: var(--orange);
}
.lp-table__row--head span:last-child { text-align: right; }

.lp-report {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.lp-report__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}
.lp-report__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-top: 6px;
  line-height: 1.5;
}
.lp-report__cover {
  margin-top: 12px;
  height: 90px;
  border-radius: 8px;
  background: #f1ece4;
  display: grid;
  place-items: center;
  color: #333333;
  font-size: 12px;
}
.lp-report__btn {
  margin-top: 12px;
  justify-content: center;
}

/* =========================================================
   支援プロセス 6ステップ
   ========================================================= */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.lp-step { text-align: center; }
.lp-step__no {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff3ea;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.lp-step--active .lp-step__no {
  background: var(--orange);
  color: #fff;
}
.lp-step__name {
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--navy);
}
.lp-step__desc {
  font-size: 12px;
  color: var(--gray-l);
  margin-top: 2px;
  line-height: 1.4;
}

/* =========================================================
   料金
   ========================================================= */
.lp-price { background: var(--cream); }
.lp-price__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.lp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.lp-card__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.lp-card__title--orange { color: var(--orange); }
.lp-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #333333;
  line-height: 1.5;
}
.lp-card__list div { display: flex; gap: 8px; }
.lp-dot { color: var(--orange); flex: none; }
.lp-price__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.lp-price__row + .lp-price__row {
  border-top: 1px dashed #e5ddd1;
  padding-top: 14px;
  margin-top: 14px;
}
.lp-price__label {
  font-size: 12px;
  color: #333333;
}
.lp-price__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}
.lp-price__value small { font-size: 12px; }
.lp-price__note {
  font-size: 12px;
  color: #333333;
  margin-top: 12px;
}

/* =========================================================
   チーム
   ========================================================= */
.lp-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-team__photo {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef1f5 center center / cover no-repeat;
}

/* =========================================================
   FAQ・レポート
   ========================================================= */
.lp-faq {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.lp-faq__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
/* 中身は /question/ と同じ .faq アコーディオン（css/faq-accordion.css）。
   ここは並べる枠だけを持たせる（2026.08） */
.lp-faq__list {
  display: block;
}
.lp-faq__list .faq:first-child { border-top: 1px solid #eee; }
.lp-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .2s;
}
.lp-faq__item:hover { border-color: var(--orange); }
.lp-faq__mark { color: var(--orange); flex: none; }
.lp-faq__more {
  font-size: 12px;
  color: var(--gray-l);
  margin-top: 10px;
  text-align: right;
}
.lp-gift {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.lp-gift__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}

/* =========================================================
   クロージングCTA
   ========================================================= */
.lp-closing {
  background: linear-gradient(160deg, #16243f, #0c1526);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-closing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  pointer-events: none;
}
.lp-closing__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.lp-closing__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.4;
}
.lp-closing__desc {
  margin-top: 12px;
  font-size: 13px;
  color: #b9c3d3;
}
.lp-closing__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media screen and (max-width: 1199px) {
  .lp-hero {
    padding-top: 55px; /* 既存ヘッダー（fixed 55px）ぶん */
  }
  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 20px 32px;
  }
  .lp-orbit {
    max-width: 340px;
    height: 300px;
  }
  .lp-orbit__center {
    width: 126px;
    min-height: 64px;
    padding: 11px 14px 15px;
    transform: translate(-50%, -49%);
  }
  .lp-orbit__center::before {
    inset: 0 0 14px;
  }
  .lp-orbit__center::after {
    height: 14px;
  }
  .lp-node {
    width: 92px;
    height: 70px;
    padding: 15px 8px 17px;
  }
  .lp-node::before {
    inset: 0 0 14px;
  }
  .lp-node::after {
    height: 14px;
  }
  .lp-node__name {
    max-width: 74px;
    font-size: 10.2px;
    line-height: 1.24;
  }
  .lp-node__desc {
    max-width: 76px;
    font-size: 9px;
    line-height: 1.18;
    margin-top: 2px;
  }
  .lp-orbit__title {
    font-size: 11px;
    line-height: 1.32;
  }
  .lp-node--1 { top: 14px; }
  .lp-node--2 { right: -4px; top: 104px; }
  .lp-node--3 { right: 52px; bottom: 13px; }
  .lp-node--4 { left: 52px; bottom: 13px; }
  .lp-node--5 { left: -4px; top: 104px; }
  .lp-inner { padding: 48px 20px; }
  .lp-case__cols {
    grid-template-columns: 1fr 1fr;
  }
  .lp-case__phone { grid-column: 1 / -1; height: 240px; }
  .lp-industry__cols { grid-template-columns: 1fr; }
  .lp-faq__cols { grid-template-columns: 1fr 1fr; }
  .lp-flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 6px;
  }
  .lp-flow__arrow { display: none; }
  .lp-flow__goal { margin-top: 0; }
  .lp-ai__grid { grid-template-columns: repeat(5, 1fr); }
  .lp-closing__inner { grid-template-columns: 1fr; }
}

@media screen and (max-width: 900px) {
  .lp-entry__cols { grid-template-columns: 1fr; }
  .lp-price__cols { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: repeat(3, 1fr); gap: 20px 10px; }
  .lp-faq__cols { grid-template-columns: 1fr; }
  .lp-team__grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 758px) {
  .lp-inner { padding: 40px 18px; }
  .lp-hero__inner { padding: 28px 18px 24px; }
  .lp-stats { grid-template-columns: 1fr 1fr; gap: 14px 8px; }
  .lp-cta { padding: 14px 18px; gap: 10px; flex: 1 1 100%; }
  .lp-cta__main { font-size: 16px; }
  .lp-orbit {
    max-width: min(340px, 100%);
    height: 300px;
  }
  .lp-ba__cols { grid-template-columns: 1fr; gap: 32px; }
  .lp-ba__desc { max-width: none; }
  .lp-case__cols { grid-template-columns: 1fr; }
  .lp-case__stats { grid-template-columns: 1fr 1fr; }
  .lp-voice { grid-template-columns: 1fr; }
  .lp-flow__steps { grid-template-columns: repeat(2, 1fr); }
  .lp-ai__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-team__grid { grid-template-columns: 1fr; }
  .lp-col__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-table__row {
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
  }
  .lp-table__row--head { display: none; }
  .lp-table__name { grid-column: 1 / -1; }
  .lp-table__count { text-align: left; }
  .lp-closing__cta { flex-direction: column; }
}

/* =========================================================
   AI業務効率化の詳しい解決方法（ポップアップ）2026.08
   ぼかし影は使わず、面と線で前後を出す
   ========================================================= */
.lp-aimodal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lp-aimodal[hidden] { display: none; }
.lp-aimodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 49, .62);
  opacity: 0;
  transition: opacity .2s ease-out;
}
.lp-aimodal.is-open .lp-aimodal__overlay { opacity: 1; }
.lp-aimodal__panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 84vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 40px 44px 36px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease-out, transform .2s ease-out;
}
.lp-aimodal.is-open .lp-aimodal__panel {
  opacity: 1;
  transform: none;
}
.lp-aimodal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  color: var(--gray-l);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  transition: color .2s;
}
.lp-aimodal__close:hover { color: var(--orange); }
.lp-aimodal__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--orange);
}
.lp-aimodal__title {
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.45;
  color: var(--navy);
}
.lp-aimodal__dl {
  margin-top: 22px;
  border-top: 1px solid var(--line2);
}
.lp-aimodal__dl dt {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange);
}
.lp-aimodal__dl dd {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink);
}
.lp-aimodal__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 13px 26px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  transition: background .2s;
}
.lp-aimodal__link:hover { background: var(--orange); }
.lp-aimodal__link::after {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 600px) {
  .lp-aimodal { padding: 16px; }
  .lp-aimodal__panel { padding: 32px 22px 26px; max-height: 88vh; }
  .lp-aimodal__title { font-size: 18px; }
  .lp-aimodal__dl dd { font-size: 13.5px; }
  .lp-aimodal__link { width: 100%; justify-content: center; }
}

/* =========================================================
   対応CMS（2026.08）
   ロゴは使わず、名前の型組みと線で見せる
   ========================================================= */








@media (max-width: 900px) {
  
}
@media (max-width: 520px) {
  
}

/* =========================================================
   現状図と一気通貫末尾図 2026.08
   SVGの中で5つの箱と分断から循環への変化を描く。
   ========================================================= */
.lp-ba__diagram,
.lp-flow__map {
  margin: 0;
}
.lp-ba__diagram {
  width: 100%;
}
.lp-flow__map {
  max-width: 980px;
  margin: 24px auto 0;
}
.lp-ba__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.lp-ba__svg--mobile {
  display: none;
}
.lp-ba__svg text {
  font-family: "Noto Sans JP", sans-serif;
}
.lp-ba__svg-panel {
  fill: #fff;
  stroke: #eee3d5;
  stroke-width: 1.2;
}
.lp-ba__broken-lines path {
  fill: none;
  stroke: var(--ba-orange-line);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
}
.lp-ba__empty-circle {
  fill: #fffaf4;
  stroke: var(--ba-orange-line);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
}
.lp-ba__empty-text {
  fill: #333333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.lp-ba__svg-card rect {
  fill: #fff;
  stroke: #eadbcc;
  stroke-width: 1.4;
}
.lp-ba__svg-card-title {
  fill: var(--navy);
  font-size: 17px;
  font-weight: 700;
}
.lp-ba__svg-card-copy {
  fill: #333333;
  font-size: 14px;
  font-weight: 500;
}
.lp-ba__svg-card--after rect {
  stroke: rgba(22, 36, 63, .5);
}
.lp-flow__map .lp-ba__svg-panel {
  stroke: rgba(242, 150, 0, .28);
}
.lp-flow__map .lp-ba__svg-card--after rect {
  fill: #fff;
  stroke: rgba(22, 36, 63, .46);
  stroke-width: 1.2;
}
.lp-flow__map .lp-ba__svg-card-title {
  fill: var(--navy);
  font-size: 17px;
}
.lp-flow__map .lp-ba__svg-card-copy {
  fill: #333333;
  font-size: 13px;
  font-weight: 500;
}
.lp-after__halo {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.15;
  stroke-opacity: .18;
}
.lp-after__cycle path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-opacity: .78;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-after__spokes path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-opacity: .34;
  stroke-dasharray: 4 7;
}
.lp-after__core rect {
  fill: #fff;
  stroke: var(--orange);
  stroke-width: 2;
}
.lp-after__core path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
}
.lp-after__core-title {
  fill: var(--navy);
  font-size: 22px;
  font-weight: 700;
}
.lp-after__core-copy {
  fill: var(--navy);
  font-size: 15px;
  font-weight: 700;
}
.lp-after__core-note {
  fill: #333333;
  font-size: 12px;
  font-weight: 700;
}
.lp-after__team rect {
  fill: #fff;
  stroke: var(--orange);
  stroke-width: 1.3;
}
.lp-after__team text {
  fill: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .lp-ba__cols {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .lp-ba__desc {
    max-width: 620px;
  }
}
@media (max-width: 758px) {
  .lp-ba__svg--desktop {
    display: none;
  }
  .lp-ba__svg--mobile {
    display: block;
    max-width: 390px;
    margin: 0 auto;
  }
  .lp-flow__map {
    max-width: 390px;
    margin-top: 18px;
  }
  .lp-ba__svg-card-title {
    font-size: 16px;
  }
  .lp-ba__svg-card-copy {
    font-size: 13px;
  }
  .lp-flow__map .lp-ba__svg-card-title {
    font-size: 15px;
  }
  .lp-flow__map .lp-ba__svg-card-copy {
    font-size: 12px;
  }
  .lp-after__cycle path {
    stroke-width: 2.1;
  }
  .lp-after__spokes path {
    stroke-width: 1.15;
  }
  .lp-after__core-title {
    font-size: 18px;
  }
  .lp-after__core-copy {
    font-size: 14px;
  }
  .lp-after__team text {
    font-size: 12px;
  }
}

/* =========================================================
   SVGアイコン（2026.08）
   記号文字だった箇所を svg-icons.php のスプライトに置き換えた。
   色は currentColor なので、置く場所の文字色がそのまま線の色になる。
   ========================================================= */
.lp-tile__icon,
.lp-row__icon,
.lp-flow__icon svg,
.lp-ai__icon svg {
  fill: none;
  stroke: currentColor;
  vertical-align: middle;
}
/* 業界タイル */
.lp-tile__icon {
  display: block;
  width: 66px;
  height: 66px;
  margin: 0 auto 8px;
  color: var(--orange);
}
/* サービスの行 */
.lp-row__icon {
  width: 51px;
  height: 51px;
  flex: none;
  color: var(--orange);
}
/* プロセスフロー */
/* イラストに差し替え（2026.08）。白地のPNGなので multiply で地に溶かす */
/* AI業務効率化。カード型にしたので白い丸の中に収める（2026.08） */
.lp-ai__icon svg,
.lp-ai__icon img {
  width: 46px;
  height: 46px;
  color: var(--navy);
}

/* =========================================================
   HERO下のバナー 2026.08
   バナーは1枚まるごとの画像。文字も画像に含まれている。
   ========================================================= */
.lp-bnr { background: #fff; }
.lp-bnr__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-bnr__item {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .2s ease-out;
}
.lp-bnr__item:hover { transform: translateY(-3px); }
.lp-bnr__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 900px) {
  .lp-bnr__inner { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 40px 20px; }
}
@media (max-width: 480px) {
  .lp-bnr__inner { grid-template-columns: repeat(2, 1fr); }
}


/* PCでの最小文字サイズを14pxにそろえる（2026.08）。スマホは元のサイズのまま */
@media (min-width: 768px) {
  .lp-lead { font-size: 14px; }
  .lp-note { font-size: 14px; }
  .lp-btn { font-size: 14px; }
  .lp-cta__sub { font-size: 14px; }
  .lp-stat__label { font-size: 14px; }
  .lp-stat__value small { font-size: 14px; }
  .lp-row { font-size: 14px; }
  .lp-tile { font-size: 14px; }
  .lp-ai__label { font-size: 14px; }
  .lp-ai__more { font-size: 14px; }
  .lp-ai__name { font-size: 14px; }
  .lp-case__stat span { font-size: 14px; }
  .lp-case__num small { font-size: 14px; }
  .lp-case__period { font-size: 14px; }
  .lp-panel__tag { font-size: 14px; }
  .lp-panel__title { font-size: 14px; }
  .lp-panel__list { font-size: 14px; }
  .lp-voice__title { font-size: 14px; }
  .lp-voice__text { font-size: 14px; }
  .lp-voice__name { font-size: 14px; }
  .lp-table__row { font-size: 14px; }
  .lp-table__row--head { font-size: 14px; }
  .lp-report__tag { font-size: 14px; }
  .lp-report__cover { font-size: 14px; }
  .lp-step__name { font-size: 14px; }
  .lp-step__desc { font-size: 14px; }
  .lp-card__title { font-size: 14px; }
  .lp-card__list { font-size: 14px; }
  .lp-price__label { font-size: 14px; }
  .lp-price__value small { font-size: 14px; }
  .lp-price__note { font-size: 14px; }
  .lp-faq__title { font-size: 14px; }
  .lp-faq__item { font-size: 14px; }
  .lp-faq__more { font-size: 14px; }
  .lp-closing__desc { font-size: 14px; }
  .lp-aimodal__eyebrow { font-size: 14px; }
  .lp-aimodal__dl dt { font-size: 14px; }
  .lp-aimodal__link { font-size: 14px; }
}
@media (min-width: 1200px) {
  .lp-orbit__title { font-size: 13.5px; }
  .lp-orbit__sub { font-size: 14px; }
  .lp-node__desc { font-size: 12px; }
}

/* =========================================================
   一気通貫のフロー（縦タイムライン）2026.08
   ========================================================= */
.lp-flow__steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 980px;
  margin: 44px auto 0;
  padding: 0;
  list-style: none;
}
.lp-flow__steps::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: #f4c26b;
}
.lp-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  min-height: 108px;
  padding: 28px 0;
  border-top: 1px solid #eadfce;
  background: transparent;
  text-align: left;
}
.lp-flow__step:first-child {
  border-top: 0;
}
.lp-flow__step::before {
  content: "";
  position: absolute;
  left: 84px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--cream);
  transform: translateY(-50%);
}
.lp-flow__step-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.lp-flow__step-no {
  display: block;
  color: var(--orange);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
}
.lp-flow__name {
  display: block;
  margin-top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.55;
  color: var(--navy);
}
.lp-flow__desc {
  display: block;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
.lp-flow__result {
  max-width: 980px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 2px solid var(--orange);
  text-align: center;
  position: relative;
}
.lp-flow__result-tag {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 4px;
  white-space: nowrap;
}
.lp-flow__result-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--navy);
  font-weight: 500;
}
.lp-flow__result-text b {
  font-weight: 700;
  background: linear-gradient(transparent 62%, #f8dcc4 62%);
}

/* =========================================================
   3つの入口（タブ切り替え）2026.08
   ========================================================= */
.lp-entry__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.lp-tab {
  appearance: none;
  border: 1px solid var(--line2);
  background: #fff;
  color: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.lp-tab:hover { border-color: var(--orange); color: var(--orange); }
.lp-tab[aria-selected="true"] {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.lp-entry__panels { margin-top: 20px; }
.lp-entry__panels .lp-col { max-width: 860px; margin: 0 auto; }
.lp-entry__panels .lp-col__grid { grid-template-columns: repeat(5, 1fr); }
.lp-entry__panels .lp-col__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }

@media (max-width: 700px) {
  .lp-tab { padding: 12px 16px; font-size: 14px; }
  .lp-entry__panels .lp-col__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-entry__panels .lp-col__list { grid-template-columns: 1fr; }
}
@media (max-width: 758px) {
  .lp-flow__steps {
    margin-top: 32px;
  }
  .lp-flow__steps::before {
    left: 20px;
    top: 30px;
    bottom: 30px;
  }
  .lp-flow__step {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 24px 0 24px 48px;
  }
  .lp-flow__step::before {
    left: 14px;
  }
  .lp-flow__step-head {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }
  .lp-flow__step-no {
    font-size: 18px;
  }
  .lp-flow__name {
    font-size: 17px;
  }
  .lp-flow__desc {
    font-size: 15px;
  }
}

/* =========================================================
   分断 → 一気通貫 への橋渡し 2026.08
   セクションが切り替わっても話がつながって見えるようにする
   ========================================================= */
.lp-ba { position: relative; }
.lp-bridge {
  margin: 56px auto 0;
  text-align: center;
}
.lp-bridge__text {
  display: inline-block;
  margin: 0;
  background: var(--navy);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  padding: 14px 30px;
  border-radius: 4px;
}
/* 下向きの三角。次のセクションへ視線を送る */
.lp-bridge__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid var(--navy);
}
/* 分断とフローは1つのセクションにまとめたので、
   フロー側は入れ物ではなく中の塊として余白だけを持たせる */
.lp-ba .lp-flow { margin-top: 64px; }
.lp-ba .lp-flow .lp-head {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 34px;
  text-align: left;
}
.lp-ba .lp-flow .lp-h2 {
  margin-top: 0;
}

@media (max-width: 600px) {
  .lp-bridge { margin-top: 34px; }
  .lp-bridge__text { font-size: 15px; padding: 12px 20px; }
  .lp-ba .lp-flow { margin-top: 46px; }
}

/* =========================================================
   よくある質問（レポート欄を外して1カラムに）2026.08
   ========================================================= */
.lp-faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.lp-faq__more {
  margin-top: 22px;
  text-align: center;
}

/* ---------- 導入事例（2026.08） ---------- */
.lp-works {
  padding: 80px 0;
  background: #f2f2f2;
}
.lp-works .works-grid {
  margin-top: 36px;
}
.lp-works__more {
  margin-top: 36px;
  text-align: center;
}
.lp-works__more .lp-btn {
  min-width: 280px;
}
@media screen and (max-width: 599px) {
  .lp-works { padding: 56px 0; }
  .lp-works__more .lp-btn { min-width: 100%; }
}

/* =========================================================
   一気通貫の6工程：横並びカードのスライダー 2026.08
   ========================================================= */
.lp-flowsl {
  position: relative;
  margin-top: 48px;
}
.lp-flowsl__swiper {
  overflow: hidden;
  padding: 4px 4px 8px;
}
.lp-flowsl__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-flowsl__slide {
  height: auto;
  margin: 0;
}
.lp-flowsl__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #efe8e0;
  border-radius: 12px;
  padding: 24px 22px 22px;
  color: #333333;
}
.lp-flowsl__card::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 54px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
}
.lp-flowsl__slide:last-child .lp-flowsl__card::after { display: none; }
.lp-flowsl__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lp-flowsl__no {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: var(--orange);
  letter-spacing: .02em;
}
.lp-flowsl__titles { display: flex; flex-direction: column; gap: 4px; }
.lp-flowsl__name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
}
.lp-flowsl__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}
.lp-flowsl__fig {
  margin: 16px 0 0;
  height: 150px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lp-flowsl__fig img {
  max-height: 130px;
  width: auto;
  height: auto;
}
.lp-flowsl__label {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding-left: 12px;
  border-left: 3px solid var(--orange);
  line-height: 1.3;
}
.lp-flowsl__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.lp-flowsl__tag {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #e3d9cc;
  border-radius: 9999px;
  background: #fbf7f2;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  white-space: nowrap;
}
.lp-flowsl__ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.lp-flowsl__btn {
  appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .2s, color .2s, opacity .2s;
}
.lp-flowsl__btn:hover { background: var(--navy); color: #fff; }
.lp-flowsl__btn.swiper-button-disabled { opacity: .3; cursor: default; }
.lp-flowsl__btn.swiper-button-disabled:hover { background: #fff; color: var(--navy); }
.lp-flowsl__ctrl .lp-flowsl__pagination,
.lp-flowsl__ctrl .lp-flowsl__pagination.swiper-pagination-horizontal { position: static; display: flex; gap: 8px; width: auto; flex: 0 0 auto; transform: none; }
.lp-flowsl__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  opacity: 1;
  background: #e3d9cc;
}
.lp-flowsl__pagination .swiper-pagination-bullet-active { background: var(--orange); }
@media (max-width: 1199px) {
  .lp-flowsl__card::after { display: none; }
}
@media (max-width: 758px) {
  .lp-flowsl { margin-top: 32px; }
  .lp-flowsl__card { padding: 20px 18px 18px; }
  .lp-flowsl__no { font-size: 26px; }
  .lp-flowsl__name { font-size: 17px; }
  .lp-flowsl__fig { height: 100px; }
  .lp-flowsl__fig img { max-height: 84px; }
  .lp-flowsl__tag { font-size: 12px; padding: 4px 9px; }
  .lp-flowsl__label { font-size: 13px; }
}

/* 一気通貫の見出しはセンター揃え（2026.08） */
.lp-ba .lp-flow .lp-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* 一つのチームで担当：上の余白を広げる（2026.08） */
.lp-flow__result {
  margin: 80px auto 0;
  padding-top: 60px;
}

/* 工程カード：見出しとイラストを横並びに（2026.08） */
.lp-flowsl__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.lp-flowsl__top .lp-flowsl__head { flex: 1 1 auto; min-width: 0; }
.lp-flowsl__top .lp-flowsl__fig {
  flex: 0 0 120px;
  width: 120px;
  height: 110px;
  margin: 0;
}
.lp-flowsl__top .lp-flowsl__fig img { max-height: 96px; max-width: 104px; }
@media (max-width: 758px) {
  .lp-flowsl__top .lp-flowsl__fig { flex-basis: 96px; width: 96px; height: 90px; }
  .lp-flowsl__top .lp-flowsl__fig img { max-height: 78px; max-width: 84px; }
}

/* ファーストビューの図：切り出した要素をHTMLで配置し、軌道はSVG（2026.08） */
.lp-fvmap {
  position: relative;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
}
.lp-fvmap__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lp-fvmap__center,
.lp-fvmap__item {
  position: absolute;
  display: block;
}
.lp-fvmap__center { left: 30%; top: 16%; width: 40%; height: auto; z-index: 2; }
.lp-fvmap__item img { display: block; width: 100%; height: auto; }
.lp-fvmap__item { z-index: 3; transition: transform .25s ease-out; }
.lp-fvmap__item:hover { transform: translateY(-6px); }
.lp-fvmap__item--ai     { left: 13.5%; top: 2%;  width: 23%; }
.lp-fvmap__item--shinki { left: 61%;   top: 1%;  width: 20%; }
.lp-fvmap__item--uriage { left: 71%;   top: 41%; width: 21.5%; }
.lp-fvmap__item--saiyo  { left: 37%;   top: 64%; width: 22%; }
.lp-fvmap__item--gyomu  { left: 7.5%;  top: 42%; width: 21.5%; }
@media (max-width: 1199px) {
  .lp-fvmap { max-width: 600px; }
}

/* 分断セクション：図を外し、テキストをセンター揃えに（2026.08） */
.lp-ba__cols {
  grid-template-columns: 1fr;
}
.lp-ba__intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.lp-ba__intro .lp-ba__desc {
  margin-left: auto;
  margin-right: auto;
}

/* 一気通貫の図：イラスト画像に差し替え（2026.08） */
.lp-flow__map--img {
  margin: 40px auto 0;
  max-width: 980px;
  padding: 0;
  background: none;
  border: 0;
}
.lp-flow__map--img img {
  display: block;
  width: 100%;
  height: auto;
}

/* 図の背後に白いぼかし面を敷き、背景のオレンジの丸が透けないようにする（2026.08） */
.lp-fvmap::before {
  content: "";
  position: absolute;
  inset: -4% -6%;
  background: radial-gradient(ellipse at center, #fff 58%, rgba(255, 255, 255, 0) 74%);
  z-index: 0;
  pointer-events: none;
}
.lp-fvmap__rings { z-index: 1; }

/* 分断セクションの導入文：上下に100pxの余白（2026.08） */
.lp-ba__intro {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ファーストビューの図を1.2倍に（PCのみ・2026.08） */
@media (min-width: 1200px) {
  .lp-fvmap {
    transform: scale(1.2);
    transform-origin: center center;
    margin-top: 36px;
    margin-bottom: 36px;
  }
}

/* 分断〜一気通貫セクション：ぼかした写真をビューポートに固定した全幅背景（2026.08）
   background-attachment:fixed はiOSで効かないため、position:fixed＋clip-path方式。
   スクロール量に応じて js/script.js が --ba-blur / --ba-bright を更新する */
.lp-ba {
  position: relative;
  clip-path: inset(0); /* fixedの背景をこのセクションの範囲だけに見せる */
  isolation: isolate;
  --ba-blur: 10px;
  --ba-bright: 1.15;
}
.lp-ba__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.lp-ba__bg img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: blur(var(--ba-blur)) brightness(var(--ba-bright));
  transform: scale(1.1);
  transition: filter .15s linear;
}
.lp-ba__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 242, .78);
}
.lp-ba > .lp-inner {
  position: relative;
  z-index: 1;
}

/* バナー帯はいったん非表示（2026.08） */
.lp-bnr { display: none; }

/* 対応サービスのタグ：リンクにする（2026.08） */
a.lp-flowsl__tag {
  color: #333333;
  transition: border-color .2s, color .2s, background-color .2s;
}
a.lp-flowsl__tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff;
}

/* =========================================================
   課題整理のタブ：選択中のタブとパネルを枠でつなぐ（2026.08）
   参考イメージのように、選択タブの下辺を消してパネル本体と一体化させる
   ========================================================= */
.lp-entry__tabs {
  gap: 0;
  margin-top: 26px;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.lp-entry__tabs .lp-tab {
  border: 1px solid var(--line2);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  margin: 0 4px -1px; /* パネルの枠線と重ねる */
  padding: 15px 30px 16px;
  background: #fbf7f2;
  color: var(--navy);
  position: relative;
}
.lp-entry__tabs .lp-tab:hover {
  background: #fff;
  border-color: var(--line2);
  color: var(--orange);
}
.lp-entry__tabs .lp-tab[aria-selected="true"] {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
/* パネル側：タブと同じ枠で囲み、上辺だけタブの色に合わせる。
   中の余白と装飾を消して、タブが中身のカードに直接くっついて見えるようにする */
.lp-entry__panels {
  margin-top: 0;
  border: 1px solid var(--line2);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 8px 8px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.lp-entry__panels .lp-panel-entry > .lp-col,
.lp-entry__panels .lp-col {
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 32px 28px 30px;
}
@media (max-width: 700px) {
  /* スマホでも3つ横並びのまま（2026.08） */
  .lp-entry__tabs { flex-wrap: nowrap; }
  .lp-entry__tabs .lp-tab {
    flex: 1 1 0;
    min-width: 0;
    margin: 0 2px -1px;
    padding: 12px 6px 13px;
    font-size: 14px;
  }
  .lp-entry__panels { padding: 0; }
  .lp-entry__panels .lp-col { padding: 22px 18px 20px; }
}

/* 橋渡しの帯「きびだんごの一気通貫サポートで解決します」：PCは30px（2026.08） */
@media (min-width: 768px) {
  .lp-bridge__text {
    font-size: 30px;
    padding: 18px 40px;
  }
}

/* 6工程スライダーは親（.lp-inner 最大1280px）の外まで広げて最大1600pxにする（2026.08）
   画面中央を基準に置き直すので、親の幅指定に縛られない */
.lp-flowsl {
  width: min(1600px, calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .lp-flowsl {
    width: calc(100vw - 36px);
  }
}

/* 工程カードの縦横比を5:3に固定（2026.08）。中身は上から詰めて、あふれる場合はスクロール */
.lp-flowsl__card {
  aspect-ratio: 5 / 3;
  height: auto;
  overflow: hidden;
  justify-content: flex-start;
}
.lp-flowsl__slide {
  height: auto;
}

/* 工程カードの最大幅（2026.08） */
.lp-flowsl__card {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* スライド幅をカード幅に合わせる。余白はSwiperの spaceBetween がそのまま出る（2026.08） */
.lp-flowsl__slide {
  width: 500px;
  max-width: 100%;
}
.lp-flowsl__card {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .lp-flowsl__slide {
    width: 84%;
  }
}

/* 工程カード：画像だけを右半分の薄い背景として使用（2026.08） */
.lp-flowsl__head,
.lp-flowsl__label,
.lp-flowsl__tags {
  position: relative;
  z-index: 1;
}
.lp-flowsl__fig,
.lp-flowsl__top .lp-flowsl__fig {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  flex: none;
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 18px;
  border-radius: 0 12px 12px 0;
  background: transparent;
  z-index: 0;
  opacity: .18;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.lp-flowsl__fig img,
.lp-flowsl__top .lp-flowsl__fig img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .lp-flowsl__fig,
  .lp-flowsl__top .lp-flowsl__fig {
    width: 44%;
    padding: 14px 10px;
  }
}

/* サービス・手段から探す（lp-panel-3）のアイコンは2/3のサイズに（2026.08） */
#lp-panel-3 .lp-row__icon {
  width: 34px;
  height: 34px;
}

/* サイト内リンクボタン：ネイビー版と、セクション内での中央寄せ（2026.08） */
.link-btn--navy {
  background-color: #16243f;
}
.lp-works__more .link-btn,
.lp-faq__more .link-btn,
.lp-col__btn.link-btn {
  margin-left: auto;
  margin-right: auto;
}
.lp-faq__more { text-align: center; }
.lp-ai .link-btn { margin-left: 0; }

/* AI・システム開発セクションのボタンは項目の下で中央に（2026.08） */
.lp-ai__more-btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.lp-ai .link-btn { margin-left: auto; margin-right: auto; }
