/* =========================================
   iroto - style.css
   発達凸凹×教育・子育てサポート iroto（いろと）
   ========================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* 配色（パステル） */
  --color-bg: #FFFFFF;
  --color-base: #FAFAF7;
  --color-main: #B5D5E0;       /* 淡水色 */
  --color-main-deep: #8FBCCC;
  --color-sub: #F5DCE6;         /* 淡ピンク */
  --color-sub-deep: #EBB8CC;
  --color-accent: #F0A878;      /* 淡オレンジ */
  --color-accent-deep: #E08A55;
  --color-yellow: #F4D58D;      /* 淡イエロー */
  --color-green: #A8C99B;       /* 淡グリーン */
  --color-text: #403E3A;        /* 柔らかい黒 */
  --color-text-light: #6B6862;
  --color-text-muted: #8E8B85;
  --color-line: #E8E4DC;
  --color-card: #FFFFFF;

  /* タイポグラフィ */
  --font-body: "BIZ UDPGothic", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  --font-heading: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "BIZ UDPGothic", sans-serif;
  --font-hand: "Klee One", "Zen Maru Gothic", cursive;
  --font-en: "Cormorant Garamond", "Times New Roman", serif;

  /* レイアウト */
  --max-w: 1120px;
  --max-w-narrow: 840px;
  --header-h: 72px;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 32px;
  --radius-pill: 999px;

  /* シャドウ */
  --shadow-soft: 0 8px 24px rgba(64, 62, 58, 0.06);
  --shadow-card: 0 6px 18px rgba(64, 62, 58, 0.08);
  --shadow-hover: 0 12px 28px rgba(64, 62, 58, 0.12);
}

