/* ================================================
   グリーンフィールド — 手書き風・温かみ・やわらかデザイン
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #2d6a4f;
  --green-main:   #40916c;
  --green-light:  #74c69d;
  --green-pale:   #d8f3dc;
  --green-mist:   #f0faf4;
  --beige:        #fdf8f0;
  --beige-mid:    #f0e8d8;
  --beige-dark:   #ddd0bb;
  --cream:        #fffdf7;
  --brown:        #a07850;
  --brown-light:  #c8a97e;
  --text-dark:    #3d3228;
  --text-mid:     #6b5c4e;
  --text-light:   #a08878;
  --border:       #e8ddd0;
  --yellow:       #fef3c7;
  --shadow-warm:  0 6px 30px rgba(120, 80, 40, .10);
  --shadow-soft:  0 3px 16px rgba(120, 80, 40, .07);

  /* フォント：手書き風 */
  --font-display: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  --radius-btn:  50px;
  --radius-card: 20px;
  --radius-sm:   12px;
  --container:   1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--beige);
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.text-center { text-align: center; }

/* ================================================
   フェードインアニメーション（ふわっと）
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease-in-out, transform .8s ease-in-out;
}
.fade-up.delay-1 { transition-delay: .15s; }
.fade-up.delay-2 { transition-delay: .3s; }
.fade-up.delay-3 { transition-delay: .45s; }
.fade-up.delay-4 { transition-delay: .6s; }
.fade-up.visible { opacity: 1; transform: none; }

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,248,240,.97);
  border-bottom: 2px dashed var(--beige-dark);
  backdrop-filter: blur(6px);
  transition: background .4s, border-color .4s, box-shadow .3s;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(120,80,40,.10);
}

/* ヒーロー上部：透明ヘッダー */
.header--over-hero {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.header--over-hero .header__logo-main,
.header--over-hero .header__logo-sub,
.header--over-hero .header__nav-list a,
.header--over-hero .header__tel-label,
.header--over-hero .header__tel-num {
  color: #fff;
}
.header--over-hero .header__nav-list a::after { background: #fff; }
.header--over-hero .hamburger span { background: #fff; }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 70px;
  max-width: 1280px; /* ヘッダーだけ広めに */
}

.header__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.header__logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--green-pale);
  flex-shrink: 0;
}
.header__logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.header__logo-text { line-height: 1.3; }
.header__logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-dark);
  letter-spacing: .06em;
  display: block;
}
.header__logo-sub {
  font-size: .62rem;
  color: var(--green-main);
  letter-spacing: .08em;
  display: block;
}

.header__nav { margin-left: auto; }
.header__nav-list {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.header__nav-list a {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--text-mid);
  padding: .4rem .7rem;
  border-radius: var(--radius-btn);
  transition: background .25s, color .25s;
  white-space: nowrap; /* テキスト折り返し防止 */
}
.header__nav-list a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header__tel-label {
  font-size: .58rem;
  color: var(--text-light);
  display: none; /* ヘッダー幅節約のため非表示 */
}
.header__tel-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-dark);
  letter-spacing: .06em;
  white-space: nowrap;
}
.header__cta-btns { display: flex; gap: .5rem; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  border: none; background: none;
  cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 100%; height: 2.5px;
  background: var(--green-dark);
  border-radius: 10px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビ */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--beige);
  border-top: 2px dashed var(--beige-dark);
  padding: 1rem 1.5rem 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .85rem 0;
  font-size: .95rem;
  border-bottom: 1px dashed var(--beige-dark);
  color: var(--text-dark);
}
.mobile-nav__cta {
  margin-top: 1.2rem;
  background: var(--green-main) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 1rem !important;
  border-radius: var(--radius-btn) !important;
  border: none !important;
  font-weight: 400 !important;
  letter-spacing: .1em;
}

