/* ================================================
  CSS Variables & Reset
================================================ */
:root {
  --green:        #1a7c3e;
  --green-mid:    #2ea55a;
  --green-light:  #4db87a;
  --green-bg:     #f0f7f3;
  --green-pale:   #e8f4ed;
  --text:         #1a1a1a;
  --text-sub:     #666;
  --border:       #d5e8dc;
  --white:        #fff;
  --gray-bg:      #f5f5f3;
  --line-green:   #06c755;
  --radius:       8px;
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --max-w:        1200px;
  --header-h:     80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ================================================
  Utilities
================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
section { padding: 80px 0; }

.section-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green);
  margin: 14px auto 0;
  border-radius: 2px;
}
/* 仕切りバー不要なセクション */
.strong .section-title::after,
.price .section-title::after,
.reason .section-title::after,
.items .section-title::after,
.scene .section-title::after,
.option-service .section-title::after,
.area .section-title::after { display: none; }
.section-desc {
  text-align: center;
  color: var(--text-sub);
  margin-top: 16px;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn:hover { opacity: .85; transform: translateY(-2px); }
.btn--green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--outline-green { border-color: var(--green); color: var(--green); background: var(--white); }

/* ================================================
  Header — PC (1440px基準)
================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* 1440px内レイアウト：ロゴ + nav + tel + LINEボタン */
.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 80px;
  padding-right: 160px; /* LINEボタン幅分確保 */
}

/* ロゴ：左43px */
.site-header__logo {
  flex-shrink: 0;
  margin-left: 43px;
}
.site-header__logo img {
  width: 200px;
  height: 66px;
  object-fit: contain;
}

