/* =========================================================
   のはら自動車 LP ― スタイルシート
   構成:
   1. 変数・リセット
   2. 共通パーツ（コンテナ / 見出し / ボタン / タグ / ハイライト）
   3. ヘッダー
   4. ヒーロー
   5. お知らせバー
   6. メッセージセクション
   7. 4ステップ
   8. 対応エリア
   9. 選ばれる理由
   10. 買取事例
   11. お客様の声
   12. コラム
   13. Instagram風セクション
   14. お問い合わせCTA
   15. フッター / TOPへ戻る
   16. レスポンシブ（900px以下）
   ========================================================= */

/* ---------- 1. 変数・リセット ---------- */
:root {
  --color-green: #94B721;
  --color-green-dark: #82a11c;
  --color-green-darker: #6f8a18;
  --color-rose: #EB7885;
  --color-rose-dark: #e4636f;
  --color-yellow: #FCDC4A;
  --color-line: #06C755;

  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F8F4;
  --color-text: #222222;
  --color-text-body: #333333;
  --color-text-sub: #555555;
  --color-text-faint: #999999;
  --color-border: #eceee6;

  --max-width: 1280px;
  --content-width: 1180px;
  --narrow-width: 1120px;

  --radius-lg: 16px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-header: 0 2px 10px rgba(17, 17, 17, .07);
  --shadow-card: 0 4px 16px rgba(17, 17, 17, .05);
  --shadow-card-sm: 0 2px 10px rgba(17, 17, 17, .04);
  --shadow-float: 0 4px 14px rgba(17, 17, 17, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Sans', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
h1, h2, h3, p, dl, dd { margin: 0; }
a { color: var(--color-green-darker); text-decoration: none; }
a:hover { color: var(--color-green); }
button { font-family: inherit; }

/* ---------- 2. 共通パーツ ---------- */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: clamp(56px, 8vw, 96px) 16px;
}
.section--alt { background: var(--color-bg-alt); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.grid-2--narrow { max-width: var(--narrow-width); }
.grid-2--reverse > *:first-child { order: 2; }
.grid-2--reverse > *:last-child { order: 1; }
@media (max-width: 700px) {
  .grid-2--reverse > *:first-child,
  .grid-2--reverse > *:last-child { order: initial; }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--color-green);
}
.eyebrow i {
  width: 36px;
  height: 1px;
  background: var(--color-green);
  display: inline-block;
  font-style: normal;
}
.eyebrow--center { justify-content: center; }

.section-title {
  margin: 0 0 20px;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1.55;
}
.section-title--sm { font-size: clamp(23px, 3.2vw, 32px); margin-bottom: 16px; }
.section-title--center { text-align: center; margin-bottom: 0; }
.section-title__big-num {
  color: var(--color-green);
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1;
  vertical-align: -6px;
  padding: 0 4px;
  font-weight: 700;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.section-head--center { flex-direction: column; align-items: center; text-align: center; margin-bottom: 44px; }

.lead {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 2;
  color: var(--color-text-body);
}
.lead--narrow { max-width: 620px; font-size: 15px; line-height: 1.9; color: var(--color-text-sub); margin-bottom: 0; }
.body-text {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-sub);
}

.text-highlight {
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
}
.text-highlight--underline { border-bottom: 1px solid #f0cf3c; }

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--color-green); color: #fff; }
.btn--primary:hover { background: var(--color-green-dark); color: #fff; }
.btn--outline {
  border: 1.5px solid var(--color-green);
  color: var(--color-green-darker);
  background: transparent;
  padding: 12px 22px;
  font-size: 14px;
}
.btn--outline:hover { background: var(--color-green); color: #fff; }
.btn--cta {
  background: var(--color-rose);
  color: #fff;
  padding: 11px 16px;
  font-size: 13px;
}
.btn--cta:hover { background: var(--color-rose-dark); color: #fff; }
.btn__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: 0 0 auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 10px;
}
/* 塗りつぶしタグ（買取事例カードの車種リボンなど） */
.tag--rose { background: var(--color-rose); color: #fff; }
.tag--green { background: var(--color-green); color: #fff; }
.tag--yellow { background: var(--color-yellow); color: #333; }

/* アウトラインの丸ピル（お知らせ・コラムのカテゴリー表示） */
.tag--rose-chip { color: var(--color-rose); border: 1px solid #f6cdd2; }

/* 枠なしの太字ラベル（Step 0X / Point 0X） */
.tag--rose-outline { color: var(--color-rose); font-size: 12px; font-weight: 700; letter-spacing: .08em; border: none; padding: 0; }

.chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-green-darker);
  background: var(--color-bg-alt);
  border: 1px solid #e5e8dc;
  border-radius: 999px;
  padding: 7px 14px;
}

.circle-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.photo {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  object-fit: cover;
}

/* ---------- 3. ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  box-shadow: var(--shadow-header);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.logo__main { display: flex; align-items: center; gap: 7px; }
.logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.logo__text { display: block; line-height: 1.2; }
.logo__name { display: block; font-size: 15px; font-weight: 700; color: var(--color-text); }
.logo__en { display: block; font-size: 9px; letter-spacing: .08em; color: var(--color-text-faint); }
.logo__sub {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 10px;
  border-left: 1px solid var(--color-border);
}
.logo__badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--color-rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.logo__sub-text { font-size: 11px; font-weight: 600; color: var(--color-text-sub); line-height: 1.3; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-green);
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: auto;
}
.header-phone { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.header-phone__badge {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px 3px 3px 0;
}
.header-phone__number {
  font-size: 23px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: .01em;
  line-height: 1;
}
.header-phone__number:hover { color: var(--color-green); }
.header-phone__note { font-size: 10px; color: var(--color-text-faint); }

.header-line {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-line);
}
.header-line:hover { color: var(--color-line); opacity: .8; }
.header-line__icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--color-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

/* ---------- 4. ヒーロー ---------- */
.hero { position: relative; }

.hero__stage {
  position: relative;
  height: min(74vh, 620px);
  min-height: 380px;
  background: #eef0e8;
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(17, 17, 17, .28), rgba(17, 17, 17, 0) 55%);
}

.hero__copy {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 38px;
  padding: 0 clamp(16px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.hero__line {
  background: var(--color-green);
  color: #fff;
  font-size: clamp(20px, 3.2vw, 38px);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
  line-height: 1.3;
}
.hero__mark {
  background: linear-gradient(transparent 58%, var(--color-yellow) 58%);
  border-bottom: 2px dotted var(--color-yellow);
  padding: 0 2px;
  color: #fff;
}

.hero__dots {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 4vw, 40px);
  bottom: 20px;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero__dot.is-active { background: #fff; }

/* ---------- 5. お知らせバー ---------- */
.news-bar-wrap {
  max-width: 1080px;
  margin: -34px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.news-bar {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(17, 17, 17, .08);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.news-bar__label { display: flex; flex-direction: column; line-height: 1.15; flex: 0 0 auto; }
.news-bar__label-en { font-size: 17px; font-weight: 700; color: var(--color-green); letter-spacing: .06em; }
.news-bar__label-jp { font-size: 11px; color: var(--color-text-faint); }
.news-bar__body { flex: 1 1 260px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.news-bar__date { font-size: 13px; color: #777; }
.news-bar__title { font-size: 15px; font-weight: 600; color: var(--color-text); }
.news-bar__more {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green-darker);
}

/* ---------- 6. メッセージセクション ---------- */
.message-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.photo--tall { height: 240px; }
.photo--mid { height: 200px; margin-top: 40px; }
.photo--short { height: 150px; }

/* ---------- 7. 4ステップ ---------- */
.flow-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.flow-lead {
  background: var(--color-green);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}
.flow-lead__label { font-size: 12px; font-weight: 600; letter-spacing: .18em; opacity: .9; }
.flow-lead__eyebrow { display:flex; align-items:center; gap:12px; }
.flow-lead__eyebrow::after { content:''; width:36px; height:1px; background:currentColor; opacity:.65; }
.flow-lead__title { font-size: 28px; line-height:1.35; margin:10px 0 4px; color:inherit; font-weight:700; }
.flow-lead__desktop-meta { display:block; }
.flow-lead__number { font-size: clamp(56px, 7vw, 84px); font-weight: 700; line-height: 1; margin: 6px 0 2px; display: block; }
.flow-lead__caption { font-size: 20px; font-weight: 700; margin-bottom: 14px; display: block; }
.flow-lead p { font-size: 14px; line-height: 1.9; opacity: .95; }

.flow-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-step::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 11px solid #e3e6d9;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.flow-step__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.flow-step__photo { width: 64px; height: 48px; border-radius: 8px; object-fit: cover; }
.flow-step h3 { font-size: 18px; font-weight: 700; line-height: 1.5; }
.flow-step p { font-size: 14px; line-height: 1.95; color: var(--color-text-sub); }

/* ---------- 8. 対応エリア ---------- */
.area-illustration {
  border-radius: 18px;
  width: 100%;
  min-height: 320px;
  object-fit: contain;
  background: #fff;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.area-col__title {
  border-left: 4px solid var(--color-green);
  padding-left: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.area-col__title--green { border-color: var(--color-green); }
.area-col__title--rose { border-color: var(--color-rose); }
.area-col__title--yellow { border-color: var(--color-yellow); }
.area-col__title--sm { font-size: 13px; border-width: 3px; padding-left: 8px; margin-bottom: 8px; }
.area-col__items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  color: var(--color-text-sub);
}
.area-col__items--sm { gap: 6px; font-size: 12px; color: #777; }

/* ---------- 9. 選ばれる理由 ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.reason-card {
  background: #fff;
  border-radius: var(--radius-md);
  border-left: 6px solid var(--color-green);
  box-shadow: var(--shadow-card);
  padding: 26px 24px;
}
.reason-card__point {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-rose);
  border-bottom: 2px solid #f7d3d7;
  padding-bottom: 4px;
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.reason-card h3 { font-size: 19px; font-weight: 700; line-height: 1.6; margin-bottom: 16px; }
.reason-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-green);
  margin-bottom: 16px;
}
.reason-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}
.reason-card p { font-size: 14px; line-height: 1.95; color: var(--color-text-sub); }

/* ---------- 10. 買取事例 ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.case-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.case-card__photo-wrap { position: relative; height: 140px; overflow: hidden; }
.case-card__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.case-card__tag {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0 6px 6px 0;
}
.case-card__body { padding: 16px; }
.case-card__meta {
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--color-text-faint);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.case-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  font-size: 12px;
  color: var(--color-text-sub);
}
.case-card__specs dt { color: var(--color-text-faint); }

/* ---------- 11. お客様の声 ---------- */
.voice-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.voice-photos img { height: 110px; border-radius: 10px; object-fit: cover; }

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 6px;
}
.voice-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-card-sm);
}
.voice-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.voice-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 auto;
}
.voice-card__who { line-height: 1.35; display: flex; flex-direction: column; }
.voice-card__who strong { font-size: 14px; font-weight: 600; }
.voice-card__who small { font-size: 11px; color: var(--color-text-faint); }
.voice-card__stars { color: var(--color-yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.voice-card p { font-size: 14px; line-height: 1.95; color: #444; }

/* ---------- 12. コラム ---------- */
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 26px;
}
.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.column-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.column-card img { width: 100%; height: 150px; object-fit: cover; }
.column-card__noimage {
  height: 150px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #b5b8ab;
}
.column-card__body { padding: 18px; }
.column-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--color-text-faint);
}
.column-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-text);
}
.column-card a { font-size: 13px; font-weight: 600; color: var(--color-text); }

/* ---------- 13. Instagram風セクション ---------- */
.insta-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.insta-head__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.insta-head__name { font-size: 15px; font-weight: 700; }
.insta-head__bio { font-size: 13px; color: var(--color-text-sub); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.insta-item { position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; }
.insta-item__caption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: 11px;
  color: #555;
  background: rgba(255, 255, 255, .85);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ---------- 14. お問い合わせCTA ---------- */
.contact-section { background: var(--color-rose); color: #fff; }
.contact-head { text-align: center; margin-bottom: 36px; max-width: 1060px; margin-left: auto; margin-right: auto; }
.contact-head h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; line-height: 1.5; margin-bottom: 12px; }
.contact-head p { font-size: 15px; line-height: 1.95; opacity: .95; }

.contact-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.contact-phone-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: var(--color-text);
}
.contact-phone-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-green);
  margin-bottom: 12px;
}
.contact-phone-card a {
  display: block;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.contact-phone-card__note { font-size: 13px; color: #777; margin-bottom: 4px; }
.contact-phone-card__staff { font-size: 13px; color: var(--color-text-sub); }

.contact-buttons { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
}
.contact-btn:hover { opacity: .9; color: var(--color-text); }
.contact-btn__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  flex: 0 0 auto;
}
.contact-btn__icon--line { background: var(--color-line); color: #fff; font-weight: 700; font-size: 13px; }
.contact-btn__label { flex: 1; }
.contact-btn__arrow { color: var(--color-green); }
.contact-btn__arrow--line { color: var(--color-line); }

/* ---------- 15. フッター / TOPへ戻る ---------- */
.site-footer { background: var(--color-bg-alt); padding: clamp(44px, 6vw, 72px) 16px 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.footer-logo__badge {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--color-rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.footer-company { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.footer-address { font-size: 13px; line-height: 1.95; color: #777; }

.footer-heading { font-size: 13px; font-weight: 700; color: var(--color-green); letter-spacing: .1em; margin-bottom: 14px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 9px;
}
.footer-links a { font-size: 13px; color: var(--color-text-sub); }

.footer-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
}

.footer-copyright {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-text-faint);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-float);
}
.back-to-top:hover { background: var(--color-green-dark); color: #fff; }

/* ---------- 16. レスポンシブ ---------- */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .site-nav {
    display: none;
    width: 100%;
    order: 10;
    flex-basis: 100%;
    border-top: 1px solid #eceee6;
    padding: 8px 0 12px;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px 6px; border-bottom: 1px solid #f2f3ee; font-size: 14px; }

  .header-actions {
    margin-left: 0;
    flex: 1 1 100%;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .header-phone { align-items: flex-start; }
  .header-actions > * { flex: 1 1 100%; }
  .header-line { justify-content: flex-start; }
  .btn--cta { white-space: normal; justify-content: center; text-align: center; }
  .message-photos { grid-template-columns: 1fr; }
  .photo--tall, .photo--mid, .photo--short { height: auto; min-height: 0; margin-top: 0; }
  .photo--tall { aspect-ratio: 4/3; }
  .photo--mid { aspect-ratio: 4/3; }
  .photo--short { aspect-ratio: 16/9; }
}


/* =========================================================
   スマホ最適化：シンプルヘッダー + 画面下固定CTA
   ========================================================= */
.logo__image {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 52px;
  object-fit: contain;
}

.mobile-fixed-cta {
  display: none;
}

@media (max-width: 900px) {
  /* スマホのヘッダーは会社ロゴ + ハンバーガーメニューのみ */
  .site-header__inner {
    min-height: 62px;
    padding: 8px 14px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .site-header .logo {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0;
  }

  .site-header .logo__image {
    max-width: min(66vw, 230px);
    max-height: 46px;
  }

  .site-header .logo__sub {
    display: none;
  }

  .site-header .header-actions {
    display: none !important;
  }

  .site-header .menu-toggle {
    display: flex;
    flex: 0 0 44px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    gap: 5px;
  }

  .site-header .menu-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
  }

  .site-header .site-nav {
    width: 100%;
    flex-basis: 100%;
    order: 20;
    background: #fff;
    padding: 8px 0 10px;
    border-top: 1px solid #eceee6;
  }

  /* 画面下に電話 + LINEだけを常時表示 */
  .mobile-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    border-top: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 -5px 18px rgba(0,0,0,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-fixed-cta a {
    min-height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none !important;
    box-shadow: 0 3px 8px rgba(0,0,0,.08);
  }

  .mobile-fixed-cta__phone {
    background: #ff6557;
  }

  .mobile-fixed-cta__line {
    background: #06c755;
  }

  .mobile-fixed-cta__phone-icon {
    font-size: 22px;
    line-height: 1;
  }

  .mobile-fixed-cta__line-icon {
    min-width: 31px;
    height: 31px;
    padding: 0 4px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #06c755;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: -.04em;
  }

  /* 固定CTAに本文や戻るボタンが隠れないようにする */
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .back-to-top {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .mobile-fixed-cta a {
    font-size: 14px;
  }
  .site-header .logo__image {
    max-width: 68vw;
  }
}

/* =========================================================
   PCヘッダー最適化：1行固定・参考デザイン寄せ
   ========================================================= */
@media (min-width: 901px) {
  .site-header {
    position: sticky;
    top: 0;
    background: #fff;
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    min-height: 112px;
    margin: 0;
    padding: 0 28px 0 38px;
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(560px, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 1.6vw, 30px);
    flex-wrap: nowrap;
  }

  .site-header .logo {
    min-width: 0;
    max-width: 390px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow: hidden;
  }

  .site-header .logo__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
    flex: 0 1 auto;
  }

  .site-header .logo__main {
    flex: 0 0 auto;
  }

  .site-header .logo__name {
    font-size: clamp(18px, 1.45vw, 26px);
    line-height: 1.15;
    white-space: nowrap;
  }

  .site-header .logo__en {
    font-size: 10px;
  }

  .site-header .logo__sub {
    display: flex;
    flex: 0 1 auto;
    min-width: 0;
    padding-left: 12px;
    white-space: nowrap;
  }

  .site-header .site-nav {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(12px, 1.25vw, 26px);
    white-space: nowrap;
  }

  .site-header .site-nav a {
    flex: 0 0 auto;
    padding: 42px 0;
    font-size: clamp(12px, .83vw, 15px);
    line-height: 1;
    font-weight: 700;
    color: #222;
  }

  .site-header .header-actions {
    height: 112px;
    margin-left: 0;
    display: grid;
    grid-template-columns: 205px 112px 180px;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
  }

  .site-header .header-phone {
    min-width: 0;
    height: 112px;
    padding: 14px 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    border-left: 1px solid #e8e8e8;
  }

  .site-header .header-phone__badge {
    font-size: 11px;
    white-space: nowrap;
  }

  .site-header .header-phone__number {
    font-size: 23px;
    white-space: nowrap;
  }

  .site-header .header-phone__note {
    font-size: 10px;
    white-space: nowrap;
  }

  .site-header .header-line {
    height: 112px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    line-height: 1.35;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    white-space: normal;
  }

  .site-header .header-line__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 11px;
  }

  .site-header .btn--cta {
    height: 112px;
    min-width: 180px;
    padding: 14px 18px;
    border-radius: 0 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.45;
    font-size: 13px;
    font-weight: 700;
    white-space: normal;
  }

  .site-header .btn--cta .btn__icon {
    flex: 0 0 20px;
  }

  .site-header .menu-toggle {
    display: none !important;
  }
}

/* 1400px前後でも2段にならないように少し圧縮 */
@media (min-width: 901px) and (max-width: 1540px) {
  .site-header__inner {
    padding-left: 22px;
    padding-right: 18px;
    grid-template-columns: minmax(240px, 310px) minmax(500px, 1fr) auto;
    gap: 12px;
  }

  .site-header .logo__image {
    max-height: 52px;
  }

  .site-header .site-nav {
    gap: 13px;
  }

  .site-header .site-nav a {
    font-size: 12px;
  }

  .site-header .header-actions {
    grid-template-columns: 170px 92px 155px;
  }

  .site-header .header-phone__number {
    font-size: 20px;
  }

  .site-header .header-phone__badge,
  .site-header .header-phone__note,
  .site-header .header-line,
  .site-header .btn--cta {
    font-size: 10px;
  }
}


/* Google口コミウィジェット */
.voice-widget-wrap {
  width: 100%;
  margin-top: 28px;
}
.voice-widget-wrap > * {
  max-width: 100%;
}
.voice-widget-placeholder {
  margin-top: 28px;
  padding: 24px;
  border: 1px dashed var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text-sub);
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   動的投稿・群馬県全域・Instagramフィード対応
   ========================================================= */
@media (min-width: 901px) {
  .site-header .header-actions {
    grid-template-columns: 205px 120px;
  }
}
@media (min-width: 901px) and (max-width: 1540px) {
  .site-header .header-actions {
    grid-template-columns: 175px 105px;
  }
}

/* ヒーロー直下のお知らせ帯を削除した分の余白補正 */
.hero { margin-bottom: 0; }

.gunma-area-box {
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0,0,0,.04);
}
.gunma-municipalities {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.gunma-municipalities span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f7ed;
  color: var(--color-text-sub);
  font-size: 13px;
  line-height: 1.35;
}
.area-seo-note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.case-card__photo-wrap { display:block; color:inherit; }
.case-card__photo-wrap img { width:100%; height:100%; object-fit:cover; }
.case-card__noimage {
  min-height: 220px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f2f3ef;
  color:#999;
}
.case-card__excerpt { margin: 14px 0 0; font-size: 13px; line-height: 1.8; color: var(--color-text-sub); }
.case-card__read { display:inline-block; margin-top:14px; font-size:13px; font-weight:700; color:var(--color-green); }

.column-card__image-link { display:block; }
.column-card__image-link img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.column-card h3 a { color:inherit; text-decoration:none; }

.dynamic-post-placeholder,
.instagram-widget-placeholder {
  grid-column: 1 / -1;
  width:100%;
  padding:24px;
  border:1px dashed var(--color-border);
  border-radius:12px;
  background:#fff;
  color:var(--color-text-sub);
  font-size:14px;
  line-height:1.8;
}
.instagram-widget-wrap { width:100%; margin-top:24px; overflow:hidden; }
.instagram-widget-wrap > * { max-width:100%; }

@media (max-width: 900px) {
  .gunma-area-box { padding:16px; }
  .gunma-municipalities { gap:7px; }
  .gunma-municipalities span { font-size:12px; padding:5px 9px; }
}


/* ===== Mobile FLOW heading: WHY US style ===== */
@media (max-width: 900px) {
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-lead {
    background: transparent;
    color: var(--color-text);
    border-radius: 0;
    min-height: 0;
    padding: 10px 8px 22px;
    display: block;
    text-align: center;
    box-shadow: none;
  }

  .flow-lead__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-green);
    margin-bottom: 14px;
  }

  .flow-lead__eyebrow::after {
    width: 36px;
    background: var(--color-green);
    opacity: 1;
  }

  .flow-lead__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .20em;
    opacity: 1;
  }

  .flow-lead__title {
    margin: 0;
    color: #2ca8a3;
    font-size: 27px;
    line-height: 1.35;
    font-weight: 800;
  }

  .flow-lead__desktop-meta,
  .flow-lead > p {
    display: none;
  }

  .flow-step::before {
    display: none;
  }
}

/* ===== FLOW heading: simple section heading on all screen sizes ===== */
.flow-lead {
  background: transparent;
  color: var(--color-text);
  border-radius: 0;
  min-height: 0;
  padding: 10px 8px 22px;
  display: block;
  text-align: left;
  box-shadow: none;
  grid-column: 1 / -1;
}
.flow-lead__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-green);
  margin-bottom: 14px;
}
.flow-lead__eyebrow::after {
  width: 36px;
  background: var(--color-green);
  opacity: 1;
}
.flow-lead__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .20em;
  opacity: 1;
}
.flow-lead__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  font-weight: 800;
}
.flow-lead__desktop-meta,
.flow-lead > p {
  display: none;
}