/* ================================================
   ボタン
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--green-main);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .9rem 2.2rem;
  border-radius: var(--radius-btn);
  letter-spacing: .08em;
  border: none; cursor: pointer;
  box-shadow: 0 4px 0 var(--green-dark), 0 6px 20px rgba(64,145,108,.2);
  transition: all .2s ease-in-out;
  position: relative;
  top: 0;
}
.btn-primary:hover {
  top: 3px;
  box-shadow: 0 1px 0 var(--green-dark), 0 3px 12px rgba(64,145,108,.2);
}
.btn-primary.btn-lg { padding: 1.05rem 2.6rem; font-size: 1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--cream);
  color: var(--green-main);
  border: 2.5px solid var(--green-main);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .85rem 2.2rem;
  border-radius: var(--radius-btn);
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .25s ease-in-out;
}
.btn-outline:hover {
  background: var(--green-main);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #06c755;
  color: #fff;
  font-size: .8rem;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  box-shadow: 0 3px 0 #04a044;
  transition: all .2s;
  position: relative; top: 0;
}
.btn-line:hover { top: 2px; box-shadow: 0 1px 0 #04a044; }

.btn-mail {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--green-dark);
  color: #fff;
  font-size: .8rem;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  box-shadow: 0 3px 0 #1e4a35;
  transition: all .2s;
  position: relative; top: 0;
}
.btn-mail:hover { top: 2px; box-shadow: 0 1px 0 #1e4a35; }

.line-icon {
  background: #fff;
  color: #06c755;
  font-size: .6rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: 4px;
}
.line-icon-sm {
  background: rgba(255,255,255,.35);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: .1rem .3rem;
  border-radius: 4px;
}

/* ================================================
   セクション共通
   ================================================ */
.section { padding: 5.5rem 0; }
.section--beige       { background: var(--beige); }
.section--white       { background: var(--cream); }
.section--mist        { background: var(--green-mist); }
.section--dark        { background: var(--green-dark); }
.section--gray        { background: #f5f3ef; }
.section--green-light { background: var(--green-mist); }

/* 波型セクション区切り */
.section--wave-top {
  position: relative;
  margin-top: -2px;
}

.section__head { margin-bottom: 3.5rem; }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  border: 2px dashed var(--green-light);
  padding: .3rem 1.1rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1rem;
}

.section--dark .section__label {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.6);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.6;
  color: var(--text-dark);
  letter-spacing: .06em;
}

.section__sub {
  font-size: .92rem;
  color: var(--text-mid);
  margin-top: 1rem;
  line-height: 2.1;
}

/* ================================================
   HERO — フルスクリーン（glänta style）
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* 背景写真 */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* グラデーションオーバーレイ */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.30) 0%,
    rgba(0,0,0,.10) 45%,
    rgba(0,0,0,.55) 100%
  );
}

/* 中央テキストエリア */
.hero__center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 1.5rem 2rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,.12);
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
}
.hero__sub-quote {
  display: inline-block;
  font-style: italic;
  color: rgba(255,255,255,.95);
  font-size: 1em;
  border-left: 2px solid var(--yellow);
  padding-left: .6rem;
  margin-bottom: .3rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.25;
  color: #fff;
  letter-spacing: .12em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(.82rem, 1.8vw, .98rem);
  color: rgba(255,255,255,.88);
  line-height: 2.1;
  margin-bottom: 2.6rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: .95rem;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: all .25s ease;
  position: relative; top: 0;
}
.hero__btn--line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 4px 0 #04a044;
}
.hero__btn--line:hover { top: 3px; box-shadow: 0 1px 0 #04a044; }
.hero__btn--outline {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}
.hero__btn--outline:hover { background: rgba(255,255,255,.25); }

.hero__badges-top {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__rank-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: .65rem;
  padding: .38rem .85rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  line-height: 1.6;
  text-align: center;
}
.hero__rank-badge strong {
  font-size: .82rem;
  color: var(--yellow);
}

/* スクロール誘導ライン */
.hero__scroll {
  position: absolute;
  bottom: 72px;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero__scroll-text {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), rgba(255,255,255,0));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* 対応エリアバー */
.hero__area-bar {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
  padding: .85rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__area-bar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__area-label {
  font-size: .78rem;
  color: #b7e4c7;
  white-space: nowrap;
  letter-spacing: .05em;
}
.hero__area-list {
  font-size: .78rem;
  color: rgba(255,255,255,.78);
}

/* ================================================
   お悩み
   ================================================ */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.worry-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 2.2rem 1.75rem;
  text-align: center;
  /* 手書き風ボーダー */
  border: 3px solid var(--beige-dark);
  box-shadow: 4px 5px 0 var(--beige-mid);
  transition: transform .3s ease-in-out, box-shadow .3s;
  position: relative;
}
.worry-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 6px 8px 0 var(--beige-mid);
}
.worry-card__icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-mist);
  border: 2px solid var(--green-pale);
}
.worry-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.worry-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: .75rem;
  line-height: 1.7;
  letter-spacing: .06em;
}
.worry-card p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 2;
}

