@charset "UTF-8";
/* =========================================================================
   SUSTINA サービスサイト(LP) 専用スタイル

   このLPはアプリ本体のバンドル(dist/index.js / index.css)を一切読まない。
   理由: LPは未ログインの見込み客が最初に触れる画面であり、
   2MB超のアプリバンドル(Bootstrap/jQuery/Chart.js)を読ませる理由がない。
   したがってリセットもトークンも本ファイル内で完結させる。

   デザイン確定値の出典: docs/SUSTINA コンビニFC向けLP.zip / README.md
   - 赤(--lp-danger) / 黄(--lp-warn) / 緑(--lp-ok) は
     「期限」「人員の過不足」の意味づけ専用。装飾には使わないこと。
   ========================================================================= */

:root {
  --lp-brand:        #128F92;
  --lp-brand-deep:   #0B769F;
  --lp-brand-bright: #13C2C6;
  --lp-gradient:     linear-gradient(105deg, #0B769F, #128F92 55%, #13C2C6);
  --lp-wash:         linear-gradient(150deg, #F2FAFA, #EAF5F8);
  --lp-ink:          #1F2933;
  --lp-ink-2:        #5B6770;
  --lp-line:         #C9D2D8;
  --lp-gray:         #F4F6F7;
  --lp-white:        #FFFFFF;
  /* セマンティック(意味づけ専用) */
  --lp-danger:       #DC3545;
  --lp-warn:         #B98900;
  --lp-ok:           #2CA083;

  --lp-jp: "BIZ UDPGothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
  --lp-num: Inter, "Helvetica Neue", Arial, sans-serif;
  --lp-logo: Montserrat, "Helvetica Neue", Arial, sans-serif;

  --lp-max: 1160px;
  --lp-header-h: 64px;
}

/* ---- reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp {
  margin: 0;
  font-family: var(--lp-jp);
  font-size: 16px;
  line-height: 1.8;
  color: var(--lp-ink);
  background: var(--lp-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.lp img { max-width: 100%; }
/* ボタンは自前で色を持つ。ここで :not() を付けないと、詳細度で
   `.lp a`(0,1,1) が `.lp-btn--gradient`(0,1,0) に勝ち、CTAの文字色が
   ブランド色に引き戻されてグラデーション地の上で読めなくなる。 */
.lp a:not(.lp-btn) { color: var(--lp-brand-deep); text-decoration: none; }
.lp a:not(.lp-btn):hover { color: var(--lp-brand); text-decoration: underline; }
.lp a.lp-btn { text-decoration: none; }

/* リセットは :where() で包み、詳細度を 0 にする。
   素の `.lp p`(0,1,1) にすると、要素クラス `.lp-stat__v`(0,1,0) に
   **リセットの方が勝ってしまう**。実際これで数値カードの font-size と
   全セクションの margin-bottom が無効化されていた。
   :where() なら (0,0,0) なので、後段のクラス指定が必ず優先される。 */
:where(.lp) :where(h1, h2, h3, h4) { margin: 0; font-weight: 700; }
:where(.lp) :where(p, ul, ol) { margin: 0; }
.lp :focus-visible { outline: 2px solid var(--lp-brand); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---- 共通レイアウト ---------------------------------------------------- */
.lp-container { max-width: var(--lp-max); margin: 0 auto; width: 100%; }
.lp-section { padding: 92px 24px; background: var(--lp-white); }
.lp-section--gray { background: var(--lp-gray); }
.lp-section--tall { padding: 96px 24px; }
/* stickyヘッダー分だけアンカー着地をずらす(プロトタイプ未対応の項目) */
.lp-section[id] { scroll-margin-top: calc(var(--lp-header-h) + 8px); }

.lp-h2 { font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.01em; text-wrap: pretty; }
.lp-lead { color: var(--lp-ink-2); font-size: 16px; }
.lp-head { max-width: 44em; }
.lp-head .lp-h2 { margin-bottom: 16px; }
.lp-title-gap { margin-bottom: 12px; }
.lp-lead-gap { margin-bottom: 44px; }
.lp-scroll { overflow-x: auto; }
.lp-num { font-family: var(--lp-num); font-variant-numeric: tabular-nums; }

/* ---- ロゴ -------------------------------------------------------------- */
/* ロゴタイプは支給SVGがフォント依存(Montserrat Light / letter-spacing .59em)で、
   <img> 内のSVGはページのWebフォントを参照できない。原本と同じ字形指定を
   そのままCSSに移し、HTMLテキストとして描画する。 */
.lp-logo { display: flex; align-items: center; gap: 9px; }
.lp-logo__mark { display: block; width: auto; }
.lp-logotype {
  font-family: var(--lp-logo);
  font-weight: 300;
  letter-spacing: 0.59em;
  color: #6D6D6D;
  line-height: 1;
  white-space: nowrap;
  padding-right: 0;
  margin-right: -0.59em; /* 最終文字の字間ぶんを戻す */
}
.lp-logotype--light { color: var(--lp-white); }

/* ---- ボタン ------------------------------------------------------------ */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 8px;
  font-size: 16px; font-weight: 700; font-family: var(--lp-jp);
  border: 1px solid transparent; cursor: pointer; text-align: center;
}
.lp-btn:hover { text-decoration: none; }
.lp-btn--gradient {
  background: linear-gradient(100deg, #0B769F, #128F92 60%, #13C2C6);
  color: var(--lp-white);
  box-shadow: 0 6px 18px rgba(11, 118, 159, 0.24);
}
.lp-btn--gradient:hover { color: var(--lp-white); opacity: 0.92; }
.lp-btn--primary { background: var(--lp-brand); color: var(--lp-white); }
.lp-btn--primary:hover { background: var(--lp-brand-deep); color: var(--lp-white); }
.lp-btn--ghost { background: var(--lp-white); border-color: var(--lp-brand); color: var(--lp-brand-deep); }
.lp-btn--ghost:hover { background: var(--lp-gray); color: var(--lp-brand-deep); }
.lp-btn--white {
  background: var(--lp-white); color: var(--lp-brand-deep);
  padding: 17px 40px; font-size: 17px;
  box-shadow: 0 10px 26px rgba(11, 60, 80, 0.24);
}
.lp-btn--white:hover { background: var(--lp-gray); color: var(--lp-brand-deep); }
.lp-btn--sm { padding: 10px 20px; border-radius: 6px; font-size: 14px; }
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- ヘッダー ---------------------------------------------------------- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lp-line);
}
.lp-header__inner {
  max-width: var(--lp-max); margin: 0 auto;
  padding: 14px 24px; display: flex; align-items: center; gap: 24px;
}
.lp-header .lp-logo__mark { height: 26px; }
.lp-header .lp-logotype { font-size: 19px; }
.lp-nav { display: flex; gap: 22px; margin-left: auto; font-size: 14px; }
.lp-nav a { color: var(--lp-ink-2); }

/* ---- S1 ヒーロー -------------------------------------------------------- */
.lp-hero {
  background: linear-gradient(160deg, #F2FAFA 0%, #EAF5F8 45%, var(--lp-gray) 100%);
  border-bottom: 1px solid var(--lp-line);
}
.lp-hero__grid {
  max-width: var(--lp-max); margin: 0 auto; padding: 72px 24px 80px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 56px; align-items: center;
}
.lp-badge {
  display: inline-block; padding: 5px 12px; margin-bottom: 24px;
  border: 1px solid var(--lp-brand); border-radius: 999px;
  color: var(--lp-brand-deep); font-size: 13px; font-weight: 700;
}
.lp-h1 {
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.35;
  letter-spacing: -0.02em; margin-bottom: 24px; text-wrap: pretty;
}
.lp-hero__lead { font-size: 17px; margin-bottom: 28px; max-width: 30em; text-wrap: pretty; }
.lp-metrics {
  display: flex; flex-wrap: wrap; gap: 12px 36px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--lp-line);
}
.lp-metric__v { font-family: var(--lp-num); font-size: 34px; font-weight: 800; color: var(--lp-brand); line-height: 1.2; }
.lp-metric__u { font-size: 17px; font-weight: 700; color: var(--lp-ink); font-family: var(--lp-jp); }
.lp-metric__k { font-size: 13px; color: var(--lp-ink-2); }

/* ダッシュボードのモックアップ(製品画面の再現図) */
.lp-mockwrap { position: relative; }
.lp-mock {
  background: var(--lp-white); border: 1px solid var(--lp-line); border-radius: 10px;
  box-shadow: 0 24px 48px rgba(31, 41, 51, 0.12); overflow: hidden;
}
.lp-mock__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--lp-gray); border-bottom: 1px solid var(--lp-line);
}
.lp-mock__bar .lp-logo__mark { height: 16px; }
.lp-mock__bar .lp-logotype { font-size: 11px; }
.lp-mock__crumb { font-size: 11px; color: var(--lp-ink-2); }
.lp-mock__punch { margin-left: auto; display: flex; gap: 6px; }
.lp-pill { padding: 4px 10px; border-radius: 4px; font-size: 11px; }
.lp-pill--on { background: var(--lp-brand); color: var(--lp-white); font-weight: 700; }
.lp-pill--off { background: var(--lp-white); border: 1px solid var(--lp-line); color: var(--lp-ink-2); }
.lp-mock__body { padding: 16px; display: grid; gap: 14px; }
.lp-mock__title { font-size: 12px; font-weight: 700; }
.lp-grid-table {
  display: grid; gap: 1px; background: var(--lp-line);
  border: 1px solid var(--lp-line); border-radius: 6px; overflow: hidden;
}
.lp-grid-table > * { background: var(--lp-white); }
.lp-grid-table > .is-head { background: var(--lp-gray); color: var(--lp-ink-2); }
.lp-expiry { grid-template-columns: 1.4fr 1fr 1fr; font-size: 11px; }
.lp-expiry > * { padding: 9px 10px; }
.lp-expiry > .is-head { padding: 8px 10px; }
.lp-c { text-align: center; }
.lp-over { color: var(--lp-danger); font-weight: 700; }
.lp-soon { color: var(--lp-warn); font-weight: 700; }
.lp-none { color: var(--lp-ink-2); }
.lp-shortcuts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.lp-shortcuts > span {
  border: 1px solid var(--lp-line); border-radius: 6px;
  padding: 10px 8px; text-align: center; font-size: 10px; color: var(--lp-ink-2);
}
.lp-mock__foot {
  border-top: 1px solid var(--lp-line);
  padding: 12px 128px 34px 0; /* 右下のスマホモックとの重なりを避ける */
  display: grid; gap: 6px; font-size: 11px; color: var(--lp-ink-2);
}
.lp-mock__foot strong { color: var(--lp-ink); }
.lp-phone {
  position: absolute; right: -26px; bottom: -64px; width: 150px;
  background: var(--lp-ink); border-radius: 20px; padding: 7px;
  box-shadow: 0 18px 34px rgba(31, 41, 51, 0.28);
}
.lp-phone__screen { background: var(--lp-white); border-radius: 14px; overflow: hidden; }
.lp-phone__head {
  background: linear-gradient(120deg, #0B769F, #13C2C6);
  padding: 10px; color: var(--lp-white); font-size: 10px; font-weight: 700;
}
.lp-phone__body { padding: 9px; display: grid; gap: 6px; font-size: 9px; color: var(--lp-ink-2); }
.lp-phone__row { display: flex; justify-content: space-between; }
.lp-phone__row strong { color: var(--lp-ink); }
.lp-phone__btn {
  margin-top: 4px; padding: 7px; border-radius: 6px;
  background: var(--lp-brand); color: var(--lp-white); text-align: center; font-weight: 700;
}

/* ---- S2 課題 ----------------------------------------------------------- */
.lp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.lp-card {
  background: var(--lp-white); border: 1px solid var(--lp-line);
  border-radius: 8px; padding: 26px;
}
.lp-card :where(h3) { font-size: 17px; margin-bottom: 8px; }
.lp-card :where(p) { font-size: 14px; color: var(--lp-ink-2); }
/* 課題セクションのアイコンは単純図形のみ(無彩色) */
.lp-fig { width: 34px; height: 34px; border: 1.5px solid var(--lp-ink-2); margin-bottom: 16px; }
.lp-fig--square { border-radius: 4px; }
.lp-fig--circle { border-radius: 50%; }
.lp-fig--diamond { transform: rotate(45deg); }
.lp-fig--leaf { border-radius: 4px 14px 4px 14px; }
.lp-fig--eye { border-radius: 50% 4px 50% 4px; }
.lp-fig--bar { border-radius: 4px; border-left-width: 6px; }

/* ---- S3 統合図 --------------------------------------------------------- */
.lp-flow3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 28px; align-items: stretch; }
.lp-panel { border: 1px solid var(--lp-line); border-radius: 10px; padding: 28px; background: var(--lp-gray); }
.lp-panel--after { border: 1.5px solid var(--lp-brand); background: var(--lp-wash); }
.lp-panel__label { font-size: 13px; font-weight: 700; color: var(--lp-ink-2); letter-spacing: 0.08em; margin-bottom: 20px; }
.lp-panel--after .lp-panel__label { color: var(--lp-brand-deep); }
.lp-panel__note { margin-top: 22px; font-size: 13px; color: var(--lp-ink-2); }
.lp-panel--after .lp-panel__note { color: var(--lp-brand-deep); font-weight: 700; }
.lp-scatter { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; }
.lp-scatter > span {
  border: 1.5px dashed var(--lp-ink-2); border-radius: 6px; background: var(--lp-white);
  padding: 14px 10px; text-align: center; font-size: 13px; color: var(--lp-ink-2);
}
.lp-scatter > span:nth-child(1) { transform: rotate(-2deg); }
.lp-scatter > span:nth-child(2) { transform: rotate(2.5deg); }
.lp-scatter > span:nth-child(3) { transform: rotate(1.5deg); }
.lp-scatter > span:nth-child(4) { transform: rotate(-3deg); }
.lp-scatter > span:nth-child(5) { transform: rotate(2deg); }
.lp-scatter > span:nth-child(6) { transform: rotate(-1.5deg); }
.lp-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; min-width: 150px;
}
.lp-arrow__mark { font-family: var(--lp-num); font-size: 44px; font-weight: 800; color: var(--lp-brand); line-height: 1; }
.lp-arrow__list { display: grid; gap: 6px; text-align: center; font-size: 13px; font-weight: 700; color: var(--lp-brand-deep); }
.lp-nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-items: stretch; }
.lp-node {
  background: var(--lp-white); border: 1px solid var(--lp-brand); border-radius: 6px;
  padding: 10px 6px; text-align: center; font-size: 12px; color: var(--lp-brand-deep); font-weight: 700;
}
.lp-node--brand {
  background: linear-gradient(135deg, #0B769F, #128F92 55%, #13C2C6);
  border: none; padding: 14px 8px;
  display: grid; gap: 6px; place-items: center; align-content: center;
}
.lp-node--brand .lp-logo__mark { height: 20px; }
.lp-node--brand .lp-logotype { font-size: 11px; }

/* ---- S4 機能ブロック ---------------------------------------------------- */
.lp-features { display: grid; gap: 28px; }
.lp-feature {
  max-width: var(--lp-max); margin: 0 auto; width: 100%;
  background: var(--lp-white); border: 1px solid var(--lp-line); border-radius: 10px;
  padding: 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; align-items: center;
}
/* 偶数ブロックはテキストを右に置く */
.lp-feature--rev > .lp-feature__text { order: 2; }
.lp-feature--rev > .lp-feature__visual { order: 1; }
.lp-eyebrow {
  font-family: var(--lp-num); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--lp-brand); margin-bottom: 10px;
}
.lp-h3 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 14px; }
.lp-list { padding-left: 1.2em; font-size: 15px; display: grid; gap: 8px; }

