/* =========================================================
   ヘルシーライフ コーポレートサイト 共通スタイル
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  --bg: #FAF6EF;
  --bg-alt: #F3EFE6;

  --green: #3B6B52;
  --green-dark: #2E5641;
  --green-tint: #EAF1E5;
  --green-tint2: #DCEAD3;

  --amber: #D98A2B;
  --amber-text: #C67E22;
  --amber-tint: #FBEACB;
  --amber-tint2: #F6DBA6;

  --ink: #33302B;
  --ink-sub: #5A554A;
  --ink-muted: #8A8375;

  --border: #EAE1D2;
  --border2: #EEE6D8;

  --footer-bg: #26332B;
  --footer-text: #C9D3C6;
  --footer-text-dim: #7E8C79;

  /* デフォルトテーマ = 家事サポート（緑） */
  --theme: var(--green);
  --theme-dark: var(--green-dark);
  --theme-tint: var(--green-tint);
  --theme-tint2: var(--green-tint2);
  --theme-shadow: rgba(59, 107, 82, .12);
}

/* サービス別テーマカラー */
body.theme-amber {
  --theme: #D98A2B;
  --theme-dark: #8A5410;
  --theme-tint: #FBEACB;
  --theme-tint2: #F6DBA6;
  --theme-shadow: rgba(228, 162, 60, .14);
}
body.theme-teal {
  --theme: #2F6E78;
  --theme-dark: #245861;
  --theme-tint: #DDECEE;
  --theme-tint2: #C4DFE3;
  --theme-shadow: rgba(47, 110, 120, .14);
}

