@charset "UTF-8";
/* ===== こことも ウェブサイト スタイルシート =====
   テーマ：放課後児童クラブの「伴走パートナー」
   屋号「こことも」＝「こころ」＋「ともだち」＋「つながり」。
   困ったとき悩んだとき、そっと寄り添う“ともだち”のような存在。
   ロゴ＝円の中の大きな木・根・木陰に集う小動物（リス・うさぎ・小鳥）。
   ─────────────────────────────────────────────────────────
   カラー（絞る：この3〜4色＋白）
   Primary  : #862013  バーガンディ（主役・人の温かさ）
   Cream    : #F4ECDC  ウォームクリーム（地色）
   Text     : #3A2A20  ダークブラウン（真っ黒を避け温かく）
   Accent   : #C9744F  テラコッタ（手描き風の下線・小さな差し色）
   ロゴの「◎」を“安心の二重丸”モチーフとして要所に使う。
   装飾記号は content:'\25CE' 等のUnicodeエスケープで記述する（方針維持）。
   ─────────────────────────────────────────────────────────
*/

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

:root {
  --color-primary:        #862013;   /* バーガンディ */
  --color-primary-dark:   #6A1810;
  --color-primary-tint:   #F6E7E1;   /* バーガンディの淡い面 */
  --color-cream:          #F4ECDC;   /* ウォームクリーム */
  --color-cream-2:        #EDE5D3;   /* 少し濃いセクション背景 */
  --color-text:           #3A2A20;   /* ダークブラウン */
  --color-text-light:     #6B5D50;   /* 薄い文字 */
  --color-terracotta:     #C9744F;   /* テラコッタ（差し色） */
  --color-terracotta-tint:#F5E4D9;
  --color-white:          #FFFFFF;
  --color-border:         #E1D4BD;   /* 温かいボーダー */

  --font-main: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  --max-width: 1040px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 6px 24px rgba(58, 42, 32, 0.10);
  --shadow-soft: 0 4px 18px rgba(58, 42, 32, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--color-cream);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

/* ===== ユーティリティ ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section--alt { background-color: var(--color-cream-2); }
.nowrap { white-space: nowrap; }

/* ブランドバナー（aboutセクションの導入帯） */
.brand-banner {
  background-color: var(--color-cream);
  padding: 8px 24px 56px;
  text-align: center;
}
.brand-banner img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

/* ヒーロー先頭に置く全幅バナー（ヘッダー直下に自然に続く） */
.brand-banner--hero {
  position: relative;
  z-index: 1;
  padding: 24px 24px 36px;
}
.brand-banner--hero img {
  max-width: 1080px;
}

/* セクションラベル（◎ ＋ テラコッタの小見出し） */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}
.section-label::before {
  content: '\25CE ';
  font-size: 15px;
  color: var(--color-primary);
}

/* セクションタイトル（手描き風のテラコッタ下線を左に添える） */
.section-title {
  font-size: clamp(22px, 3.4vw, 31px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 18px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 8px;
  background: no-repeat left center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='8' viewBox='0 0 72 8'%3E%3Cpath d='M1 5 C 12 1, 24 1, 36 4 S 60 7, 71 3' fill='none' stroke='%23C9744F' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.section-lead {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 8px;
  max-width: 660px;
  line-height: 1.9;
}

/* 屋号キーワード強調（ここ／とも）＝手描き風の下線 */
.kw-here, .kw-tomo {
  position: relative;
  font-weight: 700;
  white-space: nowrap;
}
.kw-here { color: var(--color-primary); }
.kw-tomo { color: var(--color-terracotta); }
.kw-here::after, .kw-tomo::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: -4px;
  height: 7px;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'%3E%3Cpath d='M2 5 C 25 1, 55 1, 80 4 S 108 7, 118 3' fill='none' stroke='%23862013' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: 0.7;
}
.kw-tomo::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'%3E%3Cpath d='M2 5 C 25 1, 55 1, 80 4 S 108 7, 118 3' fill='none' stroke='%23C9744F' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ===== ヘッダー ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 220, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.site-logo {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.site-logo::before {
  content: '\25CE ';
  color: var(--color-terracotta);
  font-size: 19px;
}
.site-logo span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
}