/* ---------- リセット ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.45; margin: 0; letter-spacing: 0.04em; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- ユーティリティ ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  padding: 0 24px;
  margin: 0 auto;
}
.container-narrow {
  width: 100%;
  max-width: var(--max-w-narrow);
  padding: 0 24px;
  margin: 0 auto;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section--tight { padding: 80px 0; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-text);
  margin-bottom: 18px;
}
.section-sub {
  font-family: var(--font-hand);
  font-size: clamp(15px, 2.2vw, 17px);
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.95;
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
  z-index: 100;
  display: flex;
  align-items: center;
}
.header__inner {
  width: 100%;
  max-width: var(--max-w);
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo__mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo__sub {
  font-family: var(--font-hand);
  font-size: 10.5px;
  color: var(--color-accent-deep);
  letter-spacing: 0.08em;
  margin-left: 4px;
  padding: 2px 8px;
  background: rgba(240, 168, 120, 0.14);
  border: 1px solid rgba(240, 168, 120, 0.35);
  border-radius: 999px;
  line-height: 1.4;
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text);
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.nav a:hover { background: var(--color-base); color: var(--color-accent-deep); }
.nav a .emoji { font-size: 14px; }
.nav__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__icon svg { width: 16px; height: 16px; }
.nav__icon--c1 { background: rgba(181, 213, 224, 0.45); }
.nav__icon--c2 { background: rgba(245, 220, 230, 0.6); }
.nav__icon--c3 { background: rgba(240, 168, 120, 0.32); }
.nav__icon--c4 { background: rgba(168, 201, 155, 0.32); }
.nav__icon--c5 { background: rgba(244, 213, 141, 0.45); }
.nav__icon--c6 { background: rgba(181, 213, 224, 0.45); }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--color-base);
}
.hamburger span {
  width: 20px; height: 2px; background: var(--color-text); position: relative; transition: transform .25s ease, opacity .2s ease;
}
.hamburger span::before,
.hamburger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--color-text); transition: transform .25s ease, top .25s ease;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  padding: 0;
  margin-top: var(--header-h);
  background: var(--color-base);
  overflow: hidden;
  width: 100%;
  min-height: 720px;
}
.hero__inner {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-mobile {
  display: none;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.18) 60%, rgba(255,255,255,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__inner { z-index: 2; position: absolute; }
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  display: none;
}
.hero__deco svg { position: absolute; }
.hero__deco .deco-rainbow { top: 8%; right: 6%; width: 200px; opacity: 0.85; }
.hero__deco .deco-bird { top: 22%; left: 8%; width: 90px; opacity: 0.9; transform: rotate(-8deg); }
.hero__deco .deco-bell { bottom: 18%; right: 12%; width: 80px; opacity: 0.85; }
.hero__deco .deco-cloud-1 { top: 14%; left: 32%; width: 120px; opacity: 0.6; }
.hero__deco .deco-cloud-2 { bottom: 22%; left: 10%; width: 90px; opacity: 0.5; }
.hero__deco .deco-dot-1 { top: 38%; right: 22%; width: 14px; height: 14px; border-radius: 50%; background: var(--color-accent); opacity: 0.6; }
.hero__deco .deco-dot-2 { bottom: 28%; left: 28%; width: 10px; height: 10px; border-radius: 50%; background: var(--color-green); opacity: 0.7; }
.hero__deco .deco-dot-3 { top: 60%; right: 8%; width: 8px; height: 8px; border-radius: 50%; background: var(--color-sub-deep); opacity: 0.7; }

.hero__inner-OLD {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
}
.hero__welcome {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #fff;
  background: var(--color-accent);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  margin: 0 auto 28px;
  letter-spacing: 0.12em;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(240, 168, 120, 0.3);
}
.hero__welcome::before,
.hero__welcome::after { content: none; }
.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.4;
  color: var(--color-accent-deep);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.85);
}
.hero__title .x {
  color: var(--color-accent);
  font-size: 0.85em;
  margin: 0 0.1em;
  font-weight: 700;
}
.hero__sub { display: none; }
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(240, 168, 120, 0.4);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hero__cta:hover {
  transform: translateY(-2px);
  background: var(--color-accent-deep);
  box-shadow: 0 12px 26px rgba(240, 168, 120, 0.5);
}
.hero__cta-arrow { width: 22px; height: 22px; }

/* SCROLLインジケータ */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  text-align: center;
  z-index: 2;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: var(--color-text-muted);
  margin: 8px auto 0;
  animation: scrollline 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollline {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- 想い ---------- */
.philosophy {
  background: var(--color-bg);
}
.philosophy__lead {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(17px, 2.4vw, 22px);
  text-align: center;
  color: var(--color-text);
  margin: 0 auto 80px;
  max-width: 720px;
  line-height: 2;
}

/* 金子みすゞ詩カード */
.poem-card {
  background: var(--color-base);
  border-radius: var(--radius-l);
  padding: 56px 48px;
  max-width: 620px;
  margin: 0 auto 80px;
  position: relative;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.poem-card::before {
  content: "";
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--color-sub);
  border-radius: 50%;
  background-image: radial-gradient(circle at 30% 30%, #fff 8%, transparent 9%);
}
.poem-card__title {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--color-accent-deep);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.poem-card__title::before { content: "『"; }
.poem-card__title::after { content: "』"; }
.poem-card__body {
  font-family: var(--font-hand);
  font-size: 17px;
  line-height: 2.4;
  color: var(--color-text);
  white-space: pre-line;
}
.poem-card__author {
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

/* 「iroto」に込めた思い */
.message-block {
  max-width: 760px;
  margin: 0 auto 96px;
  padding: 0 8px;
}
.message-block__title {
  font-size: clamp(22px, 3vw, 28px);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.message-block__title::before,
.message-block__title::after {
  content: "";
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--color-accent);
  vertical-align: middle;
  margin: 0 16px;
  border-radius: 2px;
}
.message-block__title em {
  font-style: normal;
  color: var(--color-accent-deep);
}
.message-block__body {
  font-size: 16px;
  line-height: 2.2;
  color: var(--color-text);
  white-space: pre-line;
  text-align: center;
}
.message-block__body p + p { margin-top: 1.6em; }

/* Vision / Mission / Value 3カード */
.vmv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 80px;
  max-width: var(--max-w);
}
.vmv__card {
  background: var(--color-bg);
  border: 2px solid var(--color-line);
  border-radius: var(--radius-l);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vmv__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.vmv__card--1 { border-color: var(--color-main); }
.vmv__card--2 { border-color: var(--color-sub); }
.vmv__card--3 { border-color: var(--color-yellow); }
.vmv__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.vmv__card--1 .vmv__icon { background: rgba(181, 213, 224, 0.4); }
.vmv__card--2 .vmv__icon { background: rgba(245, 220, 230, 0.6); }
.vmv__card--3 .vmv__icon { background: rgba(244, 213, 141, 0.4); }
.vmv__icon svg { width: 32px; height: 32px; }
.vmv__icon--photo {
  width: 144px; height: 144px;
  overflow: hidden;
  background: transparent !important;
  border-radius: 18px;
}
.vmv__icon--photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.vmv__label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.vmv__heading {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--color-text);
}
.vmv__body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text-light);
}

