/* =========================================================
   ネコちゃん探偵のプロ LP
   カラー：温かみのあるオレンジ × クリーム（信頼・安心）
   設計方針：モバイルファースト（まずスマホ、768px以上で拡張）
   ========================================================= */

:root {
  --orange: #f08a3c;
  --orange-dark: #d96e1f;
  --orange-deep: #b8560f;
  --cream: #fdf8f1;
  --tint: #fbeee0;
  --ink: #35302a;
  --ink-soft: #6b6259;
  --border: #efe4d5;
  --white: #ffffff;
  --line-green: #06c755;
  --tel-blue: #2f7d6b;
  --shadow: 0 10px 28px rgba(210, 120, 40, 0.10);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: normal;
}

h1, h2, h3, .brand, .closing-title,
.price-name, .hero-badge-num {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.45;
}

strong { color: var(--orange-deep); font-weight: 700; }
img { display: block; max-width: 100%; height: auto; }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 18px; }
.container.narrow { max-width: 760px; }

.section { padding: 48px 0; }
.section-tint { background: var(--tint); }
.center { text-align: center; }

/* ===== ヘッダー ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 241, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 54px;
}
.brand { font-weight: 700; font-size: 16px; color: var(--orange-deep); }
.header-cta {
  background: var(--orange); color: var(--white); text-decoration: none;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700;
}

/* ===== ファーストビュー ===== */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(255,251,245,0.80) 0%, rgba(255,250,242,0.66) 50%, rgba(255,248,238,0.72) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 34px; padding-bottom: 40px;
}
.hero-locate {
  display: inline-block;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 900; color: #1a150f; line-height: 1.35;
  font-size: 18px; margin-bottom: 14px;
  background: rgba(255,255,255,0.78);
  padding: 8px 14px; border-radius: 12px;
  box-shadow: 0 2px 10px rgba(120,90,40,0.12);
}
.hero-locate-mark {
  color: #1a150f; font-size: 1.35em;
  background: linear-gradient(transparent 58%, #ffd06b 58%);
  padding: 0 3px; border-radius: 2px;
}
.sp-only { display: inline; }

.hero-eyebrow {
  font-size: 14px; font-weight: 700; color: var(--orange-deep);
  margin-bottom: 12px;
}
.hero-title {
  font-size: 27px; font-weight: 900; color: var(--ink);
  margin-bottom: 16px;
}
.hero-title-accent { color: var(--orange-dark); }
.hero-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.hero-lead { font-size: 15px; margin-bottom: 20px; }

.hero-points { list-style: none; margin-bottom: 20px; }
.hero-points li {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.85);
  border-radius: 12px; padding: 10px 14px; margin-bottom: 8px;
  font-size: 13.5px; font-weight: 500;
  box-shadow: 0 2px 8px rgba(210,120,40,0.06);
}
.hp-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.hero-badge {
  background: var(--orange); color: #fff; border-radius: var(--radius);
  padding: 16px 20px; text-align: center; margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.hero-badge-label { display: block; font-size: 18px; font-weight: 700; }
.hero-badge-num {
  display: block; font-size: 44px; font-weight: 900; line-height: 1.1;
}
.hero-badge-num small { font-size: 18px; }
.hero-badge-note { display: block; font-size: 15px; opacity: .95; }

.hero-buttons { display: flex; flex-direction: column; gap: 10px; }

/* ===== ボタン ===== */
.btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; font-size: 16px;
  padding: 14px 20px; border-radius: 999px;
  transition: transform .15s, box-shadow .2s, filter .2s; line-height: 1.3;
}
.btn small { font-size: 12px; font-weight: 500; opacity: .95; }
.btn:hover { transform: translateY(-2px); }
.btn-tel { background: var(--tel-blue); color: #fff; box-shadow: 0 8px 18px rgba(47,125,107,.3); }
.btn-line { background: var(--line-green); color: #fff; box-shadow: 0 8px 18px rgba(6,199,85,.3); }
.btn-line:hover { filter: brightness(.96); }

/* ===== 見出し共通 ===== */
.section-eyebrow {
  text-align: center; color: var(--orange); font-weight: 700;
  font-size: 12px; letter-spacing: .22em; margin-bottom: 6px;
}
.section-title {
  text-align: center; font-size: 22px; font-weight: 900;
  color: var(--orange-deep); margin-bottom: 26px;
}
.section-title::after {
  content: ""; display: block; width: 44px; height: 4px;
  background: var(--orange); border-radius: 2px; margin: 12px auto 0;
}
.mini-title {
  font-size: 17px; color: var(--orange-deep); margin: 26px 0 12px;
  padding-left: 12px; border-left: 5px solid var(--orange);
}
.lead-center {
  text-align: center; font-size: 17px; font-weight: 700;
  color: var(--orange-dark); margin-bottom: 18px;
}
.section p { margin-bottom: 14px; }

.section-speed { background: var(--orange-deep); color: #fff; }
.section-speed .section-title { color: #fff; }
.section-speed .section-title::after { background: #fff; }
.section-speed strong { color: #ffe4c4; }

/* ===== リスト ===== */
.dot-list { list-style: none; margin-bottom: 16px; }
.dot-list li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.dot-list li::before {
  content: ""; position: absolute; left: 3px; top: 11px;
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
}

.emphasis-box {
  background: var(--white); border: 2px dashed var(--orange);
  border-radius: var(--radius); padding: 18px 20px; font-weight: 700;
  color: var(--orange-deep); text-align: center;
}

.text-link { color: var(--orange-dark); font-weight: 700; }

/* ===== 画像 ===== */
.lp-figure {
  border-radius: var(--radius); overflow: hidden;
  margin: 18px 0; box-shadow: var(--shadow);
}
.lp-figure img { width: 100%; }

/* ===== 無料相談の前に（tip） ===== */
.tip-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.tip {
  background: var(--white); border-radius: 12px; padding: 16px 18px;
  box-shadow: var(--shadow); border-left: 5px solid var(--orange);
}
.tip h3 { font-size: 15px; color: var(--orange-deep); margin-bottom: 6px; }
.tip p { margin: 0; font-size: 14px; }

/* ===== SERVICE カード ===== */
.service-cards { display: flex; flex-direction: column; gap: 14px; margin: 18px 0; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow); border-top: 4px solid var(--orange);
}
.service-card h3 { font-size: 17px; color: var(--orange-deep); margin-bottom: 8px; }
.service-card p { margin: 0; }

/* ===== REASON ===== */
.reason-list { display: flex; flex-direction: column; gap: 14px; }
.reason-item {
  display: flex; gap: 14px; background: var(--white);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
}
.reason-no {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 900; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
.reason-item h3 { font-size: 16px; color: var(--orange-deep); margin-bottom: 6px; }
.reason-item p { margin: 0; font-size: 14px; }

/* ===== PRICE ===== */
.price-cards { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.price-card {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.price-card-popular { border: 2px solid var(--orange); }
.price-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.price-name { font-size: 19px; color: var(--orange-deep); text-align: center; margin-bottom: 8px; }
.price-detail { text-align: center; font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.price-amount { text-align: center; color: var(--orange-dark); margin-bottom: 2px; }
.price-amount strong { font-size: 40px; font-family: "Zen Maru Gothic", sans-serif; }
.price-amount span { font-size: 14px; font-weight: 700; }
.price-note { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 12px; }
.price-desc { font-size: 13.5px; margin: 0; }

.price-success {
  background: var(--orange); color: #fff; border-radius: var(--radius);
  padding: 20px; text-align: center; margin: 20px 0;
}
.price-success-head { font-size: 16px; margin-bottom: 8px; }
.price-success-head strong { color: #fff; font-size: 20px; }
.price-success p { margin: 0; font-size: 13px; }

/* ===== FLOW ===== */
.flow-list { list-style: none; }
.flow-list li {
  display: flex; gap: 14px; padding: 18px 0;
  border-bottom: 1px dashed var(--border);
}
.flow-list li:last-child { border-bottom: none; }
.flow-no {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
.flow-list h3 { font-size: 16px; color: var(--orange-deep); margin-bottom: 6px; }
.flow-list p { margin: 0; font-size: 14px; }

/* ===== VOICE ===== */
.voice-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 18px; }
.voice-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
}
.voice-photo { width: 100%; aspect-ratio: 4 / 3; background: var(--tint); flex-shrink: 0; }
.voice-photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-body { padding: 18px 20px; }
.voice-meta { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 8px; }
.voice-card h3 {
  font-size: 16px; color: var(--orange-deep); margin-bottom: 10px; line-height: 1.5;
}
.voice-card p { margin: 0; font-size: 13.5px; }
.note-text { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

/* ===== FAQ ===== */
.faq details {
  background: var(--white); border-radius: 12px; margin-bottom: 10px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 16px 46px 16px 18px; font-weight: 700;
  color: var(--orange-deep); position: relative; list-style: none; font-size: 14.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; color: var(--orange); font-weight: 900; margin-right: 8px; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%); font-size: 20px; color: var(--orange);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 18px 18px; margin: 0; font-size: 14px; }

/* ===== クロージング ===== */
.closing {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff; padding: 48px 0;
}
.closing-title { font-size: 22px; color: #fff; text-align: center; margin-bottom: 16px; }
.closing p { text-align: center; margin-bottom: 20px; }
.closing-buttons { max-width: 420px; margin: 0 auto; }

/* ===== フッター ===== */
.site-footer {
  background: var(--ink); color: #cbc3b8; padding: 36px 0 84px; text-align: center;
}
.footer-brand { font-weight: 700; color: #fff; font-size: 16px; margin-bottom: 4px; }
.footer-provider { font-size: 13px; margin-bottom: 16px; }
.footer-links {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 18px; margin-bottom: 16px; font-size: 13px;
}
.footer-links a { color: #cbc3b8; text-decoration: none; }
.footer-copy { font-size: 12px; opacity: .7; }

/* ===== 追従CTA（スマホ） ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; gap: 8px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(253,248,241,.96); backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
}
.sticky-cta .btn { flex-direction: row; padding: 12px; font-size: 14px; }
.sticky-cta .btn-tel { flex: 0 0 80px; }
.sticky-cta .btn-line { flex: 1; }

/* =========================================================
   タブレット以上（768px〜）
   ========================================================= */
@media (min-width: 768px) {
  body { font-size: 16px; line-height: 1.9; }
  .section { padding: 72px 0; }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(255,251,245,0.95) 0%, rgba(255,250,242,0.88) 38%, rgba(255,249,240,0.45) 66%, rgba(255,249,240,0.10) 100%);
  }
  .hero-content { padding-top: 60px; padding-bottom: 70px; max-width: 700px; }
  .hero-locate { font-size: 22px; margin-bottom: 18px; }
  .sp-only { display: none; }
  .hero-eyebrow { font-size: 16px; }
  .hero-title { font-size: 40px; }
  .hero-lead { font-size: 17px; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-points li { margin-bottom: 0; }
  .hero-buttons { flex-direction: row; }
  .hero-buttons .btn { flex: 1; }

  .section-title { font-size: 28px; }
  .lead-center { font-size: 19px; }

  .service-cards { flex-direction: row; }
  .service-card { flex: 1; }

  .price-cards { flex-direction: row; align-items: stretch; }
  .price-card { flex: 1; display: flex; flex-direction: column; }
  .price-desc { margin-top: auto; }

  .voice-card { flex-direction: row; align-items: stretch; }
  .voice-photo { width: 240px; aspect-ratio: auto; }
  .voice-body { flex: 1; padding: 22px 24px; }

  .lp-figure { margin: 24px auto; max-width: 640px; }

  .sticky-cta { display: none; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 42px; }
  .hero-content { max-width: 760px; }
}

/* 小型スマホ微調整 */
@media (max-width: 360px) {
  .hero-title { font-size: 24px; }
  .hero-badge-num { font-size: 38px; }
  .price-amount strong { font-size: 34px; }
}


/* ===== オフランプ（自分で探したい方へ） ===== */
.offramp { background: #fff7ef; }
.offramp-card {
  background: #fff;
  border: 1px solid #f0dcc4;
  border-radius: 16px;
  padding: 28px 24px;
}
.offramp-eyebrow { color: #e0762d; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.offramp-title { font-size: 22px; font-weight: 900; line-height: 1.55; margin-bottom: 14px; }
.offramp-card p { line-height: 1.9; margin-bottom: 12px; }
.offramp-note {
  font-size: 13.5px; color: #6b6259;
  background: #faf3ea; border-radius: 10px; padding: 14px 16px;
}
.btn-offramp {
  display: inline-block; margin: 8px 0 4px;
  background: #fff; color: #c85a1b;
  border: 2px solid #e0762d; border-radius: 999px;
  padding: 15px 26px; font-weight: 800; text-decoration: none;
}
.btn-offramp:hover { background: #e0762d; color: #fff; }
.offramp-micro { font-size: 12.5px; color: #8a8078; text-align: center; margin-bottom: 10px; }
.offramp-back { font-size: 13.5px; }
.center { text-align: center; }
/* ===== 戻る操作時の迷子猫掲示板案内 ===== */
.cblp01-exit-modal[hidden] {
  display: none;
}

.cblp01-exit-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cblp01-exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 25, 19, 0.68);
  backdrop-filter: blur(3px);
}

.cblp01-exit-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 38px 34px 30px;
  border-radius: 22px;
  background: #fffaf4;
  box-shadow: 0 24px 70px rgba(33, 25, 19, 0.28);
  color: #3f332b;
  text-align: center;
}

.cblp01-exit-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #77685e;
  font: 400 32px/1 sans-serif;
  cursor: pointer;
}

.cblp01-exit-modal__eyebrow {
  margin: 0 0 10px;
  color: #e66e27;
  font-size: 18px;
  font-weight: 900;
}

.cblp01-exit-modal__title {
  margin: 0;
  color: #3f332b;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: clamp(25px, 4.5vw, 34px);
  line-height: 1.45;
}

.cblp01-exit-modal__description {
  margin: 18px auto 24px;
  font-size: 16px;
  line-height: 1.8;
}

.cblp01-exit-modal__primary,
.cblp01-exit-modal__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.cblp01-exit-modal__primary {
  border: 2px solid #e66e27;
  background: #e66e27;
  color: #fff;
  box-shadow: 0 8px 22px rgba(230, 110, 39, 0.28);
}

.cblp01-exit-modal__secondary {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: #77685e;
  font-size: 14px;
}

.cblp01-exit-modal__close:focus-visible,
.cblp01-exit-modal__primary:focus-visible,
.cblp01-exit-modal__secondary:focus-visible {
  outline: 3px solid #1967d2;
  outline-offset: 3px;
}

body.cblp01-exit-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .cblp01-exit-modal {
    padding: 14px;
  }

  .cblp01-exit-modal__dialog {
    padding: 34px 22px 24px;
    border-radius: 18px;
  }

  .cblp01-exit-modal__description {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .cblp01-exit-modal:not([hidden]) .cblp01-exit-modal__backdrop {
    animation: cblp01-exit-fade-in 180ms ease-out;
  }

  .cblp01-exit-modal:not([hidden]) .cblp01-exit-modal__dialog {
    animation: cblp01-exit-pop-in 220ms ease-out;
  }

  @keyframes cblp01-exit-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes cblp01-exit-pop-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
}


/* =========================================================
   ▼▼▼ FV最適化ブロック（2026-08 追記） ▼▼▼
   ここから下だけを削除すれば、元の状態に戻ります。
   既存の記述は一切変更していません（後勝ちで上書き）。
   ========================================================= */

/* ---------------------------------------------------------
   1. FV全体の余白を圧縮
   → スマホ1画面目に「84%」まで確実に収める
   --------------------------------------------------------- */
@media (max-width: 767px) {
  .hero-content { padding-top: 22px; padding-bottom: 26px; }

  .hero-eyebrow {
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: .01em;
  }

  .hero-title {
    font-size: 29px;
    line-height: 1.34;
    letter-spacing: -.01em;
    margin-bottom: 12px;
  }

  /* サブコピー：赤は使わず、メインと同系のオレンジで統一 */
  .hero-sub,
  .hero-lead {
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 700;
    color: var(--orange-deep);
    margin-bottom: 16px;
  }
}

/* ---------------------------------------------------------
   2. 84%バッジ：数字を主役に、注記を脇役に
   --------------------------------------------------------- */
.hero-badge {
  padding: 16px 18px 14px;
  margin-bottom: 16px;
}

.hero-badge-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .95;
}

.hero-badge-num {
  font-size: 58px;
  letter-spacing: -.02em;
  margin: 2px 0 4px;
}
.hero-badge-num small { font-size: 22px; }

/* 注記は小さく・1〜2行に収める */
.hero-badge-note {
  font-size: 12px;
  line-height: 1.6;
  opacity: .9;
  max-width: 24em;
  margin: 0 auto;
}

/* 「最短1時間で駆けつけ」を区切り線付きで下段に配置
   → HTML側で <span class="hero-badge-speed">最短1時間で駆けつけ</span> と囲む */
.hero-badge-speed {
  display: block;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, .38);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
}
/* バッジ内のstrongが白抜きにならない場合の保険 */
.hero-badge strong { color: #fff; }

@media (min-width: 768px) {
  .hero-badge-num { font-size: 66px; }
  .hero-badge-speed { font-size: 19px; }
  .hero-badge-note { font-size: 13px; }
}

/* ---------------------------------------------------------
   3. 安心ポイント4つを「2列×2段」に
   → 縦スクロール量が約半分になり、CTAが早く見える
   --------------------------------------------------------- */
@media (max-width: 767px) {
  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .hero-points li {
    margin-bottom: 0;
    align-items: flex-start;
    gap: 7px;
    padding: 10px 11px;
    font-size: 11.5px;
    line-height: 1.5;
    border-radius: 11px;
  }
  .hp-icon {
    width: 24px; height: 24px;
    font-size: 10px;
    margin-top: 1px;
  }
}

/* 小型端末（iPhone SE等）は無理せず1列に戻す */
@media (max-width: 359px) {
  .hero-points { grid-template-columns: 1fr; }
  .hero-points li { font-size: 12.5px; }
  .hero-title { font-size: 25px; }
  .hero-badge-num { font-size: 50px; }
}

/* ---------------------------------------------------------
   4. 自責解除の一文（CTA直前に置く）
   → HTML側で <p class="hero-empathy">…</p> として追加
   --------------------------------------------------------- */
.hero-empathy {
  max-width: 34em;
  margin: 0 auto 16px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .72);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
  text-align: center;
  box-shadow: 0 2px 8px rgba(210, 120, 40, .06);
}
.hero-empathy strong {
  color: var(--orange-deep);
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-empathy { font-size: 14.5px; padding: 15px 20px; }
}

/* ---------------------------------------------------------
   5. CTAの主従を明確に（電話＝主／LINE＝従）
   --------------------------------------------------------- */
.hero-buttons .btn-tel,
.closing-buttons .btn-tel {
  font-size: 18px;
  font-weight: 800;
  padding: 17px 20px;
  letter-spacing: .01em;
}
.hero-buttons .btn-tel small,
.closing-buttons .btn-tel small {
  font-size: 13px;
  letter-spacing: .04em;
  opacity: 1;
}

.hero-buttons .btn-line,
.closing-buttons .btn-line {
  font-size: 14.5px;
  padding: 12px 20px;
}
.hero-buttons .btn-line small,
.closing-buttons .btn-line small { font-size: 11.5px; }

@media (min-width: 768px) {
  /* PCでは横並びのまま、電話側を少し広く */
  .hero-buttons .btn-tel { flex: 1.35; }
  .hero-buttons .btn-line { flex: 1; }
}

/* ---------------------------------------------------------
   6. 追従CTA：電話を主役に（従来は電話が80px固定で小さすぎた）
   --------------------------------------------------------- */
.sticky-cta {
  gap: 9px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(120, 90, 40, .10);
}
.sticky-cta .btn-tel {
  flex: 1.7;
  font-size: 15.5px;
  font-weight: 800;
  padding: 13px 10px;
}
.sticky-cta .btn-line {
  flex: 1;
  font-size: 13.5px;
  padding: 13px 10px;
}
/* 追従バーに隠れる分の余白を確保 */
@media (max-width: 767px) {
  body { padding-bottom: 68px; }
  .site-footer { padding-bottom: 36px; }
}

/* ---------------------------------------------------------
   7. 赤色の使用をページ全体で抑制
   → FV内で視線を奪う色は「84%のオレンジ」1点に集約
   --------------------------------------------------------- */
.hero-content [style*="color: red"],
.hero-content [style*="color:#f00"],
.hero-content [style*="color: #ff0000"],
.hero-content .txt-red,
.hero-content .red {
  color: var(--orange-deep) !important;
}

/* ---------------------------------------------------------
   8. 微調整：タップ領域と可読性
   --------------------------------------------------------- */
.btn { min-height: 52px; }
.header-cta { padding: 9px 17px; font-size: 13.5px; }

@media (max-width: 767px) {
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(255, 251, 245, .88) 0%,
      rgba(255, 250, 242, .78) 45%,
      rgba(255, 248, 238, .84) 100%);
  }
}

/* =========================================================
   ▲▲▲ FV最適化ブロック ここまで ▲▲▲
   ========================================================= */


/* =========================================================
   ▼▼▼ 構成変更ブロック（2026-08 追記その2） ▼▼▼
   index.html の並び替えに伴って追加した要素のスタイル。
   ここから下だけを削除すれば、この分は元に戻ります。
   ========================================================= */

/* ---------------------------------------------------------
   A. 途中CTA帯（緊急性の直後／飼い主様の声の直後）
   --------------------------------------------------------- */
.cta-band {
  background: var(--cream);
  padding: 34px 0 38px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band-lead {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 900;
  color: var(--orange-deep);
  line-height: 1.5;
  margin-bottom: 6px;
}
.cta-band-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 auto 18px;
  max-width: 34em;
}
.cta-band .closing-buttons {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .cta-band { padding: 46px 0 50px; }
  .cta-band-lead { font-size: 26px; }
  .cta-band-sub { font-size: 15px; margin-bottom: 22px; }
  .cta-band .closing-buttons { flex-direction: row; max-width: 560px; }
  .cta-band .closing-buttons .btn-tel { flex: 1.35; }
  .cta-band .closing-buttons .btn-line { flex: 1; }
}

/* ---------------------------------------------------------
   B. 飼い主様の声：残り6件の折りたたみ
   --------------------------------------------------------- */
.voice-more { margin-top: 18px; }

.voice-more > summary {
  cursor: pointer;
  list-style: none;
  display: block;
  text-align: center;
  padding: 15px 20px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 14.5px;
  transition: background .18s, color .18s;
}
.voice-more > summary::-webkit-details-marker { display: none; }
.voice-more > summary::after {
  content: " ＋";
  font-weight: 900;
}
.voice-more[open] > summary::after { content: " －"; }
.voice-more > summary:hover {
  background: var(--orange);
  color: #fff;
}
.voice-more[open] > summary { margin-bottom: 16px; }
.voice-more .voice-cards { margin-bottom: 0; }

/* ---------------------------------------------------------
   C. 料金：お支払い例（総額を先に見せる）
   --------------------------------------------------------- */
.price-example {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin: 18px 0 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-example-head {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: 10px !important;
  line-height: 1.6;
}
.price-example-calc {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 10px !important;
}
.price-example-calc strong {
  font-size: 24px;
  color: var(--orange-deep);
  font-weight: 900;
}
.price-example-calc span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.price-example-note {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 !important;
}

@media (min-width: 768px) {
  .price-example { padding: 26px 24px; }
  .price-example-head { font-size: 15.5px; }
  .price-example-calc { font-size: 17px; }
  .price-example-calc strong { font-size: 30px; }
}

/* ---------------------------------------------------------
   D. 追従CTA：2段組みで読みやすく
   --------------------------------------------------------- */
.sticky-cta .btn {
  flex-direction: column;
  line-height: 1.25;
  padding: 10px 8px;
}
.sticky-cta .btn small {
  font-size: 11px;
  margin-top: 1px;
}
.sticky-cta .btn-tel { font-size: 15px; }
.sticky-cta .btn-line { font-size: 13.5px; }

/* =========================================================
   ▲▲▲ 構成変更ブロック ここまで ▲▲▲
   ========================================================= */


/* =========================================================
   ▼▼▼ PC版FVレイアウト調整（2026-08 追記その3） ▼▼▼
   PC（1024px以上）だけ、FVの文字・バッジ・ボックス類を
   左半分に寄せて、右側の猫ちゃんの顔が見えるようにする。
   スマホ・タブレットには一切影響しません。
   ここから下だけを削除すれば、この分は元に戻ります。
   ========================================================= */

@media (min-width: 1024px) {

  /* --- 1. FV全体の枠は広く取る（画像を大きく見せるため） --- */
  .hero-content {
    max-width: 1200px;
    padding-top: 64px;
    padding-bottom: 74px;
  }

  /* --- 2. 中身だけを左カラム（560px）に固定 ---
     max-width と margin-left:0 で、すべての要素の左端が揃う。
     文字配列は崩れず、右側に画像スペースが生まれる。 */
  .hero-content > * {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
  }

  /* --- 3. 実績バッジ：左カラム内でセンター表示のまま --- */
  .hero-content .hero-badge {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
  }

  /* --- 4. 4つのボックス：2列を維持したまま左カラム内に --- */
  .hero-content .hero-points {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
    grid-template-columns: 1fr 1fr;
  }
  .hero-content .hero-points li {
    font-size: 13px;
    padding: 11px 13px;
  }

  /* --- 5. 自責解除の一文：左カラム内・センター寄せのまま --- */
  .hero-content .hero-empathy {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
    background: rgba(255, 255, 255, .90);
  }

  /* --- 6. CTAボタン：左カラム内で横並び --- */
  .hero-content .hero-buttons {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
  }

  /* --- 7. 注釈も左カラムに揃える --- */
  .hero-content .note-text {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
  }

  /* --- 8. オーバーレイを「左は濃く・右は薄く」の横方向グラデーションに ---
     左側は文字が読みやすく、右側は写真がはっきり見える状態にする */
  .hero-overlay {
    background: linear-gradient(100deg,
      rgba(255, 251, 245, .95) 0%,
      rgba(255, 251, 245, .93) 38%,
      rgba(255, 250, 242, .58) 55%,
      rgba(255, 249, 240, .18) 72%,
      rgba(255, 248, 238, .06) 100%);
  }

  /* --- 9. 写真の見せる位置：猫ちゃんの顔が右側に来るよう調整 ---
     見え方に応じて 62%〜78% の範囲で微調整してください */
  .hero-media img {
    object-position: 68% center;
  }
}

/* --- 10. 特に横長の大画面では、左カラムをもう少し内側へ --- */
@media (min-width: 1400px) {
  .hero-content { max-width: 1320px; }
  .hero-content > * { max-width: 580px; }
  .hero-content .hero-badge,
  .hero-content .hero-points,
  .hero-content .hero-empathy,
  .hero-content .hero-buttons,
  .hero-content .note-text { max-width: 580px; }
}

/* =========================================================
   ▲▲▲ PC版FVレイアウト調整 ここまで ▲▲▲
   ========================================================= */