@media (min-width: 901px) {
  .flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flow-lead {
    padding: 0 0 14px;
  }
}

@media (max-width: 900px) {
  .flow-lead { text-align: center; }
}

/* ===== WHY US heading alignment: match other section headings ===== */
#reasons .section-head--center {
  align-items: flex-start;
  text-align: left;
}
#reasons .eyebrow--center {
  justify-content: flex-start;
}
#reasons .section-title--center {
  text-align: left;
}


/* ===== Contact CTA: reference-style 2-column layout ===== */
.contact-section {
  background: var(--color-rose);
  color: #fff;
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(58px, 6vw, 88px);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.15fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}
.contact-intro h2 {
  margin: 0 0 22px;
  max-width: 560px;
  color: #fff;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .01em;
}
.contact-intro__lead {
  margin: 0;
  max-width: 590px;
  color: #fff;
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
}
.contact-intro__divider {
  width: min(100%, 520px);
  height: 2px;
  margin: 34px 0 24px;
  background: rgba(255,255,255,.85);
}
.contact-intro__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}
.contact-intro__phone:hover { color:#fff; opacity:.92; }
.contact-intro__phone-icon {
  font-size: 28px;
  line-height: 1;
}
.contact-intro__phone-number {
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .02em;
}
.contact-intro__note {
  margin: 10px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.contact-action-list {
  display: grid;
  gap: 14px;
}
.contact-action-card {
  min-height: 154px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 82px minmax(0,1fr) 34px;
  gap: 24px;
  align-items: center;
  background: #fff;
  color: #161616;
  text-decoration: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.contact-action-card:first-child {
  border-radius: 22px 22px 0 0;
}
.contact-action-card:last-child {
  border-radius: 0 0 22px 22px;
}
.contact-action-card:hover {
  color: #161616;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.contact-action-card__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--color-green);
  color: #fff;
  font-size: 34px;
  font-weight: 800;
}
.contact-action-card__icon--line {
  background: var(--color-line);
  border-radius: 18px;
  font-size: 18px;
}
.contact-action-card__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #161616;
  line-height: 1.35;
}
.contact-action-card__label strong {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
}
.contact-action-card__label span {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
}
.contact-action-card__arrow {
  justify-self: end;
  color: #111;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 900px) {
  .contact-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-intro h2 {
    font-size: 30px;
    line-height: 1.45;
  }
  .contact-intro__lead {
    font-size: 14px;
  }
  .contact-intro__divider {
    margin: 24px 0 18px;
  }
  .contact-intro__phone-number {
    font-size: 34px;
  }
  .contact-action-list {
    gap: 10px;
  }
  .contact-action-card {
    min-height: 104px;
    grid-template-columns: 56px minmax(0,1fr) 24px;
    gap: 15px;
    padding: 20px 18px;
  }
  .contact-action-card:first-child { border-radius: 16px 16px 0 0; }
  .contact-action-card:last-child { border-radius: 0 0 16px 16px; }
  .contact-action-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    font-size: 25px;
  }
  .contact-action-card__icon--line {
    font-size: 13px;
  }
  .contact-action-card__label strong {
    font-size: 18px;
  }
  .contact-action-card__label span {
    font-size: 15px;
  }
  .contact-action-card__arrow {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .contact-intro h2 { font-size: 26px; }
  .contact-intro__phone-number { font-size: 28px; }
  .contact-action-card {
    grid-template-columns: 50px minmax(0,1fr) 20px;
    gap: 12px;
    padding: 18px 14px;
  }
  .contact-action-card__icon {
    width: 48px;
    height: 48px;
  }
}

/* 2026-09-11: 黄色の下線・マーカー装飾を無効化 */
.text-highlight,
.text-highlight--underline {
  background: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* フッター対応エリアを1列で自然に表示 */
.footer-area--single {
  display: block;
}
.footer-area--single .area-col__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}


/* Remove yellow underline/highlight decorations */
mark, .marker, .highlight, .yellow-marker,
[class*="marker"], [class*="highlight"], [class*="underline"] {
  background-image: none !important;
  background-color: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
  border-bottom: 0 !important;
}

/* Customizer image icons */
.header-line__icon-img{width:32px;height:32px;object-fit:contain;display:block;}

/* Customizer icon images */
.header-line__icon-img,
.contact-intro__phone-icon-img,
.contact-action-card__icon-img,
.mobile-fixed-cta__icon-img{
  display:block;
  width:42px;
  height:42px;
  object-fit:contain;
  flex:0 0 auto;
}
.header-line__icon-img{width:28px;height:28px;}
.contact-intro__phone-icon-img{width:34px;height:34px;}
.contact-action-card__icon-img{width:56px;height:56px;}
.mobile-fixed-cta__icon-img{width:24px;height:24px;}


/* Footer SERVICE AREA: city list in two columns */
.footer-service-area-list,
.footer-service-area__list,
.site-footer .service-area-list,
.site-footer [class*="service-area"] ul,
.lp-footer [class*="service-area"] ul,
.footer-area-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 22px !important;
  row-gap: 7px !important;
  align-items: start !important;
}
.footer-service-area-list > *,
.footer-service-area__list > *,
.site-footer .service-area-list > *,
.site-footer [class*="service-area"] ul > *,
.lp-footer [class*="service-area"] ul > *,
.footer-area-list > * {
  margin: 0 !important;
}


/* Footer SERVICE AREA: actual city list -> 2 columns */
.site-footer .footer-area--single .area-col__items,
.site-footer .footer-area--single .area-col__items--sm {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 24px !important;
  row-gap: 7px !important;
  align-items: start !important;
}

.site-footer .footer-area--single .area-col__items > span,
.site-footer .footer-area--single .area-col__items--sm > span {
  display: block !important;
  margin: 0 !important;
  min-width: 0 !important;
}


/* FRITTS carousel behavior */
.cases-grid{
  display:flex !important;
  overflow-x:auto !important;
  scroll-snap-type:x mandatory;
  gap:18px !important;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.cases-grid::-webkit-scrollbar{display:none}
.cases-grid > *{
  flex:0 0 calc((100% - 36px)/3) !important;
  scroll-snap-align:start;
}
@media(max-width: 767px){
  .flow-carousel,
  .reasons-grid{
    display:flex !important;
    overflow-x:auto !important;
    scroll-snap-type:x mandatory;
    gap:14px !important;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
    padding-right:12% !important;
  }
  .flow-carousel::-webkit-scrollbar,
  .reasons-grid::-webkit-scrollbar{display:none}
  .flow-carousel > *,
  .reasons-grid > *{
    flex:0 0 88% !important;
    min-width:0 !important;
    scroll-snap-align:start;
  }
  .cases-grid{
    padding-right:12% !important;
    gap:14px !important;
  }
  .cases-grid > *{
    flex:0 0 88% !important;
  }
}

/* FLOW heading stays above carousel; carousel contains steps only */
.flow-carousel{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

@media (max-width: 900px){
  .flow-lead{
    text-align:left !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }
  .flow-lead__eyebrow{
    justify-content:flex-start !important;
  }
  .flow-lead__title{
    text-align:left !important;
  }
}

/* SERVICE AREA tabs */
.service-area-tabs{
  margin-top:28px;
}
.service-area-tabs__nav{
  display:flex;
  gap:10px;
  margin-bottom:18px;
  border-bottom:1px solid #e4e4df;
}
.service-area-tab{
  appearance:none;
  border:0;
  background:transparent;
  color:#777;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  padding:12px 22px;
  border-bottom:3px solid transparent;
  margin-bottom:-1px;
  transition:.2s ease;
}
.service-area-tab:hover{
  color:var(--color-green);
}
.service-area-tab.is-active{
  color:var(--color-green);
  border-bottom-color:var(--color-green);
}
.service-area-panel{
  display:none;
}
.service-area-panel.is-active{
  display:block;
}
.service-area-municipalities{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 18px;
  font-size:14px;
  color:#666;
  margin-top:14px;
}
.service-area-municipalities span{
  display:block;
}
@media(max-width:767px){
  .service-area-tabs{
    margin-top:22px;
  }
  .service-area-tabs__nav{
    gap:0;
  }
  .service-area-tab{
    flex:1 1 50%;
    padding:11px 8px;
    text-align:center;
  }
  .service-area-municipalities{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px 14px;
    font-size:13px;
  }
}

/* MESSAGE images: desktop = 2 images / mobile = 2-image carousel */
.message-photos{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:18px !important;
  align-items:stretch !important;
}
.message-photos .photo{
  width:100% !important;
  height:100% !important;
  min-height:320px;
  object-fit:cover !important;
  border-radius:18px;
  display:block;
}

@media (max-width: 767px){
  .message-photos{
    display:flex !important;
    overflow-x:auto !important;
    scroll-snap-type:x mandatory !important;
    gap:14px !important;
    padding-right:14% !important;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .message-photos::-webkit-scrollbar{
    display:none;
  }
  .message-photos .photo{
    flex:0 0 86% !important;
    width:86% !important;
    height:260px !important;
    min-height:260px !important;
    scroll-snap-align:start;
  }
}

/* Allow a few more header menu items without breaking layout */
@media (min-width: 901px){
  .site-nav{
    gap:18px !important;
  }
  .site-nav a{
    white-space:nowrap;
  }
}

/* SERVICE AREA full-content tabs */
.service-area-tabs--full .service-area-tabs__nav{
  display:flex;
  gap:10px;
  margin:20px 0 30px;
  border-bottom:1px solid #e7e7e1;
}
.service-area-tabs--full .service-area-tab{
  appearance:none;
  border:0;
  background:transparent;
  color:#777;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  padding:12px 22px;
  border-bottom:3px solid transparent;
  margin-bottom:-1px;
}
.service-area-tabs--full .service-area-tab.is-active{
  color:#91bd19;
  border-bottom-color:#91bd19;
}
.service-area-tabs--full .service-area-panel{
  display:none;
}
.service-area-tabs--full .service-area-panel.is-active{
  display:block;
}
.service-area-panel__body{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr);
  gap:32px;
  align-items:start;
  margin-top:26px;
}
.service-area-panel__body .area-map-wrap img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
}
.service-area-municipalities{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 16px;
  margin-top:14px;
}
@media(max-width:767px){
  .service-area-tabs--full .service-area-tabs__nav{
    gap:0;
    margin:14px 0 22px;
  }
  .service-area-tabs--full .service-area-tab{
    flex:1 1 50%;
    text-align:center;
    padding:10px 8px;
  }
  .service-area-panel__body{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:18px;
  }
  .service-area-municipalities{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px 14px;
  }
}

/* 青森県エリア画像 */
.service-area-panel__body.no-area-image{
  grid-template-columns:1fr !important;
}
.service-area-panel__body.no-area-image .service-area-panel__list{
  max-width:760px;
}
.area-map-wrap--aomori img,
.service-area-aomori-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:16px;
}

/* 選ばれる6つの理由：アイコン拡大 */
#reasons .reason-icon,
#reasons .reason-card__icon,
.reasons .reason-icon,
.reasons .reason-card__icon{
 width:170px!important;height:170px!important;min-width:170px!important;
 display:flex!important;align-items:center!important;justify-content:center!important;
 border-radius:50%!important;overflow:hidden!important;
}
#reasons .reason-icon img,
#reasons .reason-card__icon img,
.reasons .reason-icon img,
.reasons .reason-card__icon img{
 width:138px!important;height:138px!important;max-width:138px!important;max-height:138px!important;
 object-fit:contain!important;display:block!important;
}
@media(min-width:768px){
 #reasons .reason-icon,#reasons .reason-card__icon,.reasons .reason-icon,.reasons .reason-card__icon{
  width:150px!important;height:150px!important;min-width:150px!important;
 }
 #reasons .reason-icon img,#reasons .reason-card__icon img,.reasons .reason-icon img,.reasons .reason-card__icon img{
  width:118px!important;height:118px!important;max-width:118px!important;max-height:118px!important;
 }
}


