/* セル採 自社LP。ブランド: オレンジ(#ea580c)×ティール(#0f9488)×クリーム。
 * モバイルファースト。「輪」のモチーフを装飾に使う。 */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --teal: #0f9488;
  --dark: #292524;
  --text: #3f3a36;
  --muted: #78716c;
  --cream: #fdf8f0;
  --line: #ece4d8;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  color: var(--text); font-size: 16px; line-height: 1.95; background: #fff;
  padding-bottom: 76px; /* モバイル下部固定CTAバーの分 */
}
a { color: var(--accent); }
img { max-width: 100%; height: auto; }
em { font-style: normal; }

/* ===== ヘッダー ===== */
.lp-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; background: rgba(255, 255, 255, .96); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.lp-header__name {
  font-weight: 900; color: var(--dark); text-decoration: none; font-size: 20px;
  display: flex; align-items: center; gap: 8px;
}
.lp-header__name::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  border: 5px solid var(--accent); display: inline-block;
}
.lp-header__nav { display: flex; align-items: center; gap: 14px; }
.lp-header__link { color: var(--text); text-decoration: none; font-size: 13px; font-weight: bold; }
.lp-header__cta {
  background: var(--accent); color: #fff; text-decoration: none; font-weight: bold;
  font-size: 13px; padding: 9px 18px; border-radius: 999px;
}

/* ===== ボタン ===== */
.lp-btn {
  display: inline-block; padding: 16px 34px; border-radius: 999px; text-decoration: none;
  font-weight: bold; background: #fff; color: var(--dark); border: 2px solid var(--dark);
  font-size: 16px; cursor: pointer; text-align: center;
}
.lp-btn--primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 6px 0 var(--accent-dark);
}
.lp-btn--primary:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--accent-dark); }
.lp-btn--ghost { background: transparent; }
.lp-btn--block { display: block; width: 100%; }

/* ===== ヒーロー ===== */
.lp-hero {
  background: var(--cream); overflow: hidden; position: relative;
  padding: 44px 22px 30px;
}
.lp-hero::before, .lp-hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.lp-hero::before { width: 280px; height: 280px; border: 36px solid rgba(234, 88, 12, .08); top: -110px; right: -90px; }
.lp-hero::after { width: 180px; height: 180px; border: 26px solid rgba(15, 148, 136, .1); bottom: -70px; left: -60px; }
.lp-hero__grid { max-width: 1020px; margin: 0 auto; position: relative; display: grid; gap: 24px; align-items: center; }
.lp-hero__badge {
  display: inline-block; background: var(--teal); color: #fff; font-weight: bold;
  font-size: 13px; padding: 5px 16px; border-radius: 999px; margin-bottom: 16px;
}
.lp-hero__title { font-size: 33px; line-height: 1.5; font-weight: 900; color: var(--dark); }
.lp-hero__title em { color: var(--accent); }
.lp-hero__sub { margin-top: 14px; font-size: 14px; color: var(--muted); }
.lp-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.lp-hero__note { font-size: 12px; color: var(--muted); margin-top: 10px; }
.lp-hero__img { display: block; border-radius: 20px; }