/* 01: 3ステップ */
.lp-steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: stretch; }
.lp-minicard { border: 1px solid var(--lp-line); border-radius: 8px; overflow: hidden; background: var(--lp-gray); }
.lp-minicard__head {
  background: var(--lp-white); border-bottom: 1px solid var(--lp-line);
  padding: 7px 9px; font-size: 10px; color: var(--lp-ink-2);
}
.lp-minicard__body { padding: 12px; display: grid; gap: 7px; }
.lp-qr {
  width: 62px; height: 62px; margin: 14px auto 0;
  background: repeating-conic-gradient(#1F2933 0% 25%, #fff 0% 50%) 0 0 / 12px 12px;
  border: 4px solid var(--lp-white); outline: 1px solid var(--lp-line);
}
.lp-qr-cap { padding: 8px 10px 12px; font-size: 10px; color: var(--lp-ink-2); text-align: center; }
.lp-skel { height: 9px; background: var(--lp-line); border-radius: 2px; }
.lp-skel--sm { height: 7px; }
.lp-skel--w55 { width: 55%; }
.lp-skel--w40 { width: 40%; }
.lp-skel--w70 { width: 70%; }
.lp-skel-input { height: 22px; background: var(--lp-white); border: 1px solid var(--lp-line); border-radius: 3px; }
.lp-skel-btn { height: 24px; background: var(--lp-brand); border-radius: 3px; }
.lp-minibtn {
  padding: 7px; border-radius: 3px; font-size: 9px; text-align: center;
  background: var(--lp-brand); color: var(--lp-white); font-weight: 700;
}
.lp-minibtn--ghost {
  margin-top: 6px; padding: 6px; background: var(--lp-white);
  border: 1px solid var(--lp-brand); color: var(--lp-brand-deep); font-weight: 400;
}

/* 02: 日別シフト表の再現 */
.lp-shift { border: 1px solid var(--lp-line); border-radius: 8px; background: var(--lp-gray); }
.lp-shift__inner { min-width: 560px; padding: 14px; }
.lp-shift__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.lp-shift__title { font-size: 12px; font-weight: 700; }
.lp-shift__sub { font-size: 11px; color: var(--lp-ink-2); }
.lp-legend { margin-left: auto; display: inline-flex; gap: 10px; font-size: 10px; color: var(--lp-ink-2); }
.lp-swatch { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 4px; }
.lp-swatch--neg { background: var(--lp-danger); }
.lp-swatch--pos { background: var(--lp-ok); }
.lp-shift__grid { display: grid; grid-template-columns: 92px repeat(9, 1fr); gap: 3px; font-size: 10px; }
.lp-shift__rowhead { color: var(--lp-ink-2); padding: 4px 2px; }
.lp-shift__rowhead--em { color: var(--lp-ink); font-weight: 700; }
.lp-shift__hour { text-align: center; color: var(--lp-ink-2); }
.lp-shift__need { text-align: center; color: var(--lp-ink-2); padding: 3px 0; }
/* 過不足バッジ: 色だけに頼らず数値も必ず出す */
.lp-bal { color: var(--lp-white); font-weight: 700; text-align: center; padding: 5px 0; border-radius: 3px; }
.lp-bal--neg { background: var(--lp-danger); }
.lp-bal--pos { background: var(--lp-ok); }
.lp-shift__bars { margin-top: 12px; display: grid; gap: 4px; font-size: 10px; }
.lp-barrow { display: grid; grid-template-columns: 92px 1fr; gap: 3px; align-items: center; }
.lp-barrow > span:first-child { color: var(--lp-ink); }
.lp-track { position: relative; height: 20px; background: var(--lp-white); border: 1px solid var(--lp-line); border-radius: 3px; }
.lp-bar {
  position: absolute; top: 2px; bottom: 2px;
  background: var(--lp-brand); border-radius: 2px;
  color: var(--lp-white); font-size: 9px; padding-left: 6px;
  display: flex; align-items: center; overflow: hidden; white-space: nowrap;
}
.lp-bar--overnight { background: var(--lp-brand-deep); }

/* 03: 勤怠 */
.lp-stack { display: grid; gap: 12px; }
.lp-punch {
  border: 1px solid var(--lp-line); border-radius: 8px; background: var(--lp-gray);
  padding: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.lp-punch__label { font-size: 11px; color: var(--lp-ink-2); }
.lp-punch__branch { font-size: 11px; background: var(--lp-white); border: 1px solid var(--lp-line); border-radius: 4px; padding: 5px 10px; }
.lp-punch__btns { margin-left: auto; display: flex; gap: 6px; }
.lp-punch__btns .lp-pill { padding: 7px 14px; border-radius: 5px; }
.lp-dt { border: 1px solid var(--lp-line); border-radius: 8px; }
.lp-dt__inner { min-width: 480px; }
.lp-dt__row { display: grid; grid-template-columns: 1.2fr repeat(5, 1fr); border-bottom: 1px solid var(--lp-line); font-size: 11px; }
.lp-dt__row:last-child { border-bottom: none; }
.lp-dt__row--head { background: var(--lp-gray); font-size: 10px; color: var(--lp-ink-2); }
.lp-dt__row > * { padding: 9px 6px; text-align: right; }
.lp-dt__row > *:first-child { padding-left: 10px; text-align: left; }
.lp-dt__row > *:last-child { padding-right: 10px; }
.lp-dt__row > .is-em { font-weight: 700; }
.lp-note { font-size: 11px; color: var(--lp-ink-2); }

/* 04: 売上 */
.lp-pipeline {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px; align-items: center; font-size: 11px;
}
.lp-pipeline__box {
  border: 1px solid var(--lp-line); border-radius: 6px; padding: 12px 8px;
  text-align: center; background: var(--lp-gray); color: var(--lp-ink-2);
}
.lp-pipeline__box--core {
  border: 1.5px solid var(--lp-brand); background: var(--lp-white);
  color: var(--lp-brand-deep); font-weight: 700;
}
.lp-pipeline__box small { font-size: 9px; font-weight: 400; }
.lp-pipeline__arrow { color: var(--lp-brand); font-weight: 700; font-family: var(--lp-num); }
.lp-chartcard { border: 1px solid var(--lp-line); border-radius: 8px; padding: 16px; background: var(--lp-gray); }
.lp-chartcard__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.lp-chartcard__title { font-size: 11px; font-weight: 700; }
.lp-chartcard__value { font-family: var(--lp-num); font-size: 20px; font-weight: 800; color: var(--lp-brand); }
.lp-chart { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; align-items: end; height: 108px; }
.lp-chart__col { display: grid; gap: 4px; justify-items: center; }
.lp-chart__bar { width: 70%; background: var(--lp-brand); border-radius: 2px 2px 0 0; }
.lp-chart__label { font-size: 9px; color: var(--lp-ink-2); }
.lp-chartcard__foot {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--lp-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 10px; color: var(--lp-ink-2);
}
.lp-chartcard__foot strong { color: var(--lp-ink); font-family: var(--lp-num); }

/* 05: 資格有効期限カード */
.lp-panelcard { border: 1px solid var(--lp-line); border-radius: 8px; overflow: hidden; }
.lp-panelcard__head { background: var(--lp-gray); border-bottom: 1px solid var(--lp-line); padding: 11px 14px; font-size: 12px; font-weight: 700; }
.lp-panelcard__foot { padding: 12px 14px; border-top: 1px solid var(--lp-line); font-size: 11px; color: var(--lp-ink-2); }
.lp-expiry2 { min-width: 420px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1px; background: var(--lp-line); }
.lp-expiry2 > * { background: var(--lp-white); padding: 12px; }
.lp-expiry2 > .is-head { background: var(--lp-gray); padding: 10px 12px; font-size: 11px; color: var(--lp-ink-2); }
.lp-expiry2 > .is-label { padding: 14px; font-size: 13px; }
.lp-count {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  font-family: var(--lp-num); font-size: 12px; font-weight: 700; color: var(--lp-white);
}
.lp-count--over { background: var(--lp-danger); }
.lp-count--soon { background: var(--lp-warn); }
.lp-count--zero { background: var(--lp-white); border: 1px solid var(--lp-line); color: var(--lp-ink-2); font-weight: 400; }
.lp-count-cap { font-size: 9px; margin-top: 3px; }
.lp-count-cap--over { color: var(--lp-danger); }
.lp-count-cap--soon { color: var(--lp-warn); }
.lp-count-cap--zero { color: var(--lp-ink-2); }

/* 06: 権限マトリクス */
.lp-matrix { min-width: 480px; }
.lp-matrix__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 1px; background: var(--lp-line); }
.lp-matrix__grid > * { background: var(--lp-white); }
.lp-matrix__grid > .is-head { background: var(--lp-gray); font-size: 10px; color: var(--lp-ink-2); }
.lp-matrix__name { padding: 11px 14px; font-size: 12px; }
.lp-matrix__name.is-head { padding: 8px 14px; }
.lp-seg { padding: 8px 10px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.lp-seg.is-head { text-align: center; gap: 0; }
.lp-seg > span { height: 22px; border-radius: 4px; border: 1px solid var(--lp-line); }
.lp-seg.is-head > span { height: auto; border: none; }
.lp-seg > .is-on { background: var(--lp-brand); border-color: var(--lp-brand); }
.lp-seg > .is-deny { background: var(--lp-ink-2); border-color: var(--lp-ink-2); }

/* ---- S5 業種特化の対比表 ------------------------------------------------ */
.lp-compare-wrap { border: 1px solid var(--lp-line); border-radius: 10px; }
.lp-compare { min-width: 640px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 1px; background: var(--lp-line); }
.lp-compare > * { background: var(--lp-white); padding: 16px 18px; font-size: 14px; }
.lp-compare > .is-head { background: var(--lp-gray); padding: 14px 18px; font-size: 13px; font-weight: 700; }
.lp-compare > .is-head--brand { background: linear-gradient(120deg, #0B769F, #128F92); color: var(--lp-white); }
.lp-check { color: var(--lp-brand); font-weight: 700; margin-right: 8px; }

/* ---- S6 導入効果 -------------------------------------------------------- */
.lp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.lp-stat { background: var(--lp-white); border: 1px solid var(--lp-line); border-radius: 10px; padding: 32px; }
.lp-stat__v {
  font-family: var(--lp-num); font-size: clamp(44px, 5vw, 60px); font-weight: 800;
  color: var(--lp-brand); line-height: 1.1; letter-spacing: -0.03em;
}
.lp-stat__u { font-size: 24px; color: var(--lp-ink); font-family: var(--lp-jp); }
.lp-stat__k { font-size: 14px; font-weight: 700; margin-top: 10px; }
/* `.lp-stat p` と書くと(0,1,1)で .lp-stat__v/__k に勝ってしまうためクラスにする */
.lp-stat__d { font-size: 13px; color: var(--lp-ink-2); margin-top: 6px; }

/* ---- S7 料金 ------------------------------------------------------------ */
.lp-formula {
  border: 1.5px solid var(--lp-brand); border-radius: 12px; padding: 36px 28px;
  background: var(--lp-wash); margin-bottom: 32px; overflow-x: auto;
}
.lp-formula__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 20px; font-family: var(--lp-num);
}
.lp-formula__k { font-size: 12px; color: var(--lp-ink-2); font-family: var(--lp-jp); }
.lp-formula__v { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.03em; }
.lp-formula__v--brand { color: var(--lp-brand); }
.lp-formula__plus { font-size: 30px; font-weight: 700; color: var(--lp-brand); }
.lp-formula__note { text-align: center; font-size: 12px; color: var(--lp-ink-2); margin-top: 14px; }

.lp-sim {
  border: 1px solid var(--lp-line); border-radius: 12px; padding: 28px; margin-bottom: 32px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: center;
}
.lp-sim__title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.lp-sim__desc { font-size: 13px; color: var(--lp-ink-2); margin-bottom: 18px; }
.lp-sim__range { width: 100%; accent-color: var(--lp-brand); }
.lp-sim__scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--lp-ink-2); font-family: var(--lp-num); }
.lp-sim__toggle {
  margin-top: 18px; padding: 10px 18px; border-radius: 6px;
  border: 1px solid var(--lp-brand); background: var(--lp-white);
  color: var(--lp-brand-deep); font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: var(--lp-jp);
}
.lp-sim__toggle:hover { background: #F2FAFA; }
.lp-sim__out { background: var(--lp-gray); border-radius: 10px; padding: 26px; text-align: center; }
.lp-sim__state { font-size: 13px; color: var(--lp-ink-2); }
.lp-sim__state strong { font-family: var(--lp-num); color: var(--lp-ink); font-size: 17px; }
.lp-sim__total {
  font-family: var(--lp-num); font-size: clamp(38px, 4.6vw, 54px); font-weight: 800;
  color: var(--lp-brand); letter-spacing: -0.03em; line-height: 1.2;
}
.lp-sim__per { font-size: 13px; color: var(--lp-ink-2); }
.lp-sim__per strong { color: var(--lp-ink); }

.lp-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-bottom: 36px; }
.lp-plan { border: 1px solid var(--lp-line); border-radius: 10px; padding: 26px; }
.lp-plan--main { border: 2px solid var(--lp-brand); box-shadow: 0 8px 22px rgba(18, 143, 146, 0.14); }
.lp-plan__k { font-size: 13px; font-weight: 700; color: var(--lp-ink-2); }
.lp-plan--main .lp-plan__k { color: var(--lp-brand-deep); }
.lp-plan__v { font-family: var(--lp-num); font-size: 32px; font-weight: 800; margin: 6px 0 8px; }
.lp-plan--main .lp-plan__v { color: var(--lp-brand); }
.lp-plan__v span { font-size: 14px; color: var(--lp-ink-2); font-weight: 400; font-family: var(--lp-jp); }
/* 同上。`.lp-plan p` は .lp-plan__v(金額32px) を13pxに潰していた */
.lp-plan__d { font-size: 13px; color: var(--lp-ink-2); }

.lp-rate-wrap { border: 1px solid var(--lp-line); border-radius: 10px; margin-bottom: 24px; }
.lp-rate { min-width: 480px; }
.lp-rate__row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--lp-line); font-size: 14px; }
.lp-rate__row:last-child { border-bottom: none; }
.lp-rate__row--head { background: var(--lp-gray); font-size: 12px; color: var(--lp-ink-2); font-weight: 700; }
.lp-rate__row > * { padding: 12px 18px; text-align: right; }
.lp-rate__row > *:first-child { text-align: left; }
.lp-notes { padding-left: 1.2em; font-size: 13px; color: var(--lp-ink-2); display: grid; gap: 6px; }
.lp-pricing-cta { margin-top: 28px; }

