/* デブ.com 共通スタイル
   意匠：温かみのあるテラコッタ＋生成り。角を丸く、余白を広く。
   （ネットワーク内の他サイトと配色が被らないようにしている） */

:root {
  --ink: #2e2320;
  --ink-soft: #5f4d44;
  --cream: #fbf6ef;
  --paper: #ffffff;
  --band: #f5e9db;
  --accent: #c1662f;
  --accent-dark: #994d1f;
  --accent-soft: #f7e2ce;
  --ok: #3d7458;
  --ok-bg: #eef5f0;
  --ng: #9d443c;
  --ng-bg: #f9eeec;
  --line: #e7d8c6;
  --radius: 14px;
  --shadow: 0 2px 14px rgba(70, 45, 30, 0.07);
  --gothic: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--gothic);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-dark); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { display: inline-flex; }
.brand-name { display: block; font-weight: 800; font-size: 19px; line-height: 1.15; letter-spacing: 0.01em; }
.brand-name small { display: block; font-weight: 600; font-size: 11px; color: var(--ink-soft); letter-spacing: 0.02em; }

.nav {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}

.nav a {
  display: inline-block;
  padding: 8px 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
}

.nav a:hover { background: var(--band); }

.nav a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 9px 18px;
}

.nav a.nav-cta:hover { background: var(--accent-dark); }

/* ---------- ヒーロー ---------- */

.lp-hero {
  background: linear-gradient(180deg, var(--band) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.lp-hero-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 30px 20px 34px;
}

.breadcrumbs {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ink-soft);
}

.breadcrumbs a { color: var(--ink-soft); }

.lp-hero h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.lp-hero.is-home h1 { font-size: 34px; }

.lp-hero-lead {
  margin: 0 0 20px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 46em;
}

/* ヒーロー直下の0円バンド */

.lp-free-band {
  display: flex; align-items: center; gap: 18px;
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 0 18px;
  box-shadow: var(--shadow);
  max-width: 760px;
}

.lp-free-badge {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px; font-weight: 700; line-height: 1.1;
  letter-spacing: 0.02em;
}

.lp-free-badge b { font-size: 30px; line-height: 1; display: block; margin-top: 2px; }

.lp-free-body { min-width: 0; }

.lp-free-main {
  margin: 0 0 4px;
  font-size: 20px; font-weight: 800; line-height: 1.4;
}

.lp-free-main b { color: var(--accent-dark); font-size: 25px; }
.lp-free-main span { margin: 0 10px; color: var(--ink-soft); font-weight: 600; }

.lp-free-sub { margin: 0 0 4px; font-size: 14px; line-height: 1.7; }
.lp-free-sub strong { color: var(--accent-dark); }
.lp-free-note { margin: 0; font-size: 12px; color: var(--ink-soft); line-height: 1.6; }

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

.lp-hero-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.lp-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.lp-btn-main { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.lp-btn-main:hover { background: var(--accent-dark); }
.lp-btn-sub { background: var(--paper); color: var(--accent-dark); border: 1px solid var(--accent); }
.lp-btn-sub:hover { background: var(--accent-soft); }

.lp-license {
  font-size: 12px;
  color: var(--ink-soft);
}

.lp-license span { color: var(--ok); margin-right: 4px; font-weight: 700; }

.lp-trust-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13px; color: var(--ink-soft);
}

.lp-trust-list li { display: flex; align-items: center; gap: 5px; }
.lp-trust-list span { color: var(--ok); font-weight: 700; }

/* ---------- 本体 ---------- */

.lp-shell {
  max-width: 1180px; margin: 0 auto;
  padding: 28px 20px 40px;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.lp-side {
  position: sticky; top: 74px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.lp-side h2 { margin: 0 0 10px; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.08em; }
.lp-side nav { display: flex; flex-direction: column; }

.lp-side nav a {
  padding: 7px 10px;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 8px;
}

.lp-side nav a:hover { background: var(--band); }
.lp-side nav a[aria-current="page"] { background: var(--accent-soft); font-weight: 700; }

.lp-side-free {
  margin-top: 14px;
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px; line-height: 1.75; color: var(--ink);
}

.lp-side-free b {
  display: block;
  color: var(--accent-dark);
  font-size: 17px;
  margin-bottom: 2px;
}

.lp-side-btn {
  display: block; margin-top: 9px;
  background: var(--accent); color: #fff;
  text-align: center; text-decoration: none;
  font-weight: 700; font-size: 13.5px;
  padding: 9px 8px; border-radius: 999px;
}

.lp-side-btn:hover { background: var(--accent-dark); }

.lp-side-contact {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft); line-height: 1.8;
}

.lp-side-contact b { display: block; color: var(--ink); margin-bottom: 4px; }

.lp-main { min-width: 0; }

.lp-sec {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 20px;
}

.lp-sec.is-soft { background: var(--band); border-color: var(--accent-soft); }

.lp-sec h2 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.5;
  padding-left: 14px;
  border-left: 5px solid var(--accent);
}