/* 選ばれる6つの理由：丸枠をなくして画像をそのまま大きく表示 */
#reasons .reason-icon,
#reasons .reason-card__icon,
.reasons .reason-icon,
.reasons .reason-card__icon{
  width:auto !important;
  height:auto !important;
  min-width:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

#reasons .reason-icon img,
#reasons .reason-card__icon img,
.reasons .reason-icon img,
.reasons .reason-card__icon img{
  width:220px !important;
  height:220px !important;
  max-width:80% !important;
  max-height:none !important;
  object-fit:contain !important;
  display:block !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

@media (max-width: 767px){
  #reasons .reason-icon img,
  #reasons .reason-card__icon img,
  .reasons .reason-icon img,
  .reasons .reason-card__icon img{
    width:260px !important;
    height:260px !important;
    max-width:78% !important;
  }
}

/* 選ばれる6つの理由：画像前後の余白を詰める */
#reasons .reason-icon,
#reasons .reason-card__icon,
.reasons .reason-icon,
.reasons .reason-card__icon{
  margin-top:22px!important;
  margin-bottom:22px!important;
}
#reasons .reason-card p,
#reasons .reason-card__text,
.reasons .reason-card p,
.reasons .reason-card__text{
  margin-top:0!important;
}
@media(max-width:767px){
 #reasons .reason-icon,
 #reasons .reason-card__icon,
 .reasons .reason-icon,
 .reasons .reason-card__icon{
   margin-top:16px!important;
   margin-bottom:16px!important;
 }
}

/* 選ばれる6つの理由：カード内レイアウトをコンパクト化 */
#reasons .reason-card{
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-start!important;
  height:auto!important;
  min-height:0!important;
}
#reasons .reason-card h3{
  margin-bottom:24px!important;
}
#reasons .reason-card__icon{
  flex:none!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  margin:0 0 24px!important;
  padding:0!important;
}
#reasons .reason-card__icon img{
  width:220px!important;
  height:auto!important;
  max-width:72%!important;
  max-height:none!important;
  margin:0 auto!important;
  object-fit:contain!important;
}
#reasons .reason-card > p{
  margin:0!important;
  padding:0!important;
}
@media(max-width:767px){
  #reasons .reason-card h3{
    margin-bottom:18px!important;
  }
  #reasons .reason-card__icon{
    margin:0 0 18px!important;
  }
  #reasons .reason-card__icon img{
    width:230px!important;
    height:auto!important;
    max-width:74%!important;
  }
}


