/*
Theme Name: Leaf Theme
*/
/* ==============================
   Leaf株式会社 — Premium Style v3
   ============================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a1a1a;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== カラー変数 ===== */
:root {
  --forest:      #0d4a2a;
  --green:       #1e7a45;
  --green-pale:  #f0f7f3;
  --gold:        #c9a227;
  --gold-light:  #e8c75a;
  --gold-pale:   #fdf8ec;
  --ivory:       #faf8f4;
  --navy:        #0f172a;   /* ヒーロー用ネイビー */
  --navy-mid:    #1e2d47;
  --charcoal:    #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --border:      #e4e0d8;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.15);
}

/* ===== ユーティリティ ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-alt { background: var(--ivory); }

.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--forest);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-title.light { color: #fff; }
.section-title .accent { color: var(--gold); }
.title-rule {
  width: 44px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 18px auto 44px;
}
.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-top: -28px;
}
.section-sub.light { color: rgba(255,255,255,0.7); }

/* ===== トップバー ===== */
.topbar {
  background: var(--forest);
  color: rgba(255,255,255,0.78);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); font-weight: 700; }
.topbar-sep { opacity: 0.35; }

/* ===== ヘッダー ===== */
#header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 66px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mascot { width: 44px; height: 44px; object-fit: contain; }
.logo-name { display: block; font-size: 1.05rem; font-weight: 900; color: var(--forest); }
.logo-sub { display: block; font-size: 0.58rem; color: var(--text-light); white-space: nowrap; }
.header-nav { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.header-right { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.header-nav a {
  font-size: 0.8rem; font-weight: 600; color: var(--text-mid);
  padding: 7px 11px; border-radius: 6px; white-space: nowrap; transition: all 0.2s;
}
.header-nav a:hover { color: var(--green); background: var(--green-pale); }
.header-tel-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--forest); color: #fff;
  padding: 9px 20px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
  transition: background 0.25s;
}
.header-tel-btn:hover { background: var(--green); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none; flex-shrink: 0;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--forest); display: block; }

/* モバイルナビ */
.mobile-nav {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow); z-index: 99; padding: 16px 24px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 0; font-size: 0.92rem; font-weight: 600;
  border-bottom: 1px solid var(--border); color: var(--charcoal);
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav a i { color: var(--green); width: 16px; }
.mobile-nav-cta { color: var(--green) !important; font-weight: 700 !important; border-bottom: none !important; padding-top: 16px !important; }

/* ===== ヒーロー ===== */
#hero {
  background: #07080f;
  color: #fff;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: 'LEAF';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(14rem, 22vw, 22rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 45%, rgba(30,122,69,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 10% 80%, rgba(201,162,39,0.07) 0%, transparent 55%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ヒーロー内レイアウト */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 120px;
}

/* ===== ヒーロー左 ===== */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
  position: relative;
}
.hero-title em::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 10px;
}