.worry-solution {
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  border: 3px dashed rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.worry-solution::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  border: 2px dashed rgba(255,255,255,.12);
  pointer-events: none;
}
.worry-solution__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1.8rem;
  line-height: 1.85;
  letter-spacing: .07em;
}
.worry-solution__text strong { color: var(--yellow); }

/* ================================================
   3つの特徴
   ================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  border: 3px solid var(--beige-dark);
  box-shadow: 4px 5px 0 var(--beige-mid);
  position: relative;
  transition: transform .3s ease-in-out, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-5px) rotate(0.3deg);
  box-shadow: 6px 9px 0 var(--beige-mid);
}
.feature-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.feature-card__icon {
  width: 80px; height: 80px;
  margin: 0 0 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-mist);
  border: 2px dashed var(--green-pale);
}
.feature-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--green-dark);
  letter-spacing: .06em;
}
.feature-card__desc {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 2;
}

/* ================================================
   ビフォーアフター
   ================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ba-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 3px solid var(--beige-dark);
  box-shadow: 4px 5px 0 var(--beige-mid);
  transition: transform .3s ease-in-out;
}
.ba-card:hover { transform: translateY(-4px) rotate(-0.3deg); }
.ba-card__imgs {
  display: flex;
  align-items: stretch;
  height: 170px;
}
.ba-card__img { flex: 1; position: relative; overflow: hidden; }
.ba-label {
  position: absolute;
  bottom: 7px; left: 7px;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: var(--radius-btn);
}
.ba-label--before { background: rgba(80,60,40,.55); color: #fff; }
.ba-label--after  { background: var(--green-main); color: #fff; }
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  background: var(--brown-light);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.ba-card__info { padding: 1.1rem 1.3rem 1.4rem; }
.ba-card__info h3 {
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--text-dark);
  margin-bottom: .3rem;
  line-height: 1.6;
  letter-spacing: .05em;
}
.ba-card__info p { font-size: .76rem; color: var(--text-light); }

/* ================================================
   7つの理由
   ================================================ */
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.point-grid .point-card:last-child { grid-column: 2 / 3; }
.point-card {
  background: rgba(255,255,255,.1);
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  transition: background .3s, transform .3s;
}
.point-card:hover {
  background: rgba(255,255,255,.17);
  transform: translateY(-3px);
}
.point-card__num {
  font-family: var(--font-body);
  font-size: .7rem;
  color: #b7e4c7;
  background: rgba(255,255,255,.12);
  border: 1.5px dashed rgba(183,228,199,.4);
  padding: .22rem .65rem;
  border-radius: var(--radius-btn);
  display: inline-block;
  margin-bottom: .9rem;
  letter-spacing: .1em;
}
.point-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.75;
  letter-spacing: .06em;
}
.point-card__desc {
  font-size: .83rem;
  color: rgba(255,255,255,.75);
  line-height: 2;
}
.accent-text { color: var(--yellow); }

/* ================================================
   お客様の声
   ================================================ */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: .9rem;
}
.review-stars  { font-size: 1.3rem; color: #d4a017; }
.review-score  {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--green-dark);
}
.review-count  { font-size: .85rem; color: var(--text-light); }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.voice-card {
  background: var(--cream);
  border: 3px solid var(--beige-dark);
  border-radius: var(--radius-card);
  padding: 1.6rem;
  box-shadow: 4px 5px 0 var(--beige-mid);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease-in-out;
  position: relative;
}
.voice-card:hover { transform: translateY(-3px) rotate(0.4deg); }
.voice-card::before {
  content: '❝';
  position: absolute;
  top: .8rem; right: 1.1rem;
  font-size: 2.2rem;
  color: var(--green-pale);
  line-height: 1;
  font-family: serif;
}
.voice-card__stars { color: #d4a017; font-size: .95rem; margin-bottom: .75rem; }
.voice-card__text {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 2;
  flex: 1;
  margin-bottom: 1rem;
}
.voice-card__author {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding-top: .8rem;
  border-top: 2px dashed var(--beige-dark);
}
.voice-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--green-pale);
  flex-shrink: 0;
  background: var(--green-mist);
}
.voice-card__name  {
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--text-dark);
  letter-spacing: .05em;
}
.voice-card__area  { font-size: .73rem; color: var(--text-light); }