/* ナビ：電話番号側に寄せる */
.site-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 24px;
  padding: 12px 0;
}
.site-header__nav ul {
  display: flex;
  gap: 20px 28px; /* 縦20px 横28px */
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-header__nav a {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  text-align: right;
  transition: color .2s;
}
.site-header__nav a:hover { color: var(--green); opacity: 1; }

/* 電話番号：LINEボタンから左16px */
.site-header__tel {
  flex-shrink: 0;
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-header__tel a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__tel-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.site-header__tel-num {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
.site-header__tel-time {
  font-size: 11px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-top: 3px;
  white-space: nowrap;
}

/* LINEボタン：右端 160x80px */
.site-header__line-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 160px;
  min-height: 80px;
  background: linear-gradient(180deg, #1BC044 0%, #11782B 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  overflow: hidden;
  z-index: 10;
  padding: 8px 0;
}
/* アイコン＋無料バッジを横並び */
.site-header__line-top {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* LINEアイコン */
.site-header__line-icon {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}
/* 無料バッジ：アイコン右隣 */
.site-header__line-badge {
  width: 46px;
  height: 22px;
  background: #15632a;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 22px;
  display: block;
  flex-shrink: 0;
}
/* お見積り依頼テキスト */
.site-header__line-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.2;
  width: 100%;
}

/* ハンバーガー（PC非表示） */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.site-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.site-header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.site-header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SP Drawer */
.sp-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 99;
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.sp-nav.is-open { transform: translateX(0); }
.sp-nav ul { display: flex; flex-direction: column; margin-bottom: 28px; }
.sp-nav a {
  display: block;
  padding: 15px 12px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.sp-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0 4px;
}
/* CTAバーと同じボタンをSPナビ内で全幅表示 */
.sp-nav__cta-btn {
  flex: none !important;
  width: 100% !important;
  height: 72px !important;
  padding: 0 20px !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 12px !important;
  display: flex !important;
  flex-direction: row !important;
  border-radius: 8px !important;
}

/* ================================================
  MV — PC (1440px基準)
================================================ */
.mv { position: relative; overflow: hidden; padding: 0; }

/* 背景画像 */
.mv-bg { position: relative; line-height: 0; }
.mv-bg img {
  width: 100%;
  height: 702px; /* Figma実寸 */
  object-fit: cover;
  object-position: right center;
  display: block;
}
/* PC/SP 画像切り替え */
.mv-bg__sp { display: none !important; }
.mv-bg__pc { display: block !important; }

/* テキストオーバーレイ（PC）：Figma計測値 */
.mv-content {
  position: absolute;
  top: 111px;   /* Figma: y=191-80(header)=111px */
  left: 107px;  /* Figma: x=2121-2014=107px */
  max-width: 530px;
}
.mv-title {
  font-size: 40px; /* Figma: 40px */
  font-weight: 900;
  line-height: 1.45;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -.01em;
  font-family: "Noto Sans JP", sans-serif;
}
.mv-title-accent { color: #266c41; } /* Figma確認値 */

/* 見積もり無料テキスト：Figma 16px/700 */
.mv-sub {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
}

/* チェックリスト（PC）：Figma 16px/900 */
.mv-checks { display: flex; flex-direction: column; gap: 0; }
.mv-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 900;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 23px;
}
.mv-checks li::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 16px;
  background-color: #266c41; /* Figma確認値 */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 16'%3E%3Cpath d='M1 8l6 6L18 1' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 16'%3E%3Cpath d='M1 8l6 6L18 1' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
}

/* PC 3ボタン（MV下部）：Figma計測値 */
.mv-btns {
  position: absolute;
  bottom: 30px;  /* Figma: 702-572-100=30px */
  left: 123px;   /* Figma: 2137-2014=123px */
  right: 125px;  /* Figma: 1440-(2939-2014)-390=125px */
  display: flex;
  gap: 12px;     /* (1192-390*3)/2=11px ≈ 12px */
}
.mv-btn {
  flex: 1;
  height: 100px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  padding: 0 20px;
}
.mv-btn:hover { opacity: .9; transform: translateY(-2px); }

.mv-btn--tel  { background: linear-gradient(180deg, #2F9A4A 0%, #1C5C2C 100%); }
.mv-btn--line { background: linear-gradient(180deg, #1BC044 0%, #11782B 100%); }
.mv-btn--mail { background: linear-gradient(180deg, #15A7AD 0%, #0E7175 100%); }

.mv-btn img { display: block; flex-shrink: 0; }

/* 電話ボタン内テキスト：Figma 30px/900 + 12px/700 */
.mv-btn__num {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}
.mv-btn__note {
  font-size: 12px;
  font-weight: 700;
  opacity: .9;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 4px;
}
/* LINE・メールボタン内テキスト：Figma 16px/700 + 20px/700 */
.mv-btn__label {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  opacity: .95;
}
.mv-btn__main {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
}

/* SP用下部エリア（PC非表示） */
.mv-sp-bottom { display: none; }

/* MVボタン内テキストグループ */
.mv-btn__icon { flex-shrink: 0; display: block; }
.mv-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
}
.mv-btn__note { margin-top: 2px; }

/* ================================================
  3つの強み
================================================ */
.strong { background: #E5F3E8; }

/* 上部：3列グリーンボックス */
.strong-heads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.strong-head {
  background: var(--green);
  border-radius: 8px;
  padding: 28px 24px 22px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.strong-head__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 12px;
  font-family: "Noto Sans JP", sans-serif;
}
.strong-head__desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: .88;
  font-family: "Noto Sans JP", sans-serif;
}

/* 下部：2枚の大画像（フルワイド） */
.strong-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
}
.strong-photo {
  position: relative;
  overflow: hidden;
}
.strong-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* 料金カード（画像上オーバーレイ） */
.strong-price-card {
  position: absolute;
  right: 28px;
  bottom: 32px;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 24px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  min-width: 210px;
  text-align: center;
}
.strong-price-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.strong-price-plan {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
}
.strong-price-cap {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-sub);
}

/* 価格行：大きな数字（Impact）＋ 右に (税込)/円〜 を縦2行 */
.strong-price-num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}
.strong-price-big {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #000;
  letter-spacing: -.01em;
  line-height: 1;
}
.strong-price-suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
}
.strong-price-tax {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-sub);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
}
.strong-price-yen {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
}
.strong-price-inc {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  font-family: "Noto Sans JP", sans-serif;
}

/* ================================================
  料金
================================================ */
.price { background: var(--gray-bg); }
.price-tabs {
  display: flex;
  gap: 0;
  margin: 48px 0 0;
  border-bottom: 2px solid var(--border);
}
.price-tab {
  flex: 1;
  min-width: 0;
  max-width: 25%;
  padding: 14px 12px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  transition: color .2s, border-color .2s;
  font-family: inherit;
  white-space: normal;
}
.price-tab.active { color: var(--green); border-bottom-color: var(--green); }
.price-tab:hover { color: var(--green); }

.price-content { display: none; padding: 36px 0 0; }
.price-content.active { display: block; }

.price-table { border-radius: var(--radius); overflow: hidden; }
.price-table th {
  background: #e8e8e6;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #ccc;
}
.price-table td {
  padding: 8px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
/* 料金(税込)列：Impact 22px #266C41 */
.price-em {
  color: #266C41;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}
.price-note { font-size: 12px; color: var(--text-sub); margin-top: 14px; text-align: center; }
/* SP用タブヒントテキスト（PC非表示） */
.price-tab-hint { display: none; }

/* 追加料金・割引制度ボックス */
.price-info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.price-info-box {
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid #ccc;
  background: var(--white);
}
.price-info-box__title {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.price-info-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.price-info-list li {
  font-size: 13px;
  color: #000;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.price-info-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}
.price-info-list strong { font-weight: 900; }

/* ================================================
  選ばれる理由
================================================ */
.reason { background: #E5F3E8; }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.reason-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  text-align: center;
}
.reason-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }
.reason-card h3 { font-size: 15px; font-weight: 700; padding: 14px 8px 0; line-height: 1.6; }

/* ================================================
  CTA Bar — Figma準拠
  Bar: 1440×394px / Card: 1222×130px (center) / Buttons: 390×100px each
================================================ */
.cta-bar {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 394px;
}
/* 背景画像（緑オーバーレイは画像に含まれているため追加しない） */
.cta-bar-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 人物画像（白枠上端にぴったり合わせる） */
.cta-bar-person {
  position: absolute;
  bottom: 177px; /* 47px(padding-bottom) + 130px(card高さ: 15+100+15) = 白枠上端 */
  right: 124px;
  z-index: 3;
  pointer-events: none;
  width: 214px;
  height: 187px;
  aspect-ratio: 103 / 90;
}
/* コンテンツ全体 */
.cta-bar-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  height: 100%;
  padding: 52px 16px 47px;
  justify-content: space-between;
}
.cta-bar-title {
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: .02em;
}
.cta-bar-sub {
  color: rgba(255,255,255,.95);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 20px;
}
/* ボタンカード（白背景、幅1222/1440=84.9%で中央） */
.cta-bar-card {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  width: 84.9%;   /* 1222/1440 */
  max-width: 1222px;
  gap: 12px;
}
/* 各ボタン共通（Figma: 390×100px） */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  height: 100px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  transition: opacity .2s;
  border: none;
  flex: 1;
}
.cta-btn:hover { opacity: .85; }
.cta-btn img { flex-shrink: 0; }
.cta-btn__body { display: flex; flex-direction: column; gap: 3px; text-align: left; }
/* Figma: sub fs=16 fw=700 white / main fs=20 fw=700 white */
.cta-btn__main { font-size: 20px; font-weight: 700; line-height: 1.2; white-space: nowrap; }
.cta-btn__sub  { font-size: 16px; font-weight: 700; white-space: nowrap; }
/* Tel: #2f9a4a → #1c5c2c / Figma: tel num fs=30 fw=900, sub fs=12 fw=700 */
.cta-btn--tel { background: linear-gradient(180deg, #2f9a4a 0%, #1c5c2c 100%); }
.cta-btn--tel .cta-btn__main { font-size: 30px; font-weight: 900; }
.cta-btn--tel .cta-btn__sub  { font-size: 12px; font-weight: 700; }
/* LINE: #1bc044 → #11782b */
.cta-btn--line { background: linear-gradient(180deg, #1bc044 0%, #11782b 100%); }
/* Mail: #15a7ad → #0f7075 */
.cta-btn--mail { background: linear-gradient(180deg, #15a7ad 0%, #0f7075 100%); }

/* ================================================
  回収品目
================================================ */
.items { background: var(--white); }
.items-desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 40px;
}
.items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
.items-card {
  background: transparent;
  box-shadow: none;
}
.items-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.items-label {
  padding: 14px 4px 0;
  text-align: center;
  background: transparent;
}
.items-label__head {
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}
.items-label__list {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.7;
}
.items-note {
  font-size: 12px;
  color: var(--text-sub);
  text-align: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ================================================
  シーン
================================================ */
/* シーン — Figma bg: #e5f3e8 */
.scene { background: #e5f3e8; }
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.scene-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.scene-card img { width: 100%; height: 386px; object-fit: cover; display: block; }
/* scene-label は非表示（画像内にテキスト込み） */
.scene-label { display: none; }

/* ================================================
  オプションサービス
================================================ */
/* ================================================
  オプションサービス — Figma準拠
  画像(538×350) → 白カード(458×225)オーバーラップ → ベージュ背景(#e5e3db)
================================================ */
.option-service { background: var(--white); }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }

.option-card {
  border-radius: 12px;
  overflow: visible;  /* オーバーラップを許可 */
  box-shadow: none;
  border: none;
}
/* 画像エリア */
.option-card-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.option-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
/* ベージュ下地 + 白カードのラッパー */
.option-lower {
  background: #e5e3db;
  border-radius: 0 0 12px 12px;
  padding: 0 30px 24px;
  margin-top: -4px;
}
/* 白カード（画像に-60pxオーバーラップ） */
.option-card-body {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  margin-top: -60px;
  padding: 56px 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
/* 緑ピル（タイトルラベル） */
.option-card-name {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #2f9a4a;
  color: #fff;
  border-radius: 67px;
  width: 90%;
  text-align: center;
  padding: 9px 16px;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}
.option-what {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: center;
}
.option-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}
.option-price__num {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #266C41;
  line-height: 1;
}
.option-price__suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
}
.option-price__tax {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.3;
}
.option-price__yen {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
}
/* 効果エリア（ベージュ背景上） */
.option-effects-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 18px;
}
.option-effects-badge {
  background: #2f9a4a;
  color: #fff;
  border-radius: 10px;
  width: 133px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
.option-effects {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}
.option-effects li {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.option-effects li::before { content: '・'; position: absolute; left: 0; color: #000; }
.option-note { font-size: 11px; color: var(--text-sub); line-height: 1.6; margin-top: 8px; }
.option-note-global {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-sub);
  text-align: center;
  margin-top: 20px;
}

/* セット割バッジ */
.option-badge {
  margin: 48px auto 0;
  max-width: 538px;
  background: #e5e3db;
  border-radius: 12px;
  padding: 20px 59px;
}
.option-badge-inner {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.option-badge-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.option-badge-pill {
  display: inline-block;
  background: #2f9a4a;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 24px;
  text-align: center;
}
.option-badge-desc {
  font-size: 24px;
  font-weight: 900;
  color: #1a1a1a;
  padding-left: 4px;
}
.option-badge-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.option-badge-num {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #266c41;
  line-height: 1;
}
.option-badge-pct-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.option-badge-pct,
.option-badge-off {
  font-size: 20px;
  font-weight: 900;
  color: #1a1a1a;
}

/* ================================================
  対応エリア
================================================ */
.area { background: #cfe5d3; }
/* 地域特化3ボックス */
.area-badges {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 0;
}
.area-badge-item {
  flex: 1;
  background: #2f9a4a;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: 18px 10px;
  line-height: 1.4;
}
.area-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 32px;
}
.area-accordion-wrap { flex: 1; }

.area-accordion {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.area-item { border-bottom: 1px solid var(--border); }
.area-item:last-child { border-bottom: none; }

.area-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
}
.area-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.area-pref-name { flex: 1; font-weight: 600; }
.area-pref-name strong { font-weight: 900; }
.area-arrow {
  font-size: 12px;
  color: var(--green);
  transition: transform .3s;
}

.area-item-body {
  display: none;
  padding: 0 20px 20px 44px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2;
}
.area-item.is-open .area-item-body { display: block; }

.area-sub-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 4px;
}
.area-sub-title:first-child { margin-top: 0; }
.area-city-list {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2;
}

.area-note { font-size: 12px; color: var(--text-sub); padding-left: 4px; }

.area-map { flex-shrink: 0; width: 440px; }
.area-map img { width: 100%; border-radius: 12px; }

/* ================================================
  スタッフバナー
================================================ */
.staff-banner { line-height: 0; }
.staff-banner img { width: 100%; height: auto; display: block; }

/* ================================================
  お客様の声
================================================ */
.voice { background: #e6e3d6; }
.voice .section-title::after { display: none; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.voice-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 32px 28px;
}
.voice-stars { color: #f0a500; font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.voice-text { font-size: 16px; font-weight: 900; line-height: 1.75; margin-bottom: 20px; color: #000; }
.voice-author { font-size: 16px; font-weight: 900; color: #000; }

/* ================================================
  実績紹介（TOP）
================================================ */
.works-top { background: #e5f3e8; }
.works-top .section-title::after { display: none; }
/* Figmaスタイル：横並びカード2枚 */
.works-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 48px;
}
.works-case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.works-case-img {
  flex-shrink: 0;
  width: 180px;
}
.works-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.works-case-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.works-case-title {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  line-height: 1.4;
}
.works-case-detail {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  line-height: 1.75;
}
.works-case-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.works-case-num {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}
.works-case-suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
}
.works-case-tax {
  font-size: 13px;
  font-weight: 300;
  color: #555;
}
.works-case-yen {
  font-size: 20px;
  font-weight: 900;
  color: #000;
  line-height: 1.2;
}
.works-case-note {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: #000;
  margin-top: 24px;
}
.works-top-btn { text-align: center; margin-top: 32px; }
.btn-works-more {
  display: inline-block;
  background: linear-gradient(180deg, #1bc044 0%, #11782b 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 0 40px;
  height: 100px;
  line-height: 100px;
  border-radius: 10px;
  min-width: 390px;
  text-align: center;
  transition: opacity .2s;
}
.btn-works-more:hover { opacity: .8; }

/* 旧カードスタイル（実績アーカイブページ用） */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.work-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.work-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.work-card-body { padding: 18px 20px 20px; }
.work-cat {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.work-card-body h2,
.work-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-card-body time { font-size: 12px; color: var(--text-sub); }

/* ================================================
  FAQ
================================================ */
.faq { background: #f1f0ec; }
.faq .section-title::after { display: none; }
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid #cfcfcf; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  color: var(--green);
  font-size: 22px;
  font-weight: 400;
  transition: transform .3s;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 4px 22px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}
.faq-item.is-open .faq-a { display: block; }

/* ================================================
  会社概要
================================================ */
.company { padding: 0; }

/* 写真バナー */
.company-photo {
  position: relative;
  line-height: 0;
}
.company-photo img {
  width: 100%;
  height: 467px;
  object-fit: cover;
  display: block;
}
.company-photo-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

/* 会社情報（緑背景） */
.company-info-section {
  background: #57b26e;
  padding: 60px 0;
}
.company-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.company-table {
  flex: 1;
}
.company-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: 16px;
  font-weight: 900;
}
.company-row:last-child { border-bottom: none; }
.company-row dt {
  color: #3d8a55;
  white-space: nowrap;
  flex-shrink: 0;
  width: 100px;
}
.company-row dd { color: #fff; }
.company-row dd a { color: #fff; }
.company-map {
  flex-shrink: 0;
  width: 500px;
}
.company-map iframe { display: block; border-radius: 15px; }

/* 代表挨拶 */
.company-greeting {
  background: #7ac48a;
  padding: 60px 0;
}
.company-greeting-text {
  font-size: 20px;
  font-weight: 900;
  color: #417038;
  line-height: 1.85;
  max-width: 900px;
}
.company-greeting-name {
  font-size: 20px;
  font-weight: 900;
  color: #417038;
  margin-top: 32px;
  text-align: right;
  max-width: 900px;
}

/* ================================================
  Page MV（ページ共通MV）
================================================ */
.page-mv { position: relative; overflow: hidden; }
.page-mv img { width: 100%; height: 702px; object-fit: cover; display: block; }
.page-mv-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0 107px;
}
.page-mv-text h1 { font-size: 40px; font-weight: 900; color: #266c41; margin-bottom: 12px; }
.page-mv-text p { font-size: 16px; color: #000; line-height: 1.8; font-weight: 400; }

/* ================================================
  実績一覧ページ
================================================ */
.works-archive { padding: 80px 0; background: #e5f3e8; }
.pagination { text-align: center; margin-top: 60px; display: flex; gap: 4px; justify-content: center; align-items: center; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 14px;
  transition: background .2s, color .2s;
}
.pagination .current { background: var(--green); color: var(--white); border-color: var(--green); }
.pagination a:hover { background: var(--green-pale); border-color: var(--green); color: var(--green); opacity: 1; }

/* ================================================
  実績詳細
================================================ */
.work-single-inner { padding-top: 60px; padding-bottom: 80px; }
.work-single-body {
  max-width: 800px;
  margin: 0 auto;
}
.work-single-title { font-size: 24px; font-weight: 900; margin-bottom: 16px; line-height: 1.5; }
.work-single-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.work-single-meta time { font-size: 13px; color: var(--text-sub); }
.work-single-thumb { margin-bottom: 40px; border-radius: 10px; overflow: hidden; }
.work-single-thumb img { width: 100%; max-height: 520px; object-fit: cover; }
.work-single-content { font-size: 16px; line-height: 1.9; }
.work-single-content p { margin-bottom: 1.5em; }
.work-single-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* ================================================
  お問い合わせ
================================================ */
.contact-section { padding: 80px 0; background: #e5f3e8; }
.contact-inner { max-width: 840px; }
.contact-lead { text-align: center; margin-bottom: 40px; font-size: 15px; color: var(--text-sub); line-height: 1.8; }
/* ボタンエリアはcontainerフル幅で横並び（3×390px） */
.contact-btns-wrap {
  max-width: var(--max-w);
  margin: 0 auto 60px;
  padding: 0 40px;
}
.contact-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  flex-wrap: nowrap;
}
.contact-btns .cta-btn { flex: 0 0 390px; width: 390px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

/* フォーム行 */
.form-row { margin-bottom: 24px; }
.form-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  gap: 0;
  color: var(--text);
}

/* 必須/任意バッジ（Figma: 必須#266c41, 任意#68ad79） */
.form-req, .form-opt {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1.6;
}
.form-req { background: #266c41; color: #fff; }
.form-opt { background: #68ad79; color: #fff; }

/* テキスト入力 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.cf7-dummy input[type="text"],
.cf7-dummy input[type="email"],
.cf7-dummy input[type="tel"],
.cf7-dummy textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.cf7-dummy input:focus,
.cf7-dummy textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47,154,74,.12);
}
.wpcf7-form textarea, .cf7-dummy textarea { resize: vertical; min-height: 200px; }
.wpcf7-form p, .cf7-dummy .form-row { margin-bottom: 24px; }
.wpcf7-form label, .cf7-dummy .form-label {
  display: flex; align-items: center;
  font-weight: 700; font-size: 15px; margin-bottom: 10px;
}
.wpcf7-form abbr, .cf7-dummy abbr { display: none; }

/* お問い合わせ種別：3列グリッド */
.form-check-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
}
.form-check {
  display: flex; align-items: center; gap: 8px;
  font-weight: 400; font-size: 14px; cursor: pointer;
  background: #fff; border: 1px solid #d0d0d0;
  border-radius: 6px; padding: 10px 14px;
  transition: border-color .2s, background .2s;
}
.form-check:hover { border-color: #266c41; background: #f0f8f3; }
.form-check input[type="radio"] { accent-color: #266c41; width: 16px; height: 16px; flex-shrink: 0; }
/* CF7 ラジオ */
/* ラジオボタン直前の<br>を非表示 */
.wpcf7-radio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 16px; margin-top: 0; }
label + br { display: none; }
.wpcf7-radio .wpcf7-list-item {
  margin: 0;
  background: #fff; border: 1px solid #d0d0d0;
  border-radius: 6px; padding: 10px 14px;
}
.wpcf7-radio .wpcf7-list-item input { accent-color: #266c41; margin-right: 8px; }

/* プライバシー */
.contact-privacy { font-size: 12px; color: var(--text-sub); text-align: center; line-height: 1.9; margin: 28px 0; }
.contact-privacy a { color: var(--green); text-decoration: underline; }

/* 送信ボタン（Figma: 608×48px, gradient #5f7f68→#3e5a46） */
.form-submit-wrap { text-align: center; }
.btn-contact-submit,
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  display: inline-block;
  width: 608px;
  max-width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0;
  background: linear-gradient(180deg, #5f7f68 0%, #3e5a46 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s;
  font-family: inherit;
  letter-spacing: .04em;
  text-align: center;
}
.btn-contact-submit:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover { opacity: .85; }

/* 注記 */
.contact-note { font-size: 13px; color: var(--text-sub); text-align: center; margin-top: 20px; line-height: 1.8; }

/* ================================================
  プライバシーポリシー
================================================ */
.privacy-section { padding: 80px 0; background: #e5f3e8; }
.privacy-inner { max-width: 840px; }
.privacy-content h2,
.privacy-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 40px 0 12px;
  border-left: 4px solid var(--green);
  padding-left: 12px;
  color: var(--text);
}
.privacy-content h2:first-child,
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p { font-size: 14px; line-height: 1.9; color: var(--text-sub); margin-bottom: 1em; }
.privacy-eco-box {
  background: #2f9a4a;
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 48px;
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
}
.privacy-eco-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px !important;
}
.privacy-eco-box p { color: #fff; margin-bottom: 0; }
.privacy-eco-box a { color: #fff; text-decoration: underline; }

/* ================================================
  Footer
================================================ */
.site-footer { background: #e5f3e8; color: var(--text); padding: 60px 0 0; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 48px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.footer-logo img { margin-bottom: 16px; width: 160px; }
.footer-desc { font-size: 13px; color: var(--text); line-height: 1.85; }
.footer-nav { display: flex; gap: 32px; margin-left: auto; }
.footer-nav-col { display: flex; flex-direction: column; gap: 4px; }
.footer-nav-col a {
  font-size: 13px;
  color: #2f9a4a;
  font-weight: 700;
  padding: 4px 0;
  transition: opacity .2s;
}
.footer-nav-col a:hover { opacity: .7; }
.footer-bottom {
  background: #2f9a4a;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

/* SP固定フッター */
.sp-fixed-footer { display: none; }

/* ================================================
  Generic Page
================================================ */
.generic-page { padding: 80px 0; }
.page-content { font-size: 16px; line-height: 1.9; margin-top: 32px; }

/* ================================================
  Scrolled header shadow
================================================ */
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.12); }

/* ================================================
  Tablet (〜1100px)
================================================ */
@media (max-width: 1100px) {
  .header-nav a { font-size: 11.5px; padding: 5px 6px; }
  .strong-card-img { width: 340px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .area-inner { flex-direction: column; }
  .area-map { width: 100%; }
  .company-inner { flex-direction: column; }
  .company-photo img { height: 300px; }
  .works-case-grid { grid-template-columns: 1fr; }
  .works-case-card {
    flex-direction: column;
  }
  .works-case-img {
    width: 100%;
    height: 220px;
  }
  .works-case-img img {
    height: 220px;
  }
  .works-case-body {
    padding: 20px 16px;
  }
  .works-case-num { font-size: 40px; }
  .voice-grid { grid-template-columns: 1fr; }
  .btn-works-more { min-width: auto; width: 100%; font-size: 16px; height: 70px; line-height: 70px; }
  .company-greeting-text { font-size: 16px; }
  .company-greeting-name { font-size: 16px; text-align: left; }
}

/* ================================================
  SP (〜767px) — 375px基準
================================================ */
@media (max-width: 767px) {
  :root { --header-h: 35px; }
  .container { padding: 0 18px; }
  section { padding: 56px 0; }

  /* -----------------------------------------------
     Header SP：375x35px、ロゴ中央
  ----------------------------------------------- */
  .site-header__inner {
    height: 35px;
    padding-right: 0;
    justify-content: center;
    padding-left: 0;
  }
  .site-header__logo {
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__logo img { width: 100px; height: auto; }
  .site-header__nav { display: none; }
  .site-header__tel { display: none; }
  .site-header__line-btn { display: none; }
  .site-header__hamburger {
    display: flex;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .sp-nav { display: block; }

  /* -----------------------------------------------
     MV SP：375px基準
     SP専用画像にテキスト・チェックリスト領域を含むため
     画像に重ねるオーバーレイ方式
  ----------------------------------------------- */
  .mv {
    position: relative;
    overflow: hidden;
    display: block;
  }

  /* 画像：SP専用画像をフル幅・自然な高さで表示 */
  .mv-bg {
    position: static;
    order: unset;
  }
  .mv-bg img {
    height: auto !important;
  }
  .mv-bg__sp {
    display: block !important;
    width: 100%;
    object-fit: cover;
  }
  .mv-bg__pc { display: none !important; }

  /* SP：キャッチコピーを画像上部に重ねる */
  .mv-content {
    display: block;
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    padding: 0 20px;
    max-width: 100%;
    transform: none;
  }
  .mv-title {
    font-size: 22px;
    line-height: 1.45;
    margin-bottom: 6px;
    color: #000;
  }
  .mv-title-accent {
    font-size: 22px;
  }
  .mv-sub {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 0;
    color: #000;
  }
  .mv-checks { display: none; }

  /* PC3ボタン非表示 */
  .mv-btns { display: none; }

  /* チェックリスト：画像下部に重ねる */
  .mv-sp-bottom {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 20px 20px;
  }

  /* SPチェックリスト：1列、行間を詰める */
  .mv-sp-checks {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mv-sp-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 900;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
  }
  .mv-sp-checks li::before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 16px;
    flex-shrink: 0;
    background-color: #266c41;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 16'%3E%3Cpath d='M1 8l6 6L18 1' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 16'%3E%3Cpath d='M1 8l6 6L18 1' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  }

  /* SP固定フッターバー */
  .sp-fixed-tel__body { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  .sp-fixed-tel__label { font-size: 10px; font-weight: 700; line-height: 1.2; opacity: .9; }
  .sp-fixed-tel__num { font-size: 16px; font-weight: 900; line-height: 1.2; }

  .mv-sp-btn__text {
    font-size: 14px;
    font-weight: 700;
    line-height: 25.9px;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    text-align: center;
  }

  /* 3つの強み SP */
  .strong-heads { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
  .strong-head { padding: 18px 16px; text-align: left; }
  .strong-head__title { font-size: 18px; }
  .strong-photos { grid-template-columns: 1fr; }
  .strong-photo img { height: 280px; }
  .strong-price-card { right: 10px; bottom: 10px; min-width: 150px; padding: 12px 16px; }
  .strong-price-big { font-size: 40px; }
  .strong-price-plan { font-size: 14px; }

  /* 追加料金・割引SP */
  .price-info-boxes { grid-template-columns: 1fr; gap: 12px; }

  /* Price tabs */
  .price-tab-hint { display: block; font-size: 13px; font-weight: 700; color: var(--text-sub); text-align: center; margin-top: 20px; margin-bottom: 0; }
  .price-tabs { flex-direction: row; flex-wrap: wrap; border-bottom: none; gap: 6px; margin-top: 12px; }
  .price-tab {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 3px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 0;
    padding: 10px 8px;
    font-size: 12px;
  }
  .price-tab.active { background: var(--green); color: var(--white); border-color: var(--green); border-bottom-color: var(--green); }
  .price-table { font-size: 12px; }
  .price-table th { padding: 10px 8px; }
  .price-table td { padding: 6px 8px; }

  /* Reason, Items, Scene, Option, Voice, Works */
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .items-grid { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: 1fr; }
  .scene-card img { height: auto; aspect-ratio: 580 / 386; object-fit: cover; }
  .option-badge { padding: 12px 16px; max-width: 100%; }
  .option-badge-inner { padding: 12px 16px; }
  .option-badge-pill { font-size: 16px; padding: 2px 12px; }
  .option-badge-desc { font-size: 16px; }
  .option-badge-num { font-size: 50px; }
  .option-badge-pct, .option-badge-off { font-size: 14px; }
  .option-effects-badge { width: 80px; height: 80px; font-size: 18px; }
  .option-effects li { font-size: 14px; }
  .option-card-name { font-size: 18px; }
  .option-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }

  /* CTA bar */
  /* CTA bar SP */
  .cta-bar { height: auto; min-height: 394px; }
  .cta-bar-person { display: none; }
  .cta-bar-inner { padding: 32px 16px 16px; justify-content: flex-start; gap: 12px; }
  .cta-bar-title { font-size: 20px; margin-bottom: 8px; }
  .cta-bar-sub { font-size: 12px; margin-bottom: 16px; line-height: 1.6; }
  /* SP CTAカード：縦並び */
  .cta-bar-card { flex-direction: column; width: 90%; max-width: 90%; margin: 0 auto; padding: 15px; gap: 12px; }
  .cta-btn { flex: none; width: 100%; }
  /* option SP */
  .option-lower { padding: 0 16px 20px; }
  .option-card-body { margin-top: -48px; padding: 50px 18px 16px; }
  .option-effects-row { gap: 12px; }
  .option-effects-badge { width: 60px; min-height: 60px; font-size: 13px; }

  /* Area */
  .area-map { width: 100%; }
  .area-inner { gap: 24px; }
  .area-accordion-wrap { width: 100%; }
  .area-badges { flex-wrap: wrap; }
  .area-badge-item { font-size: 15px; padding: 12px 8px; }

  /* Page MV */
  .page-mv img { height: auto; min-height: 260px; object-fit: cover; }
  .page-mv-text { padding: 0 20px; }
  .page-mv-text h1 { font-size: 28px; }
  .page-mv-text p { font-size: 13px; }

  /* Contact */
  .contact-btns-wrap { padding: 0 16px; }
  .contact-btns { flex-direction: column; align-items: stretch; flex-wrap: wrap; }
  .contact-btns .cta-btn { flex: none; width: 100%; }
  .contact-form-wrap { padding: 24px 18px; }
  .form-check-group { grid-template-columns: 1fr 1fr; }
  .wpcf7-radio { grid-template-columns: 1fr 1fr; }
  .btn-contact-submit, .wpcf7-form input[type="submit"], .wpcf7-submit { width: 100%; }
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form textarea,
  .cf7-dummy input[type="text"],
  .cf7-dummy input[type="email"],
  .cf7-dummy input[type="tel"],
  .cf7-dummy textarea { font-size: 16px; }
  .page-mv-text { padding: 0 20px; }
  .page-mv-text h1 { font-size: 28px; }
  .page-mv-text p { font-size: 13px; }

  /* Company */
  .company-row { font-size: 13px; gap: 12px; }
  .company-row dt { width: 80px; }
  .company-map { width: 100%; }

  /* Footer SP */
  .footer-inner { flex-direction: column; gap: 20px; padding: 32px 20px 80px; align-items: center; text-align: center; }
  .footer-left { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { display: block; text-align: center; }
  .footer-desc { text-align: center; }
  .footer-nav { display: none; } /* SP時ナビ非表示 */
  .footer-bottom { font-size: 12px; }

  /* Work single */
  .work-single-thumb img { max-height: 260px; }
  .work-single-nav { flex-direction: column; }

  /* SP固定フッター */
  .sp-fixed-footer {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    height: 64px;
    box-shadow: 0 -2px 10px rgba(0,0,0,.15);
  }
  .sp-fixed-tel, .sp-fixed-line {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
  }
  .sp-fixed-tel { background: linear-gradient(180deg, #2F9A4A 0%, #1C5C2C 100%); }
  .sp-fixed-line { background: linear-gradient(180deg, #1BC044 0%, #11782B 100%); }
  body { padding-bottom: 64px; }
}

/* ================================================
  reCAPTCHA バッジ非表示
  ※ reCAPTCHA設定完了後も非表示にする場合は
     フォーム付近にテキスト表記が必要です（Googleポリシー）
================================================ */
.grecaptcha-badge { visibility: hidden !important; }
