/* ==========================================================================
   CoTerrace Service LP - service-lp.css
   /service/xxx の本格LP用スタイル。style.css の後に読み込む前提。
   トンマナ: 白ベース＋コテラスの黄/オレンジをアクセント（コーポサイトと連続性を持たせる）
   ========================================================================== */

:root {
  --lp-ink: #1d1a14;
  --lp-muted: #6b6357;
  --lp-line: rgba(29, 26, 20, 0.1);
  --lp-bg-soft: #FFFAE7;   /* cream: 交互セクションの背景 */
  --lp-bg-warm: #FFF3D6;
  --lp-radius: 14px;
}

body.svc-lp {
  background: var(--color-white);
  color: var(--lp-ink);
}

.svc-lp .container { max-width: 1080px; }

/* ----- 汎用: セクション・見出し ----- */
.lp-section { padding: 88px 0; }
.lp-section--soft { background: var(--lp-bg-soft); }
.lp-section--dark { background: var(--lp-ink); color: var(--color-white); }

.lp-heading {
  text-align: center;
  margin-bottom: 52px;
}

.lp-heading__en {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.lp-heading__ja {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.5;
}

.lp-heading__lead {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 15.5px;
  line-height: 2;
  color: var(--lp-muted);
}

.lp-section--dark .lp-heading__ja { color: var(--color-white); }
.lp-section--dark .lp-heading__lead { color: rgba(255, 255, 255, 0.75); }

/* マーカー風の強調（黄色の蛍光ペン） */
.lp-marker {
  background: linear-gradient(transparent 62%, var(--color-yellow) 62%, var(--color-yellow) 94%, transparent 94%);
  padding: 0 2px;
}

/* ----- Hero ----- */
.lp-hero {
  padding: calc(var(--header-height) + 84px) 0 72px;
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--lp-bg-warm) 0%, rgba(255, 243, 214, 0) 60%),
    var(--color-white);
  overflow: hidden;
}

.lp-hero__inner { max-width: 860px; }

.lp-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  border: 1.5px solid var(--lp-ink);
  border-radius: 999px;
  margin-bottom: 26px;
}

.lp-hero__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}

.lp-hero__title {
  font-size: clamp(32px, 5.2vw, 54px);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.lp-hero__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2.1;
  color: var(--lp-muted);
  max-width: 640px;
  margin-bottom: 36px;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 38px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}

.lp-btn:hover { transform: translateY(-2px); opacity: 0.94; }

.lp-btn--primary {
  background: var(--gradient-cta);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(227, 130, 61, 0.35);
}

.lp-btn--ghost {
  background: var(--color-white);
  color: var(--lp-ink);
  border: 1.5px solid var(--lp-ink);
}

.lp-btn--yellow {
  background: var(--color-yellow);
  color: var(--lp-ink);
}

/* ヒーロー下の信頼チップ（実績数字） */
.lp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-stat {
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  box-shadow: var(--shadow-card);
  padding: 16px 26px;
  min-width: 170px;
}

.lp-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  margin-bottom: 2px;
}

.lp-stat__value {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.lp-stat__value small {
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 700;
  margin-left: 2px;
}

/* ----- 悩み（3つの壁） ----- */
.lp-problems {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-problem {
  background: var(--color-white);
  border-radius: var(--lp-radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.lp-problem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-bg-warm);
  margin-bottom: 20px;
}

.lp-problem__icon .material-icons {
  font-size: 28px;
  color: var(--color-orange);
}

.lp-problem__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lp-problem__text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--lp-muted);
}

/* 悩み→解決の橋渡し帯 */
.lp-bridge {
  margin-top: 56px;
  text-align: center;
}

.lp-bridge__arrow {
  width: 0;
  height: 0;
  margin: 0 auto 24px;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 22px solid var(--color-yellow);
}

.lp-bridge__text {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  line-height: 1.7;
}

/* ----- ビフォーアフター ----- */
.lp-ba {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
  gap: 0;
}

.lp-ba__col {
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 30px 28px;
}

.lp-ba__col--after {
  border: 2px solid var(--color-orange);
  box-shadow: 0 12px 32px rgba(227, 130, 61, 0.18);
}

.lp-ba__tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: #ECE8DF;
  color: var(--lp-muted);
}

