@charset "UTF-8";
/* ==========================================================
   おたすけライフ LP スタイルシート
   カラー: ベース#FFFFFF / メイン#8CC63F(黄緑) / アクセント#1E7FD8(青)
   スマホファースト設計
========================================================== */

:root {
  --color-base: #ffffff;
  --color-main: #8cc63f;
  --color-main-dark: #6fa82e;
  --color-main-light: #f2f9e8;
  --color-accent: #1e7fd8;
  --color-accent-dark: #1668b3;
  --color-alert: #e8593a;
  --color-text: #333333;
  --color-text-sub: #666666;
  --color-border: #e0e0e0;
  --color-tel: #1e7fd8;
  --color-line: #06c755;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --fixed-cta-height: 122px;
}

/* ---------- リセット・ベース ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-base);
  line-height: 1.7;
  font-size: 15px;
  padding-bottom: var(--fixed-cta-height);
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--color-accent); }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
.sp-only { display: inline; }
@media (min-width: 768px) {
  body { font-size: 16px; }
  .sp-only { display: none; }
}

/* ---------- 共通セクション ---------- */
.section { padding: 48px 16px; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-bg-green { background: var(--color-main-light); }
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 32px;
  position: relative;
}
.section-title-sub {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-main);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-main);
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-title-lead {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main-dark);
  margin-bottom: 4px;
}
/* 「初めての方へ」の見出しを大きく */
.firsttime .section-title { font-size: 30px; }
.firsttime .section-title-lead { font-size: 18px; margin-bottom: 6px; }
.section-note { font-size: 12px; color: var(--color-text-sub); margin-top: 16px; }
.accent-num { color: var(--color-alert); font-size: 1.3em; }
@media (min-width: 768px) {
  .section { padding: 72px 24px; }
  .section-title { font-size: 32px; }
}