/* ================================================
   料金表
   ================================================ */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 3px solid var(--beige-dark);
  box-shadow: 4px 5px 0 var(--beige-mid);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
}
.price-table thead th {
  background: var(--green-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: .88rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  letter-spacing: .1em;
}
.price-table tbody tr {
  border-bottom: 2px dashed var(--beige-dark);
  transition: background .2s;
}
.price-table tbody tr:hover { background: var(--green-mist); }
.price-table td { padding: 1.3rem 1.5rem; vertical-align: middle; }
.price-table__condition {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.price-table__condition-icon { font-size: 1.8rem; }
.price-table__condition strong {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--text-dark);
  letter-spacing: .05em;
  display: block;
}
.price-table__condition p {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: .2rem;
}
.price-table__price { font-size: 1rem; color: var(--text-dark); white-space: nowrap; }
.price-table__price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
}
.price-note {
  margin-top: 1.3rem;
  padding: 1rem 1.4rem;
  background: var(--cream);
  border: 2px dashed var(--beige-dark);
  border-radius: var(--radius-sm);
}
.price-note p { font-size: .8rem; color: var(--text-light); line-height: 2; }

@media (max-width: 600px) {
  .price-table { min-width: 460px; }
  .price-table thead th { font-size: .78rem; padding: .9rem 1rem; }
  .price-table td { padding: 1rem; }
  .price-table__price strong { font-size: 1.2rem; }
}

/* ================================================
   ご利用の流れ
   ================================================ */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.flow-step {
  background: var(--cream);
  border: 3px solid var(--beige-dark);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 4px 5px 0 var(--beige-mid);
  transition: transform .3s ease-in-out;
}
.flow-step:hover { transform: translateY(-4px) rotate(-0.4deg); }
.flow-step__num {
  width: 48px; height: 48px;
  background: var(--green-main);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 3px 0 var(--green-dark);
}
.flow-step__icon {
  width: 72px; height: 72px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-mist);
  border: 2px dashed var(--green-pale);
}
.flow-step__icon img { width: 100%; height: 100%; object-fit: cover; }
.flow-step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: .75rem;
  letter-spacing: .06em;
}
.flow-step__desc {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 2;
}

/* ================================================
   Instagram
   ================================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .7rem;
}
.insta-post {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--beige-dark);
  box-shadow: 3px 3px 0 var(--beige-mid);
  cursor: pointer;
  transition: transform .3s;
}
.insta-post:hover { transform: rotate(-1deg) scale(1.03); }
.insta-placeholder {
  width: 100%; height: 100%;
  background: var(--green-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* ================================================
   店舗一覧
   ================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.shop-grid--single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}
.shop-card {
  background: var(--cream);
  border: 3px solid var(--beige-dark);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem;
  box-shadow: 4px 5px 0 var(--beige-mid);
  transition: transform .3s ease-in-out;
  position: relative;
}
.shop-card:hover { transform: translateY(-4px) rotate(0.3deg); }
.shop-card__tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .68rem;
  padding: .2rem .75rem;
  border-radius: var(--radius-btn);
  margin-bottom: .75rem;
  border: 1.5px dashed var(--green-light);
  letter-spacing: .05em;
}
.shop-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: .75rem;
  letter-spacing: .06em;
}
.shop-card__addr  { font-size: .82rem; color: var(--text-mid); margin-bottom: .5rem; line-height: 1.8; }
.shop-card__tel   { font-family: var(--font-display); font-size: .9rem; color: var(--green-dark); margin-bottom: .4rem; }
.shop-card__hours { font-size: .76rem; color: var(--text-light); }

/* ================================================
   CTA
   ================================================ */