.lp-ba__col--after .lp-ba__tag {
  background: var(--color-orange);
  color: var(--color-white);
}

.lp-ba__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.6;
}

.lp-ba__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.lp-ba__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--lp-muted);
}

.lp-ba__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9C2B4;
}

.lp-ba__col--after .lp-ba__list li { color: var(--lp-ink); }
.lp-ba__col--after .lp-ba__list li::before { background: var(--color-orange); }

.lp-ba__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-ba__arrow .material-icons {
  font-size: 40px;
  color: var(--color-orange);
}

.lp-ba__note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--lp-line);
  font-size: 13.5px;
  font-weight: 700;
}

.lp-ba__note strong {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--color-orange);
  margin: 0 3px;
}

/* ----- 効く業務マップ ----- */
.lp-usecases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lp-usecase {
  background: var(--color-white);
  border-radius: var(--lp-radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}

/* AIエージェント構築などの強調ワイドカード */
.lp-usecase--wide {
  grid-column: 1 / -1;
  border: 2px solid var(--color-orange);
  box-shadow: 0 12px 32px rgba(227, 130, 61, 0.14);
}

.lp-usecase--wide .lp-usecase__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 760px) {
  .lp-usecase--wide .lp-usecase__items { grid-template-columns: 1fr; }
}

.lp-usecase__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-usecase__head .material-icons {
  color: var(--color-orange);
  font-size: 26px;
}

.lp-usecase__title { font-size: 17px; font-weight: 700; }

.lp-usecase__items {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.lp-usecase__items li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.8;
}

.lp-usecase__items li::before {
  content: "check";
  font-family: "Material Icons";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 15px;
  color: var(--color-orange);
}

.lp-usecase__effect {
  background: var(--lp-bg-soft);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.lp-usecase__effect span { color: var(--color-orange); }

/* ----- 特徴（選ばれる理由） ----- */
.lp-features { display: grid; gap: 28px; }

.lp-feature {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  background: var(--color-white);
  border-radius: var(--lp-radius);
  padding: 36px 36px;
  box-shadow: var(--shadow-card);
}

.lp-feature__num {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-yellow);
  -webkit-text-stroke: 1.5px var(--lp-ink);
}

.lp-feature__title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lp-feature__text {
  font-size: 14.5px;
  line-height: 2;
  color: var(--lp-muted);
  margin-bottom: 14px;
}

.lp-feature__diff {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  background: var(--lp-bg-soft);
  border-left: 3px solid var(--color-orange);
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  line-height: 1.8;
}

/* ----- 事例 ----- */
.lp-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-case {
  background: var(--color-white);
  border-radius: var(--lp-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-case__head {
  background: var(--lp-ink);
  color: var(--color-white);
  padding: 18px 22px;
}

.lp-case__industry {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-yellow);
  margin-bottom: 4px;
}

.lp-case__title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-case__body {
  padding: 22px;
  display: grid;
  gap: 14px;
  flex: 1;
}

.lp-case__row dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 3px;
}

.lp-case__row dd {
  font-size: 13.5px;
  line-height: 1.85;
}

.lp-case__result {
  margin-top: auto;
  background: var(--lp-bg-soft);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 700;
}