/* ---------- ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  gap: 8px;
}
/* ヘッダー内キャンペーンボックス(参考サイト踏襲:白地×赤枠×赤文字) */
.header-campaign {
  flex-shrink: 0;
  border: 2px solid #e8593a;
  border-radius: 8px;
  background: #fff;
  padding: 2px 8px;
  text-align: center;
  line-height: 1.1;
}
.header-campaign-tag {
  display: block;
  font-size: 8.5px;
  font-weight: 900;
  color: #fff;
  background: #e8593a;
  border-radius: 3px;
  padding: 0 5px;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.header-campaign-main { display: block; font-size: 10.5px; font-weight: 900; color: #e8593a; }
.header-campaign-main strong { font-size: 1.45em; margin-right: 2px; }
@media (min-width: 768px) {
  .header-campaign { padding: 4px 20px; }
  .header-campaign-tag { font-size: 12px; }
  .header-campaign-main { font-size: 15px; }
}
.header-logo { display: flex; align-items: baseline; gap: 4px; min-width: 0; }
.logo-mark { color: var(--color-main); font-size: 20px; }
.logo-text { font-size: 17px; font-weight: 900; color: var(--color-main-dark); white-space: nowrap; }
.logo-sub { display: none; font-size: 10px; color: var(--color-text-sub); white-space: nowrap; }
.header-cta { display: flex; gap: 6px; flex-shrink: 0; }
.header-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  transition: opacity 0.2s;
}
.header-btn:hover { opacity: 0.85; }
.header-btn .icon { width: 18px; height: 18px; margin-bottom: 2px; }
.header-btn-tel { background: var(--color-tel); }
.header-btn-line { background: var(--color-line); }
@media (min-width: 768px) {
  .header-inner { padding: 10px 24px; }
  .logo-text { font-size: 22px; }
  .logo-sub { display: inline; font-size: 12px; }
  .header-btn { width: 90px; height: 48px; font-size: 12px; flex-direction: row; gap: 6px; }
  .header-btn .icon { margin-bottom: 0; }
}

/* ---------- ファーストビュー ---------- */
.fv {
  position: relative;
  background: linear-gradient(160deg, var(--color-main-light) 0%, #e2f2cc 55%, #d3ecb4 100%);
  padding: 0 0 32px;
  text-align: center;
  overflow: hidden;
}
/* SP: ヒーロー画像を背景化し、その上にコピー・メダルを重ねる(PC同様) */
.fv-bg-sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.fv-person-sp {
  position: absolute;
  top: 470px;                       /* 帯の下端に接地(fv-bg-spのheightと合わせる) */
  left: 62%;                        /* ← 左右位置はここで調整(50%=中央) */
  transform: translate(-50%, -100%);
  height: 250px;                    /* ← 人物のサイズはこの height で調整 */
  width: auto;
  max-width: none;                  /* 縦伸び防止(グローバルimgルールの打ち消し) */
  display: block;
  z-index: 1;
}
.fv-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.fv-text {
  position: relative;
  min-height: 470px;
  padding: 22px 16px 10px;
  box-sizing: border-box;
}
.fv-text::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.75) 20%,
    rgba(255, 255, 255, 0.3) 34%,
    rgba(255, 255, 255, 0) 48%);
}
.fv-area-badge {
  display: inline-block;
  background: var(--color-main-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.fv-copy { line-height: 1.35; margin-bottom: 12px; }
.fv-copy-small {
  display: block;
  font-size: clamp(16px, 4.8vw, 19px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.fv-copy-main {
  display: block;
  font-size: clamp(32px, 10vw, 38px);
  font-weight: 900;
  color: var(--color-main-dark);
  text-shadow: 0 1px 0 #fff;
}
.fv-medals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 140px;                /* ← SP: メダルを顔の下に配置(下げ幅) */
  margin-bottom: 28px;
}
.fv-medal-img {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
@media (min-width: 768px) {
  /* PC: ヒーロー画像を背景化し、左側にテキストを重ねる */
  .fv {
    position: relative;
    background: url("../images/hero.webp") right top / cover no-repeat;
    padding: 0;
    text-align: left;
  }
  .fv::before {
    content: "";
    position: absolute;
    inset: 0;
    /* テキスト列(中央1000px)の左側に合わせた白帯: ワイド画面でも左端は写真が見える */
    background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.15) 0,
      rgba(255, 255, 255, 0.7) calc(50% - 560px),
      rgba(255, 255, 255, 0.94) calc(50% - 460px),
      rgba(255, 255, 255, 0.86) calc(50% - 60px),
      rgba(255, 255, 255, 0.4) calc(50% + 140px),
      rgba(255, 255, 255, 0) calc(50% + 330px));
  }
  .fv-bg-sp, .fv-person-sp { display: none; }
  .fv-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 72px 24px 80px;
  }
  .fv-text { min-height: 0; padding: 0; }
  .fv-text::before { display: none; }
  .fv-copy { text-align: left; margin-bottom: 24px; }
  .fv-copy-small { font-size: 24px; }
  .fv-copy-main { font-size: 50px; }
  .fv-medals { justify-content: flex-start; margin-top: 0; }
  .fv-medal-img { width: 136px; }
  .fv-inner .fv-cta { margin: 0; padding: 0; }
}

/* ---------- CTAボタン共通 ---------- */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  padding: 14px 18px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.cta-btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18); opacity: 0.95; }
.cta-btn-icon { font-size: 22px; }
.cta-btn-body { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.cta-btn-label { font-size: 14px; }
.cta-btn-number { font-size: 24px; font-weight: 900; letter-spacing: 0.02em; }
.cta-btn-note { font-size: 11px; font-weight: 400; opacity: 0.9; }
.cta-btn-tel { background: var(--color-tel); }
.cta-btn-line { background: var(--color-line); }
.fv-cta { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto; padding: 20px 16px 0; }
.fv-cta-sub { display: flex; gap: 10px; }
.fv-cta-sub .cta-btn { flex: 1; font-size: 13px; padding: 12px 8px; }
@media (min-width: 768px) {
  .cta-btn-number { font-size: 30px; }
}

/* ---------- キャンペーンバナー ---------- */
.campaign {
  background: #fdeedd;
  text-align: center;
  padding: 20px 16px;
}
.campaign-inner { max-width: 1000px; margin: 0 auto; }
.campaign-inner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(232, 89, 58, 0.15);
}
.campaign-note { font-size: 11px; color: var(--color-text-sub); margin-top: 10px; line-height: 1.6; }
@media (min-width: 768px) {
  .campaign { padding: 32px 24px; }
}

/* ---------- 決済・安心訴求帯 ---------- */
.trust-bar { background: var(--color-main-light); padding: 18px 16px; }
.trust-inner { max-width: 1000px; margin: 0 auto; }
.trust-inner img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 2px 10px rgba(111, 168, 46, 0.2); }
@media (min-width: 768px) {
  .trust-bar { padding: 26px 24px; }
}

