@charset "UTF-8";
/* ============================================================
   クリニック開業支援LP（/clinic-support/）専用スタイル
   デザイン: design_handoff_clinic_lp v2（PC 1440 / SP 375）
   SPファースト、ブレイクポイント 1024px
   ============================================================ */

:root {
  --lp-blue: #1C75BC;
  --lp-blue-hover: #155a91;
  --lp-blue-tint: #EAF3FA;
  --lp-blue-pale: #BFD7EA;
  --lp-text: #474747;
  --lp-muted: #6b7680;
  --lp-gray-label: #8a959e;
  --lp-bg-alt: #F3F5F7;
  --lp-yellow: #FFE486;
  --lp-yellow-strong: #FEC906;
  --lp-navy: #14357F;
  --lp-magenta: #E4007F;
  --lp-fv-yellow: #FFE800;
  --lp-lime: #A6CE39;
  --lp-cta: #F58220;
  --lp-cta-hover: #d96c12;
  --lp-cta-pale: #F7C39A;
  --lp-line: #00C300;
  --lp-line-hover: #00a800;
  --lp-border: #E0E8EF;
  --lp-border-light: #E9EEF3;
  --lp-input-border: #cdd9e4;
}

/* ---------- ベース ---------- */
.lp-root {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--lp-text);
  background: #fff;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* SP下部固定バーの逃げ */
}
.lp-root *,
.lp-root *::before,
.lp-root *::after { box-sizing: border-box; }
/* :where()で詳細度ゼロのリセットにする（コンポーネント側のmargin指定を殺さないため） */
.lp-root :where(h1, h2, h3, p, ul, ol, li) {
  margin: 0;
  padding: 0;
}
.lp-root :where(ul, ol) { list-style: none; }
.lp-root a { color: var(--lp-blue); text-decoration: none; }
.lp-root :where(img) { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

/* 表示切替（SP / PC） */
.lp-pc, .lp-pc-item { display: none; }
@media (min-width: 1024px) {
  .lp-root { padding-bottom: 0; }
  .lp-pc { display: inline; }
  .lp-pc-item { display: block; }
  a.lp-pc-item, span.lp-pc-item { display: inline-block; }
  .lp-sp, .lp-sp-item { display: none !important; }
}

/* ---------- 共通部品 ---------- */
.lp-marker {
  background: linear-gradient(transparent 62%, var(--lp-yellow) 62%);
  padding: 0 3px;
}
.lp-marker--bold { font-weight: 700; }

/* ピルボタン */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2.5rem;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 20px;
  transition: background-color .2s ease;
  text-align: center;
}
.lp-btn--primary,
.lp-root a.lp-btn--primary { background: var(--lp-blue); color: #fff; }
.lp-btn--primary:hover,
.lp-root a.lp-btn--primary:hover { background: var(--lp-blue-hover); color: #fff; }
.lp-btn--line,
.lp-root a.lp-btn--line { background: var(--lp-line); color: #fff; }
.lp-btn--line:hover,
.lp-root a.lp-btn--line:hover { background: var(--lp-line-hover); color: #fff; }
.lp-btn__line-icon {
  width: 20px; height: 20px;
  background: #fff; color: var(--lp-line);
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 12px;
  flex: none;
}

/* 吹き出しピル */
.lp-balloon { text-align: center; margin-bottom: 24px; }
.lp-balloon__pill {
  display: inline-block;
  position: relative;
  border: 2px solid var(--lp-blue);
  color: var(--lp-blue);
  background: #fff;
  font-size: 13px; font-weight: 700;
  padding: 7px 26px;
  border-radius: 2.5rem;
}
.lp-balloon__pill::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 10px; height: 10px;
  background: #fff;
  border-right: 2px solid var(--lp-blue);
  border-bottom: 2px solid var(--lp-blue);
  transform: translateX(-50%) rotate(45deg);
}
.lp-balloon--white .lp-balloon__pill {
  border-color: #fff; color: #fff; background: var(--lp-blue);
}
.lp-balloon--white .lp-balloon__pill::after {
  background: var(--lp-blue);
  border-color: #fff;
}
@media (min-width: 1024px) {
  .lp-balloon { margin-bottom: 32px; }
  .lp-balloon__pill { font-size: 15px; padding: 8px 36px; }
  .lp-balloon__pill::after { bottom: -7px; width: 12px; height: 12px; }
}

/* セクション共通 */
.lp-section { background: #fff; padding: 44px 18px; }
.lp-section--gray { background: var(--lp-bg-alt); }
.lp-section--blue { background: var(--lp-blue); }
@media (min-width: 1024px) {
  .lp-section { padding: 76px 56px; }
  .lp-section--blue { padding: 76px 48px; }
}
/* 見出し: 日本語が主役（極太・大）、英字は小さなあしらい */
.lp-section__head { text-align: center; margin-bottom: 26px; }
.lp-section__head--tight { margin-bottom: 10px; }
.lp-section__en {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.35em; text-indent: 0.35em;
  color: var(--lp-blue);
  margin-bottom: 6px;
}
.lp-section__ttl {
  font-size: 24px; font-weight: 900;
  color: var(--lp-blue);
  line-height: 1.5;
}
.lp-section__head--white .lp-section__en { color: rgba(255,255,255,0.8); }
.lp-section__head--white .lp-section__ttl { color: #fff; }
@media (min-width: 1024px) {
  .lp-section__head { margin-bottom: 44px; }
  .lp-section__head--tight { margin-bottom: 18px; }
  .lp-section__en { font-size: 16px; margin-bottom: 8px; }
  .lp-section__ttl { font-size: 34px; }
}

/* 写真プレースホルダー（実素材差し替えまでの仮枠） */
.lp-ph {
  background: repeating-linear-gradient(45deg, #d9e4ee, #d9e4ee 10px, #e7eef5 10px, #e7eef5 20px);
  display: flex; align-items: center; justify-content: center;
}
.lp-ph__label {
  font-family: monospace;
  font-size: 10px; color: #7d8fa0;
  background: #fff;
  padding: 3px 8px; border-radius: 4px;
}

/* ---------- LPヘッダー ---------- */
.lp-header {
  background: #fff;
  border-bottom: 1px solid var(--lp-border-light);
  position: sticky; top: 0; z-index: 20;
}
.lp-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 14px;
}
.lp-header__brand { display: flex; align-items: center; }
.lp-header__logo { width: 170px; height: auto; }
.lp-header__actions { display: flex; align-items: center; gap: 12px; }
.lp-header__cta { font-size: 12px; padding: 9px 16px; }
/* ヘッダーCTAはSP固定バーと同じCTA色に揃える */
.lp-header__cta.lp-btn--primary,
.lp-root a.lp-header__cta.lp-btn--primary { background: var(--lp-cta); color: #fff; }
.lp-header__cta.lp-btn--primary:hover,
.lp-root a.lp-header__cta.lp-btn--primary:hover { background: var(--lp-cta-hover); color: #fff; }
.lp-header__nav { display: none; }
@media (min-width: 1024px) {
  /* ヘッダーはボディ幅に限定（右側は常にフォーム領域） */
  .lp-header { margin-right: calc(var(--lp-form-w) + 24px); }
  .lp-header__inner { height: 72px; padding: 0 32px; }
  .lp-header__logo { width: 220px; }
  .lp-header__actions { display: none; }
  .lp-header__nav {
    display: flex; align-items: center; gap: 30px;
    font-size: 13px; font-weight: 500;
  }
  .lp-header__nav a { color: var(--lp-text); }
  .lp-header__nav a:hover { color: var(--lp-blue); }
}

/* ---------- 2カラムレイアウト（PC） ---------- */
@media (min-width: 1024px) {
  .lp-root { --lp-form-w: 392px; }
  .lp-main { margin-right: calc(var(--lp-form-w) + 24px); }
  /* フォームは画面右に完全固定。上下をピン留めして常にビューポート内に収める */
  .lp-aside {
    position: fixed;
    top: 12px; /* 右側は最上部からフォーム専用領域 */
    bottom: 12px;
    right: 12px;
    width: var(--lp-form-w);
    /* メディアクエリはスクロールバー幅を含むため、境界幅でビューポートを超えないよう保険 */
    max-width: calc(100% - 24px);
    padding: 0;
    z-index: 25;
  }
}
@media (min-width: 1280px) {
  .lp-root { --lp-form-w: 464px; }
}

/* ---------- ①ファーストビュー（背景ビジュアル×テキスト重ね） ---------- */
.lp-fv { background: #fff; padding: 0 0 22px; overflow: hidden; }
.lp-fv__grid { display: flex; flex-direction: column; }

/* SPは 文字 → 人物 → バッヂ の順 */
.lp-fv__copy  { order: 1; text-align: center; padding: 14px 12px 10px; }
.lp-fv__visual{ order: 2; }
.lp-fv__awards{ order: 3; position: relative; z-index: 2; padding: 0 8px; margin-top: -30px; }
.lp-fv__copy-inner { display: inline-block; text-align: center; }
.lp-fv__ttlblock { display: table; margin: 0 auto; }

/* サブコピー（SPは1行・中央揃え） */
.lp-fv__lead {
  font-size: clamp(12.5px, 4vw, 17px);
  font-weight: 900; line-height: 1.5;
  color: var(--lp-text); letter-spacing: -.02em;
  margin-bottom: 8px; white-space: nowrap;
}
.lp-fv__lead-sm { font-size: .86em; font-weight: 700; }
.lp-fv__lead-em { font-style: normal; color: var(--lp-navy); }

/* H1 */
.lp-fv__ttl { margin-bottom: 12px; line-height: 1.18; }
.lp-fv__ttl-main,
.lp-fv__ttl-sub { display: inline-block; font-weight: 900; letter-spacing: 0; white-space: nowrap; }
.lp-fv__ttl-main {
  background: var(--lp-navy); color: #fff;
  font-size: clamp(26px, 9.4vw, 38px);
  padding: 4px 12px 6px; margin-bottom: 6px;
}
.lp-fv__ttl-sub {
  color: var(--lp-magenta);
  font-size: clamp(28px, 11.4vw, 46px);
  padding-bottom: 2px;
  border-bottom: 5px solid var(--lp-fv-yellow);
}

/* エリア（H1ブロックに対して中央揃え） */
.lp-fv__area {
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  color: var(--lp-text); white-space: nowrap;
}
.lp-fv__area-icon { width: 17px; height: 17px; flex: none; color: var(--lp-navy); }

/* 勲章 */
.lp-fv__awards { display: flex; justify-content: center; gap: 4px; }
.lp-fv__award {
  flex: 1 1 0; max-width: 126px; aspect-ratio: 1 / 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-bottom: 13px;
  background: url("../img/clinic-support/badge-laurel.webp") center / contain no-repeat;
}
.lp-fv__award-label {
  font-size: 10.5px; font-weight: 700; line-height: 1.2;
  color: var(--lp-navy); letter-spacing: -.06em; white-space: nowrap;
}
.lp-fv__award-value {
  font-size: 26px; font-weight: 900; line-height: 1.15;
  color: var(--lp-magenta); letter-spacing: -.04em;
  white-space: nowrap; text-align: center;
}
.lp-fv__award-unit { font-size: .5em; margin-left: 1px; }
.lp-fv__award-unit--block { display: block; margin: 1px 0 0; font-size: 10.5px; letter-spacing: -.04em; }
.lp-fv__award-value--txt {
  font-size: 16px; font-weight: 900; line-height: 1.2;
  color: var(--lp-magenta); letter-spacing: -.06em; white-space: nowrap;
}

/* ビジュアル */
.lp-fv__visual { position: relative; }
.lp-fv__pic,
.lp-fv__visual picture { display: block; width: 100%; }
.lp-fv__pic-img,
.lp-fv__visual img {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  object-fit: cover; object-position: center 34%;
}
/* SP：写真の上下を白へ溶かし、テキスト／バッヂ領域との境目をなくす */
.lp-fv__visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    #fff 0%, rgba(255,255,255,.5) 10%, rgba(255,255,255,0) 24%,
    rgba(255,255,255,0) 58%, rgba(255,255,255,.7) 82%, #fff 100%);
}

@media (min-width: 768px) {
  .lp-fv__lead { white-space: normal; }
}
/* タブレット〜小型PC：写真は中央寄せ */
@media (min-width: 768px) and (max-width: 1279px) {
  .lp-fv__visual { max-width: 620px; margin: 0 auto; }
  .lp-fv__pic-img, .lp-fv__visual img { aspect-ratio: 1 / 1; object-position: center center; }
}
@media (min-width: 1024px) {
  .lp-fv { padding-bottom: 28px; }
  .lp-fv__copy { padding: 30px 48px 14px; }
  .lp-fv__awards { padding: 0 48px; margin-top: -34px; }
  .lp-fv__lead { font-size: 20px; }
  .lp-fv__ttl-main { font-size: 40px; }
  .lp-fv__ttl-sub { font-size: 43px; }
  .lp-fv__area { font-size: 16px; }
  .lp-fv__award { max-width: 146px; padding-bottom: 15px; }
  .lp-fv__award-label { font-size: 12px; letter-spacing: -.07em; }
  .lp-fv__award-value { font-size: 29px; }
  .lp-fv__award-unit--block { font-size: 12px; }
  .lp-fv__award-value--txt { font-size: 18px; }
}

/* PCは1枚の帯として見せる（背景ビジュアルにテキストを重ねる） */
@media (min-width: 1280px) {
  .lp-fv { padding: 0; }
  .lp-fv__grid { display: block; position: relative; min-height: 520px; max-width: 1120px; margin: 0 auto; }
  .lp-fv__visual {
    position: absolute; top: 0; right: 0; bottom: 0; left: auto;
    width: 58%; z-index: 0;
    max-width: none; margin: 0; aspect-ratio: auto;
  }
  .lp-fv__pic,
  .lp-fv__visual picture,
  .lp-fv__pic-img,
  .lp-fv__visual img { width: 100%; height: 100%; }
  .lp-fv__pic-img,
  .lp-fv__visual img { aspect-ratio: auto; object-fit: cover; object-position: right center; }
  /* 写真の左端を白へ溶かして境界をなくす（PCは横方向） */
  .lp-fv__visual::after {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 20%, rgba(255,255,255,.6) 36%, rgba(255,255,255,0) 56%);
  }
  .lp-fv__copy {
    position: relative; z-index: 1; text-align: left;
    padding: 50px 44% 0 clamp(24px, 3.2vw, 46px);
  }
  .lp-fv__copy-inner { display: inline-block; text-align: left; }
  .lp-fv__ttlblock { margin: 0; }
  .lp-fv__awards {
    position: relative; z-index: 2;
    justify-content: flex-start; gap: 8px;
    padding: 24px 44% 50px clamp(24px, 3.2vw, 46px);
    margin-top: 0;
  }
  .lp-fv__lead { font-size: clamp(17px, calc(2.56vw - 13px), 26px); margin-bottom: 14px; }
  .lp-fv__ttl { margin-bottom: 16px; }
  .lp-fv__ttl-main { font-size: clamp(34px, calc(6.25vw - 35.4px), 60px); padding: 6px 16px 9px; }
  .lp-fv__ttl-sub { font-size: clamp(37px, calc(6.6vw - 37px), 64px); border-bottom-width: 8px; }
  .lp-fv__area { font-size: 20px; }
  .lp-fv__area-icon { width: 22px; height: 22px; }
  .lp-fv__award { max-width: 165px; padding-bottom: 17px; }
  .lp-fv__award-label { font-size: 12.5px; }
  .lp-fv__award-value { font-size: 33px; }
  .lp-fv__award-unit--block { font-size: 13px; }
  .lp-fv__award-value--txt { font-size: 20px; }
}

/* ---------- ②お悩み（吹き出し＋悩む人） ---------- */
.lp-problem__lists {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 22px 14px;
  max-width: 900px; margin: 0 auto;
}
.lp-problem__item {
  width: calc(50% - 7px);
  display: flex; flex-direction: column; align-items: center;
}
.lp-problem__bubble {
  position: relative;
  width: 100%; flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 1rem;
  padding: 14px 10px;
  box-shadow: 0 2px 10px rgba(28,117,188,0.09);
  font-size: 12.5px; font-weight: 500;
  text-align: center; line-height: 1.7;
}
.lp-problem__bubble::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -7px;
  width: 14px; height: 14px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 4px 4px 8px rgba(28,117,188,0.06);
}
.lp-problem__person {
  position: relative;
  margin-top: 16px;
}
.lp-problem__figure { height: 100px; width: auto; display: block; }
.lp-problem__mark {
  position: absolute;
  top: -8px; right: -16px;
  width: 24px; height: 24px;
  background: var(--lp-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-blue);
  font-size: 13px; font-weight: 900;
}
@media (min-width: 1024px) {
  .lp-problem__lists { gap: 32px 24px; }
  .lp-problem__item { width: calc((100% - 48px) / 3); }
  .lp-problem__bubble { padding: 22px 16px; font-size: 14.5px; line-height: 1.8; }
  .lp-problem__person { margin-top: 20px; }
  .lp-problem__figure { height: 128px; width: auto; }
  .lp-problem__mark { width: 28px; height: 28px; font-size: 15px; top: -10px; right: -20px; }
}

/* ---------- ③転換 ---------- */
.lp-kokan { text-align: center; }
.lp-kokan__copy { font-size: 15.5px; font-weight: 700; line-height: 2.3; }
@media (min-width: 1024px) {
  .lp-kokan { padding: 72px 56px; }
  .lp-kokan__copy { font-size: 22px; line-height: 2.4; }
}

/* ---------- ④ワンストップ ---------- */
.lp-onestop__panel {
  background: #fff;
  border-radius: 1.2rem;
  padding: 26px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
@media (min-width: 1024px) {
  .lp-onestop__panel { border-radius: 1.5rem; padding: 48px 44px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
}

.lp-onestop__lead {
  text-align: center;
  font-size: 13px; line-height: 1.9;
  margin-bottom: 24px;
}

/* Before / After 対比 */
.lp-onestop__vs { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 28px; }
.lp-onestop__vs-card {
  border-radius: 1rem;
  padding: 20px 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.lp-onestop__vs-card--before { background: var(--lp-bg-alt); }
.lp-onestop__vs-card--after {
  background: #fff;
  border: 3px solid var(--lp-blue);
  box-shadow: 0 8px 24px rgba(28,117,188,0.18);
}
.lp-onestop__vs-label {
  font-size: 12px; font-weight: 700;
  color: var(--lp-gray-label);
  background: #fff;
  border-radius: 2.5rem;
  padding: 4px 18px;
  margin-bottom: 12px;
}
.lp-onestop__vs-label--blue { color: #fff; background: var(--lp-blue); }
.lp-onestop__vs-num { font-size: 17px; font-weight: 700; line-height: 1.6; margin-bottom: 10px; }
.lp-onestop__vs-strong { font-size: 34px; font-weight: 900; padding: 0 2px; }
.lp-onestop__vs-strong--blue {
  color: var(--lp-blue);
  font-size: 40px;
  background: linear-gradient(transparent 68%, var(--lp-yellow) 68%);
}
.lp-onestop__vs-txt { font-size: 13px; line-height: 1.8; margin-bottom: 10px; }
/* Before: 散らばる業者チップ（雑然さの演出） */
.lp-onestop__scatter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 10px;
  max-width: 320px;
  margin-bottom: 14px;
}
.lp-onestop__scatter li {
  background: #fff;
  border: 1px solid #d5dde4;
  color: var(--lp-muted);
  font-size: 11.5px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 2.5rem;
}
.lp-onestop__scatter li:nth-child(odd) { transform: rotate(-5deg); }
.lp-onestop__scatter li:nth-child(even) { transform: rotate(4deg) translateY(3px); }
.lp-onestop__scatter li:nth-child(3n) { transform: rotate(7deg) translateY(-2px); }
.lp-onestop__vs-illust { height: 96px; width: auto; margin-top: auto; }
.lp-onestop__vs-badge {
  background: var(--lp-yellow-strong);
  color: var(--lp-text);
  font-size: 13px; font-weight: 900;
  padding: 5px 20px;
  border-radius: 2.5rem;
  margin-top: 12px;
}
.lp-onestop__vs-arrow { display: flex; align-items: center; justify-content: center; }
.lp-onestop__vs-arrow span {
  width: 0; height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 14px solid var(--lp-yellow-strong);
}
@media (min-width: 1024px) {
  .lp-onestop__lead { font-size: 15px; margin-bottom: 36px; }
  .lp-onestop__vs {
    flex-direction: row; align-items: stretch; justify-content: center;
    gap: 0 18px;
    margin-bottom: 44px;
  }
  .lp-onestop__vs-card { flex: 1; max-width: 400px; padding: 26px 22px; }
  .lp-onestop__vs-label { font-size: 13.5px; padding: 5px 22px; margin-bottom: 16px; }
  .lp-onestop__vs-num { font-size: 20px; margin-bottom: 14px; }
  .lp-onestop__vs-strong { font-size: 44px; }
  .lp-onestop__vs-strong--blue { font-size: 54px; }
  .lp-onestop__vs-txt { font-size: 14.5px; margin-bottom: 12px; }
  .lp-onestop__vs-illust { height: 120px; }
  .lp-onestop__vs-arrow { align-self: center; }
  .lp-onestop__vs-arrow span {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 18px solid var(--lp-yellow-strong);
    border-right: none;
  }
}

/* 8領域グリッド */
.lp-onestop__areas-ttl {
  text-align: center;
  font-size: 14.5px; font-weight: 700;
  margin-bottom: 14px;
}
.lp-onestop__areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lp-onestop__areas-grid li {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 8px;
  background: var(--lp-blue-tint);
  border-radius: 0.8rem;
  padding: 14px 4px 12px;
  text-align: center;
}
.lp-onestop__area-icon {
  width: 44px; height: 44px; flex: none;
  background: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lp-blue);
  box-shadow: 0 1px 4px rgba(28,117,188,0.12);
}
.lp-onestop__area-icon svg { width: 24px; height: 24px; }
.lp-onestop__area-txt {
  font-size: 12px; font-weight: 700;
  color: var(--lp-blue);
  line-height: 1.4;
  display: flex; align-items: center;
  min-height: 2.8em;
}
@media (min-width: 1024px) {
  .lp-onestop__areas-ttl { font-size: 18px; margin-bottom: 18px; }
  .lp-onestop__areas-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .lp-onestop__areas-grid li { padding: 18px 6px 14px; gap: 10px; }
  .lp-onestop__area-icon { width: 54px; height: 54px; }
  .lp-onestop__area-icon svg { width: 29px; height: 29px; }
  .lp-onestop__area-txt { font-size: 14px; }
}

/* ---------- ⑤選ばれる理由 ---------- */
.lp-reason__lists { display: flex; flex-direction: column; gap: 14px; }
.lp-reason__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  overflow: hidden;
}
.lp-reason__ph { height: 130px; }
.lp-reason__ph--img {
  background: #F6FAFD;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.lp-reason__ph--img img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.lp-reason__body { padding: 16px 18px 20px; }
.lp-reason__point {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--lp-blue);
  margin-bottom: 6px;
}
.lp-reason__point span { font-size: 26px; }
.lp-reason__ttl {
  font-size: 17px; font-weight: 900;
  line-height: 1.6;
  margin-bottom: 10px;
}
.lp-reason__txt { font-size: 13.5px; line-height: 1.9; }
.lp-reason__txt strong { color: var(--lp-blue); font-weight: 700; }
@media (min-width: 1024px) {
  .lp-reason__lists { gap: 18px; max-width: 880px; margin: 0 auto; }
  .lp-reason__card { display: flex; gap: 26px; padding: 26px; align-items: center; overflow: visible; }
  .lp-reason__ph { width: 200px; height: 140px; flex: none; border-radius: 0.8rem; }
  .lp-reason__body { padding: 0; flex: 1; }
  .lp-reason__point { font-size: 16px; margin-bottom: 8px; }
  .lp-reason__point span { font-size: 36px; }
  .lp-reason__ttl { font-size: 22px; margin-bottom: 12px; }
  .lp-reason__txt { font-size: 15px; }
}

/* POINT05 特別カード（追加費用なし＝0円） */
.lp-reason__special {
  background: var(--lp-blue);
  border-radius: 1rem;
  padding: 28px 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(28,117,188,0.25);
}
.lp-reason__special-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2.5rem;
  font-size: 12px; font-weight: 700;
  padding: 4px 18px;
  margin-bottom: 14px;
}
.lp-reason__special-copy {
  font-size: 19px; font-weight: 900;
  line-height: 1.7;
  margin-bottom: 10px;
}
.lp-reason__special-em {
  font-weight: 700;
  color: var(--lp-yellow-strong);
  padding: 0 2px;
}
.lp-reason__special-zero {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 700;
  color: var(--lp-yellow-strong);
  padding: 0 4px;
  line-height: 1;
  vertical-align: -4px;
}
.lp-reason__special-txt {
  font-size: 13px; line-height: 1.9;
  opacity: .95;
  margin-bottom: 16px;
}
.lp-reason__special-badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.lp-reason__special-badges li {
  background: var(--lp-yellow);
  color: var(--lp-text);
  font-size: 11.5px; font-weight: 700;
  padding: 4px 14px;
  border-radius: 2.5rem;
}
@media (min-width: 1024px) {
  .lp-reason__special { padding: 40px 36px; }
  .lp-reason__special-label { font-size: 13.5px; margin-bottom: 18px; }
  .lp-reason__special-copy { font-size: 27px; margin-bottom: 12px; }
  .lp-reason__special-zero { font-size: 76px; vertical-align: -8px; }
  .lp-reason__special-txt { font-size: 15px; margin-bottom: 18px; }
  .lp-reason__special-badges li { font-size: 13px; padding: 5px 18px; }
}

/* ---------- ⑥流れ ---------- */
.lp-flow__lead { text-align: center; font-size: 13.5px; font-weight: 700; margin-bottom: 24px; }
.lp-flow__lists { display: flex; flex-direction: column; }
.lp-flow__item { display: flex; gap: 14px; }
.lp-flow__num-wrap { display: flex; flex-direction: column; align-items: center; flex: none; }
.lp-flow__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lp-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 600;
  flex: none;
}
.lp-flow__line { width: 2px; flex: 1; background: var(--lp-blue-pale); min-height: 18px; }
.lp-flow__item:last-child .lp-flow__line { display: none; }
.lp-flow__body { padding: 4px 0 22px; }
.lp-flow__ttl-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 2px; }
.lp-flow__ttl { font-size: 15px; font-weight: 700; color: var(--lp-blue); }
.lp-flow__period {
  background: var(--lp-yellow);
  font-size: 10.5px; font-weight: 700;
  padding: 2px 10px; border-radius: 2.5rem;
}
.lp-flow__desc { font-size: 12.5px; color: var(--lp-muted); line-height: 1.7; }
@media (min-width: 1024px) {
  .lp-flow__lead { font-size: 17px; margin-bottom: 44px; }
  .lp-flow__lists { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .lp-flow__item {
    flex-direction: column; gap: 8px;
    background: #fff; border-radius: 1rem;
    padding: 22px 14px 24px;
    text-align: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(28,117,188,0.07);
  }
  .lp-flow__num-wrap { gap: 8px; }
  .lp-flow__step {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; letter-spacing: 0.2em;
    color: var(--lp-blue); font-weight: 600;
  }
  .lp-flow__num { width: 52px; height: 52px; font-size: 26px; }
  .lp-flow__body { padding: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .lp-flow__ttl-row { flex-direction: column; gap: 8px; margin-bottom: 0; }
  .lp-flow__ttl { font-size: 14.5px; line-height: 1.5; min-height: 44px; display: flex; align-items: center; }
  .lp-flow__period { font-size: 11.5px; padding: 3px 10px; min-height: 20px; }
}

/* ---------- ⑦導入事例 ---------- */
.lp-case__lists { display: flex; flex-direction: column; gap: 14px; }
.lp-case__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.lp-case__tag {
  position: absolute; left: 0; top: 0;
  background: var(--lp-blue); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 0.8rem 0;
  z-index: 1;
}
.lp-case__ph { aspect-ratio: 16 / 10; overflow: hidden; }
.lp-case__ph-img,
.lp-case__ph picture,
.lp-case__ph img { width: 100%; height: 120%; object-fit: cover; object-position: center; display: block; }
.lp-case__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lp-case__ttl { font-size: 15.5px; font-weight: 700; color: var(--lp-blue); line-height: 1.6; }
.lp-case__problem {
  font-size: 12.5px; line-height: 1.8;
  border-top: 1px dashed var(--lp-border);
  padding-top: 8px;
}
.lp-case__problem span { font-weight: 700; color: var(--lp-gray-label); }
.lp-case__solution { font-size: 12.5px; line-height: 1.8; }
.lp-case__solution span { font-weight: 700; color: var(--lp-blue); }
/* お客様の声（事例カード内に統合） */
.lp-case__voice {
  margin-top: auto;
  background: var(--lp-blue-tint);
  border-radius: 0.7rem;
  padding: 12px 14px;
}
.lp-case__voice-txt {
  font-size: 12.5px; font-weight: 700;
  color: var(--lp-blue);
  line-height: 1.8;
  margin-bottom: 4px;
}
.lp-case__voice-by {
  font-size: 11px;
  color: var(--lp-muted);
  text-align: right;
}
@media (min-width: 1024px) {
  .lp-case__lists { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .lp-case__tag { font-size: 11.5px; padding: 5px 16px; }
  .lp-case__body { padding: 20px 22px 22px; gap: 10px; }
  .lp-case__ttl { font-size: 17px; }
  .lp-case__problem { font-size: 13.5px; padding-top: 10px; }
  .lp-case__solution { font-size: 13.5px; }
  .lp-case__voice { padding: 14px 16px; }
  .lp-case__voice-txt { font-size: 13.5px; }
  .lp-case__voice-by { font-size: 11.5px; }
}

/* ---------- ⑧FAQ ---------- */
.lp-faq__lists { display: flex; flex-direction: column; gap: 10px; }
.lp-faq__item {
  border-radius: 0.8rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(28,117,188,0.07);
}
.lp-faq__q {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  background: none; border: none;
  font-family: inherit; color: inherit;
  text-align: left;
  transition: background-color .2s ease;
}
.lp-faq__q:hover { background: #F6FAFD; }
.lp-faq__q-icon, .lp-faq__a-icon {
  width: 26px; height: 26px; flex: none;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 14px;
  color: #fff;
}
.lp-faq__q-icon { background: var(--lp-blue); }
.lp-faq__a-icon { background: var(--lp-yellow-strong); }
.lp-faq__q-txt { flex: 1; font-size: 14px; font-weight: 700; line-height: 1.6; }
.lp-faq__mark { color: var(--lp-blue); font-size: 18px; font-weight: 700; }
.lp-faq__a {
  display: flex; gap: 10px;
  padding: 14px 14px 16px;
  border-top: 1px dashed var(--lp-border);
}
.lp-faq__a[hidden] { display: none; }
.lp-faq__a-txt { flex: 1; font-size: 13.5px; line-height: 1.9; }
@media (min-width: 1024px) {
  .lp-faq__lists { gap: 12px; max-width: 780px; margin: 0 auto; }
  .lp-faq__q { padding: 18px 22px; gap: 14px; }
  .lp-faq__q-icon, .lp-faq__a-icon { width: 30px; height: 30px; font-size: 16px; }
  .lp-faq__q-txt { font-size: 16px; }
  .lp-faq__mark { font-size: 20px; }
  .lp-faq__a { padding: 16px 22px 20px; gap: 14px; }
  .lp-faq__a-txt { font-size: 15px; }
}

/* ---------- ⑨最終CTA＋フォーム ---------- */
.lp-final { text-align: center; }
.lp-final__ttl {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px; font-weight: 900;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 24px;
}
.lp-final__form {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  margin-bottom: 18px;
  text-align: left;
}
.lp-final__form-head { background: var(--lp-blue-tint); padding: 14px; text-align: center; }
.lp-final__form-en {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--lp-blue);
  font-size: 12px; letter-spacing: 0.25em; text-indent: 0.25em;
}
.lp-final__form-ttl { font-family: 'Noto Sans JP', sans-serif; font-weight: 700; color: var(--lp-blue); font-size: 17px; }
.lp-final__form-zero { color: var(--lp-blue); font-size: 13px; font-weight: 700; }
.lp-final__form-zero span {
  color: var(--lp-blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  background: linear-gradient(transparent 62%, var(--lp-yellow) 62%);
  padding: 0 2px;
  line-height: 1;
  vertical-align: -2px;
}
.lp-final__form-body { padding: 18px 16px; }
.lp-final__ctas { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 1024px) {
  .lp-final__ttl { font-size: 29px; line-height: 1.8; margin-bottom: 36px; }
  .lp-final__ctas { flex-direction: row; gap: 18px; justify-content: center; align-items: center; }
}

/* ---------- フォーム共通 ---------- */
.lp-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}
.lp-form__fields { display: flex; flex-direction: column; gap: 13px; }
.lp-form__field { display: flex; flex-direction: column; gap: 5px; }
.lp-form__label { font-size: 13px; font-weight: 700; }
.lp-form__badge {
  background: var(--lp-blue); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 4px;
  vertical-align: 2px;
}
.lp-form__badge--optional { background: #E0E6EC; color: var(--lp-muted); }
.lp-form__field input,
.lp-form__field select,
.lp-form__field textarea {
  border: 1px solid var(--lp-input-border);
  border-radius: 0.6rem;
  padding: 12px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--lp-text);
  background: #fff;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.lp-form__field textarea { resize: vertical; }
.lp-form__field input:focus,
.lp-form__field select:focus,
.lp-form__field textarea:focus { border-color: var(--lp-blue); }
.lp-form__error {
  color: #d62d0f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.lp-form__submit {
  background: var(--lp-cta); color: #fff;
  border: none;
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900; font-size: 16px;
  padding: 15px;
  border-radius: 2.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245,130,32,0.3);
  transition: background-color .2s ease;
}
.lp-form__submit:hover { background: var(--lp-cta-hover); }
.lp-form__submit:disabled { background: var(--lp-cta-pale); cursor: not-allowed; box-shadow: none; }
.lp-form__done { text-align: center; padding: 24px 8px; }
.lp-form__done-ttl { font-size: 17px; font-weight: 700; color: var(--lp-blue); margin-bottom: 8px; }
.lp-form__done-txt { font-size: 13.5px; line-height: 1.9; }

/* ---------- PC右固定フォーム ---------- */
.lp-aside__box {
  background: #fff;
  border: 2px solid var(--lp-blue);
  border-radius: 1.2rem;
  box-shadow: 0 8px 28px rgba(28,117,188,0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.lp-aside__head { background: var(--lp-blue); padding: 20px; text-align: center; flex: none; }
.lp-aside__en {
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff; font-size: 13px;
  letter-spacing: 0.25em; text-indent: 0.25em;
}
.lp-aside__ttl { font-family: 'Noto Sans JP', sans-serif; font-weight: 700; color: #fff; font-size: 22px; }
.lp-aside__zero {
  color: #fff;
  font-size: 14px; font-weight: 700;
  margin-top: 2px;
}
.lp-aside__zero span {
  color: var(--lp-yellow-strong);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 27px; font-weight: 700;
  padding: 0 2px;
  line-height: 1;
  vertical-align: -2px;
}
.lp-aside__badges { display: flex; gap: 6px; justify-content: center; margin-top: 8px; }
.lp-aside__badges li {
  background: var(--lp-yellow);
  font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 2.5rem;
}
.lp-aside__body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  flex: 1;
  /* overflow-y だけ指定すると overflow-x が auto に計算され、
     フォーム内が横スクロール（サイドバーが横スライド）してしまうため明示的に hidden */
  overflow-x: hidden;
  overflow-y: auto;
}
.lp-aside__body .js-lp-form { flex: 1; display: flex; flex-direction: column; }
.lp-aside__body .lp-form__fields { flex: 1; gap: 15px; }
.lp-aside__body .lp-form__label { font-size: 14px; }
.lp-aside__body .lp-form__field input,
.lp-aside__body .lp-form__field select,
.lp-aside__body .lp-form__field textarea { padding: 13px 14px; font-size: 15px; }
.lp-aside__body .lp-form__field textarea { min-height: 104px; flex: 1; }
.lp-aside__body .lp-form__field:has(textarea) { flex: 1; }
.lp-aside__body .lp-form__submit { font-size: 18px; padding: 16px; }
.lp-aside__line { font-size: 16px; padding: 14px; flex: none; }

/* 中間段階の圧縮：781〜880pxの画面高で内部スクロールが出ていた「谷間」を解消する。
   ノートPC(例:800px)でもフォーム全体が内部スクロールなしで収まるようにする */
@media (min-width: 1024px) and (max-height: 880px) {
  .lp-aside__head { padding: 14px 18px; }
  .lp-aside__en { display: none; }
  .lp-aside__body { padding: 16px 18px; gap: 12px; }
  .lp-aside__body .lp-form__fields { gap: 11px; }
  .lp-aside__body .lp-form__field textarea { min-height: 76px; }
  .lp-aside__body .lp-form__submit { font-size: 17px; padding: 13px; }
  .lp-aside__line { font-size: 15px; padding: 12px; }
}

/* 画面高が低いときはフォーム内を自動圧縮して、送信ボタンまで必ず収める */
@media (min-width: 1024px) and (max-height: 780px) {
  .lp-aside__head { padding: 10px 16px; }
  .lp-aside__en { display: none; }
  .lp-aside__ttl { font-size: 16px; }
  .lp-aside__zero { font-size: 12.5px; }
  .lp-aside__zero span { font-size: 20px; }
  .lp-aside__badges { margin-top: 4px; }
  .lp-aside__badges li { font-size: 10px; padding: 1px 8px; }
  .lp-aside__body { padding: 14px 16px; gap: 10px; }
  .lp-aside__body .lp-form__fields { gap: 9px; }
  .lp-aside__body .lp-form__label { font-size: 12.5px; }
  .lp-aside__body .lp-form__field input,
  .lp-aside__body .lp-form__field select,
  .lp-aside__body .lp-form__field textarea { padding: 9px 12px; font-size: 14px; }
  .lp-aside__body .lp-form__field textarea { min-height: 52px; }
  .lp-aside__body .lp-form__submit { font-size: 15px; padding: 11px; }
  .lp-aside__line { font-size: 14px; padding: 10px; }
}
@media (min-width: 1024px) and (max-height: 620px) {
  .lp-aside__badges { display: none; }
}

/* ---------- LPフッター ---------- */
.lp-footer { background: var(--lp-bg-alt); padding: 28px 18px 24px; text-align: center; }
.lp-footer__brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lp-footer__mascot { width: 48px; height: 48px; }
.lp-footer__logo { width: 180px; height: auto; }
.lp-footer__copy { font-size: 11px; color: var(--lp-gray-label); }
@media (min-width: 1024px) {
  /* フッターもボディ幅基準で中央揃え（フォーム分を除外） */
  .lp-footer { padding: 48px 60px 32px; margin-right: calc(var(--lp-form-w) + 24px); }
  .lp-footer__brand { gap: 8px; }
  .lp-footer__mascot { width: 56px; height: 56px; }
  .lp-footer__copy { font-size: 11.5px; }
}

/* ---------- SP下部固定CTAバー ---------- */
.lp-fixed-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--lp-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  padding: 10px 12px;
  display: flex; gap: 10px;
  z-index: 30;
}
.lp-fixed-bar__btn { flex: 1; font-size: 15px; padding: 14px 4px; }
/* SP固定バーはCTA色（LINEボタン削除に伴い1本化） */
.lp-fixed-bar .lp-btn--primary,
.lp-root .lp-fixed-bar a.lp-btn--primary { background: var(--lp-cta); color: #fff; }
.lp-fixed-bar .lp-btn--primary:hover,
.lp-root .lp-fixed-bar a.lp-btn--primary:hover { background: var(--lp-cta-hover); color: #fff; }