/* 4つのこと（点線囲み） */
.values {
  background: var(--color-base);
  border-radius: var(--radius-l);
  border: 2px dashed var(--color-accent);
  padding: 56px 48px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.values__rainbow {
  display: block;
  width: 56px;
  height: auto;
  margin: 0 auto 12px;
}
.values__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.8vw, 26px);
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text);
}
.values__title::before {
  display: none;
}
.values__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.values__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.values__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.values__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-base);
}
.values__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.values__item:hover .values__photo img {
  transform: scale(1.04);
}
.values__caption {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 24px 24px;
}
.values__num {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(240, 168, 120, 0.3);
}
.values__text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.values__text strong {
  color: var(--color-accent-deep);
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(240, 168, 120, 0.25) 65%);
  padding: 0 2px;
}

/* ---------- いろは先生 ---------- */
.about {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(245, 220, 230, 0.18) 100%);
}
.about__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.avatar {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}
.avatar--photo {
  width: 340px;
  height: 340px;
}
.avatar__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
}
.avatar__circle {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-sub) 50%, var(--color-yellow) 100%);
  position: relative;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.avatar__circle::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--color-base);
}
.avatar__face { position: relative; z-index: 2; width: 60%; }
.avatar__caption {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 14px;
}
.avatar__deco {
  position: absolute;
  font-size: 24px;
}
.avatar__deco--1 { top: -4px; right: 4px; }
.avatar__deco--2 { bottom: 8px; left: -6px; }

.about__content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--color-accent-deep);
}
.about__content p {
  font-size: 15.5px;
  line-height: 2.1;
  margin-bottom: 1.4em;
}
.about__quote {
  background: var(--color-base);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 24px 28px;
  margin: 28px 0;
  font-family: var(--font-hand);
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text);
  position: relative;
}
.about__quote::before {
  content: "“";
  position: absolute;
  top: -18px; left: 16px;
  font-family: var(--font-en);
  font-size: 64px;
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 1;
}
.about__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ---------- サービス ---------- */
.services {
  background: var(--color-base);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--color-card);
  border-radius: var(--radius-l);
  padding: 44px 32px 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card__step {
  position: absolute;
  top: 22px; left: 22px;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}
.service-card__icon-wrap {
  width: 200px; height: 200px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 4px;
}
.service-card__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.service-card--1 .service-card__icon-wrap { background: rgba(181, 213, 224, 0.35); }
.service-card--2 .service-card__icon-wrap { background: rgba(245, 220, 230, 0.55); }
.service-card--3 .service-card__icon-wrap { background: rgba(168, 201, 155, 0.32); }
.service-card__icon-wrap svg { width: 60px; height: 60px; }
.service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--color-text);
}
.service-card__subtitle {
  font-family: var(--font-hand);
  font-size: 15px;
  color: var(--color-accent-deep);
  margin-bottom: 18px;
}
.service-card__body {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--color-text-light);
  text-align: left;
}
.service-card__note {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-base);
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ---------- お知らせ ---------- */
.news {
  background: var(--color-bg);
}
.news__card {
  background: var(--color-base);
  border-radius: var(--radius-l);
  padding: 56px 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news__card::before,
.news__card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.news__card::before { top: -40px; right: -40px; width: 140px; height: 140px; background: var(--color-yellow); }
.news__card::after { bottom: -50px; left: -50px; width: 160px; height: 160px; background: var(--color-sub); }
.news__card > * { position: relative; z-index: 1; }
.news__icon { font-size: 36px; margin-bottom: 12px; }
.news__lead {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.85;
}
.news__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: transform .2s, background .2s;
}
.news__btn:hover { transform: translateY(-2px); background: var(--color-accent-deep); }
.news__note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--color-text-muted);
}

/* ---------- お問い合わせ ---------- */
.contact {
  background: var(--color-base);
}
.contact__form-placeholder {
  background: #fff;
  border: 2px dashed var(--color-line);
  border-radius: var(--radius-l);
  padding: 64px 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-muted);
}
.contact__form-placeholder .icon { font-size: 40px; margin-bottom: 12px; }
.contact__form-placeholder p { font-size: 14.5px; line-height: 1.9; }