/* ---------- リセット / ベース ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 19px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul, table { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; }
a { color: var(--theme); text-decoration: none; }
a:hover { color: var(--theme-dark); }
button { font-family: inherit; }

.serif { font-family: 'Noto Serif JP', serif; }

/* ---------- レイアウト共通 ---------- */
.container       { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-1080  { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.container-1120  { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.container-1000  { max-width: 1000px; margin: 0 auto; padding: 0 28px; }
.container-900   { max-width: 900px;  margin: 0 auto; padding: 0 28px; }
.container-840   { max-width: 840px;  margin: 0 auto; padding: 0 28px; }
.container-820   { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.container-720   { max-width: 720px;  margin: 0 auto; padding: 0 28px; }

.section       { padding: 90px 0; }
.section-tight { padding: 88px 0 40px; }
.section-alt   { background: var(--bg-alt); }
.section-white { background: #fff; }

.section-head        { text-align: center; margin-bottom: 52px; }
.section-head.tight   { margin-bottom: 44px; }
.section-label {
  font-size: 16px;
  letter-spacing: .2em;
  color: var(--amber);
  font-weight: 700;
  margin: 0 0 12px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--theme-dark);
  margin: 0;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-sub);
  margin: 10px 0 0;
}

/* ---------- グリッド ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: var(--theme);
  box-shadow: 0 8px 22px var(--theme-shadow);
}
.btn-primary:hover { color: #fff; background: var(--theme-dark); }
.btn-secondary {
  color: var(--theme);
  background: #fff;
  border: 2px solid #CFDDC6;
}
.btn-secondary:hover { color: var(--theme-dark); }
.btn-onlight {
  color: var(--theme-dark);
  background: #fff;
}
.btn-onlight:hover { color: var(--theme-dark); opacity: .9; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text .ja {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--green-dark);
  letter-spacing: .02em;
}
.logo-text .en { font-size: 12px; color: var(--ink-muted); letter-spacing: .14em; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #4A463D;
  border-radius: 10px;
  white-space: nowrap;
}
.nav a:hover { background: rgba(0,0,0,.04); }
.nav .nav-cta {
  margin-left: 8px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  background: var(--theme);
  border-radius: 999px;
}
.nav .nav-cta:hover { background: var(--theme-dark); }

/* ---------- ヒーロー（トップページ） ---------- */
.hero { position: relative; overflow: hidden; }
.hero-float {
  position: absolute;
  border-radius: 50%;
}
.hero-float.a {
  top: -120px; right: -100px; width: 420px; height: 420px;
  background: radial-gradient(circle at 40% 40%, #FBE9C8, #F6DCA6);
  opacity: .7;
  animation: hlfloat 9s ease-in-out infinite;
}
.hero-float.b {
  bottom: -140px; left: -80px; width: 320px; height: 320px;
  background: #E8EFE4;
  opacity: .7;
}
@keyframes hlfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-grid {
  position: relative;
  padding: 80px 0 96px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.45;
  margin: 24px 0 20px;
  color: var(--green-dark);
  letter-spacing: .01em;
}
.hero h1 .accent { color: var(--amber); }
.hero-lead {
  font-size: 21px;
  line-height: 2;
  color: var(--ink-sub);
  margin: 0 0 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tel {
  margin: 28px 0 0;
  font-size: 16px;
  color: var(--ink-muted);
}
.hero-tel .num {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--green-dark);
  vertical-align: middle;
}
.hero-art { display: flex; justify-content: center; }

/* ---------- サービス下層ページ ヒーロー ---------- */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--theme-tint), var(--theme-tint2));
}
.svc-hero-float {
  position: absolute;
  top: -100px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}
.breadcrumb {
  position: relative;
  padding: 32px 0 0;
  font-size: 15px;
  color: var(--theme-dark);
}
.breadcrumb a { color: var(--theme-dark); }
.svc-hero-grid {
  position: relative;
  padding: 44px 0 72px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.svc-badge {
  display: inline-block;
  background: #fff;
  color: var(--theme-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 999px;
}
.svc-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  margin: 22px 0 18px;
  color: var(--theme-dark);
}
.svc-hero-lead {
  font-size: 21px;
  line-height: 2;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 520px;
}

/* ---------- 3ポイント（トップ） ---------- */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.point-item { display: flex; gap: 18px; align-items: flex-start; }
.point-no {
  flex: 0 0 auto;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700; font-size: 22px;
  color: var(--green);
}
.point-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px; margin: 2px 0 8px; color: var(--green-dark);
}
.point-item p { font-size: 17px; color: var(--ink-sub); line-height: 1.85; }

/* ---------- アイコンカード ---------- */
.icon-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.icon-card .icon-chip {
  display: inline-flex;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--theme-tint);
  align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px; color: var(--theme-dark); margin: 0 0 10px;
}
.icon-card p { font-size: 16px; color: var(--ink-sub); line-height: 1.85; }

/* ---------- 丸番号カード（安心の理由 / ご利用の流れ） ---------- */
.reason-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}
.reason-no {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--theme-tint);
  font-family: 'Noto Serif JP', serif;
  font-weight: 700; font-size: 26px;
  color: var(--theme);
  margin-bottom: 18px;
}
.reason-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px; color: var(--theme-dark); margin: 0 0 12px;
}
.reason-card p { font-size: 16px; color: var(--ink-sub); line-height: 1.85; }

.step-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
}
.step-no {
  display: inline-flex;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--theme);
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700; font-size: 22px;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; color: var(--theme-dark); margin: 0 0 8px;
}
.step-card p { font-size: 15px; color: var(--ink-sub); line-height: 1.75; }

/* トップページ用（少し大きめ） */
.step-card.lg { padding: 32px 24px; }
.step-card.lg .step-no { width: 56px; height: 56px; font-size: 24px; margin-bottom: 18px; background: var(--green); }
.step-card.lg h3 { font-size: 20px; color: var(--green-dark); }
.step-card.lg p { font-size: 16px; }