/* ===== セクション共通 ===== */
.lp-section { padding: 56px 22px; max-width: 980px; margin: 0 auto; }
.lp-section--alt { background: var(--cream); max-width: none; }
.lp-section--alt > * { max-width: 980px; margin-left: auto; margin-right: auto; }
.lp-section__title { text-align: center; font-size: 25px; font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.lp-section__title small { display: block; font-size: 12px; color: var(--accent); letter-spacing: .25em; margin-bottom: 6px; font-weight: bold; }
.lp-section__lead { text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.lp-section__note { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }

/* ===== 悩み ===== */
.lp-nayami { display: grid; gap: 26px; align-items: center; }
.lp-nayami__img { border-radius: 20px; }
.lp-pain { list-style: none; display: grid; gap: 12px; }
.lp-pain li {
  background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--accent);
  padding: 14px 18px; border-radius: 12px; font-size: 14px;
  box-shadow: 0 2px 8px rgba(80, 60, 40, .05);
}
.lp-pain strong { color: var(--accent-dark); }
.lp-nayami__bottom {
  text-align: center; margin-top: 30px; font-size: 16px; font-weight: bold; color: var(--dark);
}
.lp-nayami__bottom em { color: var(--accent); font-size: 1.15em; }

/* ===== コンセプト ===== */
.lp-concept { text-align: center; }
.lp-concept__img { width: 250px; margin: 0 auto 22px; display: block; border-radius: 50%; }
.lp-concept__copy { font-size: 27px; font-weight: 900; color: var(--dark); margin-bottom: 22px; }
.lp-concept__copy em { color: var(--accent); }
.lp-wordplay { list-style: none; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.lp-wordplay li {
  background: #fff; border-radius: 999px; padding: 9px 20px; font-size: 13px;
  border: 1px solid var(--line); box-shadow: 0 2px 6px rgba(80, 60, 40, .05);
}
.lp-wordplay strong { color: var(--teal); }
.lp-concept__text { max-width: 620px; margin: 0 auto; font-size: 14px; }

/* ===== サンプルショーケース（カタログのミニモックを流用） ===== */
.lp-showcase__scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%;
  gap: 14px; overflow-x: auto; padding: 4px 2px 18px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.lp-showcase__item { scroll-snap-align: start; text-decoration: none; }
.lp-showcase__item .cat-mock { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(80, 60, 40, .12); }
.lp-showcase__genre {
  display: inline-block; margin-top: 10px; background: var(--dark); color: #fff;
  font-size: 11px; font-weight: bold; padding: 2px 12px; border-radius: 999px;
}
.lp-showcase__name { display: block; color: var(--dark); font-weight: bold; font-size: 14px; margin-top: 6px; }
.lp-showcase__cta { text-align: center; margin-top: 12px; }

/* ===== 仕組み（特長4つ） ===== */
.lp-features { display: grid; gap: 18px; }
.lp-feature {
  background: #fff; border-radius: 18px; padding: 24px 22px; border: 1px solid var(--line);
  display: grid; grid-template-columns: 88px 1fr; gap: 18px; align-items: center;
  box-shadow: 0 2px 10px rgba(80, 60, 40, .05);
}
.lp-feature__img { width: 88px; height: 88px; border-radius: 18px; object-fit: cover; }
.lp-feature h3 { font-size: 16px; color: var(--dark); margin-bottom: 4px; }
.lp-feature h3 span { color: var(--accent); }
.lp-feature p { font-size: 13px; color: var(--muted); }

/* ===== 料金プラン ===== */
.lp-plans { display: grid; gap: 18px; }
.lp-plan {
  border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; background: #fff;
  box-shadow: 0 2px 10px rgba(80, 60, 40, .05);
}
.lp-plan--featured { border: 3px solid var(--accent); position: relative; }
.lp-plan__badge {
  position: absolute; top: -14px; left: 20px; background: var(--accent); color: #fff;
  font-size: 12px; font-weight: bold; padding: 3px 14px; border-radius: 999px;
}
.lp-plan__name { font-size: 19px; color: var(--dark); }
.lp-plan__price { margin: 12px 0; color: var(--muted); font-size: 14px; }
.lp-plan__price em { color: var(--accent-dark); font-size: 27px; font-weight: 900; }
.lp-plan ul { padding-left: 1.3em; font-size: 14px; display: grid; gap: 4px; }
.lp-plan__for { margin-top: 14px; font-size: 12px; background: var(--cream); border-radius: 10px; padding: 8px 12px; color: var(--muted); }
.lp-plan__order {
  display: block; text-align: center; margin-top: 14px; padding: 11px;
  background: var(--accent); color: #fff; text-decoration: none; font-weight: bold;
  font-size: 14px; border-radius: 10px;
}
.lp-plan__order:hover { background: var(--accent-dark); }
.lp-buyout__orders { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.lp-buyout__orders .lp-plan__order { flex: 1; min-width: 200px; margin-top: 0; }
.lp-quiz__softcta { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* 申込フォームの重要事項 */
.lp-order-terms {
  background: var(--cream); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.lp-order-terms__title { font-size: 16px; font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.lp-order-terms__h3 { font-size: 13px; font-weight: 900; color: var(--dark); margin: 16px 0 8px; }
.lp-order-terms__price { background: #fff; border-radius: 12px; padding: 14px 16px; display: grid; gap: 8px; }
.lp-order-terms__price > div { display: flex; justify-content: space-between; gap: 12px; }
.lp-order-terms__price dt { font-size: 13px; color: var(--muted); }
.lp-order-terms__price dd { font-size: 15px; font-weight: bold; color: var(--dark); text-align: right; }
.lp-order-terms__list { list-style: none; display: grid; gap: 8px; }
.lp-order-terms__list li { font-size: 13px; padding-left: 18px; position: relative; line-height: 1.7; }
.lp-order-terms__list li::before { content: "・"; position: absolute; left: 2px; color: var(--accent); font-weight: 900; }
.lp-order-terms__note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* 買い切り・オプションの説明ブロック */
.lp-buyout, .lp-options {
  margin-top: 22px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 20px 22px;
}
.lp-buyout__title, .lp-options__title {
  font-size: 15px; color: var(--dark); margin-bottom: 8px;
  border-left: 4px solid var(--teal); padding-left: 10px;
}
.lp-buyout__text { font-size: 13px; color: var(--text); }
.lp-options ul { list-style: none; display: grid; gap: 8px; }
.lp-options li { font-size: 13px; padding-left: 14px; position: relative; }
.lp-options li::before { content: "＋"; position: absolute; left: 0; color: var(--teal); font-weight: bold; }

/* ===== かんたんプラン診断 ===== */
.lp-quiz {
  margin-top: 28px; background: #fff; border: 2px dashed var(--teal);
  border-radius: 18px; padding: 26px 22px;
}
.lp-quiz__q { font-size: 16px; font-weight: 900; color: var(--dark); margin-bottom: 14px; text-align: center; }
.lp-quiz__answers { display: grid; gap: 10px; max-width: 520px; margin: 0 auto; }
.lp-quiz__answers button {
  padding: 14px 18px; border-radius: 12px; border: 1.5px solid #d6cec2; background: var(--cream);
  font-size: 14px; font-weight: bold; color: var(--text); cursor: pointer;
  font-family: inherit; text-align: left;
}
.lp-quiz__answers button:hover { border-color: var(--teal); background: #f0faf8; }
.lp-quiz__restart {
  display: block; margin: 16px auto 0; background: none; border: none;
  color: var(--muted); font-size: 12px; cursor: pointer; text-decoration: underline;
  font-family: inherit;
}
.lp-quiz__result { max-width: 560px; margin: 0 auto; text-align: center; }
.lp-quiz__badge {
  display: inline-block; background: var(--teal); color: #fff; font-weight: bold;
  font-size: 12px; padding: 4px 16px; border-radius: 999px; margin-bottom: 10px;
}
.lp-quiz__plan { font-size: 22px; font-weight: 900; color: var(--dark); }
.lp-quiz__price { font-size: 17px; font-weight: bold; color: var(--accent-dark); margin: 6px 0 12px; }
.lp-quiz__price small { font-weight: normal; color: var(--muted); }
.lp-quiz__reason {
  font-size: 13px; text-align: left; background: var(--cream); border-radius: 12px;
  padding: 12px 16px; margin-bottom: 16px;
}
.lp-quiz__features-title { font-size: 13px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.lp-quiz__features { list-style: none; display: grid; gap: 6px; text-align: left; margin-bottom: 18px; }
.lp-quiz__features li {
  font-size: 13px; padding-left: 22px; position: relative; line-height: 1.7;
}
.lp-quiz__features li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 900;
}
.lp-quiz__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== 料金シミュレータ ===== */
.lp-sim {
  margin-top: 28px; background: var(--cream); border: 2px solid var(--accent);
  border-radius: 18px; padding: 26px 22px;
}
.lp-sim__title { font-size: 19px; font-weight: 900; color: var(--dark); text-align: center; }
.lp-sim__lead { font-size: 13px; color: var(--muted); text-align: center; margin: 6px 0 20px; }
.lp-sim__row { margin-bottom: 16px; }
.lp-sim__label { font-size: 13px; font-weight: bold; color: var(--dark); margin-bottom: 8px; }
.lp-sim__segments { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-sim__segments button {
  padding: 10px 14px; border-radius: 999px; border: 1.5px solid #d6cec2;
  background: #fff; font-size: 13px; font-weight: bold; color: var(--text);
  cursor: pointer; font-family: inherit;
}
.lp-sim__segments button.is-active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.lp-sim input[type="range"] { width: 100%; accent-color: var(--accent); }
.lp-sim__result {
  background: #fff; border-radius: 14px; padding: 16px 18px; margin-top: 20px;
  display: grid; gap: 10px;
}
.lp-sim__result > div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.lp-sim__result dt { font-size: 13px; color: var(--muted); }
.lp-sim__result dd { font-size: 16px; font-weight: bold; color: var(--dark); text-align: right; }
.lp-sim__total { border-top: 2px solid var(--line); padding-top: 10px; }
.lp-sim__total dd { font-size: 22px; color: var(--accent-dark); }
.lp-sim__included { margin-top: 14px; background: #fff; border-radius: 14px; padding: 0 18px; }
.lp-sim__included summary {
  padding: 13px 0; font-size: 13px; font-weight: 900; color: var(--dark);
  cursor: pointer; list-style: none;
}
.lp-sim__included summary::before { content: "✓ "; color: var(--teal); }
.lp-sim__included .lp-quiz__features { margin-bottom: 14px; }
.lp-sim__note { font-size: 11px; color: var(--muted); margin-top: 10px; line-height: 1.7; }
.lp-sim__cta { text-align: center; margin-top: 18px; }

/* ===== 流れ ===== */
.lp-flow { list-style: none; display: grid; gap: 0; max-width: 640px; margin: 0 auto; counter-reset: flow; }
.lp-flow li { display: flex; gap: 18px; padding: 18px 0; position: relative; }
.lp-flow li + li { border-top: 1px dashed var(--line); }
.lp-flow li::before {
  counter-increment: flow; content: counter(flow);
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff;
  font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.lp-flow strong { display: block; font-size: 16px; color: var(--dark); }
.lp-flow p { font-size: 13px; color: var(--muted); }
.lp-flow__tag {
  display: inline-block; background: var(--teal); color: #fff; font-size: 11px;
  font-weight: bold; padding: 1px 10px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
}

/* ===== セル採の約束 ===== */
.lp-promise { display: grid; gap: 16px; }
.lp-promise__item {
  background: #fff; border-radius: 18px; padding: 26px 22px; text-align: center;
  border-top: 5px solid var(--teal); box-shadow: 0 2px 10px rgba(80, 60, 40, .06);
}
.lp-promise__no { font-size: 13px; font-weight: 900; color: var(--teal); letter-spacing: .2em; }
.lp-promise__item h3 { font-size: 18px; color: var(--dark); margin: 8px 0; }
.lp-promise__item p { font-size: 13px; color: var(--muted); text-align: left; }

/* ===== 無料診断の中身 ===== */
.lp-shindan { display: grid; gap: 26px; align-items: center; }
.lp-shindan__img { border-radius: 20px; }
.lp-checklist { list-style: none; display: grid; gap: 10px; }
.lp-checklist li {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px;
  font-size: 14px; font-weight: bold; color: var(--dark);
  display: flex; gap: 10px; align-items: center;
}
.lp-checklist li::before {
  content: "✓"; width: 24px; height: 24px; border-radius: 50%; background: var(--teal);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.lp-checklist li span { font-weight: normal; font-size: 12px; color: var(--muted); display: block; }

.lp-cta-box {
  text-align: center; background: #fff; border: 2px dashed var(--accent); border-radius: 18px;
  padding: 30px 22px; margin-top: 30px;
}
.lp-cta-box p { margin-bottom: 14px; font-weight: bold; color: var(--dark); }

/* ===== FAQ ===== */
.lp-faq { max-width: 720px; margin: 0 auto; }
.lp-faq__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; padding: 0 18px; }
.lp-faq__q { padding: 16px 28px 16px 0; font-weight: bold; font-size: 14px; cursor: pointer; list-style: none; position: relative; color: var(--dark); }
.lp-faq__q::before { content: "Q. "; color: var(--accent); }
.lp-faq__q::after { content: "＋"; position: absolute; right: 0; color: var(--accent); font-weight: 900; }
details[open] .lp-faq__q::after { content: "−"; }
.lp-faq__a { padding: 0 0 16px; font-size: 14px; color: var(--text); }

/* ===== 締めCTA ===== */
.lp-closing {
  background: linear-gradient(150deg, var(--accent), #f97316);
  color: #fff; text-align: center; padding: 60px 22px 70px; position: relative; overflow: hidden;
}
.lp-closing::before {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, .12); top: -120px; right: -100px;
}
.lp-closing__title { font-size: 26px; font-weight: 900; margin-bottom: 10px; position: relative; }
.lp-closing__note { font-size: 14px; opacity: .95; margin-bottom: 26px; position: relative; }
.lp-closing .lp-btn--primary {
  background: #fff; color: var(--accent); border-color: #fff; box-shadow: 0 6px 0 rgba(0, 0, 0, .18);
  font-size: 18px; position: relative;
}
.lp-closing__tel { margin-top: 20px; font-size: 14px; position: relative; }
.lp-closing__tel a { color: #fff; font-weight: 900; font-size: 24px; text-decoration: none; }
.lp-closing__hours { font-size: 12px; opacity: .85; }

/* ===== モバイル下部固定CTA（自社でも応募バー思想を実践） ===== */
.lp-stickybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  display: flex; gap: 8px; padding: 10px 12px;
  background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.lp-stickybar__tel {
  flex: .8; text-align: center; padding: 13px 4px; border-radius: 12px; font-weight: bold;
  font-size: 14px; text-decoration: none; background: #fff; color: var(--accent);
  border: 2px solid var(--accent); white-space: nowrap;
}
.lp-stickybar__main {
  flex: 1.4; text-align: center; padding: 13px 4px; border-radius: 12px; font-weight: bold;
  font-size: 14px; text-decoration: none; background: var(--accent); color: #fff; white-space: nowrap;
}

/* ===== フォーム（診断） ===== */
.lp-form { max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: bold; font-size: 14px; margin-bottom: 6px; color: var(--dark); }
.req {
  background: var(--accent); color: #fff; font-size: 11px; font-weight: bold;
  padding: 1px 8px; border-radius: 4px; margin-left: 6px;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="url"], textarea {
  width: 100%; padding: 13px; font-size: 16px; border: 1.5px solid #d6cec2; border-radius: 10px;
  font-family: inherit; background: #fff;
}
input:focus, textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.form-help { font-size: 12px; color: var(--muted); margin-top: 4px; }
.errorlist { color: #dc2626; font-size: 13px; list-style: none; margin-top: 4px; }
.form-errors {
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  border-radius: 10px; padding: 12px 16px; margin: 0 auto 20px; font-size: 14px; max-width: 560px;
}
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.lp-ready-label {
  display: flex !important; gap: 10px; align-items: flex-start;
  background: #fff7ed; border: 1.5px solid #fdba74; border-radius: 10px;
  padding: 12px 14px; cursor: pointer; font-weight: bold; font-size: 14px;
}
.lp-ready-label input { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; }
.lp-ready-label small { font-weight: normal; color: var(--muted); }

.lp-form__optional { margin-bottom: 18px; border-top: 1px dashed var(--line); padding-top: 14px; }
.lp-form__optional summary {
  cursor: pointer; font-size: 13px; font-weight: bold; color: var(--teal);
  list-style: none; padding: 4px 0 14px;
}
.lp-form__optional summary::before { content: "＋ "; }
details[open].lp-form__optional summary::before { content: "− "; }

/* 診断ページ */
.lp-shindan-hero {
  background: var(--cream); padding: 40px 22px 34px; text-align: center;
}
.lp-shindan-hero__inner { max-width: 760px; margin: 0 auto; display: grid; gap: 18px; align-items: center; }
.lp-shindan-hero__img { width: 230px; margin: 0 auto; border-radius: 20px; }
.lp-shindan-hero h1 { font-size: 25px; font-weight: 900; color: var(--dark); }
.lp-shindan-hero p { font-size: 13px; color: var(--muted); }
.lp-steps3 { list-style: none; display: grid; gap: 10px; max-width: 560px; margin: 0 auto 30px; counter-reset: s3; }
.lp-steps3 li {
  background: #fff; border-radius: 12px; border: 1px solid var(--line);
  padding: 13px 16px 13px 52px; position: relative; font-size: 14px; text-align: left;
}
.lp-steps3 li::before {
  counter-increment: s3; content: counter(s3);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: #fff;
  font-weight: bold; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.lp-steps3 strong { color: var(--dark); }
.lp-pattern-note {
  max-width: 560px; margin: 0 auto 20px; background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 12px; padding: 12px 16px; font-size: 13px;
}

/* サンクス */
.lp-thanks { text-align: center; }
.lp-thanks__icon { font-size: 52px; margin-bottom: 10px; }

/* 法定ページ */
.lp-legal-page { max-width: 720px; }
.lp-legal-page h2 { font-size: 16px; margin: 22px 0 8px; color: var(--dark); }
.lp-legal-page .text { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px; font-size: 14px; }
.lp-legal-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.lp-legal-table th, .lp-legal-table td { border-bottom: 1px solid var(--line); padding: 14px 16px; text-align: left; vertical-align: top; font-size: 14px; }
.lp-legal-table th { white-space: nowrap; color: var(--muted); font-weight: normal; width: 8em; background: var(--cream); }

/* ===== フッター ===== */
.lp-footer { background: var(--dark); color: #d6d3d1; padding: 40px 22px 110px; }
.lp-footer__inner { max-width: 980px; margin: 0 auto; }
.lp-footer__brand { font-weight: 900; font-size: 20px; color: #fff; display: flex; align-items: center; gap: 8px; }
.lp-footer__brand::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  border: 4px solid var(--accent); display: inline-block;
}
.lp-footer__copy { font-size: 13px; margin: 6px 0 18px; color: #a8a29e; }
.lp-footer__nav { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.lp-footer__nav a { color: #d6d3d1; font-size: 13px; }
.lp-footer__meta { font-size: 12px; color: #a8a29e; line-height: 1.8; }

/* ===== PC ===== */
@media (min-width: 820px) {
  body { padding-bottom: 0; }
  .lp-stickybar { display: none; }
  .lp-footer { padding-bottom: 40px; }
  .lp-hero { padding: 76px 22px 60px; }
  .lp-hero__grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .lp-hero__title { font-size: 46px; }
  .lp-nayami { grid-template-columns: 1fr 1.3fr; }
  .lp-showcase__scroller { grid-auto-columns: 31%; }
  .lp-features { grid-template-columns: 1fr 1fr; }
  .lp-plans { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .lp-promise { grid-template-columns: repeat(3, 1fr); }
  .lp-shindan { grid-template-columns: 1fr 1.4fr; }
  .lp-shindan-hero__inner { grid-template-columns: auto 1fr; text-align: left; }
  .lp-shindan-hero h1 { font-size: 31px; }
}