/* PCナビ */
.nav-pc ul { display: flex; gap: 22px; align-items: center; }
.nav-pc a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
  white-space: nowrap;
  padding: 4px 2px;
}
.nav-pc a:hover { color: var(--color-primary); }

.nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  padding: 9px 22px !important;
  border-radius: 26px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--color-primary-dark) !important; transform: translateY(-1px); }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* スマホナビ */
.nav-mobile {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0; bottom: 0;
  background: var(--color-cream);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; }
.nav-mobile li { border-bottom: 1px solid var(--color-border); }
.nav-mobile a {
  display: block;
  padding: 16px 2px;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
}
.nav-mobile .nav-cta {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 32px;
  border-radius: 32px;
  font-size: 16px;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(134, 32, 19, 0.22);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(134, 32, 19, 0.30);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-tint);
}

/* ===== ヒーロー（クリーム地・1カラム） ===== */
.hero {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  padding: 0 0 0;
}
/* 背景の淡い二重丸モチーフ */
.hero::before {
  content: '\25CE ';
  position: absolute;
  top: -70px; left: -60px;
  font-size: 300px;
  color: rgba(134, 32, 19, 0.04);
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: '\25CE '; color: var(--color-terracotta); font-size: 14px; }
.hero-eyebrow-loc { color: var(--color-terracotta); }

.hero-title {
  font-size: clamp(26px, 4.4vw, 42px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.95;
  color: var(--color-text-light);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== 数字バンド（3つ横並び） ===== */
.stat-band {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  border-top: 1px solid var(--color-border);
  background: var(--color-cream);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 34px 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 26px; bottom: 26px;
  width: 1px;
  background: var(--color-border);
}
.stat-num {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.stat-num small { font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.stat-sep { color: var(--color-terracotta); font-weight: 700; margin: 0 6px; }
.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== こんな場面、ありませんか？ ===== */
.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.worry-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-terracotta);
  border-radius: var(--radius-sm);
  padding: 22px 22px 22px 20px;
  box-shadow: var(--shadow-soft);
}
.worry-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
}
.worry-q {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.worries-note {
  margin-top: 28px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--color-text);
}
.worries-note strong { color: var(--color-primary); font-weight: 700; }

/* ===== こことも にできること（4本柱） ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.svc-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(134, 32, 19, 0.22);
}
.svc-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}
.svc-body p {
  font-size: 14.5px;
  color: var(--color-text-light);
  line-height: 1.85;
}

/* ===== 相川洋輔について ===== */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}
.profile-photos { display: flex; justify-content: center; }
.profile-main-img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  background: var(--color-cream-2);
}
.profile-name-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.profile-role {
  font-size: 0.85rem;
  color: var(--color-terracotta);
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 100%;
  margin-bottom: 2px;
}
.profile-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.08em;
}
.profile-name-en { font-size: 0.85rem; color: var(--color-text-light); }

.profile-career {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  padding: 24px 26px;
  background: var(--color-primary-tint);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-primary);
}
.career-item { display: flex; flex-direction: column; gap: 3px; }
.career-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.career-label::before { content: '\25CE '; color: var(--color-terracotta); font-size: 0.9rem; }
.career-desc { font-size: 0.92rem; color: var(--color-text); line-height: 1.7; padding-left: 22px; }

.profile-story {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--color-text);
  position: relative;
  padding-left: 22px;
  margin-bottom: 24px;
}
.profile-story::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 4px;
  height: calc(100% - 10px);
  background: var(--color-terracotta);
  border-radius: 2px;
  opacity: 0.5;
}
.profile-story strong { color: var(--color-primary); font-weight: 700; }