.cta-section {
  background: linear-gradient(150deg, var(--green-dark) 0%, #1e5035 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 2px dashed rgba(255,255,255,.12);
  pointer-events: none;
}
.cta-section__inner { text-align: center; position: relative; }
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  letter-spacing: .09em;
  text-shadow: 2px 3px 0 rgba(0,0,0,.08);
}
.cta-section__sub {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  line-height: 2.2;
  margin-bottom: 2.8rem;
}
.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.05rem 2.2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: .95rem;
  min-width: 195px;
  letter-spacing: .07em;
  position: relative; top: 0;
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.cta-btn:hover { top: 3px; }
.cta-btn--line { background: #06c755; color: #fff; box-shadow: 0 4px 0 #04a044; }
.cta-btn--line:hover { box-shadow: 0 1px 0 #04a044; }
.cta-btn--mail {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px dashed rgba(255,255,255,.5);
  box-shadow: 0 4px 0 rgba(0,0,0,.1);
}
.cta-btn--mail:hover { box-shadow: 0 1px 0 rgba(0,0,0,.1); }
.cta-btn--tel  {
  background: var(--cream);
  color: var(--green-dark);
  box-shadow: 0 4px 0 var(--beige-dark);
}
.cta-btn--tel:hover { box-shadow: 0 1px 0 var(--beige-dark); }
.cta-section__note { font-size: .78rem; color: rgba(255,255,255,.5); }

.cta-qr {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-qr__label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .05em;
}
.cta-qr__box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,.12);
  border: 2px dashed rgba(255,255,255,.35);
  border-radius: var(--radius-card);
  padding: 1.2rem 2rem;
}
.cta-qr__img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
}
.cta-qr__note {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  font-family: var(--font-body);
}
@media (max-width: 480px) {
  .cta-qr__box { flex-direction: column; text-align: center; padding: 1.2rem; }
}

/* ================================================
   フッター
   ================================================ */
.footer { background: #1a2e22; }

.footer__top {
  padding: 4.5rem 0 3rem;
  border-bottom: 2px dashed rgba(255,255,255,.1);
}
.footer__top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.footer__logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .07em;
}
.footer__logo-sub { font-size: .66rem; color: rgba(255,255,255,.4); letter-spacing: .1em; }
.footer__desc {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 2.2;
  margin-bottom: 1.3rem;
}
.footer__sns { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer__sns-btn {
  font-size: .72rem;
  padding: .4rem 1rem;
  border-radius: var(--radius-btn);
  border: 1.5px dashed rgba(255,255,255,.3);
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.footer__sns-btn:hover {
  background: var(--green-main);
  color: #fff;
  border-color: var(--green-main);
}

/* Instagram CTAボタン */
.footer__insta-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  padding: .8rem 1.3rem;
  border-radius: var(--radius-btn);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 22%, #dc2743 44%, #cc2366 72%, #bc1888 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(188, 24, 136, .35);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.footer__insta-cta:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(188, 24, 136, .45);
}
.footer__insta-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__nav-group h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}
.footer__nav-group ul li { margin-bottom: .6rem; }
.footer__nav-group ul li a {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  transition: color .25s;
}
.footer__nav-group ul li a:hover { color: #b7e4c7; }
.footer__contact-info h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}
.footer__tel {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.footer__hours { font-size: .76rem; color: rgba(255,255,255,.42); margin-bottom: 1rem; }
.footer__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-main);
  color: #fff;
  font-size: .83rem;
  padding: .8rem 1.25rem;
  border-radius: var(--radius-btn);
  letter-spacing: .06em;
  box-shadow: 0 3px 0 var(--green-dark);
  transition: all .2s;
  position: relative; top: 0;
}
.footer__contact-btn:hover { top: 2px; box-shadow: 0 1px 0 var(--green-dark); }
.footer__bottom { padding: 1.5rem 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__company { font-size: .76rem; color: rgba(255,255,255,.3); }
.footer__links   { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__links a {
  font-size: .73rem;
  color: rgba(255,255,255,.3);
  transition: color .2s;
}
.footer__links a:hover { color: rgba(255,255,255,.6); }
.footer__copy { font-size: .73rem; color: rgba(255,255,255,.22); }

/* ================================================
   レスポンシブ
   ================================================ */
@media (max-width: 1024px) {
  .point-grid { grid-template-columns: repeat(2, 1fr); }
  .point-grid .point-card:last-child { grid-column: auto; }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid  { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav, .header__right { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero__center { padding: 90px 1.2rem 1.5rem; }
  .hero__scroll { display: none; }

  .worry-grid   { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .ba-grid      { grid-template-columns: 1fr; }
  .point-grid   { grid-template-columns: 1fr; }
  .point-grid .point-card:last-child { grid-column: auto; }
  .voice-grid   { grid-template-columns: 1fr; }
  .flow-steps   { grid-template-columns: 1fr; }
  .shop-grid    { grid-template-columns: 1fr; }
  .insta-grid   { grid-template-columns: repeat(3, 1fr); }

  .footer__top-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .section { padding: 4rem 0; }
  .section__title { font-size: 1.75rem; }
  .worry-solution { padding: 2rem 1.5rem; }
  .cta-section__btns { flex-direction: column; align-items: stretch; }
  .cta-btn { min-width: unset; }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.55rem, 7.8vw, 1.95rem);
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  .hero__eyebrow {
    font-size: .78rem;
    padding: .3rem .85rem;
    max-width: 90%;
  }
  .hero__badges-top { gap: .4rem; }
  .hero__rank-badge { font-size: .62rem; }
  .hero__actions { flex-direction: column; }
  .hero__btn { width: 100%; justify-content: center; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: flex; }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: clamp(1.4rem, 7.5vw, 1.6rem);
    letter-spacing: 0;
  }
}

/* ================================================
   RYO: img ユーティリティクラス
   ================================================ */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ================================================
   KEN: FAQ誘導リンク
   ================================================ */
.faq-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--green-main);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.faq-link:hover { opacity: .75; }

/* ================================================
   MIA: Instagramバナー（絵文字グリッド廃止→横長バナー）
   ================================================ */
.insta-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #f09433 0%, #e6683c 20%, #dc2743 40%, #cc2366 70%, #bc1888 100%);
  color: #fff;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(188,24,136,.3);
}
.insta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(188,24,136,.4);
}
.insta-banner__icon svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  stroke: #fff;
}
.insta-banner__text { flex: 1; }
.insta-banner__label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .3rem;
}
.insta-banner__handle {
  font-size: .9rem;
  font-weight: 700;
  opacity: .9;
  margin-bottom: .4rem;
}
.insta-banner__sub {
  font-size: .78rem;
  opacity: .85;
  line-height: 1.6;
}
.insta-banner__arrow {
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: transform .2s;
}
.insta-banner:hover .insta-banner__arrow { transform: translateX(5px); }