.lp-sec h3 {
  margin: 22px 0 8px;
  font-size: 17px;
  color: var(--accent-dark);
}

.lp-sec p { margin: 0 0 14px; }
.lp-sec p:last-child { margin-bottom: 0; }

.lp-note {
  font-size: 13px; color: var(--ink-soft);
  background: var(--cream); border-radius: 10px; padding: 10px 14px;
}

.is-soft .lp-note { background: var(--paper); }

.lp-inline-link { font-weight: 700; }

/* リスト類 */

.lp-check { list-style: none; margin: 0 0 14px; padding: 0; }
.lp-check li { position: relative; padding-left: 26px; margin-bottom: 7px; }
.lp-check li::before {
  content: "✓"; position: absolute; left: 4px; top: 0;
  color: var(--ok); font-weight: 700;
}

.lp-def { list-style: none; margin: 0 0 14px; padding: 0; }
.lp-def li { margin-bottom: 12px; padding-left: 14px; border-left: 3px solid var(--accent-soft); }
.lp-def b { display: block; }

.lp-steps { margin: 0 0 14px; padding-left: 1.3em; }
.lp-steps li { margin-bottom: 12px; }
.lp-steps b { display: block; }
.lp-steps em { font-style: normal; color: var(--accent-dark); display: block; font-size: 14px; }

/* 2カラムカード */

.lp-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }

.lp-card { border-radius: 12px; padding: 16px 18px; }
.lp-card h3 { margin: 0 0 8px; font-size: 16px; }
.lp-card ul { margin: 0; padding-left: 1.2em; }
.lp-card li { margin-bottom: 5px; }

.lp-card.is-ok { background: var(--ok-bg); }
.lp-card.is-ok h3 { color: var(--ok); }
.lp-card.is-ng { background: var(--ng-bg); }
.lp-card.is-ng h3 { color: var(--ng); }

/* リンクカード */

.lp-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }

.lp-links a {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.lp-links a:hover { border-color: var(--accent); background: var(--accent-soft); }
.lp-links b { display: block; color: var(--accent-dark); font-size: 15px; margin-bottom: 2px; }

.is-soft .lp-links a { background: var(--paper); }

/* Q&A */

.lp-qa-item {
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.lp-qa-item:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.lp-qa-item h3 { margin: 0 0 6px; font-size: 16px; }
.lp-qa-item h3::before { content: "Q. "; color: var(--accent); font-weight: 700; }

/* 表 */

.lp-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.lp-table th, .lp-table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; }
.lp-table th { background: var(--band); width: 8.5em; font-weight: 700; }

/* 0円の内訳表：金額の列だけ目立たせる */
.lp-table.is-free th { width: 14em; }
.lp-table.is-free .is-zero { color: var(--accent-dark); font-weight: 800; font-size: 16px; }
.lp-table.is-free .is-paid { color: var(--ink-soft); }

/* 幅のある表は自分の箱の中でスクロールさせる（ページ全体を横に流さない） */
.lp-scroll { overflow-x: auto; margin-bottom: 14px; }
.lp-scroll .lp-table { min-width: 560px; margin-bottom: 0; }

/* 比較表（ふつうの女風/当サイト・店舗型/出張型） */
.lp-table.is-compare thead th { background: var(--accent); color: #fff; font-size: 14px; }
.lp-table.is-compare thead th:first-child { background: var(--band); }
.lp-table.is-compare tbody th { width: 7.5em; }
.lp-table.is-compare td:last-child { background: var(--accent-soft); font-weight: 600; }

/* 最初の一通の文例 */
.lp-example {
  background: var(--cream);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  font-size: 14.5px;
  line-height: 1.85;
}

/* 最終CTA */

.lp-final {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 20px;
}

.lp-final h2 { margin: 0 0 12px; font-size: 21px; }
.lp-final p { margin: 0 0 18px; }
.lp-sec-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-final .lp-btn-main { background: #fff; color: var(--accent-dark); }
.lp-final .lp-btn-main:hover { background: var(--accent-soft); }
.lp-final .lp-btn-sub { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.lp-final .lp-btn-sub:hover { background: rgba(255, 255, 255, 0.14); }

/* ---------- フッター ---------- */

.lp-footer { background: #34272224; border-top: 1px solid var(--line); background: #3a2c26; color: #e9ddd2; }
.lp-footer-inner { max-width: 1180px; margin: 0 auto; padding: 32px 20px 26px; }
.lp-footer p { margin: 0 0 10px; }
.lp-footer strong { font-size: 17px; color: #fff; }
.lp-footer-lead { font-size: 14px; color: #cbb9ab; max-width: 62em; }
.lp-footer .lp-trust-list { color: #cbb9ab; margin-bottom: 22px; }
.lp-footer .lp-trust-list span { color: #8fc0a4; }

.lp-footer-nav {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #4d3c34;
}

.lp-footer-nav h3 { margin: 0 0 8px; font-size: 14px; color: #fff; }
.lp-footer-nav ul { list-style: none; margin: 0; padding: 0; font-size: 13px; }
.lp-footer-nav li { margin-bottom: 5px; color: #cbb9ab; }
.lp-footer-nav a { color: #e9ddd2; text-decoration: none; }
.lp-footer-nav a:hover { text-decoration: underline; }

.lp-footer-bottom { padding-top: 18px; font-size: 12px; color: #b3a196; }
.lp-footer-bottom a { color: #e9ddd2; }

/* ---------- 下に貼り付く0円CTA（狭い画面のみ） ---------- */

.lp-sticky-cta { display: none; }

/* ---------- 狭い画面 ---------- */

@media (max-width: 940px) {
  .lp-shell { grid-template-columns: 1fr; }
  .lp-side { position: static; }
  .lp-side nav { flex-direction: row; flex-wrap: wrap; }
  .lp-side nav a { border: 1px solid var(--line); font-size: 13px; }
  .lp-two { grid-template-columns: 1fr; }

  /* 固定CTAのぶんだけ足元を空ける（フッターが隠れないように） */
  body { padding-bottom: 68px; }

  .lp-sticky-cta {
    display: flex; align-items: center; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -2px 12px rgba(70, 45, 30, 0.12);
    padding: 9px 14px;
    padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
  }

  .lp-sticky-text {
    flex: 1 1 auto; min-width: 0;
    font-size: 12.5px; line-height: 1.45; color: var(--ink-soft);
  }

  .lp-sticky-text b { display: block; color: var(--accent-dark); font-size: 17px; }

  .lp-sticky-btn {
    flex: 0 0 auto;
    background: var(--accent); color: #fff;
    text-decoration: none; font-weight: 700; font-size: 14.5px;
    padding: 12px 20px; border-radius: 999px;
  }

  .lp-free-band { gap: 14px; padding: 14px 16px; }
  .lp-free-badge { width: 66px; height: 66px; font-size: 12px; }
  .lp-free-badge b { font-size: 25px; }
  .lp-free-main { font-size: 17px; }
  .lp-free-main b { font-size: 21px; }
  .lp-free-main span { margin: 0 6px; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .header-inner { padding: 8px 14px; gap: 10px; }
  .brand-logo { height: 32px; }
  .nav { width: 100%; margin-left: 0; gap: 2px; }
  .nav a { padding: 6px 9px; font-size: 13px; }
  .lp-hero-inner { padding: 20px 14px 26px; }
  .lp-hero h1, .lp-hero.is-home h1 { font-size: 23px; }
  .lp-shell { padding: 18px 14px 30px; gap: 18px; }
  .lp-sec { padding: 20px 18px; }
  .lp-sec h2 { font-size: 19px; }
  .lp-final { padding: 22px 18px; }
  .lp-btn { padding: 12px 20px; font-size: 14.5px; }
  .lp-footer-inner { padding: 26px 14px 22px; }

  .lp-free-band { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lp-free-badge { width: 58px; height: 58px; }
  .lp-free-badge b { font-size: 22px; }
  .lp-free-main { font-size: 16.5px; }
  .lp-sticky-btn { padding: 11px 16px; font-size: 14px; }
}