/* ----- 料金 ----- */
.lp-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.lp-plan {
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-plan--featured {
  border: 2px solid var(--color-orange);
  box-shadow: 0 12px 32px rgba(227, 130, 61, 0.16);
}

.lp-plan__badge {
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
}

.lp-plan__name {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.lp-plan__for {
  font-size: 12.5px;
  color: var(--lp-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.lp-plan__price {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 0;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  margin-bottom: 16px;
}

.lp-plan__price strong {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
  margin-right: 2px;
}

.lp-plan__price small {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-plan__desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--lp-muted);
}

.lp-price-note {
  margin-top: 22px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--lp-muted);
  text-align: center;
}

/* ----- 進め方（横並びステップ: svc-stepsを流用しつつLP用に上書き） ----- */
.svc-lp .svc-steps li { border: 1px solid var(--lp-line); box-shadow: none; }

/* ----- FAQ ----- */
.lp-faq {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.lp-faq details {
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.lp-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.7;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::before {
  content: "Q";
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-orange);
  flex: 0 0 auto;
}

.lp-faq summary::after {
  content: "add";
  font-family: "Material Icons";
  margin-left: auto;
  font-weight: 400;
  color: var(--lp-muted);
  transition: transform 0.2s;
}

.lp-faq details[open] summary::after { content: "remove"; }

.lp-faq__a {
  display: flex;
  gap: 14px;
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--lp-muted);
}

.lp-faq__a::before {
  content: "A";
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-ink);
  flex: 0 0 auto;
}

/* ----- 最終CTA ----- */
.lp-cta {
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(900px 420px at 50% 120%, rgba(241, 207, 37, 0.25) 0%, rgba(241, 207, 37, 0) 65%),
    var(--lp-ink);
  color: var(--color-white);
}

.lp-cta__title {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 18px;
}

.lp-cta__text {
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.lp-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ----- 他サービス回遊（既存svc__othersを白カードのまま利用） ----- */

/* ==========================================================================
   ビジュアル要素（UIモック・写真・装飾）
   ========================================================================== */

/* ヒーローを2カラム化（テキスト＋UIモック） */
.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

/* ドットパターン装飾 */
.lp-hero {
  position: relative;
}

.lp-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 90px;
  width: 340px;
  height: 340px;
  background-image: radial-gradient(rgba(227, 130, 61, 0.28) 2.5px, transparent 2.5px);
  background-size: 22px 22px;
  border-radius: 50%;
  pointer-events: none;
}

/* ----- ブラウザ風UIモック ----- */
.lp-mock-wrap {
  position: relative;
  padding: 12px 0 34px;
}

.lp-mock {
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(29, 26, 20, 0.14);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.lp-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #FBF7EC;
  border-bottom: 1px solid var(--lp-line);
}

.lp-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E4DFD3;
}

.lp-mock__dot:nth-child(1) { background: var(--color-orange); }
.lp-mock__dot:nth-child(2) { background: var(--color-yellow); }

.lp-mock__url {
  margin-left: 8px;
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 10.5px;
  color: var(--lp-muted);
  padding: 4px 14px;
  white-space: nowrap;
  overflow: hidden;
}

.lp-mock__body { padding: 22px 24px 24px; }

.lp-mock__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 16px;
}

.lp-mock__title .material-icons {
  font-size: 18px;
  color: var(--color-orange);
}

.lp-mock__title small {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-mock__rows { display: grid; gap: 10px; margin-bottom: 18px; }

.lp-mock__row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FBF9F2;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
}

.lp-mock__row .material-icons { font-size: 17px; }

.lp-mock__row--done .material-icons { color: #3AA655; }
.lp-mock__row--doing .material-icons { color: var(--color-orange); }

.lp-mock__row-status {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.lp-mock__row--done .lp-mock__row-status { background: #E4F4E8; color: #257A3E; }
.lp-mock__row--doing .lp-mock__row-status { background: var(--lp-bg-warm); color: var(--color-orange); }

/* ミニ棒グラフ */
.lp-mock__chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 74px;
  padding: 0 4px;
  border-bottom: 2px solid var(--lp-line);
  margin-bottom: 8px;
}

.lp-mock__chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--lp-bg-warm);
}

.lp-mock__chart span.is-hot { background: var(--gradient-cta); }

.lp-mock__chart-label {
  font-size: 10px;
  color: var(--lp-muted);
  text-align: right;
}

/* モック内の実アプリスクショ（ぼかし焼き込み済み画像） */
.lp-mock__shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  object-position: top left;
}

.lp-mock-note {
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--lp-muted);
  text-align: right;
}

/* 事例カードのスクショサムネ */
.lp-case__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--lp-line);
}

.lp-case__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* フロート通知トースト */
.lp-toast {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(29, 26, 20, 0.16);
  font-size: 11.5px;
  font-weight: 700;
  padding: 9px 16px;
  white-space: nowrap;
  animation: lp-float 3.4s ease-in-out infinite;
}

.lp-toast .material-icons { font-size: 16px; color: var(--color-orange); }

.lp-toast--tl { top: -4px; left: -18px; animation-delay: 0s; }
.lp-toast--br { bottom: 6px; right: -10px; animation-delay: 1.4s; }

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-toast { animation: none; }
}

/* ----- 理由セクションの人物写真 ----- */
.lp-feature__people {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2px 0 14px;
}