@media (max-width: 600px) {
  .insta-banner { flex-direction: column; text-align: center; padding: 1.8rem 1.5rem; gap: 1rem; }
  .insta-banner__arrow { display: none; }
  .insta-banner__icon svg { width: 40px; height: 40px; }
}

/* ================================================
   MIA: スマホ固定LINE CTAボタン
   ================================================ */
.sticky-cta {
  display: none; /* デスクトップでは非表示 */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 -3px 16px rgba(0,0,0,.15);
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem .5rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  letter-spacing: .04em;
}
.sticky-cta__btn--line {
  background: #06c755;
}
.sticky-cta__btn--tel {
  background: var(--green-dark);
}
.sticky-cta__btn:active {
  opacity: .85;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  /* フッターと被らないよう本文の下にパディング */
  body { padding-bottom: 60px; }
}

/* ================================================
   ESTIMATE SIMULATION BUTTON (hero & nav)
   ================================================ */
.hero__btn--sim {
  background: rgba(255,255,255,.92);
  color: var(--green-dark);
  font-weight: 700;
  border: none;
}
.hero__btn--sim:hover { background: #fff; transform: translateY(-2px); }

.header__nav-sim {
  background: var(--yellow) !important;
  color: #5a3e00 !important;
  font-weight: 700 !important;
  padding: .3rem .8rem !important;
  border-radius: 100px !important;
  font-size: .8rem !important;
}
.header__nav-sim:hover { opacity: .85; }

/* シミュレーションボタン（ヘッダー用） */
.btn-sim {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem 1rem;
  background: var(--yellow);
  color: #5a3e00;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-sim:hover { opacity: .85; }
/* 透明ヘッダー上では少し暗く */
.header--over-hero .btn-sim { background: rgba(255,255,255,.9); color: var(--green-dark); }

/* ================================================
   天然芝 vs 人工芝 比較表
   ================================================ */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
}
.compare-table thead tr {
  background: var(--green-dark);
  color: #fff;
}
.compare-table th {
  padding: 1rem 1.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .04em;
}
.compare-table__label { text-align: left; width: 28%; }
.compare-table__nat   { background: rgba(255,255,255,.15); }
.compare-table__art   { background: var(--green-main); }
.compare-table tbody tr { border-bottom: 1px solid #e8ede8; }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody td {
  padding: .85rem 1.2rem;
  vertical-align: middle;
  line-height: 1.6;
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  background: #fafaf7;
}
.compare-table tbody .ok  { color: #1e7e34; background: #f0faf2; }
.compare-table tbody .ng  { color: #8b3a3a; background: #fff5f5; }
.compare-table tbody .mid { color: #7a5c00; background: #fffbf0; }

/* どちらが向いているか */
.compare-fit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compare-fit {
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
}
.compare-fit--nat {
  background: #f4f8f0;
  border: 2px solid #b8d4a0;
}
.compare-fit--art {
  background: #f0f9f4;
  border: 2px solid var(--green-main);
}
.compare-fit__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .8rem;
}
.compare-fit__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.compare-fit__list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: .88rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.compare-fit__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-size: .8rem;
}
@media (max-width: 640px) {
  .compare-fit-wrap { grid-template-columns: 1fr; }
  .compare-table { font-size: .8rem; }
  .compare-table th, .compare-table tbody td { padding: .65rem .8rem; }
}

/* ================================================
   FAQ アコーディオン
   ================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background .2s;
}
.faq-q:hover { background: #f5f9f5; }
.faq-q[aria-expanded="true"] { background: #f0f9f4; }
.faq-q__badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-main);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-q__text { flex: 1; }
.faq-q__arrow {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
  transition: transform .3s;
}
.faq-q__arrow::before,
.faq-q__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px; height: 2px;
  background: var(--green-main);
  border-radius: 2px;
}
.faq-q__arrow::before { left: 1px;  transform: translateY(-50%) rotate(45deg); }
.faq-q__arrow::after  { right: 1px; transform: translateY(-50%) rotate(-45deg); }
.faq-q[aria-expanded="true"] .faq-q__arrow::before { transform: translateY(-50%) rotate(-45deg); }
.faq-q[aria-expanded="true"] .faq-q__arrow::after  { transform: translateY(-50%) rotate(45deg); }

.faq-a {
  display: flex;
  gap: 1rem;
  padding: 0 1.4rem 1.2rem 1.4rem;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--text-dark);
  line-height: 1.8;
  border-top: 1px solid #e8ede8;
  /* アニメーション用 */
  overflow: hidden;
}
.faq-a__badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: #5a3e00;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
}
.faq-a > div { padding-top: 1.2rem; flex: 1; }
@media (max-width: 640px) {
  .faq-q { font-size: .88rem; padding: 1rem 1.1rem; gap: .7rem; }
  .faq-a { font-size: .83rem; padding: 0 1.1rem 1rem; }
}

