/* ===== リセット・基本 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== セクション共通 ===== */
section { padding: 64px 0; }

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #2d6a4f;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #52b788;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== ヘッダー ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #52b788;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header-logo { flex: 1; }
.header-logo-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d6a4f;
  display: block;
}
.header-logo-sub {
  font-size: 0.7rem;
  color: #666;
}
.header-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.header-nav a {
  font-size: 0.85rem;
  color: #444;
  transition: color 0.2s;
}
.header-nav a:hover { color: #2d6a4f; }
.header-tel {
  font-weight: 700;
  color: #2d6a4f;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ===== ヒーロー ===== */
.hero {
  background: linear-gradient(135deg, #f0faf4 0%, #e8f5e9 60%, #f9fbe7 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-leaves {
  position: absolute;
  font-size: 6rem;
  opacity: 0.15;
  top: 10px;
}
.hero-leaves-left { left: -20px; transform: rotate(-30deg); }
.hero-leaves-right { right: -20px; transform: rotate(30deg); }

.hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.hero-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: #52b788;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}
.badge-green { background: #2d6a4f; color: #fff; }
.badge-red { background: #d62828; color: #fff; }

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-primary { background: #2d6a4f; color: #fff; }
.btn-line { background: #06c755; color: #fff; }

/* ===== 対象となる方 ===== */
.target { background: #f7fdf9; }
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.target-item {
  background: #fff;
  border: 2px solid #b7e4c7;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1b4332;
}

/* ===== サービス ===== */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  border: 1px solid #d8f3dc;
  border-radius: 12px;
  padding: 28px 24px;
  background: #f7fdf9;
}
.service-icon { font-size: 2.5rem; margin-bottom: 10px; }
.service-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 4px;
}
.service-license {
  font-size: 0.78rem;
  color: #52b788;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.75;
}
.service-price {
  background: #1b4332;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
}
.service-price small { opacity: 0.85; font-size: 0.78rem; }

/* ===== 流れ ===== */
.flow { background: #f7fdf9; }
.flow-steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flow-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #d8f3dc;
  border-radius: 12px;
  padding: 20px 24px;
  width: 100%;
}
.flow-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #52b788;
  min-width: 48px;
  line-height: 1;
}
.flow-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 4px;
}
.flow-content p { font-size: 0.88rem; color: #555; }
.flow-arrow {
  color: #52b788;
  font-size: 1.4rem;
  margin: 6px 0;
}

/* ===== 施術者 ===== */
.profile { background: #fff; }
.profile-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: #f7fdf9;
  border: 1px solid #d8f3dc;
  border-radius: 16px;
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
}
.profile-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid #b7e4c7;
}
.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 4px;
}
.profile-title {
  font-size: 0.82rem;
  color: #52b788;
  font-weight: 700;
  margin-bottom: 14px;
}
.profile-message {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
  border-left: 3px solid #52b788;
  padding-left: 14px;
}
.profile-career {
  list-style: none;
  font-size: 0.85rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-career li::before { content: "✔ "; color: #52b788; }

.profile-personal {
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  border: 1px dashed #b7e4c7;
}
.profile-personal-title {
  font-weight: 700;
  color: #2d6a4f;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.profile-personal-list {
  list-style: none;
  font-size: 0.86rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.profile-personal-list li::before { content: "🌱 "; }

/* ===== エリア ===== */
.area { background: #f7fdf9; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.area-item {
  background: #fff;
  border: 2px solid #52b788;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
}
.area-item strong { color: #1b4332; font-size: 1rem; display: block; margin-top: 4px; }
.area-note { text-align: center; font-size: 0.82rem; color: #777; }

/* ===== FAQ ===== */
.faq { background: #fff; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #d8f3dc;
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1b4332;
  list-style: none;
  background: #f7fdf9;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: "＋"; color: #52b788; font-size: 1.1rem; }
details[open] .faq-q::after { content: "－"; }
.faq-q:hover { background: #e8f5e9; }
.faq-a {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #d8f3dc;
  background: #fff;
  line-height: 1.8;
}

/* ===== お問い合わせ ===== */
.contact { background: #1b4332; color: #fff; }
.contact .section-title { color: #fff; }
.contact .section-title::after { background: #52b788; }
.contact-desc { text-align: center; color: #b7e4c7; margin-bottom: 32px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.contact-card {
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: transform 0.2s, opacity 0.2s;
  display: block;
}
.contact-card:hover { transform: translateY(-3px); opacity: 0.9; }
.contact-tel { background: #fff; color: #1b4332; }
.contact-line { background: #06c755; color: #fff; }
.contact-icon { font-size: 2rem; margin-bottom: 8px; }
.contact-label { font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; opacity: 0.8; }
.contact-value { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.contact-hours { font-size: 0.75rem; opacity: 0.75; }

/* ===== フッター ===== */
.footer {
  background: #111;
  color: #aaa;
  padding: 32px 20px;
  text-align: center;
}
.footer-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-info p { font-size: 0.82rem; margin-bottom: 4px; }
.footer-copy { font-size: 0.75rem; margin-top: 16px; color: #666; }

/* ===== レスポンシブ ===== */
@media (max-width: 640px) {
  .header-nav { display: none; }
  .hero { padding: 60px 16px; }
  .profile-card { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .profile-message { text-align: left; }
  .flow-step { flex-direction: column; gap: 8px; }
  section { padding: 48px 0; }
}