/* ---------- 料金ハイライトバッジ ---------- */
.price-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin-bottom: 36px;
}
.price-badge {
  border-radius: 18px;
  padding: 22px 34px;
  text-align: center;
}
.price-badge.main { background: var(--theme-dark); color: #fff; }
.price-badge .num-row {
  display: flex; align-items: flex-end; justify-content: center; gap: 5px;
}
.price-badge .num {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700; font-size: 38px; line-height: 1;
}
.price-badge .label-top { font-size: 15px; margin: 0 0 4px; opacity: .85; }
.price-badge .label-bottom { font-size: 13px; margin: 6px 0 0; opacity: .75; }
.price-badge.sub { display: flex; flex-direction: column; justify-content: center; }
.price-badge.sub p { font-size: 16px; font-weight: 700; margin: 0; }
.price-badge.sub.tint-green { background: var(--green-tint2); color: var(--green-dark); }
.price-badge.sub.tint-amber { background: var(--amber-tint); color: #8A5410; }

/* ---------- 料金表 ---------- */
.price-table {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px var(--theme-shadow);
}
.price-table-head {
  display: grid; grid-template-columns: 1.6fr 1fr .9fr;
  background: var(--theme-dark); color: #fff;
  font-size: 15px; font-weight: 700;
}
.price-table-head span:nth-child(1) { padding: 16px 26px; }
.price-table-head span:nth-child(2) { padding: 16px 12px; text-align: right; }
.price-table-head span:nth-child(3) { padding: 16px 26px 16px 12px; text-align: right; }
.price-row {
  display: grid; grid-template-columns: 1.6fr 1fr .9fr;
  align-items: center;
  border-top: 1px solid var(--border2);
}
.price-row .item-cell { padding: 18px 26px; }
.price-row .item-cell .name { font-size: 18px; font-weight: 500; color: var(--ink); display: block; }
.price-row .item-cell .note { font-size: 14px; color: var(--ink-muted); }
.price-row .price-cell {
  padding: 18px 12px; text-align: right;
  font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 20px;
  color: var(--theme);
}
.price-row .time-cell { padding: 18px 26px 18px 12px; text-align: right; font-size: 15px; color: var(--ink-sub); }
.price-note { font-size: 14px; color: var(--ink-muted); margin: 18px 4px 0; line-height: 1.8; }

/* ---------- iPhone機種別料金表 ---------- */
.iphone-price-table {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px var(--theme-shadow);
}
.iphone-price-scroll { overflow-x: auto; }
.iphone-price-head, .iphone-price-row {
  display: grid;
  grid-template-columns: 1.6fr .9fr 1fr .9fr;
  min-width: 620px;
}
.iphone-price-head {
  background: var(--theme-dark); color: #fff;
  font-size: 14px; font-weight: 700;
}
.iphone-price-head span { padding: 14px 16px; text-align: right; }
.iphone-price-head span:first-child { text-align: left; }
.iphone-price-row {
  border-top: 1px solid var(--border2);
  font-size: 15px;
}
.iphone-price-row:nth-child(even) { background: var(--theme-tint); }
.iphone-price-row span { padding: 13px 16px; text-align: right; color: var(--ink-sub); }
.iphone-price-row span.model { text-align: left; font-weight: 500; color: var(--ink); }

/* トップページ：3サービスの料金カード */
.price-card {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  border-top: 6px solid var(--card-color, var(--green));
}
.price-card h3 { font-family: 'Noto Serif JP', serif; font-size: 24px; color: var(--green-dark); margin: 0 0 6px; }
.price-card .note { font-size: 16px; color: var(--ink-muted); margin: 0 0 22px; }
.price-card .num-row { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 8px; }
.price-card .num-row .unit { font-size: 16px; color: var(--ink-sub); }
.price-card .num-row .num {
  font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 44px; line-height: 1;
  color: var(--card-color, var(--green));
}
.price-card .num-row .yen { font-size: 18px; color: var(--ink-sub); margin-bottom: 4px; }
.price-card .sub { font-size: 15px; color: var(--ink-muted); margin: 0 0 24px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; gap: 11px; font-size: 16px; color: #4A463D; }
.price-card li .dot { color: var(--card-color, var(--green)); font-weight: 700; }

/* ---------- サービスカード（トップページ 3サービス） ---------- */
.service-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  display: flex; flex-direction: column;
}
.service-card-head {
  padding: 32px 34px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.service-card-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.service-card-head .label {
  font-size: 14px; font-weight: 700; letter-spacing: .08em;
}
.service-card-head h3 {
  font-family: 'Noto Serif JP', serif; font-size: 24px; line-height: 1.4; margin: 4px 0 0;
}
.service-card-body { padding: 34px 40px 40px; display: flex; flex-direction: column; flex: 1; }
.service-card-body > p { font-size: 18px; line-height: 1.95; color: var(--ink-sub); margin: 0 0 24px; }
.service-card-body ul { display: flex; flex-direction: column; gap: 12px; margin: 0 0 28px; }
.service-card-body li { display: flex; align-items: center; gap: 12px; font-size: 17px; color: #4A463D; }
.check-dot {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.service-card-body .btn { margin-top: auto; align-self: flex-start; padding: 15px 30px; font-size: 17px; color: #fff; border-radius: 999px; }

/* ---------- お客様の声 ---------- */
.voice-card {
  background: #fff; border-radius: 22px; padding: 34px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  display: flex; flex-direction: column; gap: 18px;
}
.voice-quote {
  font-family: 'Noto Serif JP', serif; font-size: 56px; color: var(--green-tint2);
  line-height: .6; height: 26px;
}
.voice-card p.text { font-size: 17px; line-height: 1.95; color: #4A463D; flex: 1; }
.voice-person {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border2); padding-top: 18px;
}
.voice-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 18px;
}
.voice-person .name { font-size: 15px; color: var(--ink-sub); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border-radius: 16px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq-question .q-left { display: flex; align-items: center; gap: 16px; }
.faq-question .q-mark {
  font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 22px; color: var(--amber);
}
.faq-question .q-text { font-size: 18px; font-weight: 500; color: var(--theme-dark); }
.faq-question .chevron { flex: 0 0 auto; transition: transform .3s; }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { margin: 0; padding: 0 28px 26px 66px; font-size: 17px; line-height: 1.9; color: var(--ink-sub); }

/* ---------- アクセス ---------- */
.access-table { background: #fff; border-radius: 22px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.access-table table { width: 100%; border-collapse: collapse; font-size: 17px; }
.access-table tr { border-bottom: 1px solid var(--border2); }
.access-table th { text-align: left; vertical-align: top; padding: 16px 0; width: 120px; color: var(--ink-muted); font-weight: 500; }
.access-table td { padding: 16px 0; color: var(--ink); line-height: 1.8; }
.access-map {
  border-radius: 22px; overflow: hidden; min-height: 340px; position: relative;
  background: var(--green-tint); box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.access-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.access-map .map-label {
  position: absolute; left: 20px; bottom: 20px; background: #fff;
  padding: 12px 20px; border-radius: 12px; font-size: 15px; color: var(--green-dark);
  font-weight: 700; box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

/* ---------- お問い合わせ（トップ） ---------- */
.contact-section { background: var(--green-dark); position: relative; overflow: hidden; }
.contact-float { position: absolute; top: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(228,162,60,.18); }
.contact-inner { position: relative; padding: 88px 0; }
.contact-head { text-align: center; margin-bottom: 44px; }
.contact-head .label { color: var(--amber-tint2); font-size: 16px; letter-spacing: .2em; font-weight: 700; margin: 0 0 12px; }
.contact-head h2 { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 36px; color: #fff; margin: 0 0 14px; }
.contact-head p { font-size: 18px; color: #CFDDC6; line-height: 1.9; }
.contact-phone {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.1); border-radius: 999px; padding: 14px 30px;
}
.contact-phone .num { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 30px; color: #fff; }
.contact-phone .hours { font-size: 15px; color: #CFDDC6; }

.contact-form { background: #fff; border-radius: 24px; padding: 44px; }
.form-field { display: flex; flex-direction: column; gap: 8px; font-size: 16px; font-weight: 700; color: var(--green-dark); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 18px; padding: 15px 18px;
  border: 2px solid #DCE3D6; border-radius: 12px; outline: none; background: #fff;
}
.form-field textarea { resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-stack { display: flex; flex-direction: column; gap: 22px; }
.form-submit {
  margin-top: 6px; padding: 18px; font-size: 20px; font-weight: 700; color: #fff;
  background: var(--amber); border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 8px 22px rgba(217,138,43,.32);
}
.form-sent { text-align: center; padding: 30px 0; }
.form-sent .check-circle {
  display: inline-flex; width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-tint); align-items: center; justify-content: center; margin-bottom: 20px;
}
.form-sent h3 { font-family: 'Noto Serif JP', serif; font-size: 26px; color: var(--green-dark); margin: 0 0 10px; }
.form-sent p { font-size: 17px; color: var(--ink-sub); }
.form-hidden { display: none; }

/* ---------- CTA（下層ページ） ---------- */
.cta-section { background: var(--theme-dark); }
.cta-inner { padding: 80px 0; text-align: center; }
.cta-inner h2 { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 32px; color: #fff; margin: 0 0 16px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,.85); margin: 0 0 30px; line-height: 1.9; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 30px;
  border: 2px solid rgba(255,255,255,.35); border-radius: 999px; color: #fff;
  font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 24px;
}

/* ---------- 出張修理専用 追加セクション ---------- */
.device-card { background: #fff; border: 1px solid var(--border2); border-radius: 20px; padding: 32px; }
.device-card h3 { font-family: 'Noto Serif JP', serif; font-size: 21px; color: var(--theme-dark); margin: 0 0 16px; }
.device-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.device-tags span { font-size: 14px; color: var(--theme-dark); background: var(--theme-tint); padding: 6px 14px; border-radius: 999px; }

.warranty-card { background: #fff; border-radius: 20px; padding: 30px 26px; text-align: center; }
.warranty-card .icon-chip { width: 56px; height: 56px; margin-bottom: 16px; }
.warranty-card h3 { font-family: 'Noto Serif JP', serif; font-size: 19px; color: var(--theme-dark); margin: 0 0 8px; }
.warranty-card p { font-size: 15px; color: var(--ink-sub); line-height: 1.8; }

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags span {
  font-size: 16px; color: var(--theme-dark); font-weight: 500;
  background: var(--green-tint); padding: 9px 18px; border-radius: 12px;
}
.area-hours {
  margin-top: 26px; display: flex; align-items: center; gap: 14px;
  background: var(--amber-tint); border-radius: 14px; padding: 16px 22px;
}
.area-hours span.txt { font-size: 16px; color: #8A5410; font-weight: 700; }

/* ---------- 理念セクション ---------- */
.about-section { text-align: center; }
.about-lead { font-size: 20px; line-height: 2.1; color: var(--ink-sub); margin: 0 auto; max-width: 720px; }
.about-title { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 38px; line-height: 1.6; color: var(--green-dark); margin: 0 0 32px; }

/* ---------- フッター ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.footer-top {
  padding: 56px 0; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.footer-brand .name { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 20px; color: #fff; }
.footer-tagline { font-size: 15px; color: #9DAB98; line-height: 1.8; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col-title { font-size: 14px; color: var(--footer-text-dim); font-weight: 700; letter-spacing: .1em; margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #34433A; }
.footer-bottom p { padding: 22px 0; font-size: 13px; color: var(--footer-text-dim); }

/* 下層ページ用のシンプルフッター */
.footer-simple .container {
  padding: 44px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-simple .name { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 19px; color: #fff; }
.footer-simple .copy { font-size: 13px; color: var(--footer-text-dim); }

/* ---------- スクロールイン演出 ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].in { opacity: 1; transform: none; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1000px) {
  .hero-grid, .svc-hero-grid { grid-template-columns: 1fr !important; }
  .hero-art, .svc-hero .hero-art { display: none !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr !important; }
  .nav { flex-wrap: wrap; justify-content: flex-end; row-gap: 4px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 40px; }
  .svc-hero h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .section { padding: 64px 0; }
  .contact-inner { padding: 64px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cols { gap: 32px; }
}