/* 価値観リスト */
.values-list { display: flex; flex-direction: column; gap: 18px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
.value-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.value-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.value-body p { font-size: 14px; color: var(--color-text-light); line-height: 1.8; }

/* ===== 支援の事例 ===== */
.results-grid { display: grid; gap: 24px; }
.result-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px 36px;
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  border-left: 5px solid var(--color-primary);
}
.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.result-tag::before { content: '\25CE '; color: rgba(255,255,255,0.6); font-size: 12px; }
.result-facility {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.5;
}
.result-challenge, .result-approach { margin-bottom: 16px; }
.result-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-terracotta);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.result-card p:not(.result-label):not(.result-note) { font-size: 14.5px; color: var(--color-text); line-height: 1.85; }
.result-outcome { background: var(--color-primary-tint); border-radius: var(--radius-sm); padding: 16px 20px; }
.result-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-text-light);
}

/* ===== ご相談の流れ ===== */
.flow-list {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 36px;
  max-width: 720px;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px; bottom: 50px;
  width: 2px;
  background: var(--color-border);
}
.flow-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 34px;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 4px solid var(--color-cream);
  box-shadow: 0 4px 12px rgba(134,32,19,0.22);
}
.flow-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  margin-top: 12px;
}
.flow-body p { font-size: 14px; color: var(--color-text-light); line-height: 1.8; }

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 800px;
  margin-top: 32px;
}
.faq-item { border-bottom: 1px solid var(--color-border); background: var(--color-white); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 21px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.6;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--color-primary-tint); }
.q-label { color: var(--color-primary); font-weight: 700; flex-shrink: 0; margin-right: 4px; }
.arrow { font-size: 11px; color: var(--color-terracotta); transition: transform 0.3s; flex-shrink: 0; margin-top: 5px; }
.faq-item.is-open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 4px 24px 22px;
  font-size: 14.5px;
  color: var(--color-text-light);
  line-height: 1.9;
  background: var(--color-white);
}
.faq-item.is-open .faq-a { display: block; }
.a-label { color: var(--color-terracotta); font-weight: 700; margin-right: 4px; }

