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

/* ★2026-08-17: テラコッタからピンクへ全面変更（キャラのピンクの豚に合わせた）。
   色は必ずここの変数だけを直すこと。本文やコンポーネントに色を直書きしない。
   ★変えたら make-ogp.js / make-mascot.js / form.css の同じ値も揃えること（4か所ある）。
   蛍光寄りのピンクは使わない。くすみを入れた珊瑚系にして、
   長い本文を読ませても目が疲れないようにしている。 */
:root {
  --ink: #33262a;
  --ink-soft: #6e565c;
  --cream: #fefaf9;
  --paper: #ffffff;
  --band: #fdedf1;
  --accent: #e2718e;
  --accent-dark: #b8475f;
  --accent-soft: #fce1e7;
  --ok: #3d7458;
  --ok-bg: #eef5f0;
  --ng: #9d443c;
  --ng-bg: #f9eeec;
  --line: #f3dae1;
  --radius: 14px;
  --shadow: 0 2px 14px rgba(120, 60, 80, 0.08);
  --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: block; width: 38px; height: 38px; }
.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); }

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

/* ヒーロー：左に文字・右にキャラ（まぐろ.comと同じ型）。
   ★狭い画面でキャラを display:none にしないこと。小さくして添える。 */

.lp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 380px at 78% 8%, rgba(252, 225, 231, .95) 0%, rgba(252, 225, 231, 0) 62%),
    linear-gradient(180deg, var(--band) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

/* 広い画面はキャラの絵を右に敷く（まぐろ.comと同じ型）。
   ★絵の左端は make-hero.js で画像自体のアルファを落としてある。
     CSSのグラデーションだけでは境目が線に見えて消せない。 */
/* ★トップだけ広い絵を背景に敷く。下層は場面別のキャラを右の列に置くので
   背景は敷かない（両方出すとキャラが2つ並ぶ）。 */
@media (min-width: 941px) {
  .lp-hero.is-home {
    background:
      url("/assets/img/hero-maru.webp") right center / auto 100% no-repeat,
      radial-gradient(1100px 380px at 78% 8%, rgba(252, 225, 231, .95) 0%, rgba(252, 225, 231, 0) 62%),
      linear-gradient(180deg, var(--band) 0%, var(--cream) 100%);
    min-height: 430px;
  }
  .lp-hero.is-home .lp-hero-visual { display: none; }
  .lp-hero.is-home .lp-hero-inner { display: block; }
  .lp-hero.is-home .lp-hero-text { max-width: 640px; }
}

/* 場面別のキャラ（生成画像）。丸く抜いて縁をつける。
   ★狭い画面でもこれを使う。SVGの簡略版は見劣りするので出さない。
   ★トップは横長の絵を丸く抜くので object-position を右寄りにして
     キャラが中心に来るようにする（既定の中央だと部屋だけが写る）。 */
.lp-hero-visual.is-pig img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 70% 45%;
  border: 4px solid var(--paper);
  box-shadow: 0 6px 24px -10px rgba(120, 60, 80, .45);
  background: var(--band);
}

/* 地の質感。うっすらした斜線を一枚だけ。 */
.lp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(226, 113, 142, .05) 0 2px, transparent 2px 9px);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  padding: 32px 20px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.lp-hero-text { min-width: 0; }

.lp-hero-visual { flex: 0 0 auto; }
.lp-hero-visual img { display: block; width: 250px; height: auto; }
.lp-hero.is-home .lp-hero-visual img { width: 290px; }

/* jyofu.com の型。見出しの上に置く小さいラベル。 */
.eyebrow {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent-dark);
  text-transform: none;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 8px;
}

.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;
}

/* ★「初回」と「0円」で2行。b を display:block にして中に「円」を残すと
   「初回／0／円」の3行に割れる。0と円は同じ b の中に入れること。 */
.lp-free-badge i { font-style: normal; font-size: 12.5px; line-height: 1; }
.lp-free-badge b { font-size: 26px; line-height: 1; display: block; margin-top: 3px; letter-spacing: -.02em; }

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

.lp-free-main {
  margin: 0 0 6px;
  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 8px; font-size: 14px; line-height: 1.7; }
.lp-free-sub strong { color: var(--accent-dark); }
.lp-free-note {
  margin: 0; padding-top: 8px;
  border-top: 1px dashed var(--line);
  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 {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(70, 45, 30, .04), 0 8px 24px -18px rgba(70, 45, 30, .5);
}

.lp-sec.is-soft {
  background: linear-gradient(180deg, var(--band) 0%, #f9f0e4 100%);
  border-color: var(--accent-soft);
}

/* 見出し。左の帯を2色にして情報の階層を出す。 */
.lp-sec h2 {
  position: relative;
  margin: 0 0 18px;
  font-size: 22.5px;
  line-height: 1.5;
  letter-spacing: .01em;
  padding-left: 16px;
}

.lp-sec h2::before {
  content: "";
  position: absolute; left: 0; top: .18em; bottom: .18em;
  width: 5px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.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; }

/* 申込フォームのiframe（/reserve/） */
.lp-form-frame {
  display: block;
  width: 100%;
  border: 0;
  overflow: hidden;
  background: transparent;
}

/* 最初の一通の文例 */
.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 { border-top: 1px solid var(--line); background: #3b2830; color: #f0dde3; }
.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: #d3b8c2; max-width: 62em; }
.lp-footer .lp-trust-list { color: #d3b8c2; 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 #543b45;
}

.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: #d3b8c2; }
.lp-footer-nav a { color: #f0dde3; text-decoration: none; }
.lp-footer-nav a:hover { text-decoration: underline; }

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

/* ---------- 下に貼り付く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; }

  /* キャラは消さずに小さくして右上へ添える */
  .lp-hero-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; }
  .lp-hero-visual img,
  .lp-hero.is-home .lp-hero-visual img { width: 150px; }
  .lp-hero-visual.is-pig img { width: 140px; height: 140px; }

  /* 固定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; }
  /* ★狭い画面ではキャラを右上に浮かせる。
     グリッドの列に置いたままだと本文が237pxまで痩せて0円バンドが縦に伸びる。
     見出しだけ padding-right で避け、本文とバンドは全幅を使う。 */
  .lp-hero-inner { padding: 18px 14px 24px; display: block; position: relative; }
  .lp-hero-text { padding-right: 0; }
  .lp-hero .eyebrow, .lp-hero h1 { padding-right: 96px; }
  .lp-hero h1, .lp-hero.is-home h1 { font-size: 23px; }

  .lp-hero-visual { position: absolute; top: 14px; right: 12px; }
  .lp-hero-visual img,
  .lp-hero.is-home .lp-hero-visual img { width: 88px; }
  .lp-hero-visual.is-pig img { width: 82px; height: 82px; border-width: 3px; }

  .eyebrow { font-size: 10.5px; }
  .eyebrow::before { width: 14px; margin-right: 6px; }
  .lp-sec { padding: 20px 18px; }
  .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; }
}
