@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  /* ── メインカラー：深緑＋温かいベージュ ── */
  --forest:   #2d5016;   /* 深緑（アクセント） */
  --moss:     #4a7c2f;   /* 苔緑 */
  --sage:     #7aac55;   /* セージグリーン */
  --sage-lt:  #b8d9a0;   /* 薄緑 */

  --navy:     #2c3e6b;   /* 濃紺（控えめに） */
  --navy-lt:  #4a5f8a;

  --warm:     #c8956c;   /* テラコッタ（CTAアクセント） */
  --warm-lt:  #e8b898;

  --cream:    #faf7f2;   /* 温かみのあるベージュ */
  --cream-dk: #f0ead8;
  --parch:    #e8dfc8;   /* 羊皮紙色 */
  --white:    #ffffff;

  --ink:      #2a2318;   /* 温かみのある黒 */
  --ink-mid:  #5a4f3f;
  --ink-lt:   #8c7d68;
  --border:   rgba(74,124,47,0.15);

  --serif: 'Noto Serif JP', '游明朝', serif;
  --sans:  'Noto Sans JP', sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  font-size: 16px;
  font-weight: 300;
}

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--parch);
  box-shadow: 0 2px 12px rgba(45,80,22,0.06);
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.logo-main {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--forest); letter-spacing: 0.05em; line-height: 1.2;
}
.logo-sub { font-size: 10px; color: var(--ink-lt); letter-spacing: 0.1em; }

nav { display: flex; gap: 2px; align-items: center; }
nav a {
  text-decoration: none; font-size: 13.5px; color: var(--ink-mid);
  padding: 8px 13px; border-radius: var(--r-sm);
  transition: background .2s, color .2s;
  font-weight: 400; white-space: nowrap;
}
nav a:hover { background: var(--cream-dk); color: var(--forest); }

.nav-cta {
  background: var(--warm) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: var(--r-md) !important;
  font-weight: 700 !important; font-size: 13px !important;
  letter-spacing: 0.05em; box-shadow: 0 3px 12px rgba(200,149,108,.35);
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--warm-lt) !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
}
/* 背景写真プレースホルダー */
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero_bg.jpg') center center / cover no-repeat,
              linear-gradient(160deg, #1e3d0f 0%, #2d5016 40%, #4a7c2f 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(20,38,10,.75) 0%,
    rgba(30,55,15,.60) 55%,
    rgba(20,38,10,.30) 100%);
}
/* 写真がない場合の説明オーバーレイ */
.hero-bg-hint {
  position: absolute; bottom: 16px; right: 20px;
  background: rgba(0,0,0,.45); color: rgba(255,255,255,.7);
  font-size: 11px; padding: 5px 12px; border-radius: 20px;
  pointer-events: none; z-index: 2;
}

.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 90px 28px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.92); font-size: 12px;
  padding: 5px 16px; border-radius: 20px;
  letter-spacing: 0.1em; margin-bottom: 28px; font-weight: 400;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px,4.5vw,50px);
  font-weight: 700; color: var(--white);
  line-height: 1.5; letter-spacing: 0.06em; margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: #d4e8b0; }
.hero-lead {
  font-size: 16px; color: rgba(255,255,255,.85);
  max-width: 580px; line-height: 2; margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── ボタン ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--warm); color: var(--white); text-decoration: none;
  font-weight: 700; font-size: 15px; padding: 15px 32px;
  border-radius: var(--r-lg); letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(200,149,108,.4);
  transition: background .2s, transform .15s;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--warm-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); text-decoration: none;
  font-weight: 400; font-size: 15px; padding: 14px 28px;
  border-radius: var(--r-lg); border: 1.5px solid rgba(255,255,255,.45);
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.75); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--moss); color: var(--white); text-decoration: none;
  font-weight: 700; font-size: 15px; padding: 14px 30px;
  border-radius: var(--r-lg); letter-spacing: 0.04em;
  box-shadow: 0 3px 16px rgba(74,124,47,.35);
  transition: background .2s, transform .15s;
}
.btn-green:hover { background: var(--forest); transform: translateY(-2px); }

/* ─── セクション共通 ─── */
.section { padding: 80px 28px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt  { background: var(--white); }
.section-warm { background: var(--cream-dk); }
.section-forest { background: var(--forest); }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--moss); text-transform: uppercase; margin-bottom: 10px;
}
.label-white { color: var(--sage-lt); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(24px,3.2vw,36px); font-weight: 700;
  color: var(--forest); line-height: 1.5; margin-bottom: 14px;
}
.title-white { color: var(--white); }

.section-lead {
  font-size: 15px; color: var(--ink-lt);
  max-width: 620px; line-height: 1.95; margin-bottom: 52px;
  font-weight: 300;
}
.lead-white { color: rgba(255,255,255,.72); }

/* ─── お悩みカード ─── */
.worry-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 18px; margin-bottom: 48px;
}
.worry-card {
  background: var(--white); border: 1.5px solid var(--parch);
  border-radius: var(--r-lg); padding: 26px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(45,80,22,.05);
}
.worry-card:hover {
  box-shadow: 0 6px 24px rgba(45,80,22,.10); transform: translateY(-2px);
}
.worry-illust {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.worry-illust img { width: 100%; height: 100%; object-fit: contain; }
.worry-text { font-size: 14.5px; color: var(--ink-mid); line-height: 1.8; }

/* ─── サービスカード ─── */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 22px;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--parch);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(45,80,22,.05);
}
.service-card:hover { box-shadow: 0 8px 32px rgba(45,80,22,.12); transform: translateY(-3px); }