/* 選ばれる6つの理由：元画像の縦横比・余白差に関係なく見た目サイズを統一 */
#reasons .reason-card__icon{
  width:100% !important;
  height:260px !important;
  min-height:260px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 0 22px !important;
  padding:0 !important;
  overflow:hidden !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
}

#reasons .reason-card__icon img{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

/* 画像未設定時の文字アイコンも中央に固定 */
#reasons .reason-card__icon:not(:has(img)){
  font-size:52px !important;
  line-height:1 !important;
  color:#94B721 !important;
}

@media (max-width: 767px){
  #reasons .reason-card__icon{
    height:230px !important;
    min-height:230px !important;
    margin-bottom:18px !important;
  }
}


/* スマホ：選ばれる6つの理由カードをコンパクト化 */
@media (max-width: 767px){
  #reasons .reasons-grid{
    align-items:flex-start !important;
  }
  #reasons .reason-card{
    box-sizing:border-box !important;
    min-height:0 !important;
    height:auto !important;
    padding:24px 20px 26px !important;
  }
  #reasons .reason-card__point{
    margin-bottom:16px !important;
    font-size:17px !important;
    line-height:1.2 !important;
  }
  #reasons .reason-card h3{
    margin:0 0 18px !important;
    font-size:24px !important;
    line-height:1.4 !important;
  }
  #reasons .reason-card__icon{
    width:100% !important;
    height:170px !important;
    min-height:170px !important;
    margin:0 0 18px !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
  #reasons .reason-card__icon img{
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    max-height:none !important;
    object-fit:contain !important;
    object-position:center !important;
    margin:0 !important;
  }
  #reasons .reason-card > p{
    margin:0 !important;
    font-size:17px !important;
    line-height:1.7 !important;
  }
}