/* ===== お問い合わせ＝無料相談 ===== */
.contact-section {
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '\25CE ';
  position: absolute;
  right: -3%; top: -18%;
  font-size: 360px;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  line-height: 1;
}
.contact-section .section-label { color: #F0D9A0; }
.contact-section .section-label::before { color: #F0D9A0; }
.contact-section .section-title { color: #fff; }
.contact-section .section-title::after {
  background: no-repeat left center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='8' viewBox='0 0 72 8'%3E%3Cpath d='M1 5 C 12 1, 24 1, 36 4 S 60 7, 71 3' fill='none' stroke='%23F0D9A0' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.contact-aside { color: #fff; }
.contact-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(240,217,160,0.55);
  color: #F0D9A0;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 24px;
  margin-bottom: 22px;
}
.contact-free-badge::before { content: '\25CE '; font-size: 13px; }
.contact-aside-lead {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
}
.contact-meta { font-size: 14px; opacity: 0.9; line-height: 1.9; }
.contact-meta a { color: #F0D9A0; text-decoration: underline; font-weight: 700; }

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.contact-form-wrapper iframe { border-radius: var(--radius-sm); }

/* ===== 運営者情報 ===== */
.operator-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 760px;
  border: 1px solid var(--color-border);
  margin-top: 24px;
}
.operator-table th {
  background: var(--color-primary);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 15px 24px;
  text-align: left;
  width: 170px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  vertical-align: top;
}
.operator-table td {
  background: var(--color-white);
  padding: 15px 24px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.operator-table tr:nth-child(even) td { background: #FDFAF4; }
.operator-table tr:last-child th,
.operator-table tr:last-child td { border-bottom: none; }

/* ===== フッター ===== */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.72);
  padding: 40px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo::before { content: '\25CE '; color: #F0D9A0; }
.footer-logo span { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }

/* ===== ブランドパーツ装飾（切り出しイラストを散りばめる） =====
   すべて aria-hidden の装飾。テキスト・ボタン・フォームに被らせない。
   セクションの空いた余白（ガター）・隅にだけ小さく置く。 */
.section { position: relative; overflow: hidden; }
.container { position: relative; z-index: 1; }

/* ブランドパーツは「本文コンテナの外側＝左右ガター」にのみ置く。
   コンテナ幅は --max-width（1040px）＋左右padding 24px。
   下の配置は全て、パーツの内側端（viewport端からの張り出し量＝width＋offset）が
   ガター幅（＝(viewport-1040)/2）を超えないよう設計している。
   → 表示するのは十分なガターが取れる 1240px 超の画面だけ（下部メディアクエリで制御）。
   1240px 時のガターは (1240-1040)/2 = 100px。パーツの内側端は 96px 以下に収め、
   コンテナのpadding(24px)ぶんの余白も確保して本文と必ず離す。 */
.deco {
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.92;
}

/* ─── 「地面ライン方式」中心の散らし配置 ────────────────
   動植物は各セクション下端の余白帯（地面）に沿わせて低く置き、
   左右はガター内に収める。蝶・鳥など飛ぶものだけ上方に散らす。
   隣り合うセクションで同じ側が続かないよう左右を交互にする。
   ※横位置は必ずガター内なので、縦位置に関わらず本文とは重ならない。 */

/* こんな場面（worries）── リスを左・地面ぎわ */
.deco-worries-squirrel { bottom: 40px; left: 0; width: 84px; transform: rotate(-4deg); }

/* できること（services）── 鳥は右・上空／蝶は左・下（飛ぶ2種を散らす） */
.deco-services-bird { top: 118px; right: 6px; width: 70px; transform: rotate(4deg); }
.deco-services-butterfly { bottom: 96px; left: 8px; width: 46px; transform: rotate(-8deg); }

/* 相川について（about）── うさぎを左・地面ぎわ */
.deco-about-rabbit { bottom: 52px; left: 0; width: 88px; transform: rotate(3deg); }

/* 支援の事例（results）── 鹿は右・地面／小蝶は左・上空 */
.deco-results-deer { bottom: 40px; right: 0; width: 92px; transform: rotate(-2deg); }
.deco-results-butterfly { top: 96px; left: 10px; width: 44px; transform: rotate(6deg); }

/* ご相談の流れ（flow）── ハリネズミは左・地面／小鳥は右・地面 */
.deco-flow-hedgehog { bottom: 44px; left: 2px; width: 84px; transform: rotate(4deg); }
.deco-flow-bird { bottom: 40px; right: 6px; width: 74px; transform: rotate(-3deg); }

/* FAQ ── 花壇をセクション下辺に地面のように左右へ配置 */
.deco-faq-flowers-right { bottom: 0; right: 0; width: 96px; }
.deco-faq-flowers-left  { bottom: 0; left: 0; width: 90px; transform: rotate(2deg); }

/* 運営者情報（operator）── 小さな木を右・地面に立たせる */
.deco-operator-tree { bottom: 36px; right: 4px; width: 90px; transform: rotate(-2deg); }

/* ===== フェードイン ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ===== レスポンシブ ===== */
/* ブランドパーツ（.deco）は「広い画面のボーナス装飾」。
   本文コンテナ幅＋パーツ用ガターの余裕が取れる 1240px 超でのみ表示し、
   それ以下ではガターが痩せて本文と被る恐れがあるため一律で非表示にする。
   （可読性が最優先・被りは一切許さない方針） */
@media (max-width: 1240px) {
  .deco { display: none; }
}

@media (max-width: 900px) {
  .worries-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-pc { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 0 0 0; }
  .brand-banner--hero { padding: 16px 16px 28px; }
  .svc-grid { grid-template-columns: 1fr; }
  .result-card { padding: 24px 22px; }
  .operator-table th { width: 120px; }
  .operator-table th, .operator-table td { padding: 12px 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { border-top: 1px solid var(--color-border); }
  .stat-item:first-child { border-top: none; }
}