.lp-feature__person { display: flex; align-items: center; gap: 10px; }

.lp-feature__person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--color-yellow);
}

.lp-feature__person-name { font-size: 12px; font-weight: 700; line-height: 1.45; }
.lp-feature__person-name small { display: block; font-size: 10.5px; font-weight: 600; color: var(--lp-muted); }

/* ----- セクション見出しの装飾線 ----- */
.lp-heading__en::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  margin: 12px auto 0;
  background: var(--gradient-cta);
}

/* ----- CTAセクションのドット装飾 ----- */
.lp-cta {
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(rgba(241, 207, 37, 0.35) 2.5px, transparent 2.5px);
  background-size: 22px 22px;
  border-radius: 50%;
  pointer-events: none;
}

.lp-cta .container { position: relative; }

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .lp-problems { grid-template-columns: 1fr; }
  .lp-cases { grid-template-columns: 1fr; }
  .lp-usecases { grid-template-columns: 1fr; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero::before { display: none; }
  .lp-toast--tl { left: 0; }
  .lp-toast--br { right: 0; }
}

@media (max-width: 760px) {
  .lp-section { padding: 64px 0; }
  .lp-hero { padding: calc(var(--header-height) + 48px) 0 56px; }
  .lp-hero__ctas .lp-btn { width: 100%; }
  .lp-ba { grid-template-columns: 1fr; }
  .lp-ba__arrow { padding: 8px 0; }
  .lp-ba__arrow .material-icons { transform: rotate(90deg); }
  .lp-feature { grid-template-columns: 1fr; gap: 10px; padding: 28px 24px; }
  .lp-feature__num { font-size: 36px; }
  .lp-stat { flex: 1 1 40%; min-width: 0; padding: 14px 18px; }
  .lp-cta__buttons .lp-btn { width: 100%; }
}

/* ==========================================================================
   Service pages（サービス・料金 /service, /service/xxx）
   ========================================================================== */
.svc {
  background: var(--color-cream);
  padding: calc(var(--header-height) + 72px) 0 96px;
}

.svc__lead {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 56px;
  max-width: 760px;
}

.svc__block { margin-bottom: 64px; }

.svc__block-title {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.svc__block-title-ja {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--color-yellow);
}

/* --- 一覧ページのサービスカード --- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 20px 0 rgba(0, 0, 0, 0.12);
}

.svc-card__number {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 6px;
}

.svc-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.svc-card__title-en {
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 500;
  color: #8a857a;
  margin-bottom: 16px;
}

.svc-card__text {
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.svc-card__price {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.svc-card__more {
  margin-top: auto;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  align-self: flex-start;
}

/* --- 料金メニュー --- */
.price-list {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.price-row__body { flex: 1 1 auto; }

.price-row__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 4px;
}

.price-row__note {
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b6357;
  margin: 0;
}

.price-row__price {
  flex: 0 0 auto;
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
}

.price-row__price small {
  font-size: 13px;
  font-weight: 600;
}

.svc__disclaimer {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.9;
  color: #6b6357;
}

/* --- こんな方に（リスト）--- */
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.svc-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.7;
}

.svc-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
}

/* --- 進め方ステップ --- */
.svc-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: svc-step;
}

.svc-steps li {
  counter-increment: svc-step;
  background: var(--color-white);
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}

.svc-steps li::before {
  content: "0" counter(svc-step);
  display: block;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.svc-steps__title {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 6px;
}

.svc-steps__text {
  font-size: 13px;
  line-height: 1.8;
  color: #6b6357;
  margin: 0;
}

/* --- 他サービスへの回遊・CTA --- */
.svc__others {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.svc__other {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  padding: 24px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.svc__other:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.svc__other .material-icons { color: var(--color-orange); }

.svc__cta {
  margin-top: 64px;
  text-align: center;
}

.svc__cta-text {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.svc__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 44px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--gradient-cta);
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}

.svc__cta-btn:hover { transform: translateY(-2px); opacity: 0.95; }

@media (max-width: 860px) {
  .svc { padding: calc(var(--header-height) + 40px) 0 64px; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc__others { grid-template-columns: 1fr; }
  .price-row { flex-direction: column; gap: 6px; }
  .price-row__price { font-size: 17px; }
}