/* FRITTSが合う方 / 合わない方 */
.fritts-fit-section{background:#fff;}
.fritts-fit-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;margin-top:28px;}
.fritts-fit-card{border:1px solid #eceee6;border-radius:18px;padding:28px;background:#fff;}
.fritts-fit-card--good{background:#f8fbf1;}
.fritts-fit-card--notgood{background:#fff8f8;}
.fritts-fit-card__label{display:inline-flex;align-items:center;min-height:34px;padding:6px 14px;border-radius:999px;font-weight:800;font-size:14px;margin-bottom:18px;}
.fritts-fit-card--good .fritts-fit-card__label{color:#6f8a18;background:#eef5d7;}
.fritts-fit-card--notgood .fritts-fit-card__label{color:#b35d68;background:#fdecef;}
.fritts-fit-card h3{margin:0 0 8px;font-size:20px;line-height:1.55;}
.fritts-fit-card p{margin:0 0 20px;color:#555;line-height:1.8;}
.fritts-fit-card p:last-child{margin-bottom:0;}
@media(max-width:767px){.fritts-fit-grid{grid-template-columns:1fr;gap:14px;margin-top:22px}.fritts-fit-card{padding:22px 18px;border-radius:16px}.fritts-fit-card h3{font-size:18px}.fritts-fit-card p{font-size:15px;line-height:1.75}}


/* スマホ：選ばれる6つの理由カルーセルのサイズ・形崩れ修正 */
@media (max-width: 767px){
  #reasons .reasons-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:14px !important;
    overflow-x:auto !important;
    overflow-y:visible !important;
    scroll-snap-type:x mandatory !important;
    -webkit-overflow-scrolling:touch !important;
    padding:0 14% 10px 0 !important;
    margin:0 !important;
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
    scrollbar-width:none !important;
  }
  #reasons .reasons-grid::-webkit-scrollbar{display:none !important;}

  #reasons .reason-card{
    flex:0 0 86% !important;
    width:86% !important;
    max-width:86% !important;
    min-width:86% !important;
    box-sizing:border-box !important;
    scroll-snap-align:start !important;
    border-radius:18px !important;
    overflow:hidden !important;
    padding:24px 22px 28px !important;
    min-height:0 !important;
    height:auto !important;
  }

  #reasons .reason-card__point{
    margin:0 0 18px !important;
    font-size:17px !important;
    line-height:1.2 !important;
  }

  #reasons .reason-card h3{
    margin:0 0 18px !important;
    font-size:23px !important;
    line-height:1.45 !important;
    word-break:normal !important;
    overflow-wrap:break-word !important;
  }

  #reasons .reason-card__icon{
    width:100% !important;
    height:165px !important;
    min-height:165px !important;
    margin:0 0 18px !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  #reasons .reason-card__icon img{
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    object-fit:contain !important;
    object-position:center !important;
    margin:0 !important;
  }

  #reasons .reason-card > p{
    margin:0 !important;
    font-size:16px !important;
    line-height:1.75 !important;
    word-break:normal !important;
    overflow-wrap:break-word !important;
  }
}