.hero-service-tags {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-desc {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  line-height: 2;
  margin-bottom: 28px;
}

/* チェックリスト */
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 34px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.88);
}
.hero-checklist li i {
  color: var(--gold-light);
  font-size: 0.78rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* CTAボタン */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest);
  padding: 14px 28px; border-radius: 4px;
  font-weight: 900; font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.30);
}
.btn-gold small { display: block; font-size: 0.66rem; font-weight: 500; color: rgba(13,74,42,0.75); }
.btn-gold strong { display: block; font-size: 1.05rem; line-height: 1.1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.45); }
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  background: #06c755; color: #fff;
  padding: 14px 24px; border-radius: 4px;
  font-weight: 700; font-size: 0.92rem;
  transition: all 0.3s;
}
.btn-line i { font-size: 1.2rem; }
.btn-line:hover { background: #04a845; transform: translateY(-2px); }

.hero-note {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

/* ===== ヒーロー右 ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* 料金カード */
.hero-card-main {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 14px;
  padding: 28px 28px 24px;
  backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 0 40px rgba(201,162,39,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-card-tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.hero-card-service {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.hero-card-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 2px;
}
.hero-card-price span { font-size: 2rem; }
.hero-card-price em { font-style: normal; font-size: 1rem; }
.hero-card-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 16px;
}
.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

/* マスコット */
.hero-mascot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-bubble {
  background: #fff;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  position: relative;
}
.hero-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
  border-bottom: none;
}
.hero-mascot {
  width: 130px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 波形 */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ===== 実績バー ===== */
#numbers {
  background: var(--gold-pale);
  border-top: 1px solid #e8ddb8;
  border-bottom: 1px solid #e8ddb8;
  padding: 44px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.number-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid #e0d5aa;
}
.number-item:last-child { border-right: none; }
.number-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}
.number-unit { font-size: 1rem; font-weight: 700; color: var(--gold); }
/* ¥0専用 */
.number-zero {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.number-val-sub {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}
.number-label {
  font-size: 0.73rem;
  color: var(--text-mid);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ===== 信頼バッジ ===== */
.trust-bar { background: var(--forest); padding: 16px 0; }
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.trust-item i { color: var(--gold-light); font-size: 0.9rem; }

/* ===== サービス ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-top {
  position: relative;
  padding: 30px 28px 24px;
  color: #fff;
  text-align: center;
}
.service-card-top.green { background: linear-gradient(135deg, var(--forest) 0%, var(--green) 100%); }
.service-card-top.dark  { background: linear-gradient(135deg, #0a2e1a 0%, var(--forest) 100%); }
.service-card-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}
.service-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  background: rgba(255,255,255,0.1);
}
.service-card-top h3 { font-size: 1.22rem; font-weight: 900; margin-bottom: 6px; }
.service-card-top p  { font-size: 0.78rem; opacity: 0.82; white-space: nowrap; }
.service-card-body { padding: 24px 28px 28px; }
.service-list { margin-bottom: 18px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; padding: 9px 0;
  border-bottom: 1px solid var(--border); color: var(--text-mid);
}
.service-list li:last-child { border-bottom: none; }
.service-list li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; font-size: 0.65rem; }
.service-list li strong { color: var(--charcoal); }
.service-price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gold-pale); border: 1px solid #e8ddb8;
  border-radius: 4px; padding: 12px 18px; margin-bottom: 16px;
}
.service-price-row p { font-size: 0.76rem; color: var(--text-mid); }
.service-price-row strong { font-size: 1.4rem; color: var(--forest); font-weight: 900; }
.btn-service {
  display: block; text-align: center;
  border: 1.5px solid var(--forest); color: var(--forest);
  padding: 11px; border-radius: 4px;
  font-size: 0.84rem; font-weight: 700; letter-spacing: 0.04em;
  transition: all 0.25s;
}
.btn-service:hover { background: var(--forest); color: #fff; }

/* ===== 強み ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
}
.feature-card { background: #fff; padding: 30px 24px; transition: background 0.3s; }
.feature-card:hover { background: var(--gold-pale); }
.feature-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 14px; }
.feature-icon-box {
  width: 46px; height: 46px;
  border: 1.5px solid var(--forest); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px; color: var(--forest);
  transition: all 0.3s;
}
.feature-card:hover .feature-icon-box { background: var(--forest); color: #fff; }
.feature-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--forest); margin-bottom: 9px; }
.feature-card p  { font-size: 0.81rem; color: var(--text-mid); line-height: 1.75; }

/* ===== 料金表 ===== */
.price-tabs {
  display: flex; width: fit-content;
  margin: 0 auto 32px;
  border: 1.5px solid var(--forest); border-radius: 4px; overflow: hidden;
}
.price-tab {
  padding: 11px 36px; font-weight: 700; font-size: 0.86rem;
  cursor: pointer; border: none;
  border-right: 1.5px solid var(--forest);
  color: var(--forest); background: #fff;
  transition: all 0.2s; letter-spacing: 0.04em;
}
.price-tab:last-child { border-right: none; }
.price-tab.active { background: var(--forest); color: #fff; }
.price-tab:hover:not(.active) { background: var(--green-pale); }
.price-content { display: none; }
.price-content.active { display: block; }
.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); }
.price-table th {
  background: var(--forest); color: #fff;
  padding: 13px 20px; font-size: 0.84rem; font-weight: 700; text-align: left;
}
.price-table td {
  padding: 13px 20px; font-size: 0.86rem;
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: var(--gold-pale); }
.price-highlight { color: var(--forest); font-weight: 900; font-size: 1.05rem; }
.price-note {
  font-size: 0.78rem; color: var(--text-light);
  margin-top: 14px; padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.price-cta { text-align: center; margin-top: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest); color: #fff;
  padding: 16px 44px; border-radius: 4px;
  font-size: 0.96rem; font-weight: 700; letter-spacing: 0.05em;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== ご利用の流れ ===== */
/* ステップ横並び */
.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}
.flow-step {
  text-align: center;
  padding: 0 16px;
}
.flow-step-num {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid #e8ddb8;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.flow-step-icon {
  width: 64px; height: 64px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(13,74,42,0.3);
}
.flow-step h4 { font-size: 0.92rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.flow-step p  { font-size: 0.78rem; color: var(--text-mid); line-height: 1.7; }

.flow-arrow {
  padding-top: 34px;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.7;
}

/* CTAボックス */
.flow-cta {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--forest);
  border-radius: 4px;
  overflow: hidden;
}
.flow-mascot {
  width: 120px;
  flex-shrink: 0;
  align-self: flex-end;
  padding: 0 0 0 24px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.flow-cta-body {
  flex: 1;
  padding: 32px 36px;
}
.flow-cta-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.flow-cta-title span { color: var(--gold-light); }
.flow-cta-sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
}

/* ===== お客様の声 ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 2px; padding: 28px; position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 14px; left: 20px;
  font-size: 4rem; color: var(--gold-pale);
  line-height: 1; font-family: Georgia, serif;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 3px; }
.review-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; position: relative; z-index: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.reviewer-icon {
  width: 36px; height: 36px; background: var(--green-pale);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--forest); font-size: 0.9rem;
}
.reviewer-name { font-size: 0.84rem; font-weight: 700; color: var(--charcoal); }
.reviewer-date { font-size: 0.72rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 0; cursor: pointer;
  font-weight: 700; font-size: 0.92rem;
  color: var(--charcoal); transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q-label {
  min-width: 28px; height: 28px;
  background: var(--forest); color: #fff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.76rem; font-weight: 700; flex-shrink: 0;
}
.faq-toggle { margin-left: auto; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 20px 42px; font-size: 0.86rem; color: var(--text-mid); line-height: 1.9; }
.faq-a-label { color: var(--gold); font-weight: 700; margin-right: 8px; }
.faq-item.open .faq-a { display: block; }

/* ===== エリア ===== */
.area-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
  margin-top: 48px;
}
.area-card { background: #fff; padding: 28px 20px; text-align: center; transition: background 0.3s; }
.area-card:hover { background: var(--gold-pale); }
.area-card-icon {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; color: var(--forest); font-size: 0.95rem;
}
.area-card strong { font-size: 0.88rem; font-weight: 700; color: var(--forest); display: block; margin-bottom: 8px; }
.area-card p { font-size: 0.74rem; color: var(--text-mid); line-height: 1.7; }
.area-note {
  text-align: center; font-size: 0.78rem; color: var(--text-light);
  margin-top: 18px; padding-left: 12px;
  border-left: 3px solid var(--gold);
  display: inline-block;
  margin-left: 50%; transform: translateX(-50%);
}

/* ===== お問い合わせ ===== */
.contact-section {
  background: linear-gradient(135deg, var(--forest) 0%, #1a4030 100%);
  color: #fff;
}
.contact-section .title-rule { background: linear-gradient(to right, var(--gold-light), var(--gold)); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gold-light); margin-bottom: 18px;
}
.contact-tel-big {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 4px;
  padding: 20px 24px; margin-bottom: 14px; transition: background 0.2s;
}
.contact-tel-big:hover { background: rgba(255,255,255,0.06); }
.contact-tel-big i { font-size: 1.6rem; color: var(--gold-light); }
.contact-tel-num { font-size: 1.75rem; font-weight: 900; letter-spacing: 0.04em; }
.contact-tel-note { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.contact-line-btn {
  display: flex; align-items: center; gap: 12px;
  background: #06c755; border-radius: 4px;
  padding: 14px 24px; margin-bottom: 16px;
  font-weight: 700; font-size: 0.9rem; transition: background 0.2s;
}
.contact-line-btn:hover { background: #04a845; }
.contact-line-btn i { font-size: 1.4rem; }
.contact-line-btn small { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.85; }
.contact-hours {
  border: 1px solid rgba(255,255,255,0.14); border-radius: 4px;
  padding: 16px 20px; font-size: 0.82rem; line-height: 2.1;
  color: rgba(255,255,255,0.72);
}
.contact-hours strong { color: #fff; }
.contact-mascot { width: 80px; display: block; margin-top: 20px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.contact-form-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 30px;
}
.contact-form-panel h3 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gold-light); margin-bottom: 22px;
}
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 500; margin-bottom: 6px; color: rgba(255,255,255,0.8); }
.required { color: #f87171; font-size: 0.68rem; margin-left: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 0.86rem; font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { color: #333; background: #fff; }
.form-group textarea { height: 108px; resize: vertical; }
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest); font-size: 0.92rem; font-weight: 900;
  border-radius: 4px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; letter-spacing: 0.04em; transition: all 0.3s;
}
.btn-submit:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ===== フッター ===== */
#footer { background: #071c0e; color: rgba(255,255,255,0.6); padding: 60px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 60px; margin-bottom: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; gap: 18px; align-items: flex-start; }
.footer-mascot { width: 62px; flex-shrink: 0; }
.footer-logo-name { font-size: 1rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-desc { font-size: 0.78rem; line-height: 1.9; margin-bottom: 14px; }
.footer-tel { font-size: 1.1rem; font-weight: 900; color: #fff; }
.footer-tel i { color: var(--gold); margin-right: 7px; }
.footer-hours { font-size: 0.7rem; margin-top: 4px; color: rgba(255,255,255,0.4); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.45); letter-spacing: 0.14em;
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.78rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; flex-wrap: wrap; gap: 10px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.28); margin-left: 18px; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== フローティングCTA ===== */
.float-cta { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 200; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: 0 4px 16px rgba(0,0,0,0.22); transition: transform 0.3s; }
.float-btn:hover { transform: scale(1.1); }
.float-tel  { background: var(--forest); color: #fff; }
.float-line { background: #06c755; color: #fff; }

/* ===== アニメーション ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
  .header-nav a { padding: 6px 8px; font-size: 0.76rem; }
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .trust-items { gap: 18px; flex-wrap: wrap; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 60px; padding-bottom: 90px; }
  .hero-visual { flex-direction: row; justify-content: center; flex-wrap: wrap; align-items: flex-end; }
  .hero-card-main { max-width: 280px; }
  .hero-mascot { width: 110px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3) { border-top: 1px solid #e0d5aa; }
  .number-item:nth-child(4) { border-top: 1px solid #e0d5aa; border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .flow-arrow { display: none; }
  .flow-cta { flex-direction: column; }
  .flow-mascot { align-self: center; padding: 20px 0 0; }
  .flow-cta-body { text-align: center; padding: 0 24px 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-inner { padding-top: 50px; padding-bottom: 80px; }
  .hero-card-main { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .price-tab { padding: 10px 18px; font-size: 0.8rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { gap: 14px; }
  .topbar { font-size: 0.72rem; }
}