/* ================================================
   DIY vs プロ施工 比較
   ================================================ */
.diy-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  margin-bottom: 3rem;
}
.diy-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: .9rem;
  background: #fff;
}
.diy-table thead tr { background: var(--green-dark); }
.diy-table th {
  padding: 1rem 1.2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: .03em;
}
.diy-table th small { font-size: .75rem; font-weight: 400; opacity: .85; }
.diy-table__label { text-align: left; width: 26%; background: rgba(0,0,0,.15); }
.diy-table__diy  { background: rgba(200,60,40,.20); }
.diy-table__pro  { background: rgba(60,160,80,.20); }
.diy-table tbody tr { border-bottom: 1px solid #e8ede8; }
.diy-table tbody tr:last-child { border-bottom: none; }
.diy-table tbody td {
  padding: .85rem 1.2rem;
  vertical-align: middle;
  line-height: 1.65;
  text-align: center;
}
.diy-table tbody td:first-child {
  text-align: left;
  background: #fafaf7;
  color: var(--text-dark);
}
.diy-ng   { background: #fff4f4; color: #8b2020; }
.diy-ok   { background: #f0faf2; color: #1a6e2e; font-weight: 500; }
.diy-mid  { background: #fffbf0; color: #7a5c00; }

/* 10年コスト比較 */
.diy-cost-wrap {
  background: var(--beige);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.diy-cost__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
.diy-cost-bars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.diy-cost-item { display: flex; align-items: flex-start; gap: 1rem; }
.diy-cost-item__label {
  flex-shrink: 0;
  width: 110px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  padding-top: .35rem;
}
.diy-cost-item__bars { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.diy-bar {
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 .8rem;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  width: var(--w, 100%);
  min-width: 120px;
}
.diy-bar--diy     { background: #c8463a; }
.diy-bar--diy.diy-bar--sub { background: #e07060; opacity: .85; }
.diy-bar--pro     { background: var(--green-main); }
.diy-cost-item__total {
  flex-shrink: 0;
  width: 160px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  padding-top: .4rem;
  line-height: 1.4;
}
.diy-cost-item__total--diy { color: #c8463a; }
.diy-cost-item__total--pro { color: var(--green-dark); }
.diy-cost__note {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* DIY 体験談 */
.diy-voice {
  background: #fff;
  border-left: 4px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0;
}
.diy-voice__text {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  line-height: 1.85;
  font-style: italic;
}
.diy-voice__author {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .5rem;
  text-align: right;
}

@media (max-width: 700px) {
  .diy-table { font-size: .78rem; }
  .diy-table th, .diy-table tbody td { padding: .6rem .8rem; }
  .diy-cost-wrap { padding: 1.5rem 1.2rem; }
  .diy-cost-item { flex-wrap: wrap; }
  .diy-cost-item__label { width: auto; }
  .diy-cost-item__total { width: auto; }
}

/* ================================================
   対応エリアページ (area.html)
   ================================================ */

/* パンくずリスト */
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: .4rem; align-items: center;
  font-size: .8rem; color: var(--text-light);
}
.breadcrumb__list li + li::before { content: '›'; margin-right: .4rem; }
.breadcrumb__list a { color: var(--green-main); text-decoration: none; }
.breadcrumb__list a:hover { text-decoration: underline; }

/* ページヒーロー */
.page-hero {
  background: var(--green-dark);
  color: #fff;
  padding: 7rem 0 3.5rem;
  text-align: center;
}
.page-hero .section__label { color: rgba(255,255,255,.6); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: .5rem 0 1rem;
  color: #fff;
}
.page-hero__sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.8);
  line-height: 1.8;
}

/* エリアバッジ群 */
.area-badges {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.area-badge {
  flex: 1; min-width: 280px;
  border-radius: 12px; padding: 1.5rem;
}
.area-badge--main { background: var(--green-dark); color: #fff; }
.area-badge--sub  { background: #fff; border: 2px solid var(--green-main); }
.area-badge__label {
  display: block; font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; margin-bottom: .8rem;
}
.area-badge--main .area-badge__label { color: var(--yellow); }
.area-badge--sub  .area-badge__label { color: var(--green-main); }
.area-badge__cities {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.area-badge__cities span {
  background: rgba(255,255,255,.15);
  border-radius: 20px; padding: .3rem .85rem;
  font-size: .9rem; font-weight: 500;
}
.area-badge--sub .area-badge__cities span {
  background: var(--cream);
  color: var(--text-main);
}
.area-note {
  font-size: .82rem; color: var(--text-light);
  text-align: center; margin-top: .5rem;
}

/* エリアカードグリッド */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.area-card {
  background: #fff; border-radius: 14px;
  padding: 1.6rem; border: 1px solid #e8ede9;
  display: flex; flex-direction: column; gap: .75rem;
  transition: box-shadow .25s, transform .25s;
}
.area-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.area-card__head {
  display: flex; align-items: flex-start; gap: .75rem;
}
.area-card__icon { font-size: 1.4rem; line-height: 1; }
.area-card__city {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--green-dark); margin: 0 0 .2rem;
}
.area-card__kw {
  font-size: .72rem; color: var(--text-light);
  margin: 0;
}
.area-card__desc {
  font-size: .88rem; line-height: 1.8;
  color: var(--text-mid); margin: 0;
}
.area-card__tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.area-card__tags span {
  background: var(--cream); color: var(--green-dark);
  border-radius: 20px; padding: .2rem .7rem;
  font-size: .75rem;
}
.area-card__cta {
  margin-top: auto;
  font-size: .85rem; font-weight: 700;
  color: var(--green-main); text-decoration: none;
}
.area-card__cta:hover { text-decoration: underline; }

/* その他エリア */
.area-wide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.area-wide-card {
  background: var(--cream); border-radius: 12px; padding: 1.4rem;
  border-left: 4px solid var(--green-main);
}
.area-wide-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--green-dark); margin: 0 0 .5rem;
}
.area-wide-card p {
  font-size: .85rem; color: var(--text-mid);
  line-height: 1.7; margin: 0;
}

/* エリア相談ボックス */
.area-consult-box {
  background: var(--green-dark); color: #fff;
  border-radius: 16px; padding: 2rem;
  text-align: center; display: flex;
  flex-direction: column; align-items: center; gap: 1.25rem;
}
.area-consult-box__text {
  font-size: .95rem; line-height: 1.9; margin: 0;
}

@media (max-width: 640px) {
  .area-badges { flex-direction: column; }
  .area-grid { grid-template-columns: 1fr; }
  .area-wide-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 6rem 0 2.5rem; }
}