@media (max-width: 390px){
  #reasons .reason-card{
    flex-basis:88% !important;
    width:88% !important;
    max-width:88% !important;
    min-width:88% !important;
    padding-left:20px !important;
    padding-right:20px !important;
  }
  #reasons .reason-card h3{font-size:22px !important;}
  #reasons .reason-card > p{font-size:15px !important;}
}


/* =========================================================
   スマホ：選ばれる6つの理由を全カード同一サイズに固定
   ========================================================= */
@media (max-width: 767px){

  #reasons .reasons-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:stretch !important;
    gap:14px !important;
    overflow-x:auto !important;
    scroll-snap-type:x mandatory !important;
    -webkit-overflow-scrolling:touch !important;
    padding:0 12% 12px 0 !important;
    box-sizing:border-box !important;
  }

  #reasons .reason-card{
    flex:0 0 84% !important;
    width:84% !important;
    min-width:84% !important;
    max-width:84% !important;

    height:640px !important;
    min-height:640px !important;
    max-height:640px !important;

    box-sizing:border-box !important;
    scroll-snap-align:start !important;
    border-radius:18px !important;
    overflow:hidden !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;

    padding:22px 20px 24px !important;
  }

  #reasons .reason-card__point{
    flex:0 0 auto !important;
    margin:0 0 16px !important;
    font-size:17px !important;
    line-height:1.2 !important;
  }

  #reasons .reason-card h3{
    flex:0 0 auto !important;
    margin:0 0 16px !important;
    font-size:22px !important;
    line-height:1.42 !important;
  }

  #reasons .reason-card__icon{
    flex:0 0 160px !important;
    width:100% !important;
    height:160px !important;
    min-height:160px !important;
    max-height:160px !important;
    margin:0 0 16px !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  #reasons .reason-card__icon img{
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    object-fit:contain !important;
    object-position:center center !important;
    margin:0 !important;
    padding:0 !important;
  }

  #reasons .reason-card > p{
    flex:1 1 auto !important;
    margin:0 !important;
    padding:0 !important;
    font-size:15px !important;
    line-height:1.7 !important;
    overflow:hidden !important;
  }
}

