/* ============================================
   フォレストベル 共通スタイル
   ============================================ */
:root {
  --green-dark: #2f5d43;
  --green: #3d7a57;
  --green-light: #e8f1ea;
  --cream: #faf7f0;
  --brown: #6b5b45;
  --text: #3a3a3a;
  --white: #ffffff;
  --accent: #d9a441;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
}

img { max-width: 100%; height: auto; }

a { color: var(--green-dark); }

/* ---------- ヘッダー ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.logo {
  text-decoration: none;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark { font-size: 1.6rem; }

.logo-text .name {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.3;
}

.logo-text .sub {
  font-size: 0.72rem;
  color: var(--brown);
  display: block;
  line-height: 1.3;
}

.global-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.global-nav a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  border-radius: 8px;
}

.global-nav a:hover,
.global-nav a.current {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: bold;
}

/* ---------- ヒーロー ---------- */
.hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 70%, #4e8a66 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 16px 56px;
}

.hero h1 {
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1rem;
  opacity: 0.95;
  max-width: 620px;
  margin: 0 auto 28px;
}

.hero .badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero .badge {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.88rem;
}

/* ---------- CTA ボタン ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: transform 0.15s, opacity 0.15s;
}

.btn:hover { transform: translateY(-2px); opacity: 0.92; }

.btn-tel { background: var(--white); color: var(--green-dark); }
.btn-line { background: #06c755; color: var(--white); }

/* ---------- セクション共通 ---------- */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 16px;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-lead {
  text-align: center;
  color: var(--brown);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.bg-white { background: var(--white); }
.bg-green { background: var(--green-light); }

/* ---------- カード ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(47, 93, 67, 0.08);
  border-top: 4px solid var(--green);
}

.card .icon { font-size: 2rem; display: block; margin-bottom: 10px; }

.card h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p { font-size: 0.92rem; }

.card .more {
  display: inline-block;
  margin-top: 12px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* ---------- 料金表 ---------- */
.price-table-wrap { overflow-x: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(47, 93, 67, 0.08);
}

.price-table th,
.price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #eee5d8;
}

.price-table th {
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
}

.price-table tr:last-child td { border-bottom: none; }

.price-table .price {
  font-weight: bold;
  color: var(--green-dark);
  white-space: nowrap;
}

.note {
  font-size: 0.85rem;
  color: var(--brown);
  margin-top: 12px;
}

/* ---------- 店舗情報 ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 760px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e5decf;
  text-align: left;
  font-size: 0.95rem;
  vertical-align: top;
}

.info-table th {
  color: var(--green-dark);
  white-space: nowrap;
  width: 7em;
}

.map-frame {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(47, 93, 67, 0.08);
}

/* ---------- ページ見出し（下層ページ） ---------- */
.page-header {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  padding: 44px 16px;
}

.page-header h1 { font-size: 1.6rem; letter-spacing: 0.08em; }
.page-header p { font-size: 0.92rem; opacity: 0.95; margin-top: 8px; }

/* ---------- 本文ブロック ---------- */
.content-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(47, 93, 67, 0.08);
  margin-bottom: 28px;
}

.content-block h2 {
  color: var(--green-dark);
  font-size: 1.2rem;
  border-left: 5px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 16px;
}

.content-block h3 {
  color: var(--green);
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.content-block ul { padding-left: 1.4em; }
.content-block li { margin-bottom: 4px; }

.symptom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0 !important;
  margin: 12px 0;
}

.symptom-tags li {
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 0.88rem;
}

/* ---------- お客様の声 ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 2px 12px rgba(47, 93, 67, 0.08);
  position: relative;
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 16px;
  font-size: 3rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.6;
}

.voice-card p {
  font-size: 0.93rem;
  margin-top: 10px;
}

.voice-card .voice-meta {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--brown);
  text-align: right;
}

.voice-stars { color: var(--accent); letter-spacing: 2px; }

/* ---------- 予約セクション ---------- */
.reserve-banner {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  padding: 48px 16px;
}

.reserve-banner h2 { font-size: 1.4rem; margin-bottom: 8px; letter-spacing: 0.08em; }
.reserve-banner p { margin-bottom: 24px; font-size: 0.95rem; opacity: 0.95; }

.reserve-banner .tel-big {
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.reserve-banner .tel-note { font-size: 0.85rem; opacity: 0.9; margin-bottom: 20px; }

/* ---------- フッター ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 36px 16px 90px;
  text-align: center;
  font-size: 0.88rem;
}

.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  list-style: none;
  margin-bottom: 20px;
}

.site-footer a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ---------- スマホ用 固定予約バー ---------- */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 200;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.fixed-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.fixed-cta .cta-tel { background: var(--green); }
.fixed-cta .cta-line { background: #06c755; }

@media (min-width: 900px) {
  .fixed-cta { display: none; }
  .site-footer { padding-bottom: 36px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.45rem; }
  .section { padding: 44px 14px; }
}