/* ---- S8 導入の流れ ------------------------------------------------------ */
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.lp-step { background: var(--lp-white); border: 1px solid var(--lp-line); border-radius: 8px; padding: 22px; }
.lp-step--last { border: 1.5px solid var(--lp-brand); }
.lp-step__n {
  width: 34px; height: 34px; border-radius: 50%; background: var(--lp-brand);
  color: var(--lp-white); display: grid; place-items: center;
  font-family: var(--lp-num); font-weight: 700; margin-bottom: 14px;
}
.lp-step--last .lp-step__n { background: linear-gradient(135deg, #0B769F, #13C2C6); }
.lp-step :where(h3) { font-size: 15px; margin-bottom: 6px; }
.lp-step :where(p) { font-size: 13px; color: var(--lp-ink-2); }

/* ---- S9 セキュリティ ---------------------------------------------------- */
.lp-two { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; }
.lp-seclist {
  display: grid; gap: 2px; background: var(--lp-line);
  border: 1px solid var(--lp-line); border-radius: 10px; overflow: hidden;
}
.lp-seclist > li {
  background: var(--lp-white); padding: 18px 22px;
  display: flex; gap: 14px; align-items: flex-start; font-size: 14px; list-style: none;
}
.lp-seclist { padding-left: 0; }
.lp-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--lp-brand); margin-top: 10px; flex: none; }