@media (max-width: 390px){
  #reasons .reason-card{
    flex-basis:86% !important;
    width:86% !important;
    min-width:86% !important;
    max-width:86% !important;
    height:620px !important;
    min-height:620px !important;
    max-height:620px !important;
  }

  #reasons .reason-card h3{
    font-size:21px !important;
  }

  #reasons .reason-card__icon{
    flex-basis:150px !important;
    height:150px !important;
    min-height:150px !important;
    max-height:150px !important;
  }
}


/* =========================================================
   スマホ：選ばれる6つの理由を参考画像くらいの高さに圧縮
   ========================================================= */
@media (max-width: 767px){

  #reasons .reasons-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:stretch !important;
    gap:14px !important;
    overflow-x:auto !important;
    scroll-snap-type:x mandatory !important;
    -webkit-overflow-scrolling:touch !important;
    padding:0 12% 10px 0 !important;
    box-sizing:border-box !important;
  }

  #reasons .reason-card{
    flex:0 0 84% !important;
    width:84% !important;
    min-width:84% !important;
    max-width:84% !important;

    height:540px !important;
    min-height:540px !important;
    max-height:540px !important;

    box-sizing:border-box !important;
    scroll-snap-align:start !important;
    border-radius:18px !important;
    overflow:hidden !important;

    display:grid !important;
    grid-template-rows:auto auto 150px 1fr !important;
    align-content:start !important;
    gap:0 !important;

    padding:22px 20px 24px !important;
  }

  #reasons .reason-card__point{
    margin:0 0 14px !important;
    font-size:17px !important;
    line-height:1.2 !important;
  }

  #reasons .reason-card h3{
    margin:0 0 14px !important;
    font-size:22px !important;
    line-height:1.4 !important;
  }

  #reasons .reason-card__icon{
    width:100% !important;
    height:150px !important;
    min-height:150px !important;
    max-height:150px !important;
    margin:0 0 14px !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  #reasons .reason-card__icon img{
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    object-fit:contain !important;
    object-position:center center !important;
    margin:0 !important;
  }

  #reasons .reason-card > p{
    margin:0 !important;
    padding:0 !important;
    font-size:15px !important;
    line-height:1.65 !important;
    align-self:start !important;
  }
}