/* ---------- メニューカード ---------- */
.menu-cards {
  background: var(--color-bg);
}
.menu-cards__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.menu-card {
  background: var(--color-card);
  border-radius: var(--radius-m);
  padding: 24px 12px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.menu-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.menu-card__icon svg { width: 30px; height: 30px; }
.menu-card--c1 .menu-card__icon { background: rgba(181, 213, 224, 0.45); }
.menu-card--c2 .menu-card__icon { background: rgba(245, 220, 230, 0.6); }
.menu-card--c3 .menu-card__icon { background: rgba(240, 168, 120, 0.32); }
.menu-card--c4 .menu-card__icon { background: rgba(168, 201, 155, 0.32); }
.menu-card--c5 .menu-card__icon { background: rgba(244, 213, 141, 0.45); }
.menu-card--c6 .menu-card__icon { background: rgba(181, 213, 224, 0.45); }
.menu-card__label {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

/* ---------- 免責事項 ---------- */
.disclaimer {
  background: var(--color-base);
  padding: 60px 0;
}
.disclaimer details {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 4px 0;
  box-shadow: var(--shadow-soft);
}
.disclaimer summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.disclaimer summary::-webkit-details-marker { display: none; }
.disclaimer summary::after {
  content: "＋";
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--color-accent);
  transition: transform .2s ease;
}
.disclaimer details[open] summary::after { content: "−"; }
.disclaimer summary .icon { margin-right: 10px; font-size: 18px; }
.disclaimer__body {
  padding: 0 28px 28px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-light);
}

/* ---------- フッター ---------- */
.footer {
  background: var(--color-text);
  color: #F5F2EC;
  padding: 64px 0 28px;
  text-align: center;
}
.footer .logo { color: #fff; justify-content: center; }
.footer__tag {
  font-family: var(--font-hand);
  font-size: 17px;
  margin: 20px 0 36px;
  color: #fff;
  opacity: 0.92;
}
.footer__sns {
  display: flex; justify-content: center; gap: 14px; margin-bottom: 36px;
}
.footer__sns a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.footer__sns a:hover { background: var(--color-accent); transform: translateY(-2px); }
.footer__sns svg { width: 18px; height: 18px; fill: #fff; }
.footer__copy {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .vmv { grid-template-columns: 1fr; gap: 16px; }
  .services__grid { grid-template-columns: 1fr; gap: 20px; }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .avatar { width: 220px; height: 220px; }
  .avatar--photo { width: 280px; height: 280px; }
  .values__list { grid-template-columns: 1fr; gap: 20px; }
  .values { padding: 40px 28px; }
  .menu-cards__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .poem-card { padding: 44px 28px; }
  .message-block__title::before,
  .message-block__title::after { display: none; }
  .message-block__title { font-size: 19px; white-space: nowrap; }
  .message-block { padding: 0 16px; max-width: 100%; }
  .message-block__body {
    text-align: left;
    font-size: 15px;
    line-height: 1.85;
  }
  .message-block__body br { display: none; }
  .message-block__body p + p { margin-top: 0.9em; }
  .cite__gap { display: none; }
  .news__card { padding: 44px 24px; }
}

@media (max-width: 960px) {
  .nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; padding: 12px 0 24px; box-shadow: 0 8px 18px rgba(0,0,0,0.05); border-bottom: 1px solid var(--color-line); align-items: stretch; }
  .nav.is-open { display: flex; }
  .nav a { justify-content: flex-start; padding: 14px 28px; border-radius: 0; font-size: 15px; gap: 12px; }
  .nav__icon { width: 32px; height: 32px; }
  .nav__icon svg { width: 20px; height: 20px; }
  .hamburger { display: inline-flex; }
}

@media (max-width: 768px) {
  .hero__bg { display: none !important; }
  .hero__bg-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 0;
    height: auto;
    width: 100%;
    overflow: hidden;
    padding: 0 0 28px;
    text-align: center;
  }
  .hero__bg-overlay { display: none; }
  .hero__inner {
    position: static;
    width: 100%;
    padding: 24px 16px 0;
    transform: none;
    text-align: center;
  }
  .hero__cta {
    font-size: 15px;
    padding: 14px 28px;
    max-width: calc(100% - 32px);
  }
  .hero__scroll { display: none; }
  .hero__deco .deco-rainbow { width: 140px; }
  .hero__deco .deco-bird { width: 60px; }
  .hero__deco .deco-bell { width: 56px; }
}