/* ---- S10 ロードマップ --------------------------------------------------- */
.lp-road { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.lp-road .lp-card { padding: 24px; }
.lp-flag {
  display: inline-block; font-size: 11px; font-weight: 700; border-radius: 3px;
  padding: 2px 8px; margin-bottom: 12px;
}
.lp-flag--wip { color: var(--lp-brand-deep); border: 1px solid var(--lp-brand); }
.lp-flag--idea { color: var(--lp-ink-2); border: 1px solid var(--lp-line); }

/* ---- S11 FAQ ------------------------------------------------------------ */
.lp-narrow { max-width: 860px; margin: 0 auto; }
.lp-faq { display: grid; gap: 12px; }
.lp-faq details { border: 1px solid var(--lp-line); border-radius: 8px; padding: 18px 22px; }
.lp-faq summary { font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq :where(p) { font-size: 14px; color: var(--lp-ink-2); margin-top: 12px; }

/* ---- S12 最終CTA・お問い合わせフォーム ---------------------------------- */
.lp-contact { background: var(--lp-gradient); padding: 88px 24px; color: var(--lp-white); }
.lp-contact__head { text-align: center; margin-bottom: 36px; }
.lp-contact h2 { font-size: clamp(26px, 3.4vw, 40px); color: var(--lp-white); margin-bottom: 16px; }
.lp-contact__lead { font-size: 16px; color: rgba(255, 255, 255, 0.92); }
.lp-formcard {
  background: var(--lp-white); color: var(--lp-ink);
  border-radius: 12px; padding: 32px;
  box-shadow: 0 18px 40px rgba(11, 60, 80, 0.22);
}
.lp-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.lp-field { display: grid; gap: 6px; }
.lp-field--full { grid-column: 1 / -1; }
.lp-field label { font-size: 13px; font-weight: 700; }
/* 赤は「期限切れ・人員不足・入力エラー」＝問題がある状態に限る。
   必須マークは問題ではないのでブランド色にする(ハンドオフの配色ルール) */
.lp-req { color: var(--lp-brand-deep); font-size: 11px; margin-left: 6px; font-weight: 700; }
.lp-opt { color: var(--lp-ink-2); font-size: 11px; margin-left: 6px; font-weight: 400; }
.lp-input {
  width: 100%; padding: 11px 12px; border: 1px solid var(--lp-line); border-radius: 6px;
  font-size: 15px; font-family: var(--lp-jp); color: var(--lp-ink); background: var(--lp-white);
}
.lp-input:focus { border-color: var(--lp-brand); outline: 2px solid rgba(18, 143, 146, 0.25); outline-offset: 0; }
.lp-input--err { border-color: var(--lp-danger); }
textarea.lp-input { min-height: 120px; line-height: 1.7; resize: vertical; }
.lp-err { font-size: 12px; color: var(--lp-danger); font-weight: 700; }
.lp-form__foot { margin-top: 24px; display: grid; gap: 14px; justify-items: center; }
.lp-form__note { font-size: 12px; color: var(--lp-ink-2); text-align: center; }
/* 画面外に置くだけの隠し方。読み上げには残るので、視覚だけ隠したいラベルに使う */
.lp-sr { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* ハニーポット(自動投稿よけ)。同じ隠し方 + aria-hidden で読み上げからも外す */
.lp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lp-alert { border-radius: 8px; padding: 16px 20px; font-size: 14px; margin-bottom: 20px; }
.lp-alert--ok { background: #E9F6F2; border: 1px solid var(--lp-ok); color: #14624F; }
.lp-alert--ng { background: #FBE9EB; border: 1px solid var(--lp-danger); color: #8E1B26; }
.lp-done { text-align: center; display: grid; gap: 12px; }
.lp-done h3 { font-size: 20px; }
.lp-done :where(p) { font-size: 14px; color: var(--lp-ink-2); }

/* ---- S13 フッター ------------------------------------------------------- */
.lp-footer { background: var(--lp-ink); color: var(--lp-line); padding: 52px 24px 40px; }
.lp-footer__grid { max-width: var(--lp-max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.lp-footer .lp-logo { margin-bottom: 14px; }
.lp-footer .lp-logo__mark { height: 24px; }
.lp-footer .lp-logotype { font-size: 18px; }
.lp-footer :where(p) { font-size: 13px; color: var(--lp-line); }
.lp-footer__links { display: grid; gap: 8px; font-size: 13px; }
.lp-footer__links a { color: var(--lp-line); }
.lp-footer__links a:hover { color: var(--lp-white); }
.lp-footer__todo { color: var(--lp-ink-2); }
.lp-footer__copy {
  max-width: var(--lp-max); margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid var(--lp-ink-2); font-size: 12px; color: var(--lp-ink-2);
}

/* ---- モバイル固定CTAバー ------------------------------------------------ */
.lp-mobar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 14px; background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--lp-line); gap: 10px; backdrop-filter: blur(8px);
}
.lp-mobar .lp-btn { padding: 13px; border-radius: 7px; font-size: 14px; }
.lp-mobar__pricing { flex: 1; }
.lp-mobar__contact { flex: 1.4; }

/* ---- レスポンシブ ------------------------------------------------------- */
@media (max-width: 900px) {
  .lp-nav, .lp-header__cta { display: none !important; }
  .lp-mobar { display: flex; }
  .lp-footer { padding-bottom: 88px; }
  .lp-contact { padding-bottom: 96px; }
}
@media (max-width: 768px) {
  body.lp { font-size: 15px; }
  .lp-section, .lp-section--tall { padding: 64px 20px; }
  .lp-hero__grid { padding: 48px 20px 56px; gap: 40px; grid-template-columns: 1fr; }
  .lp-feature { padding: 26px; gap: 28px; grid-template-columns: 1fr; }
  /* 1カラムでは必ず「テキスト → ビジュアル」の順にそろえる */
  .lp-feature--rev > .lp-feature__text { order: 0; }
  .lp-feature--rev > .lp-feature__visual { order: 0; }
  .lp-mock__foot { padding-right: 118px; }
  .lp-phone { right: -10px; bottom: -48px; width: 128px; }
  .lp-steps3 { grid-template-columns: 1fr; }
  .lp-pipeline { grid-template-columns: 1fr; }
  .lp-pipeline__arrow { transform: rotate(90deg); text-align: center; }
  .lp-formcard { padding: 22px; }
  .lp-formula { padding: 24px 18px; }
}

/* ---- 規約系ページ(特商法表記・プライバシーポリシー・利用規約) ----------------
   lp/tokushoho.php ほか。common/lp_legal.php の lp_legal_header()/footer() が出す枠。
   本文は表(th=項目名 / td=内容)。モバイルでは th/td を縦積みにする。 */
.lp-legal { padding: 40px 24px 80px; background: var(--lp-gray); }
.lp-legal__inner {
  max-width: 900px; margin: 0 auto; background: var(--lp-white);
  border: 1px solid var(--lp-line); border-radius: 12px; padding: 40px 44px 44px;
}
.lp-legal__crumb { font-size: 13px; color: var(--lp-ink-2); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.lp-legal__title { font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.01em; margin-bottom: 16px; }
.lp-legal__lead { color: var(--lp-ink-2); font-size: 15px; margin-bottom: 28px; }
.lp-legal__updated { margin-top: 28px; font-size: 13px; color: var(--lp-ink-2); text-align: right; }
.lp-legal__sub { font-size: 13px; color: var(--lp-ink-2); font-weight: 400; }
.lp-legal__table { width: 100%; border-collapse: collapse; font-size: 15px; }
.lp-legal__table th, .lp-legal__table td {
  border-top: 1px solid var(--lp-line); padding: 16px 14px; vertical-align: top; text-align: left;
}
.lp-legal__table tbody tr:last-child th, .lp-legal__table tbody tr:last-child td { border-bottom: 1px solid var(--lp-line); }
.lp-legal__table th { width: 200px; background: var(--lp-gray); font-weight: 700; line-height: 1.6; }
.lp-legal__table td :where(p) { margin: 0 0 8px; }
.lp-legal__table td :where(p):last-child { margin-bottom: 0; }
.lp-legal__list { margin: 0 0 8px; padding-left: 1.3em; display: grid; gap: 4px; }
.lp-legal__list:last-child { margin-bottom: 0; }
.lp-legal h2 { font-size: 18px; margin: 32px 0 10px; padding-left: 10px; border-left: 4px solid var(--lp-brand); }
@media (max-width: 768px) {
  .lp-legal { padding: 16px 16px 56px; }
  .lp-legal__inner { padding: 24px 18px 28px; border-radius: 10px; }
  .lp-legal__table, .lp-legal__table tbody, .lp-legal__table tr, .lp-legal__table th, .lp-legal__table td { display: block; width: 100%; }
  .lp-legal__table th { border-top: 1px solid var(--lp-line); padding: 10px 12px; }
  .lp-legal__table td { border-top: 0; padding: 12px 12px 16px; }
  .lp-legal__table tbody tr:last-child th { border-bottom: 0; }
}
/* 条文形式の文書(利用規約・プライバシーポリシー) */
.lp-legal__doc { font-size: 15px; }
.lp-legal__doc :where(p, ul, ol) { margin: 0 0 10px; }
.lp-legal__doc :where(ol, ul) { padding-left: 1.6em; display: grid; gap: 6px; }
.lp-legal__doc :where(ol ol) { margin: 6px 0 0; list-style: lower-alpha; }
.lp-legal__doc h2 { font-size: 17px; margin: 32px 0 10px; padding-left: 10px; border-left: 4px solid var(--lp-brand); }
.lp-legal__doc .lp-legal__table { margin: 8px 0 14px; font-size: 14px; }
.lp-legal__table--3col thead th { width: auto; background: var(--lp-gray); border-top: 1px solid var(--lp-line); }
.lp-legal__table--3col tbody th { width: 160px; }
@media (max-width: 768px) {
  .lp-legal__table--3col thead { display: none; }
  .lp-legal__table--3col tbody th { width: 100%; }
}
/* ヒーローCTA直下の補足(無料登録の条件) */
.lp-hero__note { margin-top: 12px; font-size: 13px; color: var(--lp-ink-2); }

/* ---- 無料で始める(黄色系 CTA) -------------------------------------------
   訴求用のアクセント色。意味づけ専用の --lp-warn(期限の黄)とは別トークンにし、
   「注意」の文脈では使わない。黄地には濃色(--lp-ink)の文字・ボタンを載せる(コントラスト確保)。 */
:root {
  --lp-cta:       #FFC83D;
  --lp-cta-deep:  #F2B300;
  --lp-cta-wash:  linear-gradient(135deg, #FFE08A, #FFC83D 55%, #FFB800);
}
.lp-btn--cta { background: var(--lp-cta); color: var(--lp-ink); border-color: var(--lp-cta); font-weight: 700; box-shadow: 0 6px 16px rgba(242, 179, 0, 0.35); }
.lp-btn--cta:hover { background: var(--lp-cta-deep); border-color: var(--lp-cta-deep); color: var(--lp-ink); }
.lp-btn--ink { background: var(--lp-ink); color: var(--lp-white); border-color: var(--lp-ink); font-weight: 700; }
.lp-btn--ink:hover { background: #0f161d; color: var(--lp-white); }
.lp-btn--lg { padding: 18px 40px; font-size: 18px; border-radius: 10px; }

/* S11.5 無料試用の訴求バンド(#contact の直前) */
.lp-trial { background: var(--lp-cta-wash); padding: 84px 24px; color: var(--lp-ink); scroll-margin-top: calc(var(--lp-header-h) + 8px); }
.lp-trial__inner { max-width: var(--lp-max); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.lp-trial .lp-eyebrow { color: var(--lp-ink); opacity: 0.75; }
.lp-trial h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 16px; text-wrap: pretty; }
.lp-trial h2 strong { color: var(--lp-brand-deep); }
.lp-trial__lead { font-size: 16px; max-width: 34em; color: rgba(31, 41, 51, 0.85); margin-bottom: 26px; }
.lp-trial__checks { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 15px; font-weight: 700; }
.lp-trial__checks li::before { content: "✓"; display: inline-block; margin-right: 6px; color: var(--lp-brand-deep); font-weight: 900; }
.lp-trial__card {
  background: var(--lp-white); border-radius: 14px; padding: 30px 32px;
  box-shadow: 0 18px 40px rgba(120, 80, 0, 0.18);
}
.lp-trial__card p { margin: 0; }
.lp-trial__card .lp-trial__k { font-size: 13px; color: var(--lp-ink-2); font-weight: 700; margin-bottom: 8px; }
.lp-trial__steps { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; }
.lp-trial__steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.6; }
.lp-trial__steps .lp-step__n { flex: none; width: 26px; height: 26px; font-size: 12px; margin: 0; }
.lp-trial__note { font-size: 12px; color: var(--lp-ink-2); }
.lp-trial__cta { text-align: center; }
.lp-trial__cta .lp-btn { width: 100%; }
@media (max-width: 900px) {
  .lp-trial { padding: 60px 20px; }
  .lp-trial__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* お問い合わせ見出し内のリンク(ティール地では既定のブランド色が読めない) */
.lp-contact__lead a { color: var(--lp-white); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.lp-contact__lead a:hover { color: var(--lp-cta); }