@media (max-width: 390px){
  #reasons .reason-card{
    flex-basis:86% !important;
    width:86% !important;
    min-width:86% !important;
    max-width:86% !important;

    height:520px !important;
    min-height:520px !important;
    max-height:520px !important;

    padding:20px 18px 22px !important;
    grid-template-rows:auto auto 140px 1fr !important;
  }

  #reasons .reason-card h3{
    font-size:21px !important;
    margin-bottom:12px !important;
  }

  #reasons .reason-card__icon{
    height:140px !important;
    min-height:140px !important;
    max-height:140px !important;
    margin-bottom:12px !important;
  }

  #reasons .reason-card > p{
    font-size:14px !important;
    line-height:1.6 !important;
  }
}


/* TOPページ：FOR YOUとCASEの背景を交互に */
#fit,.fritts-fit-section{background:#f7f8f3 !important;}
#case,#cases,#works,#purchase-cases,.purchase-cases,.case-section,.cases-section,.works-section{background:#fff !important;}
#cases{background:#fff !important;}


/* TOPページ セクション背景の交互表示 */
#reasons.section--alt,
#reasons{
  background:#f7f8f3 !important;
}

#fit,
.fritts-fit-section{
  background:#ffffff !important;
}

#cases{
  background:#f7f8f3 !important;
}



/* =========================================================
   TOPページ：全セクションを上から交互背景に統一
   1,3,5... = 白 / 2,4,6... = 薄い背景
   ========================================================= */
body.home main > section:nth-of-type(odd),
body.home #main_content > section:nth-of-type(odd),
body.home .l-mainContent > section:nth-of-type(odd){
  background:#ffffff !important;
}

body.home main > section:nth-of-type(even),
body.home #main_content > section:nth-of-type(even),
body.home .l-mainContent > section:nth-of-type(even){
  background:#f7f8f3 !important;
}

/* front-page.php の実際の並びを明示して、SWELL側の既存指定にも負けないようにする */
body.home #top{background:#ffffff !important;}
body.home #message{background:#f7f8f3 !important;}
body.home #area{background:#f7f8f3 !important;}
body.home #reasons{background:#ffffff !important;}
body.home #fit{background:#f7f8f3 !important;}
body.home #cases{background:#ffffff !important;}
body.home #voice{background:#f7f8f3 !important;}
body.home #column{background:#ffffff !important;}
body.home #contact{background:#f7f8f3 !important;}

body.home main > section:nth-of-type(3),
body.home #main_content > section:nth-of-type(3),
body.home .l-mainContent > section:nth-of-type(3){
  background:#ffffff !important;
}

/* お問い合わせCTAは元デザインのピンクを保持 */
body.home #contact.contact-section,
body.home #contact,
body.home .contact-section{
  background:var(--color-rose) !important;
  color:#fff !important;
}


/* =========================================================
   TOPページ：背景順を反転（ユーザー指定）
   MESSAGE 白 / FLOW 薄 / AREA 白 / WHY US 薄
   FOR YOU 白 / CASE 薄 / VOICE 白 / COLUMN 薄
   CONTACT は元のピンクを保持
   ========================================================= */
body.home #message{background:#ffffff !important;}

/* FLOWはfront-page.php上で3番目のsection */
body.home main > section:nth-of-type(3),
body.home #main_content > section:nth-of-type(3),
body.home .l-mainContent > section:nth-of-type(3){
  background:#f7f8f3 !important;
}

body.home #area{background:#ffffff !important;}
body.home #reasons{background:#f7f8f3 !important;}
body.home #fit{background:#ffffff !important;}
body.home #cases{background:#f7f8f3 !important;}
body.home #voice{background:#ffffff !important;}
body.home #column{background:#f7f8f3 !important;}

/* CONTACTは交互ルールの対象外：元のピンク */
body.home #contact.contact-section,
body.home #contact,
body.home .contact-section{
  background:var(--color-rose) !important;
  color:#fff !important;
}