.service-card-top {
  padding: 24px 24px 18px;
  border-bottom: 1.5px solid var(--cream-dk);
  display: flex; align-items: center; gap: 14px;
}
.service-icon-wrap {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: var(--r-md); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.service-icon-wrap img { width: 44px; height: 44px; object-fit: contain; }

.service-num { font-size: 11px; color: var(--moss); font-weight: 700; letter-spacing: .12em; margin-bottom: 3px; }
.service-card h3 { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--forest); line-height: 1.4; }
.service-card-body { padding: 18px 24px 24px; }
.service-card-body p { font-size: 13.5px; color: var(--ink-lt); line-height: 1.85; margin-bottom: 14px; }
.service-tag {
  display: inline-block; font-size: 11px;
  background: var(--cream); color: var(--moss);
  padding: 3px 9px; border-radius: 4px; margin: 2px 2px; font-weight: 500;
  border: 1px solid var(--sage-lt);
}

/* ─── フロー ─── */
.flow-wrap {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
  gap: 0; position: relative;
}
.flow-step { text-align: center; padding: 28px 16px; position: relative; }
.flow-step::after {
  content: '→'; position: absolute; right: -10px; top: 52px;
  font-size: 22px; color: var(--sage); font-weight: 700;
}
.flow-step:last-child::after { display: none; }
.flow-num {
  width: 54px; height: 54px; background: var(--forest); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(45,80,22,.35);
}
.flow-step h4 { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.flow-step p { font-size: 12.5px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ─── スタッフ ─── */
.staff-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 20px;
}
.staff-card {
  background: var(--white); border: 1.5px solid var(--parch);
  border-radius: var(--r-lg); overflow: hidden; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.staff-card:hover { box-shadow: 0 6px 24px rgba(45,80,22,.10); transform: translateY(-2px); }
.staff-photo-wrap {
  height: 220px; background: var(--cream-dk);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  flex-shrink: 0;
}
.staff-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top; /* 顔が上にある写真に対応 */
  display: block;
}
.staff-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--serif); font-size: 30px; font-weight: 700;
}
.staff-info { padding: 18px 16px 20px; }
.staff-role { font-size: 11px; color: var(--moss); font-weight: 700; letter-spacing: .1em; margin-bottom: 3px; }
.staff-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--forest); margin-bottom: 7px; }
.staff-desc { font-size: 12.5px; color: var(--ink-lt); line-height: 1.75; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--parch); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-q {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; cursor: pointer;
  font-weight: 500; font-size: 14.5px; color: var(--ink);
  list-style: none; transition: background .15s;
}
.faq-q:hover { background: var(--cream); }
.faq-q::marker { display: none; }
.faq-q-mark {
  width: 28px; height: 28px; background: var(--forest); color: var(--white);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.faq-a { padding: 0 22px 18px 64px; font-size: 13.5px; color: var(--ink-lt); line-height: 1.9; }

/* ─── CTAボックス ─── */
.cta-box {
  background: var(--white); border: 2px solid var(--parch);
  border-radius: var(--r-xl); padding: 52px 40px;
  text-align: center; max-width: 700px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(45,80,22,.08);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184,217,160,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: var(--forest); margin-bottom: 14px; line-height: 1.55; position: relative;
}
.cta-box p { font-size: 14.5px; color: var(--ink-mid); margin-bottom: 30px; line-height: 1.9; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── フッター ─── */
footer { background: var(--forest); color: rgba(255,255,255,.75); padding: 56px 28px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-address { font-size: 13px; line-height: 2.1; color: rgba(255,255,255,.62); font-style: normal; }
.footer-contact { text-align: right; }
.footer-tel { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-hours { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-nav a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: color .15s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { font-size: 11px; color: rgba(255,255,255,.3); text-align: center; }

/* ─── フッター SNS ─── */
.footer-sns { display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.footer-sns a {
  display:inline-flex; align-items:center; gap:7px;
  font-size:12px; color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  padding:6px 14px; border-radius:20px; text-decoration:none;
  transition:background .18s, color .18s;
}
.footer-sns a:hover { background:rgba(255,255,255,.2); color:var(--white); }

/* ─── フォーム ─── */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.req { display: inline-block; background: #c0392b; color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 3px; margin-left: 7px; font-weight: 700; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--parch); border-radius: var(--r-sm);
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--white); transition: border-color .18s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,124,47,.12);
}
.form-textarea { min-height: 130px; resize: vertical; }

/* ─── ページヒーロー ─── */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  padding: 60px 28px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .08em; margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(26px,4vw,40px); font-weight: 700; color: var(--white); }
.page-hero p { color: rgba(255,255,255,.72); margin-top: 10px; font-size: 15px; }

/* ─── イラスト共通 ─── */
.illust-wrap {
  /* 「ここに画像を置く」ガイドとして機能 */
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.illust-wrap img { width: 100%; height: 100%; object-fit: contain; }
.illust-hint {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--cream); font-size: 12px;
  color: var(--ink-lt); text-align: center; padding: 20px;
  pointer-events: none;
}

/* ─── レスポンシブ ─── */
@media(max-width:768px){
  nav a:not(.nav-cta){ display:none; }
  .footer-top{ grid-template-columns:1fr; }
  .footer-contact{ text-align:left; }
  .flow-wrap{ grid-template-columns:1fr; }
  .flow-step::after{ content:'↓'; right:50%; bottom:-14px; top:auto; transform:translateX(50%); }
  .section{ padding:56px 20px; }
  .cta-box{ padding:36px 24px; }
}