/* ---------- 共感セクション ---------- */
.worries-list {
  max-width: 800px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.worries-item {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.worries-item img { width: 100%; height: auto; display: block; }
.worries-text {
  font-size: 13px;
  line-height: 1.6;
  padding: 10px 12px 12px 32px;
  position: relative;
}
.worries-text::before {
  content: "✔";
  position: absolute;
  left: 11px;
  top: 10px;
  color: var(--color-main);
  font-size: 15px;
  font-weight: 900;
}
.worries-text strong { color: var(--color-alert); }
@media (min-width: 768px) {
  .worries-list { max-width: none; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .worries-text { font-size: 14px; }
}
.worries-answer {
  text-align: center;
  background: var(--color-main-light);
  border-radius: 12px;
  padding: 24px 16px;
  position: relative;
}
.worries-answer::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border: 14px solid transparent;
  border-bottom-color: var(--color-main-light);
  border-top: 0;
}
.worries-answer-text { font-size: 19px; font-weight: 700; line-height: 1.6; }
.worries-answer-text strong { color: var(--color-main-dark); font-size: 1.2em; }

/* ---------- 初めての方へ ---------- */
.firsttime {
  padding-bottom: 0;
  background: url("../images/hajimete_bg.webp") center / cover no-repeat;
}
.firsttime-lead {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}
.firsttime-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.firsttime-photo { width: 100%; margin: 0; }
.firsttime-photo img { width: 100%; height: auto; }
.firsttime-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.firsttime-chip {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.firsttime-chip strong { color: var(--color-alert); }
.firsttime-btn-wrap { text-align: center; margin-bottom: 40px; }
.firsttime-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 36px;
  box-shadow: 0 4px 0 var(--color-accent-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.firsttime-btn::after { content: " →"; }
.firsttime-btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--color-accent-dark); }
.firsttime-band {
  background: var(--color-main-dark);
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  padding: 18px 16px;
  line-height: 1.6;
}
.firsttime-band strong { color: #ffe95e; }
@media (min-width: 768px) {
  .firsttime .section-title { font-size: 42px; }
  .firsttime .section-title-lead { font-size: 26px; }
  .firsttime-lead { font-size: 15px; }
  /* PC: 写真を大きく背景として敷き、チップを左右にオーバーレイ */
  .firsttime-visual { display: block; max-width: 960px; margin: 0 auto 28px; }
  .firsttime-photo { width: 66%; margin: 0 auto; }
  .firsttime-chips { position: absolute; width: 290px; }
  .firsttime-chips-left { left: 0; top: 32%; align-items: flex-end; text-align: right; }
  .firsttime-chips-right { right: 0; top: 44%; }
  .firsttime-band { font-size: 22px; padding: 24px; }
}

/* ---------- 選ばれる6つの理由 ---------- */
.reasons-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.reason-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.reason-photo { position: relative; margin: 0; }
.reason-photo img { width: 100%; height: auto; display: block; }
.reason-num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-main);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.reason-body { padding: 16px 18px 20px; }
.reason-title { font-size: 17px; font-weight: 700; color: var(--color-main-dark); margin: 0 0 6px; }
.reason-text { font-size: 13px; color: var(--color-text-sub); }
@media (min-width: 768px) {
  .reasons-list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .reason-title { font-size: 18px; }
  .reason-text { font-size: 14px; }
}

/* ---------- 他社比較表 ---------- */
.compare-scroll { overflow-x: visible; }
.compare-table { width: 100%; table-layout: fixed; background: #fff; font-size: 11px; }
.compare-table th, .compare-table td {
  border: 1px solid var(--color-border);
  padding: 8px 3px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  word-break: break-word;
}
.compare-table thead th { background: #f5f5f5; font-size: 11px; }
.compare-table thead .compare-th-ours {
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.compare-table tbody th { background: #f5f5f5; font-weight: 700; }
.compare-td-ours { background: var(--color-main-light); font-weight: 700; }
.mark-good { display: block; color: var(--color-alert); font-size: 16px; font-weight: 900; }
.mark-soso { display: block; color: var(--color-text-sub); font-size: 15px; }
.mark-bad { display: block; color: #999; font-size: 15px; }
@media (min-width: 768px) {
  .compare-table { font-size: 14px; }
  .compare-table th, .compare-table td { padding: 12px 8px; }
  .compare-table thead th { font-size: 15px; }
  .compare-table thead .compare-th-ours { font-size: 16px; }
}

/* ---------- CTAブロック ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-dark) 100%);
  padding: 36px 16px;
  text-align: center;
}
.cta-block-inner { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.cta-block-copy { color: #fff; font-size: 20px; font-weight: 900; line-height: 1.5; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.cta-block-copy strong { color: #ffe95e; }
.cta-block-sub { display: flex; gap: 10px; }
.cta-block-sub .cta-btn { flex: 1; font-size: 13px; padding: 12px 8px; }
@media (min-width: 768px) {
  .cta-block { padding: 56px 24px; }
  .cta-block-copy { font-size: 26px; }
}

/* ---------- CTAバナー(リッチ版) ---------- */
.cta-banner {
  background: repeating-linear-gradient(-45deg, var(--color-main) 0 22px, var(--color-main-dark) 22px 44px);
  padding: 22px 16px;
}
.cta-card {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.cta-card-band {
  background: linear-gradient(135deg, #ec5a6e 0%, #e8593a 100%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  padding: 12px 16px;
  line-height: 1.4;
  position: relative;
}
.cta-card-band strong { color: #ffe95e; font-size: 1.35em; }
.cta-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 18px 26px;
}
.cta-card-photo { position: relative; width: 200px; flex-shrink: 0; }
.cta-card-photo img { width: 100%; height: auto; display: block; }
.cta-card-badge {
  position: absolute;
  top: -10px;
  left: -32px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--color-alert);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.cta-card-badge strong { color: #ffe95e; font-size: 1.4em; }
.cta-card-main { width: 100%; max-width: 480px; text-align: center; }
.cta-card-lead {
  font-size: 19px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cta-card-lead strong { color: var(--color-main-dark); }
/* フリーダイヤル */
.cta-freedial {
  display: block;
  border: 3px solid var(--color-tel);
  border-radius: 14px;
  padding: 12px 10px 10px;
  margin-bottom: 12px;
  background: #fff;
  transition: opacity 0.15s;
}
.cta-freedial:hover { opacity: 0.9; }
.cta-freedial-badge {
  display: inline-block;
  background: var(--color-alert);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 2px 16px;
  margin-bottom: 6px;
}
.cta-freedial-num {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--color-tel);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.cta-freedial-note {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-top: 4px;
}
.cta-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-line);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 0 #05a648;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-line-btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 #05a648; }
@media (min-width: 768px) {
  .cta-banner { padding: 40px 24px; }
  .cta-card-band { font-size: 22px; padding: 16px; }
  .cta-card-body { flex-direction: row; justify-content: center; align-items: center; gap: 28px; padding: 32px 40px 36px; }
  .cta-card-photo { width: 240px; }
  .cta-card-main { text-align: left; }
  .cta-card-lead { font-size: 22px; }
  .cta-freedial { text-align: center; }
  .cta-freedial-num { font-size: 44px; }
}

/* ---------- お客様の声 ---------- */
.voices-list { display: flex; flex-direction: column; gap: 20px; }
.voice-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.voice-photos { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.voice-photo { flex: 1; position: relative; min-width: 0; }
.voice-photo img { width: 100%; height: auto; border-radius: 8px; }
.voice-photo figcaption {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(51, 51, 51, 0.7);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 10px;
  border-radius: 4px;
}
.voice-photo-after figcaption { background: var(--color-main); }
.voice-arrow { font-size: 20px; font-weight: 900; color: var(--color-main); flex-shrink: 0; }
.voice-title { font-size: 15px; font-weight: 700; color: var(--color-main-dark); margin-bottom: 8px; }
.voice-text { font-size: 13px; color: var(--color-text-sub); }
@media (min-width: 768px) {
  .voices-list { flex-direction: row; }
  .voice-card { flex: 1; }
}

/* ---------- サービス紹介 ---------- */
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.service-icon { font-size: 30px; display: block; margin-bottom: 6px; }
.service-name { font-size: 15px; font-weight: 700; color: var(--color-main-dark); margin-bottom: 6px; }
.service-text { font-size: 12px; color: var(--color-text-sub); text-align: left; }
@media (min-width: 768px) {
  .services-list { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* ---------- 料金セクション ---------- */
.pricing-subtitle {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin: 36px 0 20px;
  color: var(--color-text);
}
.pricing-subtitle::before { content: "― "; color: var(--color-main); }
.pricing-subtitle::after { content: " ―"; color: var(--color-main); }
/* 品目別料金(カテゴリ→サブカテゴリ) */
.price-block {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.price-block-head {
  background: var(--color-main);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-block-icon { font-size: 20px; }
.price-row {
  padding: 12px 16px;
  border-bottom: 1px dashed var(--color-border);
}
.price-row:last-child { border-bottom: none; }
.price-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.price-row-name { font-size: 15px; font-weight: 700; color: var(--color-main-dark); }
.price-row-price { font-size: 18px; font-weight: 900; color: var(--color-accent); white-space: nowrap; }
.price-row-items { font-size: 13px; color: var(--color-text-sub); line-height: 1.7; }
/* 注記ボックス */
.price-caution {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fdeef1;
  border: 2px solid #f4c2cd;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 8px;
}
.price-caution-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eb9bab;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.price-caution-text { font-size: 13px; font-weight: 700; color: var(--color-text); line-height: 1.8; }
@media (min-width: 768px) {
  .price-row-name { font-size: 16px; }
  .price-row-price { font-size: 20px; }
  .price-row-items { font-size: 14px; }
  .price-caution-text { font-size: 14px; }
}

/* パック料金プラン */
.pack-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pack-card {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  position: relative;
}
.pack-card-featured { border-color: var(--color-alert); }
.pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-alert);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pack-name { font-size: 18px; font-weight: 900; color: var(--color-main-dark); line-height: 1.4; margin-bottom: 8px; }
.pack-target {
  display: inline-block;
  background: var(--color-main-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 14px;
  margin-bottom: 8px;
}
.pack-truck { font-size: 12px; color: var(--color-text-sub); margin-bottom: 8px; }
.pack-price { font-size: 16px; font-weight: 700; color: var(--color-accent); }
.pack-price-num { font-size: 34px; font-weight: 900; }
.pricing-note { font-size: 12px; color: var(--color-text-sub); margin-top: 20px; line-height: 1.8; }
@media (min-width: 768px) {
  .pack-list { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 不用品買取セクション ---------- */
.purchase-photo { max-width: 560px; margin: 0 auto 24px; }
.purchase-photo img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.purchase-points { display: grid; grid-template-columns: 1fr; gap: 14px; }
.purchase-point {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.purchase-icon-img { width: 120px; height: auto; display: block; margin: 0 auto 10px; }
.purchase-title { font-size: 17px; font-weight: 900; color: var(--color-main-dark); margin-bottom: 6px; }
.purchase-text { font-size: 13px; color: var(--color-text-sub); }
@media (min-width: 768px) {
  .purchase-points { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 施工事例 ---------- */
.seko-list { display: flex; flex-direction: column; gap: 20px; }
.seko-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.seko-photos { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.seko-photo { flex: 1; position: relative; min-width: 0; }
.seko-photo img { width: 100%; height: auto; border-radius: 8px; }
.seko-photo figcaption {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(51, 51, 51, 0.7);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 10px;
  border-radius: 4px;
}
.seko-photo-after figcaption { background: var(--color-main); }
.seko-arrow { font-size: 20px; font-weight: 900; color: var(--color-main); flex-shrink: 0; }
.seko-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.seko-tags li {
  background: var(--color-main-light);
  color: var(--color-main-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 999px;
}
.seko-title { font-size: 15px; font-weight: 700; color: var(--color-main-dark); margin-bottom: 12px; }
.seko-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.seko-table th, .seko-table td { border: 1px solid var(--color-border); padding: 8px 12px; }
.seko-table th { background: #f5f5f5; text-align: left; width: 32%; font-weight: 700; white-space: nowrap; }
.seko-price th { background: var(--color-main-light); }
.seko-price td { color: var(--color-accent); font-size: 16px; font-weight: 900; }
@media (min-width: 768px) {
  .seko-list { flex-direction: row; }
  .seko-card { flex: 1; }
  .seko-title { font-size: 16px; }
}
.seko-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: #fff;
  border: 2px solid var(--color-main);
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 16px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.seko-link::after { content: " →"; font-weight: 900; }
.seko-link:hover { background: var(--color-main); color: #fff; }

/* ---------- 施工事例:記事ページ・一覧ページ ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article-title-area { display: block; font-size: 0.6em; color: var(--color-text-sub); margin-top: 6px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 14px; }
.article-date { font-size: 12px; font-weight: 700; color: var(--color-text-sub); }
.article-cat {
  background: var(--color-main);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 999px;
}
.article-tag {
  background: var(--color-main-light);
  color: var(--color-main-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 999px;
}
.article-photos { margin-bottom: 8px; }
.article-h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-main-dark);
  border-left: 5px solid var(--color-main);
  padding-left: 12px;
  margin: 36px 0 14px;
}
.article-h2:first-child { margin-top: 0; }
.article-text { font-size: 14px; line-height: 2; color: var(--color-text); margin-bottom: 12px; }
.article-quote {
  background: var(--color-main-light);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}
.article-quote-cite { display: block; margin-top: 8px; font-size: 12px; font-style: normal; color: var(--color-text-sub); text-align: right; }
.article-staff {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
}
.article-staff-photo { width: 64px; height: 64px; object-fit: cover; object-position: top; border-radius: 50%; flex-shrink: 0; background: var(--color-main-light); }
.article-staff-text { font-size: 14px; line-height: 1.9; color: var(--color-text); }
.article-related-title { max-width: 760px; margin-left: auto; margin-right: auto; }
.article-back { margin-top: 32px; }
/* 一覧カード */
.works-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 760px; margin: 0 auto 8px; }
.works-card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.works-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); }
.works-card-photo { position: relative; margin: 0; }
.works-card-photo img { width: 100%; height: auto; display: block; }
.works-card-cat {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--color-main);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 999px;
}
.works-card-body { padding: 12px 16px 14px; }
.works-card-title { font-size: 14px; font-weight: 700; color: var(--color-main-dark); margin-bottom: 6px; line-height: 1.5; }
.works-card-meta { display: flex; align-items: baseline; justify-content: space-between; font-size: 12px; color: var(--color-text-sub); }
.works-card-price { color: var(--color-accent); font-size: 15px; font-weight: 900; }
@media (min-width: 768px) {
  .article-h2 { font-size: 20px; }
  .works-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .works-card-title { font-size: 15px; }
}

/* ---------- 作業事例 ---------- */
.cases-list { display: flex; flex-direction: column; gap: 24px; }
.case-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.case-photo { margin-bottom: 14px; }
.case-photo img { width: 100%; height: auto; border-radius: 8px; }
.case-title { font-size: 16px; font-weight: 700; color: var(--color-main-dark); margin-bottom: 12px; }
.case-calc { margin-bottom: 14px; font-size: 14px; }
.case-calc th, .case-calc td { border: 1px solid var(--color-border); padding: 8px 12px; }
.case-calc th { background: #f5f5f5; text-align: left; width: 45%; font-weight: 700; }
.case-calc td { text-align: right; font-weight: 700; }
.case-minus { color: var(--color-alert); }
.case-total th { background: var(--color-main-light); }
.case-total td { color: var(--color-accent); font-size: 18px; font-weight: 900; }
.case-voice, .case-staff { font-size: 13px; color: var(--color-text-sub); margin-top: 6px; }
.case-voice strong, .case-staff strong { color: var(--color-text); }
@media (min-width: 768px) {
  .cases-list { flex-direction: row; }
  .case-card { flex: 1; }
}

/* ---------- ご利用の流れ ---------- */
.flow-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; }
.flow-step {
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}
.flow-step + .flow-step { margin-top: 34px; }
.flow-step + .flow-step::before {
  content: "▼";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-main);
  font-size: 18px;
}
.flow-step-num {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.flow-step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.flow-step-text { font-size: 13px; color: var(--color-text-sub); }

/* ---------- よくあるご質問 ---------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px 16px 44px;
  position: relative;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-main);
  font-size: 18px;
  font-weight: 900;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-main);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 16px 16px 44px;
  font-size: 14px;
  color: var(--color-text-sub);
  position: relative;
}
.faq-a::before {
  content: "A";
  position: absolute;
  left: 14px;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 900;
}

/* ---------- 会社情報 ---------- */
.company-table { max-width: 720px; margin: 0 auto; background: #fff; font-size: 14px; }
.company-table th, .company-table td {
  border: 1px solid var(--color-border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.company-table th { background: var(--color-main-light); width: 32%; font-weight: 700; white-space: nowrap; }

/* ---------- 対応エリア ---------- */
.area-lead { text-align: center; font-size: 17px; margin-bottom: 20px; }
.area-lead strong { color: var(--color-main-dark); font-size: 1.15em; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}
.area-list li {
  background: var(--color-main-light);
  border: 1px solid var(--color-main);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
}

/* ---------- フッター ---------- */
.footer { background: #2b3a20; color: #fff; text-align: center; padding: 28px 16px; }
.footer-logo { font-size: 18px; font-weight: 900; color: var(--color-main); margin-bottom: 8px; }
.footer-info { font-size: 12px; opacity: 0.85; margin-bottom: 12px; }
.footer-copy { font-size: 11px; opacity: 0.6; }

/* ---------- SP下部固定CTAバー ---------- */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.fixed-cta-band {
  background: linear-gradient(135deg, #ec5a6e 0%, #e8593a 100%);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  padding: 5px 8px;
  line-height: 1.2;
}
.fixed-cta-band strong { color: #ffe95e; font-size: 1.25em; margin: 0 2px; }
.fixed-cta-row {
  display: flex;
  height: 86px;
  gap: 0;
  padding: 0;
  background: #fff;
  justify-content: flex-end;
  align-items: stretch;
}
.fixed-cta-pcrow { display: none; }
.fixed-cta-left {
  width: calc(100% - 205px); /* ボタン2つ分を除いた残り幅いっぱい */
  height: 86px;
  object-fit: cover;         /* 高さを常に満たす(右端の背景側から切れる) */
  object-position: left center;
  margin-right: auto;
  display: block;
}
.fixed-cta-imgbtn {
  flex: 0 0 auto; /* Safari対策: 画像の元サイズでボタンが広がるのを禁止 */
  transition: transform 0.12s;
}
.fixed-cta-imgbtn img {
  height: 86px;   /* %指定はSafariで崩れるためpx固定 */
  width: auto;
  display: block;
}
.fixed-cta-imgbtn:active { transform: translateY(2px); }
@media (min-width: 768px) {
  /* PCの固定帯: 画像を使わずCSSデザイン(バッジ+電話番号+LINEボタン) */
  .fixed-cta-band { font-size: 15px; }
  .fixed-cta-row { display: none; }
  .fixed-cta-pcrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    background: #fff;
    padding: 10px 20px;
  }
  .fixed-cta-pc-badge {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--color-alert);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
  }
  .fixed-cta-pc-badge strong { color: #ffe95e; font-size: 15px; }
  .fixed-cta-pc-tel { display: flex; flex-direction: column; align-items: center; line-height: 1.3; }
  .pc-tel-label { font-size: 13px; font-weight: 700; color: var(--color-text); }
  .pc-tel-number { font-size: 30px; font-weight: 900; color: var(--color-tel); letter-spacing: 0.02em; }
  .pc-tel-number::before { content: "📞 "; font-size: 22px; }
  .pc-tel-note { font-size: 11px; color: var(--color-text-sub); }
  .fixed-cta-pc-line {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-line);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    padding: 12px 26px;
    border-radius: 12px;
    box-shadow: 0 4px 0 #05a648;
    transition: transform 0.12s, box-shadow 0.12s;
  }
  .fixed-cta-pc-line:hover { transform: translateY(2px); box-shadow: 0 2px 0 #05a648; }
  .pc-line-icon-img { width: 38px; height: 38px; display: block; }
  .pc-line-body { display: flex; flex-direction: column; line-height: 1.3; }
  .pc-line-sub { font-size: 11px; font-weight: 700; opacity: 0.9; }
}

/* ---------- 品目一覧へのリンクボタン ---------- */
.items-link-wrap { text-align: center; margin-top: 28px; }
.items-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--color-main);
  color: var(--color-main-dark);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 32px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.items-link-btn:hover { background: var(--color-main); color: #fff; transform: translateY(-2px); }
.items-link-btn::after { content: "→"; font-weight: 900; }
@media (min-width: 768px) {
  .items-link-btn { font-size: 17px; padding: 16px 44px; }
}

/* ========================================================
   品目一覧ページ(items.html)
======================================================== */
.items-hero {
  background: linear-gradient(160deg, var(--color-main-light) 0%, #e2f2cc 100%);
  padding: 32px 16px 36px;
  text-align: center;
}
.items-hero-inner { max-width: 800px; margin: 0 auto; }
.items-breadcrumb { font-size: 12px; color: var(--color-text-sub); margin-bottom: 12px; }
.items-breadcrumb a { color: var(--color-main-dark); font-weight: 700; }
.items-hero-title { font-size: 26px; font-weight: 900; color: var(--color-text); margin-bottom: 10px; }
.items-hero-lead { font-size: 14px; line-height: 1.8; color: var(--color-text-sub); }
.item-cat { margin-bottom: 40px; }
.item-cat-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: var(--color-main);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.item-cat-icon { font-size: 24px; }
.item-cat-lead { font-size: 13px; color: var(--color-text-sub); line-height: 1.8; margin-bottom: 18px; }
.item-group { margin-bottom: 18px; }
.item-group-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main-dark);
  border-left: 4px solid var(--color-main);
  padding-left: 10px;
  margin-bottom: 10px;
}
.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.item-list li {
  background: var(--color-main-light);
  border: 1px solid #cfe6ac;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
}
.items-note { font-size: 12px; color: var(--color-text-sub); line-height: 1.8; margin-top: 24px; }
@media (min-width: 768px) {
  .items-hero { padding: 48px 24px 52px; }
  .items-hero-title { font-size: 36px; }
  .items-hero-lead { font-size: 16px; }
  .item-cat-title { font-size: 24px; }
  .item-cat-lead { font-size: 14px; }
  .item-list li { font-size: 14px; }
}

/* ========================================================
   スクロール追従ポップアップ(LINE誘導)
======================================================== */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.promo-modal.is-open { opacity: 1; visibility: visible; }
.promo-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s;
}
@media (min-width: 560px) {
  .promo-badge { font-size: 15px !important; }
  .promo-campaign-band { font-size: 22px !important; }
  .promo-off-label { width: 74px !important; height: 74px !important; font-size: 15px !important; }
  .promo-off-num { font-size: 68px !important; }
  .promo-off-num span { font-size: 36px !important; }
  .promo-limited { font-size: 16px !important; }
  .promo-btn-note { font-size: 16px !important; }
  .promo-line-btn { font-size: 23px !important; padding: 20px !important; }
}
.promo-modal.is-open .promo-box { transform: translateY(0) scale(1); }
.promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: var(--color-main);
  padding: 16px 12px 14px;
}
.promo-badge {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  position: relative;
  padding-left: 22px;
  display: flex;
  align-items: center;
}
.promo-badge::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: #ffe95e;
  font-size: 16px;
}
.promo-star { color: #ffe95e; }
.promo-campaign {
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 8px 16px 20px;
}
.promo-campaign-band {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 12px;
}
.promo-off { display: flex; align-items: center; justify-content: center; gap: 8px; }
.promo-off-label {
  background: #fff;
  color: var(--color-main-dark);
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  flex-shrink: 0;
}
.promo-off-num { font-size: 52px; font-weight: 900; color: #ffe95e; line-height: 1; }
.promo-off-num span { font-size: 28px; }
.promo-limited { font-size: 13px; font-weight: 700; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.4); padding-top: 10px; }
.promo-btn-wrap { background: #fff; padding: 18px 16px 20px; text-align: center; position: relative; }
.promo-btn-note {
  display: inline-block;
  background: #ffe95e;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 20px;
  margin-bottom: 10px;
  position: relative;
}
.promo-btn-note::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #ffe95e;
  border-bottom: 0;
}
.promo-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-line);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 0 #05a648;
  transition: transform 0.15s, box-shadow 0.15s;
}
.promo-line-btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 #05a648; }
.promo-line-btn::after { content: "＞"; font-weight: 900; }

/* ---------- LINE画像ボタン(立体) ---------- */
.line-img-btn {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 0 #05a648, 0 7px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.12s, box-shadow 0.12s;
}
.line-img-btn img { width: 100%; height: auto; display: block; }
.line-img-btn:active { transform: translateY(3px); box-shadow: 0 2px 0 #05a648, 0 3px 8px rgba(0, 0, 0, 0.2); }

/* ---------- サービスカード写真 ---------- */
.service-photo { margin: -18px -12px 12px; overflow: hidden; }
.service-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* ---------- 料金セクション内キャンペーンバナー ---------- */
.pricing-campaign { margin: 28px 0; }
.pricing-campaign img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 2px 10px rgba(232, 89, 58, 0.15); }
