/* ============================================
   Variables (Brand Design System)
   ============================================ */
:root {
  --c-mint: #64c0ab;
  --c-mint-light: #8ed1c0;
  --c-mint-tint: #eef8f5;
  --c-pink: #ee86a8;
  --c-pink-light: #f4a8c0;
  --c-pink-tint: #fdf1f4;
  --c-yellow: #ecd560;
  --c-yellow-tint: #fbf6dc;
  --c-purple: #bb97c5;
  --c-purple-tint: #f3ecf5;
  --c-charcoal: #3e3a39;
  --c-text: #3e3a39;
  --c-text-sub: #767575;
  --c-bg: #ffffff;
  --c-bg-soft: #faf8f5;
  --c-bg-warm: #f4ebdc;
  --c-bg-warm-soft: #faf3e6;
  --c-border: #e5e2de;

  --font-jp: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Sans', sans-serif;
  --font-en: 'Poppins', 'Noto Sans JP', sans-serif;

  --container: 1200px;
  --header-h: 88px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(62, 58, 57, 0.06);
  --shadow-md: 0 8px 32px rgba(62, 58, 57, 0.10);
  --shadow-lg: 0 16px 48px rgba(62, 58, 57, 0.14);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-mint);
  margin-bottom: 16px;
  position: relative;
  padding-left: 56px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--c-mint);
}

.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--c-pink); }

/* ============================================
   Decorative Section Header (英文＋下線)
   ============================================ */
.deco-header {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.deco-header .deco-en {
  font-family: var(--font-en);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  font-style: italic;
  color: var(--c-pink);
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}
.deco-header .deco-arc {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  width: 116%;
  height: 22px;
  pointer-events: none;
  display: block;
  color: var(--c-pink);
  opacity: 0.7;
}

@media (max-width: 640px) {
  .deco-header { margin-bottom: 20px; }
  .deco-header .deco-en { font-size: clamp(28px, 8vw, 40px); padding-bottom: 10px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 8px 8px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  background: #ffffff;
  color: var(--c-charcoal);
  box-shadow: 0 4px 16px rgba(62, 58, 57, 0.08);
  transition: all var(--transition);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.btn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(62, 58, 57, 0.14);
}

.btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-charcoal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.btn-circle svg { width: 14px; height: 14px; display: block; }
.btn:hover .btn-circle { transform: translateX(4px); }

/* Primary: ピンク */
.btn-primary {
  background: var(--c-pink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(238, 134, 168, 0.35);
}
.btn-primary:hover {
  background: #e96f97;
  box-shadow: 0 12px 32px rgba(238, 134, 168, 0.45);
}
.btn-primary .btn-circle { background: #fff; color: var(--c-pink); }

/* Mint: 採用CTA */
.btn-mint {
  background: var(--c-mint);
  color: #fff;
  box-shadow: 0 8px 24px rgba(100, 192, 171, 0.35);
}
.btn-mint:hover { background: #4faa95; }
.btn-mint .btn-circle { background: #fff; color: var(--c-mint); }

/* Secondary: 白ピルそのまま（デフォルトと同じ） */
.btn-secondary { /* デフォルト */ }

/* Ghost: テキストリンク風（カード内など小さい用途） */
.btn-ghost {
  padding: 6px 6px 6px 18px;
  gap: 12px;
  font-size: 13px;
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--c-border);
}
.btn-ghost:hover { background: #fff; box-shadow: 0 6px 18px rgba(62,58,57,0.08); }
.btn-ghost .btn-circle { width: 32px; height: 32px; }
.btn-ghost .btn-circle svg { width: 10px; height: 10px; }

@media (max-width: 640px) {
  .btn { padding: 6px 6px 6px 24px; font-size: 13px; gap: 14px; }
  .btn-circle { width: 40px; height: 40px; }
  .btn-circle svg { width: 12px; height: 12px; }
  .btn-ghost { padding: 4px 4px 4px 14px; font-size: 12px; gap: 10px; }
  .btn-ghost .btn-circle { width: 28px; height: 28px; }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: all var(--transition);
  pointer-events: none;
}
.header > * { pointer-events: auto; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
/* ロゴ：白背景、右下のみ角丸、上下に余白 */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #ffffff;
  padding: 18px 40px;
  border-radius: 0 0 var(--radius-lg) 0;
  box-shadow: 0 4px 16px rgba(62, 58, 57, 0.06);
  position: relative;
  z-index: 102;
}
.logo img { width: 64px; height: auto; display: block; }

/* メガメニューナビ：右寄せ、ハンバーガーと接続 */
.nav {
  display: flex;
  align-items: stretch;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 0 0 0 var(--radius-lg);
  padding: 0 12px;
  box-shadow: 0 4px 16px rgba(62, 58, 57, 0.06);
  margin-left: auto;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > a, .nav-item > span.nav-label {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-charcoal);
  letter-spacing: 0.04em;
  position: relative;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-item:hover > a,
.nav-item:hover > span.nav-label { color: var(--c-pink); }
.nav-item > a::after,
.nav-item > span.nav-label::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c-pink);
  transition: width var(--transition), opacity var(--transition);
  transform: translateX(-50%);
  opacity: 0;
}
.nav-item:hover > a::after,
.nav-item:hover > span.nav-label::after,
.nav-item.is-active > a::after { width: 20px; opacity: 1; }

/* メガメニューパネル */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  background: #ffffff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px 36px;
  min-width: 480px;
  box-shadow: 0 20px 48px rgba(62, 58, 57, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--transition), transform 0.35s var(--transition), visibility 0.35s;
}
.nav-item.has-submenu:hover .megamenu,
.nav-item.has-submenu:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.megamenu-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.megamenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-charcoal);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.megamenu a:hover { background: var(--c-bg-soft); color: var(--c-pink); }
.megamenu a .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-mint);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.megamenu a:hover .dot { background: var(--c-pink); transform: scale(1.4); }
.megamenu-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: flex-end;
}

/* ハンバーガーボタン：ナビに接続 */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: var(--header-h);
  padding: 0 28px 0 36px;
  background: var(--c-charcoal);
  color: #fff;
  border-radius: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background var(--transition);
}
.menu-btn:hover { background: #565250; }
.menu-btn .lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-btn .lines span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-btn .label {
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* スクロール時：ロゴ非表示、ナビとメニューは縮小 */
.header.is-scrolled .logo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s var(--transition), transform 0.3s var(--transition), visibility 0.3s;
}
.header.is-scrolled .nav,
.header.is-scrolled .menu-btn { height: 68px; }

/* オーバーレイメニュー（全画面ハンバーガー） */
.overlay-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--transition), visibility 0.5s;
  display: grid;
  grid-template-columns: 1fr 380px;
  overflow-y: auto;
}
.overlay-menu.is-open { opacity: 1; visibility: visible; }

.overlay-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-charcoal);
  color: #fff;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.overlay-close:hover { transform: rotate(90deg); }
.overlay-close svg { width: 18px; height: 18px; }

.overlay-main {
  padding: 96px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.overlay-main::before {
  content: "MENU";
  position: absolute;
  top: 56px;
  left: 80px;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--c-pink);
}
.overlay-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.overlay-nav > li {
  border-bottom: 1px solid var(--c-border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
}
.overlay-menu.is-open .overlay-nav > li { opacity: 1; transform: translateY(0); }
.overlay-menu.is-open .overlay-nav > li:nth-child(1) { transition-delay: 0.1s; }
.overlay-menu.is-open .overlay-nav > li:nth-child(2) { transition-delay: 0.15s; }
.overlay-menu.is-open .overlay-nav > li:nth-child(3) { transition-delay: 0.2s; }
.overlay-menu.is-open .overlay-nav > li:nth-child(4) { transition-delay: 0.25s; }
.overlay-menu.is-open .overlay-nav > li:nth-child(5) { transition-delay: 0.3s; }

.overlay-nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-decoration: none;
  color: var(--c-charcoal);
  font-weight: 700;
  position: relative;
  transition: color var(--transition), padding var(--transition);
}
.overlay-nav-row:hover { color: var(--c-pink); padding-left: 16px; }
.overlay-nav-num {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--c-pink);
  letter-spacing: 0.15em;
  width: 40px;
  flex-shrink: 0;
}
.overlay-nav-title {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  flex: 1;
}
.overlay-nav-en {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--c-text-sub);
  letter-spacing: 0.2em;
}
.overlay-nav-row .arrow-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.overlay-nav-row:hover .arrow-icon { background: var(--c-pink); transform: translateX(6px); }
.overlay-nav-row .arrow-icon svg { width: 12px; height: 12px; }

.overlay-side {
  background: var(--c-bg-warm);
  padding: 96px 56px 56px;
  position: relative;
}
.overlay-side::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--c-pink-tint);
  opacity: 0.7;
}
.overlay-side-inner {
  position: relative;
  z-index: 1;
}
.overlay-side h4 {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--c-pink);
  margin-bottom: 16px;
}
.overlay-side address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-charcoal);
  margin-bottom: 32px;
}
.overlay-side .overlay-tel {
  display: block;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.overlay-side .overlay-tel-note { font-size: 12px; color: var(--c-text-sub); margin-bottom: 40px; }
.overlay-side .overlay-cta { display: flex; flex-direction: column; gap: 12px; }
.overlay-side .overlay-cta .btn { width: 100%; justify-content: space-between; }

/* ============================================
   FV (First View)
   ============================================ */
.fv {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 40px) 0 80px;
  background: var(--c-bg-warm);
  overflow: hidden;
}
.fv-deco { position: absolute; pointer-events: none; z-index: 1; }
.fv-deco-arc {
  left: -160px; top: 50%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: var(--c-bg-warm-soft);
  transform: translateY(-50%);
}
.fv-deco-arc-2 {
  right: -100px; top: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--c-pink-tint);
  opacity: 0.4;
}
.fv-deco-circle-1 {
  left: 4%; bottom: 8%;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-purple);
  opacity: 0.35;
}
.fv-deco-circle-2 {
  left: 38%; top: 65%;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-yellow);
  opacity: 0.7;
}
.fv-deco-circle-3 {
  right: 8%; top: 14%;
  width: 80px; height: 80px;
  border: 2px dashed var(--c-mint);
  border-radius: 50%;
  opacity: 0.5;
}
.fv-deco-dot {
  left: 52%; bottom: 22%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-pink);
}
.fv-deco-dot-2 {
  right: 22%; bottom: 8%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-mint);
}

.fv-inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  z-index: 2;
}
.fv-photo {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.fv-photo img { width: 100%; height: 100%; object-fit: cover; }
.fv-photo-1 {
  grid-column: 1; grid-row: 1;
  aspect-ratio: 16 / 11;
  border-radius: 320px 24px 24px 24px;
}
.fv-photo-2 {
  grid-column: 2; grid-row: 1;
  aspect-ratio: 16 / 11;
  border-radius: 24px 320px 24px 24px;
  margin-top: 40px;
}
.fv-photo-3 {
  grid-column: 2; grid-row: 2;
  aspect-ratio: 1;
  width: 70%;
  margin-left: auto;
  margin-top: -120px;
  border-radius: 50%;
  border: 8px solid var(--c-bg-warm);
}

.fv-text {
  grid-column: 1; grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 0 0;
  position: relative;
}
.fv-headline {
  font-size: clamp(32px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c-charcoal);
}
.fv-headline .accent { color: var(--c-pink); }
.fv-headline .line { display: block; }
.fv-sub {
  margin-top: 32px;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--c-text-sub);
  line-height: 1.7;
  font-weight: 500;
}

.fv-bottom {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 64px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.fv-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--c-text-sub);
  letter-spacing: 0.1em;
}
.fv-tags span { display: inline-flex; align-items: center; gap: 8px; }
.fv-tags span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-mint);
}
.fv-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.fv-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-text-sub);
  z-index: 3;
}
.fv-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-charcoal), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   Concept
   ============================================ */
.concept {
  position: relative;
  padding: 160px 0;
  background: #fff;
  overflow: hidden;
}
.concept::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--c-mint-tint);
  z-index: 0;
}
.concept::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--c-yellow-tint);
  opacity: 0.5;
  z-index: 0;
}
.concept-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-photos { position: relative; }
.concept-photo-main {
  width: 90%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.concept-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.concept-photo-sub {
  position: absolute;
  right: 0; bottom: -60px;
  width: 50%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.concept-photo-sub img { width: 100%; height: 100%; object-fit: cover; }
.concept-deco {
  position: absolute;
  top: -40px; left: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--c-pink);
  opacity: 0.2;
  z-index: -1;
}
.concept-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.concept-text h2 em { font-style: normal; color: var(--c-mint); }
.concept-text p { font-size: 16px; line-height: 2; margin-bottom: 24px; color: var(--c-text); }
.concept-text .concept-cta { margin-top: 16px; }

/* ============================================
   Values
   ============================================ */
.values {
  position: relative;
  padding: 160px 0 120px;
  background: var(--c-bg-soft);
  overflow: hidden;
}
.values::before {
  content: "";
  position: absolute;
  top: 60px; right: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--c-purple-tint);
  opacity: 0.7;
}
.values-inner { position: relative; z-index: 1; }
.values-header { text-align: center; margin-bottom: 80px; }
.values-header .section-label { padding-left: 0; }
.values-header .section-label::before { left: 50%; transform: translateX(-100px); }
.values-header .section-label::after {
  content: "";
  position: absolute;
  right: 50%; top: 50%;
  width: 40px; height: 1px;
  background: var(--c-mint);
  transform: translateX(100px);
}
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 32px 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-card .num {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.value-card:nth-child(1) .num { background: var(--c-mint); }
.value-card:nth-child(2) .num { background: var(--c-pink); }
.value-card:nth-child(3) .num { background: var(--c-purple); }
.value-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em; }
.value-card p { font-size: 14px; color: var(--c-text-sub); line-height: 1.9; }

/* ============================================
   Features
   ============================================ */
.features {
  position: relative;
  padding: 160px 0;
  background: #fff;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: 200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--c-pink-tint);
  opacity: 0.5;
}
.features-inner { position: relative; z-index: 1; }
.features-header { text-align: center; margin-bottom: 80px; }
.features-header .section-label { padding-left: 0; }
.features-header .section-label::before { left: 50%; transform: translateX(-100px); }
.features-header .section-label::after {
  content: "";
  position: absolute;
  right: 50%; top: 50%;
  width: 40px; height: 1px;
  background: var(--c-mint);
  transform: translateX(100px);
}
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.feature-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
.feature-item:nth-child(even) { margin-top: 80px; }
.feature-photo {
  position: relative;
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo::before {
  content: attr(data-num);
  position: absolute;
  top: -12px; left: -12px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--c-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
}
.feature-content h3 { font-size: 22px; font-weight: 700; line-height: 1.6; margin-bottom: 16px; }
.feature-content p { font-size: 15px; line-height: 2; color: var(--c-text); }

/* ============================================
   Services
   ============================================ */
.services {
  position: relative;
  padding: 160px 0;
  background: var(--c-bg-soft);
  overflow: hidden;
}
.services-inner { position: relative; z-index: 1; }
.services-header { text-align: center; margin-bottom: 80px; }
.services-header .section-label { padding-left: 0; }
.services-header .section-label::before { left: 50%; transform: translateX(-100px); }
.services-header .section-label::after {
  content: "";
  position: absolute;
  right: 50%; top: 50%;
  width: 40px; height: 1px;
  background: var(--c-mint);
  transform: translateX(100px);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-body { padding: 40px 36px 44px; }
.service-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  font-weight: 600;
}
.service-card.is-care .service-tag { background: var(--c-mint-tint); color: var(--c-mint); }
.service-card.is-nursery .service-tag { background: var(--c-pink-tint); color: var(--c-pink); }
.service-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; line-height: 1.6; }
.service-card p { font-size: 15px; line-height: 1.9; color: var(--c-text-sub); margin-bottom: 24px; }
.service-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.service-points li {
  min-height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 14px;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(62, 58, 57, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-points li:hover { transform: translateY(-3px); }
.service-card.is-care .service-points li { background: var(--c-mint); }
.service-card.is-care .service-points li:nth-child(2) { background: var(--c-purple); }
.service-card.is-care .service-points li:nth-child(3) { background: var(--c-charcoal); }
.service-card.is-care .service-points li:nth-child(4) { background: var(--c-yellow); color: var(--c-charcoal); }
.service-card.is-nursery .service-points li { background: var(--c-pink); }
.service-card.is-nursery .service-points li:nth-child(2) { background: var(--c-yellow); color: var(--c-charcoal); }
.service-card.is-nursery .service-points li:nth-child(3) { background: var(--c-mint); }
.service-card.is-nursery .service-points li:nth-child(4) { background: var(--c-purple); }

@media (max-width: 640px) {
  .service-points { gap: 8px; }
  .service-points li { min-height: 60px; font-size: 11px; padding: 10px; line-height: 1.4; border-radius: 10px; }
}

/* ============================================
   News & Blog
   ============================================ */
.news { padding: 120px 0; background: #fff; }
.news-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.news-block h3 {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}
.news-block h3 .en {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--c-mint);
}
.news-list { list-style: none; }
.news-list li {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.news-list li:hover { background: var(--c-bg-soft); }
.news-date { font-family: var(--font-en); font-size: 13px; color: var(--c-text-sub); letter-spacing: 0.08em; }
.news-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-align: center;
}
.news-cat.cat-event { background: var(--c-yellow); color: var(--c-charcoal); }
.news-cat.cat-info { background: var(--c-mint-tint); color: var(--c-mint); }
.news-cat.cat-recruit { background: var(--c-purple-tint); color: var(--c-purple); }
.news-title { font-size: 14px; line-height: 1.7; }
.blog-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-card {
  background: var(--c-bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition);
  display: block;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-thumb { aspect-ratio: 4/3; overflow: hidden; }
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 16px; }
.blog-meta { display: flex; gap: 12px; font-size: 11px; margin-bottom: 8px; }
.blog-meta .blog-cat { color: var(--c-pink); font-weight: 600; letter-spacing: 0.08em; }
.blog-meta .blog-date { color: var(--c-text-sub); font-family: var(--font-en); }
.blog-card h4 { font-size: 14px; line-height: 1.6; font-weight: 600; }
.news-more { margin-top: 32px; text-align: right; }

/* ============================================
   Instagram
   ============================================ */
.instagram {
  padding: 120px 0;
  background: var(--c-bg-soft);
  position: relative;
  overflow: hidden;
}
.instagram::before {
  content: "";
  position: absolute;
  top: 40px; left: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--c-yellow-tint);
  opacity: 0.5;
}
.instagram::after {
  content: "";
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--c-mint-tint);
  opacity: 0.6;
}
.instagram-inner { position: relative; z-index: 1; }
.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.instagram-header h3 {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.instagram-header h3 .en {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--c-pink);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.instagram-grid a {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
  display: block;
}
.instagram-grid a:hover { transform: translateY(-4px); }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; }
.instagram-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 134, 168, 0);
  transition: background var(--transition);
}
.instagram-grid a:hover::after { background: rgba(238, 134, 168, 0.2); }

/* ============================================
   Recruit
   ============================================ */
.recruit {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  color: #fff;
}
.recruit-bg { position: absolute; inset: 0; z-index: 0; }
.recruit-bg img { width: 100%; height: 100%; object-fit: cover; }
.recruit-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62, 58, 57, 0.85) 0%, rgba(100, 192, 171, 0.6) 100%);
}

/* ============================================
   Recruit Flow Band (世代を超えて繋がる)
   ============================================ */
.recruit-flow {
  position: absolute;
  left: 0;
  right: 0;
  height: 140px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}
.recruit-flow.flow-top { top: 80px; }
.recruit-flow.flow-bottom { bottom: 80px; }
.recruit-flow .flow-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: recruit-flow-anim 40s linear infinite;
}
.recruit-flow.flow-bottom .flow-track {
  animation: recruit-flow-anim 50s linear infinite;
}
.recruit-flow .flow-svg {
  display: block;
  width: 1200px;
  height: 100%;
  flex-shrink: 0;
}
@keyframes recruit-flow-anim {
  from { transform: translateX(0); }
  to { transform: translateX(-1200px); }
}
@media (max-width: 640px) {
  .recruit-flow { height: 90px; }
  .recruit-flow.flow-top { top: 60px; }
  .recruit-flow.flow-bottom { bottom: 60px; }
  .recruit-flow .flow-svg { width: 800px; }
  @keyframes recruit-flow-anim {
    from { transform: translateX(0); }
    to { transform: translateX(-800px); }
  }
}
.recruit-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.recruit-inner .deco-header .deco-en { color: #ffffff; }
.recruit-inner .deco-header .deco-arc { color: #ffffff; opacity: 0.9; }
.recruit .section-label { color: var(--c-yellow); padding-left: 0; }
.recruit .section-label::before {
  background: var(--c-yellow);
  left: 50%;
  transform: translateX(-100px);
}
.recruit .section-label::after {
  content: "";
  position: absolute;
  right: 50%; top: 50%;
  width: 40px; height: 1px;
  background: var(--c-yellow);
  transform: translateX(100px);
}
.recruit h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 32px;
}
.recruit p { font-size: 16px; line-height: 2; margin-bottom: 40px; opacity: 0.95; }
.recruit-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin: 0 auto 48px;
  text-align: left;
  max-width: 600px;
}
.recruit-points li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
}
.recruit-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 2px;
  background: var(--c-yellow);
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 120px 0;
  background: var(--c-charcoal);
  color: #fff;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--c-pink);
  opacity: 0.15;
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--c-mint);
  opacity: 0.18;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.final-cta-inner .deco-header .deco-en { color: #ffffff; }
.final-cta-inner .deco-header .deco-arc { color: #ffffff; opacity: 0.9; }
.final-cta .section-label { color: var(--c-yellow); padding-left: 0; }
.final-cta .section-label::before {
  background: var(--c-yellow);
  left: 50%;
  transform: translateX(-100px);
}
.final-cta .section-label::after {
  content: "";
  position: absolute;
  right: 50%; top: 50%;
  width: 40px; height: 1px;
  background: var(--c-yellow);
  transform: translateX(100px);
}
.final-cta h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 24px;
}
.final-cta p { font-size: 16px; line-height: 2; margin-bottom: 40px; opacity: 0.85; }
.final-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-buttons .btn {
  padding: 16px 16px 16px 56px;
  font-size: 20px;
  gap: 28px;
}
.final-cta-buttons .btn::before {
  width: 14px;
  height: 14px;
}
.final-cta-buttons .btn .btn-circle {
  width: 78px;
  height: 78px;
}
.final-cta-buttons .btn .btn-circle svg {
  width: 24px;
  height: 24px;
}
.final-cta .btn-secondary {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5);
}
.final-cta .btn-secondary:hover {
  background: #fff;
  color: var(--c-charcoal);
}
.final-cta .btn-secondary .btn-circle {
  background: #fff;
  color: var(--c-charcoal);
}
@media (max-width: 640px) {
  .final-cta-buttons .btn {
    padding: 12px 12px 12px 40px;
    font-size: 16px;
    gap: 20px;
  }
  .final-cta-buttons .btn .btn-circle {
    width: 56px;
    height: 56px;
  }
  .final-cta-buttons .btn .btn-circle svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer { background: #2a2727; color: #c5c2c0; padding: 80px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 32px;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}
.footer-logo img {
  width: 120px;
  height: auto;
  display: block;
}
.footer-brand address {
  font-size: 13px;
  line-height: 1.8;
  font-style: normal;
  margin-top: 16px;
}
.footer-nav h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
}
.footer-nav ul { list-style: none; }
.footer-nav li { font-size: 13px; line-height: 2.4; }
.footer-nav a:hover { color: var(--c-mint); }
.footer-bottom {
  border-top: 1px solid #3d3a39;
  margin: 64px auto 0;
  padding: 24px 32px 0;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .logo { padding: 0 24px; }
  .logo img { width: 64px; }
  .menu-btn { padding: 0 24px 0 28px; }
  .menu-btn .label { display: none; }
  .overlay-menu { grid-template-columns: 1fr; }
  .overlay-side { display: none; }
  .overlay-main { padding: 96px 32px 64px; }
  .fv-inner { grid-template-columns: 1fr; gap: 16px; }
  .fv-photo-1 { aspect-ratio: 16/9; border-radius: 240px 24px 24px 24px; }
  .fv-photo-2 { grid-column: 1; grid-row: auto; aspect-ratio: 16/9; border-radius: 24px 240px 24px 24px; margin-top: 0; }
  .fv-photo-3 { grid-column: 1; grid-row: auto; aspect-ratio: 1; width: 60%; margin: -60px auto 0; }
  .fv-text { grid-column: 1; grid-row: auto; padding: 40px 0 0; }
  .concept-inner { grid-template-columns: 1fr; gap: 80px; }
  .concept-photo-main { width: 80%; }
  .values-list { grid-template-columns: 1fr; gap: 60px; max-width: 480px; margin: 0 auto; }
  .features-list { grid-template-columns: 1fr; gap: 60px; }
  .feature-item:nth-child(even) { margin-top: 0; }
  .services-list { grid-template-columns: 1fr; }
  .news-inner { grid-template-columns: 1fr; gap: 80px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .logo { padding: 0 16px; }
  .logo img { width: 52px; }
  .menu-btn { padding: 0 16px; gap: 0; }
  .menu-btn .lines span { width: 22px; }
  .overlay-main { padding: 80px 24px 48px; }
  .overlay-main::before { left: 24px; top: 36px; }
  .overlay-close { top: 24px; right: 24px; width: 48px; height: 48px; }
  .overlay-nav-row { padding: 20px 0; }
  .overlay-nav-num { width: 32px; font-size: 12px; }
  .overlay-nav-en { display: none; }
  .overlay-nav-row .arrow-icon { width: 32px; height: 32px; }
  .header.is-scrolled .logo,
  .header.is-scrolled .nav,
  .header.is-scrolled .menu-btn { height: 56px; }

  .container { padding: 0 20px; }
  .fv { padding: calc(var(--header-h) + 24px) 0 60px; }
  .fv-inner { padding: 0 20px; gap: 12px; }
  .fv-bottom { padding: 0 20px; }
  .fv-cta { width: 100%; }
  .fv-cta .btn { flex: 1; padding: 16px 24px; font-size: 14px; }
  .fv-headline { font-size: clamp(28px, 8vw, 40px); }
  .fv-deco-arc { width: 280px; height: 280px; left: -80px; }
  .fv-deco-arc-2 { width: 160px; height: 160px; }

  .concept { padding: 100px 0; }
  .concept-photo-sub { width: 56%; bottom: -40px; }
  .values { padding: 100px 0 80px; }
  .features { padding: 100px 0; }
  .feature-item { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .feature-photo { margin: 0 auto; width: 160px; height: 160px; }
  .feature-photo::before { width: 44px; height: 44px; font-size: 18px; top: -10px; left: 0; }
  .services { padding: 100px 0; }
  .service-body { padding: 28px 24px 32px; }
  .news { padding: 80px 0; }
  .news-inner { gap: 60px; }
  .news-list li { grid-template-columns: 80px 70px 1fr; gap: 12px; padding: 16px 0; }
  .news-title { font-size: 13px; }
  .blog-list { grid-template-columns: 1fr 1fr; gap: 16px; }
  .instagram { padding: 80px 0; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .recruit { padding: 120px 0; }
  .recruit-points { grid-template-columns: 1fr; max-width: 320px; }
  .final-cta { padding: 80px 0; }
  .final-cta-buttons { flex-direction: column; align-items: stretch; }
  .footer { padding: 60px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.parallax { will-change: transform; }

/* ============================================
   Mark Decoration (扇形シンボル)
   ============================================ */
.mark-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.mark-deco-inner { width: 100%; height: 100%; display: block; }
.mark-deco img { width: 100%; height: auto; display: block; }

/* Rotation variants */
.mark-spin .mark-deco-inner { animation: mark-rotate 90s linear infinite; }
.mark-spin-slow .mark-deco-inner { animation: mark-rotate 140s linear infinite; }
.mark-spin-rev .mark-deco-inner { animation: mark-rotate 110s linear infinite reverse; }
@keyframes mark-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Float */
.mark-float { animation: mark-float-y 9s ease-in-out infinite; }
.mark-float-2 { animation: mark-float-y 11s ease-in-out infinite -3s; }
@keyframes mark-float-y {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -28px, 0); }
}

/* Breathe (scale) */
.mark-breathe .mark-deco-inner { animation: mark-breathe 7s ease-in-out infinite; }
@keyframes mark-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* Drift (rotate + translate) */
.mark-drift .mark-deco-inner { animation: mark-drift 28s ease-in-out infinite; }
@keyframes mark-drift {
  0%   { transform: rotate(0deg)   translateX(0); }
  50%  { transform: rotate(180deg) translateX(20px); }
  100% { transform: rotate(360deg) translateX(0); }
}

/* FV marks */
.mark-fv-1 { top: -8%;  right: -10%; width: 620px; height: 620px; opacity: 0.10; }
.mark-fv-2 { top: 38%;  left: 28%;   width: 110px; height: 110px; opacity: 0.55; }
.mark-fv-3 { bottom: 12%; right: 8%; width: 70px;  height: 70px;  opacity: 0.65; }

/* Concept marks */
.mark-concept-1 { top: 6%; left: -8%; width: 360px; height: 360px; opacity: 0.08; }
.mark-concept-2 { bottom: 12%; right: -5%; width: 90px; height: 90px; opacity: 0.5; z-index: 2; }

/* Values mark */
.mark-values-1 { bottom: -18%; left: -8%; width: 460px; height: 460px; opacity: 0.06; }

/* Features marks */
.mark-features-1 { top: 30%; right: -12%; width: 520px; height: 520px; opacity: 0.07; }
.mark-features-2 { bottom: 4%; left: 8%; width: 80px; height: 80px; opacity: 0.45; }

/* Services marks */
.mark-services-1 { top: -8%; right: -6%; width: 380px; height: 380px; opacity: 0.08; }
.mark-services-2 { bottom: 18%; left: -8%; width: 280px; height: 280px; opacity: 0.07; }

/* Instagram mark */
.mark-instagram-1 { bottom: -10%; right: 20%; width: 240px; height: 240px; opacity: 0.10; }

/* Recruit marks (on dark bg) */
.mark-recruit-1 { top: -10%; left: -8%; width: 480px; height: 480px; opacity: 0.18; z-index: 1; }
.mark-recruit-2 { bottom: -8%; right: -8%; width: 320px; height: 320px; opacity: 0.14; z-index: 1; }

/* Final CTA marks */
.mark-cta-1 { top: 10%; right: -10%; width: 320px; height: 320px; opacity: 0.18; }
.mark-cta-2 { bottom: -18%; left: -6%; width: 280px; height: 280px; opacity: 0.14; }

/* Section label with small spinning mark */
.label-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 0 !important;
}
.label-mark::before, .label-mark::after { display: none !important; }
.label-mark .mini-mark {
  width: 26px;
  height: 26px;
  animation: mark-rotate 30s linear infinite;
  flex-shrink: 0;
}
.label-mark .mini-mark img { width: 100%; height: 100%; }

/* Mobile mark sizing */
@media (max-width: 1024px) {
  .mark-fv-1 { width: 380px; height: 380px; top: -4%; right: -16%; }
  .mark-fv-2 { display: none; }
  .mark-concept-1 { width: 220px; height: 220px; }
  .mark-values-1 { width: 280px; height: 280px; bottom: -10%; }
  .mark-features-1 { width: 320px; height: 320px; }
  .mark-services-1 { width: 240px; height: 240px; }
  .mark-services-2 { width: 180px; height: 180px; }
  .mark-recruit-1 { width: 280px; height: 280px; }
  .mark-recruit-2 { width: 200px; height: 200px; }
  .mark-cta-1 { width: 200px; height: 200px; }
  .mark-cta-2 { width: 180px; height: 180px; }
}
@media (max-width: 640px) {
  .mark-fv-1 { width: 240px; height: 240px; right: -20%; top: -2%; }
  .mark-fv-3 { width: 50px; height: 50px; }
  .mark-concept-1, .mark-concept-2 { display: none; }
  .mark-values-1 { width: 200px; height: 200px; }
  .mark-features-1 { width: 220px; height: 220px; right: -18%; }
  .mark-features-2 { width: 60px; height: 60px; }
  .mark-services-1 { width: 180px; height: 180px; }
  .mark-services-2 { display: none; }
  .mark-instagram-1 { display: none; }
  .mark-recruit-1 { width: 200px; height: 200px; }
  .mark-recruit-2 { display: none; }
  .mark-cta-1 { width: 160px; height: 160px; }
  .mark-cta-2 { display: none; }
  .label-mark .mini-mark { width: 22px; height: 22px; }
}

/* ============================================
   Concept Fan Animation (扇展開)
   ============================================ */
.concept-fan {
  position: relative;
  width: 92%;
  aspect-ratio: 4/5;
  margin: 0 auto;
}
.concept-fan-photo {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 6px solid #fff;
  box-shadow: 0 20px 48px rgba(62, 58, 57, 0.18);
  transform-origin: 28% 100%;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.concept-fan-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.concept-fan-photo.pos-0 {
  transform: rotate(0deg) translateX(0) scale(1);
  z-index: 4;
  opacity: 1;
}
.concept-fan-photo.pos-1 {
  transform: rotate(-7deg) translateX(-3%) scale(0.97);
  z-index: 3;
  opacity: 0.95;
}
.concept-fan-photo.pos-2 {
  transform: rotate(-14deg) translateX(-7%) scale(0.93);
  z-index: 2;
  opacity: 0.78;
}
.concept-fan-photo.pos-3 {
  transform: rotate(-21deg) translateX(-11%) scale(0.89);
  z-index: 1;
  opacity: 0.55;
}

.concept-fan-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -36px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.concept-fan-indicator span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: background 0.4s var(--transition), width 0.4s var(--transition);
}
.concept-fan-indicator span.is-active {
  background: var(--c-pink);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   Service Availability Badge
   ============================================ */
.service-photo { position: relative; }
.service-availability {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(62, 58, 57, 0.18);
  z-index: 3;
  min-width: 104px;
}
.service-availability .av-label {
  font-size: 11px;
  color: var(--c-pink);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.service-availability .av-status {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-pink);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.service-availability.is-full {
  background: #faf6f0;
}
.service-availability.is-full .av-status,
.service-availability.is-full .av-label { color: var(--c-text-sub); }
.service-availability.is-some .av-status,
.service-availability.is-some .av-label { color: var(--c-mint); }

.service-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-charcoal);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--c-charcoal);
  width: max-content;
}

@media (max-width: 1024px) {
  .concept-fan { width: 80%; }
}
@media (max-width: 640px) {
  .concept-fan { width: 90%; aspect-ratio: 3/4; }
  .concept-fan-photo { border-width: 4px; }
  .service-availability {
    right: 12px;
    bottom: 12px;
    padding: 10px 16px;
    min-width: 86px;
  }
  .service-availability .av-status { font-size: 16px; }
  .service-availability .av-label { font-size: 10px; }
}

/* ============================================
   Wave Shape Divider
   ============================================ */
.wave-divider {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-divider svg path {
  fill: #ffffff;
}
.wave-divider.wave-soft svg path { fill: var(--c-bg-soft); }
.wave-divider.wave-warm svg path { fill: var(--c-bg-warm); }
.wave-divider.wave-warm-soft svg path { fill: var(--c-bg-warm-soft); }
.wave-divider.wave-charcoal svg path { fill: var(--c-charcoal); }
.wave-divider.wave-mint svg path { fill: var(--c-mint-tint); }
.wave-divider.wave-pink svg path { fill: var(--c-pink-tint); }

/* Variant: wave at bottom of section, pointing down */
.wave-divider.is-bottom {
  top: auto;
  bottom: -1px;
  transform: scaleY(-1);
}

/* Variant: thinner wave (80px) */
.wave-divider.wave-thin {
  height: 80px;
}

@media (max-width: 640px) {
  .wave-divider { height: 60px; }
  .wave-divider.wave-thin { height: 50px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mark-spin .mark-deco-inner,
  .mark-spin-slow .mark-deco-inner,
  .mark-spin-rev .mark-deco-inner,
  .mark-float,
  .mark-float-2,
  .mark-breathe .mark-deco-inner,
  .mark-drift .mark-deco-inner,
  .label-mark .mini-mark { animation: none; }
}

/* ============================================
   About Page
   ============================================ */

/* Page Header */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + 80px) 24px 100px;
  background: var(--c-bg-warm-soft);
  text-align: center;
  overflow: hidden;
}
.page-header::before,
.page-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.page-header::before {
  width: 360px; height: 360px;
  background: var(--c-mint-tint);
  top: -120px; left: -120px;
  opacity: 0.6;
}
.page-header::after {
  width: 280px; height: 280px;
  background: var(--c-pink-tint);
  bottom: -100px; right: -80px;
  opacity: 0.7;
}
.page-header .mark-deco { z-index: 1; }
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-text-sub);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--c-text-sub); }
.breadcrumb a:hover { color: var(--c-pink); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }
.page-en {
  display: inline-block;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--c-pink);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.page-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.page-lead {
  font-size: 15px;
  line-height: 2;
  color: var(--c-text-sub);
  max-width: 640px;
  margin: 0 auto;
}

/* About Lead Section */
.about-lead {
  padding: 140px 24px;
  background: #fff;
  text-align: center;
}
.about-lead-inner { max-width: 820px; margin: 0 auto; }
.about-lead h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.about-lead h2 em { font-style: normal; color: var(--c-pink); }
.about-lead p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--c-text);
  text-align: center;
}

/* About 上部ラッパ：ヒーロー＋リードを横断する背景マーク */
.about-top-wrap {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.about-top-mark {
  position: absolute;
  z-index: 0;
  width: min(880px, 70vw);
  top: 38%;
  left: 14%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
  animation: mark-rotate 140s linear infinite;
}
.about-top-mark img {
  width: 100%;
  height: auto;
  display: block;
}
.about-top-wrap .page-hero { background: transparent; }
.about-top-wrap .page-hero-bg { display: none; }
.about-top-wrap .about-lead {
  background: transparent;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .about-top-mark { width: min(800px, 110vw); left: 30%; top: 32%; }
}
@media (prefers-reduced-motion: reduce) {
  .about-top-mark { animation: none; }
}

/* About Concept Section (layered photo + text) */
.about-concept {
  position: relative;
  padding: 140px 0 160px;
  background: #fff;
  overflow: hidden;
}
.about-concept-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-concept-visual {
  position: relative;
  aspect-ratio: 5 / 4;
}
.about-concept-bg {
  position: absolute;
  top: 32px;
  left: -36px;
  right: 36px;
  bottom: -36px;
  background: var(--c-mint-tint);
  border-radius: 180px 24px 24px 24px;
  z-index: 0;
}
.about-concept-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 140px 24px 24px 24px;
  z-index: 1;
}
.about-concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-concept-text .deco-header { margin-bottom: 28px; }
.about-concept-copy {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.about-concept-copy em { font-style: normal; color: var(--c-pink); }
.about-concept-body p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 24px;
}
.about-concept-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .about-concept { padding: 100px 0 120px; }
  .about-concept-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 24px;
  }
  .about-concept-bg { border-radius: 100px 16px 16px 16px; }
  .about-concept-photo { border-radius: 80px 16px 16px 16px; }
}
@media (max-width: 640px) {
  .about-concept { padding: 80px 0 100px; }
  .about-concept-bg {
    top: 16px; left: -16px; right: 16px; bottom: -16px;
    border-radius: 70px 12px 12px 12px;
  }
  .about-concept-photo { border-radius: 56px 12px 12px 12px; }
}

/* 3 Hearts Section */
.about-hearts {
  padding: 140px 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-hearts-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-section-head {
  text-align: center;
  margin-bottom: 80px;
}
.about-section-head .section-title {
  margin-top: 12px;
}
.about-section-head .section-lead {
  font-size: 15px;
  color: var(--c-text-sub);
  line-height: 2;
  margin-top: 24px;
}
.hearts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.heart-card {
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.heart-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.heart-card .heart-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  opacity: 0.65;
}
.heart-card .heart-mark img { width: 100%; height: 100%; }
.heart-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.heart-card:nth-child(1) h3 { color: var(--c-mint); }
.heart-card:nth-child(2) h3 { color: var(--c-pink); }
.heart-card:nth-child(3) h3 { color: var(--c-purple); }
.heart-card p {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
  text-align: left;
}
@media (max-width: 900px) {
  .hearts-list { grid-template-columns: 1fr; gap: 24px; }
}

/* 5 Strengths Section */
.about-strengths {
  position: relative;
  padding: 140px 24px;
  background: var(--c-bg-soft);
  overflow: hidden;
}
.about-strengths-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.strengths-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.strength-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.strength-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.strength-num {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--c-pink);
  line-height: 1;
  border-right: 1px solid var(--c-border);
  padding-right: 32px;
}
.strength-row:nth-child(2) .strength-num { color: var(--c-mint); }
.strength-row:nth-child(3) .strength-num { color: var(--c-yellow); }
.strength-row:nth-child(4) .strength-num { color: var(--c-purple); }
.strength-row:nth-child(5) .strength-num { color: var(--c-pink); }
.strength-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.strength-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
}
@media (max-width: 700px) {
  .strength-row {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 16px;
  }
  .strength-num {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
    padding-bottom: 12px;
    font-size: 40px;
  }
}

/* Link Card (Message / Philosophy) */
.link-section {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.link-section.is-warm { background: var(--c-bg-warm); }
.link-section.is-white { background: #fff; }
.link-card {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.link-card.is-reverse { grid-template-columns: 1fr 1fr; }
.link-card.is-reverse .link-card-body { order: 1; }
.link-card.is-reverse .link-card-photo { order: 2; }
.link-card-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.link-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.link-card-body h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 12px 0 24px;
}
.link-card-body .link-lead {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 32px;
  color: var(--c-text);
}
.mvv-list {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--c-border);
}
.mvv-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: baseline;
}
.mvv-list .mvv-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--c-pink);
  font-weight: 600;
}
.mvv-list .mvv-text {
  font-size: 14px;
  line-height: 1.9;
}
@media (max-width: 900px) {
  .link-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .link-card.is-reverse .link-card-body { order: 2; }
  .link-card.is-reverse .link-card-photo { order: 1; }
}

/* Health Management Section */
.about-health {
  padding: 140px 24px;
  background: var(--c-mint-tint);
  position: relative;
  overflow: hidden;
}
.about-health-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.health-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.health-badge {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.health-badge .badge-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-mint);
  margin-bottom: 12px;
}
.health-badge .badge-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-text);
}
.health-badge .badge-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--c-mint);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 auto 20px;
  line-height: 1.3;
  text-align: center;
  padding: 8px;
}
.health-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin: 12px 0 24px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.health-body .health-lead {
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-text);
}
.health-items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.health-items li {
  position: relative;
  padding: 18px 20px 18px 56px;
  background: #fff;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.85;
  box-shadow: var(--shadow-sm);
}
.health-items li::before {
  counter-increment: hi;
  content: counter(hi);
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-mint);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.health-items { counter-reset: hi; }
@media (max-width: 900px) {
  .health-top { grid-template-columns: 1fr; gap: 32px; }
  .health-badge { max-width: 260px; margin: 0 auto; }
  .health-items { grid-template-columns: 1fr; }
}

/* Festival Section */
.about-festival {
  padding: 140px 24px 120px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-festival-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.festival-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  margin-bottom: 64px;
}
.festival-gallery > div {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.festival-gallery > div:nth-child(1) {
  grid-row: span 2;
}
.festival-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.festival-gallery > div:hover img { transform: scale(1.05); }
.festival-body {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.festival-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 12px 0 24px;
}
.festival-body .festival-lead {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 32px;
  text-align: left;
}
.festival-points {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}
.festival-points li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px dashed var(--c-border);
  font-size: 14px;
  line-height: 1.85;
}
.festival-points li::before {
  content: "";
  position: absolute;
  left: 8px; top: 22px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-yellow);
}
.festival-note {
  font-size: 12px;
  color: var(--c-text-sub);
  text-align: left;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .festival-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .festival-gallery > div:nth-child(1) { grid-row: span 1; grid-column: span 2; }
}

/* Company / History Section */
.about-company {
  padding: 140px 24px;
  background: var(--c-bg-warm);
  position: relative;
  overflow: hidden;
}
.about-company-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.company-table {
  list-style: none;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 100px;
}
.company-table li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: baseline;
  font-size: 14px;
  line-height: 1.85;
}
.company-table li:last-child { border-bottom: none; }
.company-table .ct-label {
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.04em;
}
.company-table .ct-value {
  color: var(--c-text);
}
.company-table .ct-value .note {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  color: var(--c-text-sub);
}
@media (max-width: 700px) {
  .company-table { padding: 8px 24px; }
  .company-table li { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
}

.history-head {
  text-align: center;
  margin-bottom: 64px;
}
.history-timeline {
  list-style: none;
  position: relative;
  padding-left: 40px;
}
.history-timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-pink), var(--c-mint), var(--c-yellow), var(--c-purple));
  opacity: 0.5;
}
.history-timeline li {
  position: relative;
  padding: 14px 0 14px 28px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: baseline;
}
.history-timeline li::before {
  content: "";
  position: absolute;
  left: -40px; top: 22px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-pink);
}
.history-timeline li:nth-child(5n+1)::before { border-color: var(--c-mint); }
.history-timeline li:nth-child(5n+2)::before { border-color: var(--c-pink); }
.history-timeline li:nth-child(5n+3)::before { border-color: var(--c-yellow); }
.history-timeline li:nth-child(5n+4)::before { border-color: var(--c-purple); }
.history-timeline li:nth-child(5n+5)::before { border-color: var(--c-mint); }
.history-timeline .h-date {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.history-timeline .h-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text);
}
.history-timeline .h-text .note {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  color: var(--c-text-sub);
}
.history-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--c-text-sub);
  padding-left: 40px;
}
@media (max-width: 700px) {
  .history-timeline li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================
   Message / Philosophy Page
   ============================================ */

/* Message - hero */
.message-hero {
  padding: 100px 24px;
  background: var(--c-bg-warm-soft);
  position: relative;
  overflow: hidden;
}
.message-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.message-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.message-portrait img { width: 100%; height: 100%; object-fit: cover; }
.message-copy {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 16px 0 32px;
}
.message-copy em { font-style: normal; color: var(--c-pink); }
.message-lead {
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-text);
}
.message-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--c-text-sub);
}
@media (max-width: 900px) {
  .message-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .message-portrait { max-width: 480px; margin: 0 auto; }
}

/* Message - body */
.message-body {
  padding: 120px 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.message-body-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.message-section {
  margin-bottom: 80px;
}
.message-section:last-child { margin-bottom: 0; }
.message-section h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-pink);
  display: inline-block;
}
.message-section p {
  font-size: 16px;
  line-height: 2.1;
  margin-bottom: 20px;
}
.message-section p:last-child { margin-bottom: 0; }
.message-inline-photo {
  margin: 48px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.message-inline-photo img { width: 100%; height: auto; display: block; }
.message-sign {
  text-align: right;
  padding: 48px 0 0;
  border-top: 1px solid var(--c-border);
  margin-top: 48px;
}
.message-sign .corp {
  font-size: 14px;
  color: var(--c-text-sub);
  margin-bottom: 4px;
}
.message-sign .role {
  font-size: 13px;
  color: var(--c-text-sub);
}
.message-sign .name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* Related Read Section */
.related-read {
  padding: 100px 24px;
  background: var(--c-bg-soft);
}
.related-read-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.related-read h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
}
.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: #fff;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-list a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--c-pink);
}
.related-list .arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-charcoal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.related-list a:hover .arrow {
  background: var(--c-pink);
  transform: translateX(4px);
}
@media (max-width: 700px) {
  .related-list { grid-template-columns: 1fr; }
}

/* Philosophy Sections */
.philo-lead {
  padding: 140px 24px;
  background: var(--c-bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philo-lead-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.philo-lead-copy {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin: 16px 0 40px;
}
.philo-lead-body p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 16px;
}

.philo-block {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.philo-block.is-white { background: #fff; }
.philo-block.is-warm { background: var(--c-bg-warm); }
.philo-block.is-mint { background: var(--c-mint-tint); }
.philo-block-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.philo-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--c-pink);
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 32px;
}
.philo-statement {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.philo-body p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 16px;
  text-align: left;
}
.philo-body p:last-child { margin-bottom: 0; }
.philo-block.is-mint .philo-body p { text-align: center; }

/* Philosophy Values cards (reuse hearts-list) */
.philo-values {
  padding: 120px 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.philo-values-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Philosophy keywords */
.philo-keywords {
  padding: 120px 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.philo-keywords-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.keyword-chip {
  background: var(--c-bg-soft);
  border-radius: var(--radius-md);
  padding: 32px 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.keyword-chip:nth-child(8n+1) { color: var(--c-mint); }
.keyword-chip:nth-child(8n+2) { color: var(--c-pink); }
.keyword-chip:nth-child(8n+3) { color: var(--c-yellow); }
.keyword-chip:nth-child(8n+4) { color: var(--c-purple); }
.keyword-chip:nth-child(8n+5) { color: var(--c-pink); }
.keyword-chip:nth-child(8n+6) { color: var(--c-mint); }
.keyword-chip:nth-child(8n+7) { color: var(--c-purple); }
.keyword-chip:nth-child(8n+8) { color: var(--c-yellow); }
.keyword-chip:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
@media (max-width: 700px) {
  .keyword-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .keyword-chip { padding: 24px 12px; font-size: 15px; }
}

/* ============================================
   Service Pages (Care / Nursery)
   ============================================ */
.svc-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 24px 100px;
  background: var(--c-bg-warm-soft);
  overflow: hidden;
}
.svc-hero.is-mint { background: var(--c-mint-tint); }
.svc-hero.is-pink { background: var(--c-pink-tint); }
.svc-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.svc-hero-text { }
.svc-hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 16px 0 32px;
}
.svc-hero-title em { font-style: normal; color: var(--c-pink); }
.svc-hero-lead {
  font-size: 16px;
  line-height: 2.1;
  margin-bottom: 40px;
}
.svc-hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.svc-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Generic content section */
.content-section {
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
}
.content-section.is-white { background: #fff; }
.content-section.is-soft { background: var(--c-bg-soft); }
.content-section.is-warm { background: var(--c-bg-warm); }
.content-section.is-mint { background: var(--c-mint-tint); }
.content-section.is-pink { background: var(--c-pink-tint); }
.content-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.content-section-inner.is-wide {
  max-width: 1400px;
}
@media (max-width: 1440px) {
  .content-section-inner.is-wide { max-width: calc(100% - 48px); }
}
.section-narrow { max-width: 880px; margin: 0 auto; }

/* 2-column with photo */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-block.is-reverse > :first-child { order: 2; }
.split-block.is-reverse > :last-child { order: 1; }
.split-block .split-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.split-block .split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-block h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.55;
  margin: 12px 0 24px;
  letter-spacing: 0.04em;
}
.split-block p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .split-block { grid-template-columns: 1fr; gap: 32px; }
  .split-block.is-reverse > :first-child { order: 1; }
  .split-block.is-reverse > :last-child { order: 2; }
}

/* Info cards grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.info-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.info-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.info-card .info-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.info-card .info-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.info-card:hover .info-photo img { transform: scale(1.04); }
.info-card .info-body {
  padding: 28px 28px 32px;
}
.info-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.info-card p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text);
}
.info-card .info-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-pink);
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; gap: 20px; }
  .info-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Spec table (price / hours) */
.spec-table {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 8px 40px;
  box-shadow: var(--shadow-sm);
  list-style: none;
}
.spec-table li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: baseline;
  font-size: 14px;
  line-height: 1.95;
}
.spec-table li:last-child { border-bottom: none; }
.spec-table .st-label {
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .spec-table { padding: 8px 24px; }
  .spec-table li { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
}

/* Day schedule (timeline) */
.daily-schedule {
  list-style: none;
  position: relative;
  padding-left: 60px;
}
.daily-schedule::before {
  content: "";
  position: absolute;
  left: 24px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--c-mint);
  opacity: 0.4;
}
.daily-schedule li {
  position: relative;
  padding: 20px 0 20px 24px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: baseline;
}
.daily-schedule li::before {
  content: "";
  position: absolute;
  left: -42px; top: 28px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-mint);
}
.daily-schedule li:nth-child(odd)::before { border-color: var(--c-pink); }
.daily-schedule .ds-time {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-pink);
}
.daily-schedule .ds-text {
  font-size: 14px;
  line-height: 1.9;
}
.daily-schedule .ds-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--c-text);
}
@media (max-width: 700px) {
  .daily-schedule li { grid-template-columns: 1fr; gap: 4px; }
}

/* FAQ */
.faq-list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  position: relative;
  padding-left: 44px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  cursor: pointer;
}
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0; top: -2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-pink);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-a {
  position: relative;
  padding-left: 44px;
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
}
.faq-a::before {
  content: "A";
  position: absolute;
  left: 0; top: -2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-mint);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin-top: 48px;
}
.process-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step .ps-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-pink);
  margin-bottom: 12px;
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.process-step p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text-sub);
  text-align: left;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================
   Facility section — curved cream background variant
   ============================================ */
.content-section.is-facility-curved {
  background: var(--c-bg-warm-soft);
  padding: 140px 24px 140px;
  position: relative;
  border-top-left-radius: 220px;
  overflow: hidden;
}
/* center the partial second row (3 + 2 cards) of the Facility info-grid */
.content-section.is-facility-curved .info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.content-section.is-facility-curved .info-grid > .info-card {
  flex: 0 0 calc((100% - 64px) / 3);
  max-width: calc((100% - 64px) / 3);
}
@media (max-width: 900px) {
  .content-section.is-facility-curved .info-grid > .info-card {
    flex-basis: calc((100% - 32px) / 2);
    max-width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 600px) {
  .content-section.is-facility-curved .info-grid > .info-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (max-width: 720px) {
  .content-section.is-facility-curved {
    padding: 80px 16px 80px;
    border-top-left-radius: 80px;
  }
}

/* ============================================
   Voice marquee — horizontal right→left scroll
   ============================================ */
.voice-marquee {
  margin: 56px 0 32px;
  /* breakout to viewport edges */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.voice-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: voiceMarqueeScroll 48s linear infinite;
}
@keyframes voiceMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.voice-marquee .voice-card {
  flex-shrink: 0;
  width: 360px;
}
@media (max-width: 720px) {
  .voice-marquee { margin-top: 36px; }
  .voice-marquee .voice-card { width: 280px; }
  .voice-track { gap: 16px; animation-duration: 36s; }
}
@media (prefers-reduced-motion: reduce) {
  .voice-track { animation: none; }
}

/* Voice (review) cards */
.voice-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.voice-card::before {
  content: "“";
  position: absolute;
  left: 24px; top: 8px;
  font-family: 'Times New Roman', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--c-pink);
  opacity: 0.3;
}
.voice-card .voice-text {
  font-size: 14px;
  line-height: 2;
  margin: 32px 0 16px;
}
.voice-card .voice-author {
  font-size: 12px;
  color: var(--c-text-sub);
}

/* Voice grid */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 700px) {
  .voice-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Recruit Page
   ============================================ */
.recruit-hero {
  padding: calc(var(--header-h) + 80px) 24px 100px;
  background: var(--c-mint-tint);
  position: relative;
  overflow: hidden;
}
.recruit-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.recruit-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 16px 0 24px;
}
.recruit-hero h1 em { font-style: normal; color: var(--c-pink); }
.recruit-hero .hero-lead {
  font-size: 15px;
  line-height: 2.1;
  max-width: 700px;
  margin: 0 auto;
}

.job-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.job-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.job-card .job-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-pink);
  margin-bottom: 8px;
}
.job-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.job-card .job-status {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--c-mint-tint);
  color: var(--c-mint);
  font-weight: 600;
  margin-bottom: 16px;
}
.job-card .job-meta {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text-sub);
  margin-bottom: 24px;
}
.job-card .btn { margin-top: auto; }
@media (max-width: 900px) {
  .job-list { grid-template-columns: 1fr; }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin-top: 48px;
}
.benefits-grid li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 24px 24px 64px;
  font-size: 14px;
  line-height: 1.9;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.benefits-grid li::before {
  content: "";
  position: absolute;
  left: 24px; top: 28px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-mint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Festival Page
   ============================================ */
.festival-hero {
  padding: calc(var(--header-h) + 80px) 24px 0;
  background: var(--c-bg-warm-soft);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.festival-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.festival-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 16px 0 24px;
}
.festival-hero h1 em { font-style: normal; color: var(--c-pink); }
.festival-hero .hero-lead {
  font-size: 15px;
  line-height: 2.1;
  max-width: 700px;
  margin: 0 auto 64px;
}
.festival-hero-photo {
  margin: 0 auto;
  max-width: 1000px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: -40px;
}
.festival-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
}
.contact-form {
  display: grid;
  gap: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form-field label .req {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  font-size: 10px;
  background: var(--c-pink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 500;
  vertical-align: middle;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-pink);
  box-shadow: 0 0 0 4px rgba(238, 134, 168, 0.12);
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-agree {
  font-size: 13px;
  color: var(--c-text-sub);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-agree input { margin-top: 4px; }
.form-submit {
  text-align: center;
  padding-top: 16px;
}
.form-submit .btn {
  border: none;
  padding-right: 28px;
}
.contact-side {
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: fit-content;
}
.contact-side h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.contact-side .tel {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-pink);
  margin-bottom: 4px;
  display: block;
}
.contact-side address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 24px;
}
.contact-side hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}
.contact-side .side-note {
  font-size: 12px;
  color: var(--c-text-sub);
  line-height: 1.85;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-field-row { grid-template-columns: 1fr; }
}

/* ============================================
   News / Blog List
   ============================================ */
.list-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}
.list-toolbar a {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--c-border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.list-toolbar a.is-active,
.list-toolbar a:hover {
  background: var(--c-pink);
  color: #fff;
  border-color: var(--c-pink);
}

.article-list {
  list-style: none;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.article-list li { border-bottom: 1px solid var(--c-border); }
.article-list li:last-child { border-bottom: none; }
.article-list a {
  display: grid;
  grid-template-columns: 130px 110px 1fr 24px;
  gap: 20px;
  padding: 24px 32px;
  align-items: center;
  transition: background var(--transition);
}
.article-list a:hover { background: var(--c-bg-soft); color: var(--c-pink); }
.article-list .al-date {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--c-text-sub);
  letter-spacing: 0.04em;
}
.article-list .al-cat {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  background: var(--c-mint-tint);
  color: var(--c-mint);
}
.article-list .al-cat.cat-event { background: var(--c-pink-tint); color: var(--c-pink); }
.article-list .al-cat.cat-recruit { background: var(--c-yellow-tint); color: #b89b22; }
.article-list .al-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.article-list .al-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.article-list a:hover .al-arrow {
  background: var(--c-pink);
  color: #fff;
  transform: translateX(3px);
}
@media (max-width: 700px) {
  .article-list a {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 20px 24px;
  }
  .article-list .al-title { grid-column: 1 / -1; grid-row: 2; }
  .article-list .al-arrow { display: none; }
}

/* Pager */
.pager {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pager a, .pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--c-border);
  background: #fff;
  padding: 0 12px;
  transition: background var(--transition), color var(--transition);
}
.pager a:hover { background: var(--c-pink); color: #fff; border-color: var(--c-pink); }
.pager .is-current {
  background: var(--c-charcoal);
  color: #fff;
  border-color: var(--c-charcoal);
}

/* Blog card list (grid layout) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-grid-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-grid-card .bg-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-grid-card .bg-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-grid-card:hover .bg-thumb img { transform: scale(1.05); }
.blog-grid-card .bg-body {
  padding: 24px 28px 28px;
}
.blog-grid-card .bg-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.blog-grid-card .bg-cat {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--c-pink);
}
.blog-grid-card .bg-date {
  color: var(--c-text-sub);
}
.blog-grid-card h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Legal Pages (Privacy / Site Policy)
   ============================================ */
.legal-section {
  padding: 100px 24px 140px;
  background: #fff;
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.legal-inner h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 56px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-pink);
}
.legal-inner h2:first-of-type { margin-top: 0; }
.legal-inner h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.legal-inner p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}
.legal-inner ul, .legal-inner ol {
  margin: 12px 0 20px 24px;
  font-size: 14px;
  line-height: 2;
}
.legal-inner li { margin-bottom: 6px; }
.legal-inner .updated {
  margin-top: 64px;
  text-align: right;
  font-size: 12px;
  color: var(--c-text-sub);
}


/* ============================================
   Utility classes (used by lower pages)
   ============================================ */
.u-center { text-align: center; }
.u-mb-0 { margin-bottom: 0 !important; }
.u-mb-sm { margin-bottom: 24px; }
.u-mb-md { margin-bottom: 32px; }
.u-mb-lg { margin-bottom: 48px; }
.u-mt-0 { margin-top: 0 !important; }
.u-mt-lg { margin-top: 64px; }

.intro-text {
  font-size: 15px;
  line-height: 2.1;
  margin-top: 24px;
}
.intro-text-block {
  font-size: 15px;
  line-height: 2.1;
  margin: 24px 0 32px;
}
.note-inline {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  color: var(--c-text-sub);
}
.note-block {
  font-size: 12px;
  color: var(--c-text-sub);
  margin-bottom: 24px;
  line-height: 1.85;
}
.list-plain { list-style: none; }

/* ============================================
   Subpage Tile Grid (Nursery landing)
   ============================================ */
.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.subpage-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 32px 32px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.subpage-tile::after {
  content: "";
  position: absolute;
  right: -50px; bottom: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--c-pink-tint);
  opacity: 0.55;
  transition: transform 0.5s ease, background var(--transition);
  z-index: 0;
}
.subpage-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.subpage-tile:hover::after {
  transform: scale(1.15);
  background: var(--c-pink);
  opacity: 0.18;
}
.subpage-tile .st-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--c-pink);
  margin-bottom: 8px;
}
.subpage-tile .st-en {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-text-sub);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.subpage-tile .st-title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.subpage-tile .st-desc {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.85;
  color: var(--c-text-sub);
  margin-bottom: 24px;
}
.subpage-tile .st-arrow {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-charcoal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.subpage-tile:hover .st-arrow {
  background: var(--c-pink);
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .subpage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .subpage-grid { grid-template-columns: 1fr; }
  .subpage-tile { min-height: 160px; padding: 24px; }
}

/* Three-pillar highlight (nursery) */
.pillar-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.pillar-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  overflow: hidden;
}
.pillar-card .p-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--c-pink-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-card .p-icon img { width: 36px; height: 36px; opacity: 0.8; }
.pillar-card:nth-child(2) .p-icon { background: var(--c-mint-tint); }
.pillar-card:nth-child(3) .p-icon { background: var(--c-yellow-tint, #fbf4d6); }
.pillar-card .p-num {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--c-pink);
  margin-bottom: 8px;
}
.pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.55;
}
.pillar-card p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text);
  text-align: left;
}
@media (max-width: 900px) {
  .pillar-list { grid-template-columns: 1fr; gap: 20px; }
}

/* Concept preview split */
.concept-preview {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-preview .cp-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.concept-preview .cp-photo img { width: 100%; height: 100%; object-fit: cover; }
.concept-preview h2 em { font-style: normal; color: var(--c-pink); }
.concept-preview .cp-text {
  font-size: 15px;
  line-height: 2.1;
  margin: 24px 0 32px;
}
@media (max-width: 900px) {
  .concept-preview { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   Sub-page helpers
   ============================================ */

/* Map placeholder */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-sub);
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px dashed var(--c-border);
}

/* Brochure download card */
.brochure-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}
.brochure-card .b-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-sub);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.brochure-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.brochure-card p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text);
  margin-bottom: 24px;
}
.brochure-card .b-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--c-text-sub);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .brochure-card { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .brochure-card .b-thumb { max-width: 220px; margin: 0 auto; }
}

/* Newsletter list */
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.newsletter-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.newsletter-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.newsletter-item .nl-cover {
  aspect-ratio: 4/5;
  background: var(--c-mint-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--c-text-sub);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--c-border);
}
.newsletter-item:nth-child(3n+2) .nl-cover { background: var(--c-pink-tint); }
.newsletter-item:nth-child(3n) .nl-cover { background: var(--c-yellow-tint); }
.newsletter-item .nl-body {
  padding: 20px 24px 24px;
}
.newsletter-item .nl-date {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--c-text-sub);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.newsletter-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.newsletter-item .nl-dl {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-pink);
}
@media (max-width: 900px) {
  .newsletter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .newsletter-grid { grid-template-columns: 1fr; }
}

/* Members login card */
.members-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  margin: 0 auto;
}
.members-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}
.members-card .ml-lead {
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.9;
  text-align: center;
  margin-bottom: 32px;
}
.members-form {
  display: grid;
  gap: 16px;
}
.members-card .form-field input {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
}
.members-card .form-submit { padding-top: 8px; }
.members-card .ml-help {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--c-text-sub);
}
.members-card .ml-help a { color: var(--c-pink); font-weight: 600; }
@media (max-width: 700px) {
  .members-card { padding: 40px 28px; }
}

/* Feature row (large alternating photo + text) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.is-reverse > :first-child { order: 2; }
.feature-row.is-reverse > :last-child { order: 1; }
.feature-row .fr-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.feature-row .fr-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-row .fr-num {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--c-pink);
  margin-bottom: 8px;
}
.feature-row h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.feature-row p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .feature-row.is-reverse > :first-child { order: 1; }
  .feature-row.is-reverse > :last-child { order: 2; }
}

/* Annual events (year grid) */
.annual-events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
}
.annual-events li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.annual-events .ae-month {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-pink);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.annual-events .ae-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .annual-events { grid-template-columns: repeat(2, 1fr); }
}

/* Note panel (callout) */
.note-panel {
  background: var(--c-mint-tint);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 32px;
}
.note-panel.is-pink { background: var(--c-pink-tint); }
.note-panel.is-yellow { background: var(--c-yellow-tint); }
.note-panel h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--c-text);
}
.note-panel p {
  font-size: 13px;
  line-height: 1.95;
  color: var(--c-text);
}
.note-panel ul {
  margin: 8px 0 0 20px;
  font-size: 13px;
  line-height: 1.95;
}
.note-panel ul li { margin-bottom: 4px; }

/* Section navigation (siblings) - reuses subpage-grid */
.section-nav-wrap {
  padding: 100px 24px;
  background: var(--c-bg-soft);
  position: relative;
  overflow: hidden;
}
.section-nav-wrap .section-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-nav-wrap .section-nav-head {
  text-align: center;
  margin-bottom: 32px;
}
.section-nav-wrap .section-nav-head h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.section-nav-wrap .section-nav-head h2 em { font-style: normal; color: var(--c-pink); }

/* ============================================
   Nursery Top — additions
   ============================================ */

/* Hero info badge row */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 24px;
}
.hero-meta li {
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
}

/* Hero CTA row */
.svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

/* Section overview (concept block, max 800px) */
.overview-section {
  padding: 140px 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.overview-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.overview-inner h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.overview-inner h2 em { font-style: normal; color: var(--c-pink); }
.overview-inner p {
  font-size: 15px;
  line-height: 2.1;
  text-align: left;
  margin-bottom: 16px;
}
.overview-inner p:last-child { margin-bottom: 0; }

/* ----- Variant: organic blob photos scattered around central text (miwa-dental-inspired) ----- */
.overview-section.is-aboutblobs {
  padding: 160px 24px 140px;
  background: var(--c-bg-warm-soft);
  position: relative;
  overflow: hidden;
  min-height: 900px;
}

/* Large decorative background text */
.aboutblobs-bg-text {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en, 'Poppins', sans-serif);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* Floating blob-shaped photos */
.aboutblob {
  position: absolute;
  overflow: hidden;
  box-shadow:
    0 20px 40px -18px rgba(60, 80, 75, 0.22),
    0 6px 16px -6px rgba(60, 80, 75, 0.08);
  z-index: 1;
}
.aboutblob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutblob-1 {
  top: 140px;
  left: 6%;
  width: 280px;
  height: 280px;
  border-radius: 58% 42% 38% 62% / 47% 31% 69% 53%;
  animation: aboutBlobMorph1 16s ease-in-out infinite;
}
.aboutblob-2 {
  top: 100px;
  right: 7%;
  width: 320px;
  height: 350px;
  border-radius: 60% 40% 35% 65% / 55% 50% 50% 45%;
  animation: aboutBlobMorph2 18s ease-in-out infinite;
}
.aboutblob-3 {
  bottom: 90px;
  right: 14%;
  width: 200px;
  height: 200px;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  animation: aboutBlobMorph3 19s ease-in-out infinite;
}
.aboutblob-4 {
  bottom: 60px;
  left: 12%;
  width: 240px;
  height: 290px;
  border-radius: 45% 55% 50% 50% / 60% 40% 60% 40%;
  animation: aboutBlobMorph4 17s ease-in-out infinite;
}

@keyframes aboutBlobMorph1 {
  0%, 100% { border-radius: 58% 42% 38% 62% / 47% 31% 69% 53%; }
  50%      { border-radius: 38% 62% 55% 45% / 60% 47% 53% 40%; }
}
@keyframes aboutBlobMorph2 {
  0%, 100% { border-radius: 60% 40% 35% 65% / 55% 50% 50% 45%; }
  50%      { border-radius: 40% 60% 55% 45% / 35% 60% 40% 65%; }
}
@keyframes aboutBlobMorph3 {
  0%, 100% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; }
  50%      { border-radius: 55% 45% 40% 60% / 35% 60% 40% 65%; }
}
@keyframes aboutBlobMorph4 {
  0%, 100% { border-radius: 45% 55% 50% 50% / 60% 40% 60% 40%; }
  50%      { border-radius: 55% 45% 45% 55% / 45% 55% 45% 55%; }
}

/* Central content */
.aboutblobs-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 100px auto 80px;
  text-align: center;
}
.aboutblobs-content .deco-header {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}
.aboutblobs-content h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin: 16px 0 28px;
  color: var(--c-text);
}
.aboutblobs-content h2 em {
  font-style: normal;
  color: var(--c-pink);
}
.aboutblobs-content p {
  font-size: 15px;
  line-height: 2.1;
  text-align: center;
  margin: 0 0 14px;
  color: var(--c-text);
}
.aboutblobs-content p:last-of-type {
  margin-bottom: 32px;
}
.aboutblobs-content .cta-row {
  display: flex;
  justify-content: center;
}

@media (max-width: 1100px) {
  .overview-section.is-aboutblobs { padding: 140px 20px 120px; min-height: 820px; }
  .aboutblob-1 { width: 210px; height: 210px; left: 3%; top: 110px; }
  .aboutblob-2 { width: 240px; height: 270px; right: 3%; top: 90px; }
  .aboutblob-3 { width: 160px; height: 160px; right: 8%; bottom: 60px; }
  .aboutblob-4 { width: 200px; height: 240px; left: 6%; bottom: 60px; }
  .aboutblobs-bg-text { top: 110px; }
}

@media (max-width: 720px) {
  .overview-section.is-aboutblobs {
    padding: 100px 16px 80px;
    min-height: auto;
  }
  .aboutblobs-bg-text {
    font-size: clamp(48px, 17vw, 90px);
    top: 60px;
  }
  .aboutblob {
    box-shadow:
      0 12px 24px -12px rgba(60, 80, 75, 0.2),
      0 4px 12px -6px rgba(60, 80, 75, 0.08);
  }
  .aboutblob-1 { width: 110px; height: 110px; top: 120px; left: 4%; }
  .aboutblob-2 { width: 140px; height: 150px; top: 90px; right: 4%; }
  .aboutblob-3 { width: 110px; height: 110px; bottom: 30px; right: 6%; }
  .aboutblob-4 { width: 130px; height: 150px; bottom: 30px; left: 4%; }
  .aboutblobs-content {
    margin: 200px auto 180px;
    max-width: 100%;
    padding: 0 8px;
  }
  .aboutblobs-content h2 {
    font-size: clamp(22px, 5.4vw, 28px);
    margin: 12px 0 22px;
  }
  .aboutblobs-content p {
    font-size: 14px;
    line-height: 1.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutblob { animation: none; }
}

/* ============================================
   Features Message section (meishoen-inspired: left text + right photo stack with scroll-rise)
   ============================================ */
.feat-msg-section {
  position: relative;
  padding: 140px 24px 160px;
  background: #fff;
  overflow: hidden;
}
.feat-msg-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.feat-msg-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.feat-msg-text {
  padding-top: 40px;
}
.feat-msg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en, 'Poppins', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-pink);
  text-transform: uppercase;
}
.feat-msg-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-pink);
}
.feat-msg-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin: 24px 0 32px;
  color: var(--c-text);
}
.feat-msg-title em {
  font-style: normal;
  color: var(--c-pink);
}
.feat-msg-lead {
  font-size: 15px;
  line-height: 2.05;
  margin: 0 0 48px;
  color: var(--c-text);
  max-width: 540px;
}
.feat-msg-list {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  gap: 28px;
}
.feat-msg-list > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}
.feat-msg-list .num {
  font-family: var(--font-en, 'Poppins', sans-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--c-mint);
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 2px;
}
.feat-msg-list h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: var(--c-text);
}
.feat-msg-list .body p {
  font-size: 14px;
  line-height: 1.95;
  margin: 0;
  color: var(--c-text);
}
.feat-msg-text .cta-row {
  text-align: left;
  margin-top: 8px;
}

/* Photo stack (right column) — 6 photos cycling in a continuous bottom→top marquee with arc-like horizontal offsets */
.feat-msg-photos {
  --photo-h: 240px;
  --photo-gap: 28px;
  position: relative;
  height: 780px;
  overflow: hidden;
  pointer-events: none;
  /* fade in/out at top and bottom for smooth entry/exit */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.feat-msg-track {
  display: flex;
  flex-direction: column;
  gap: var(--photo-gap);
  animation: featTrackScroll 42s linear infinite;
}
@keyframes featTrackScroll {
  from { transform: translateY(0); }
  /* shift by 6 × (photo-height + gap) so the duplicated set seamlessly takes over */
  to   { transform: translateY(calc(-6 * (var(--photo-h) + var(--photo-gap)))); }
}
.feat-msg-photo {
  flex-shrink: 0;
  width: 62%;
  height: var(--photo-h);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 22px 50px -22px rgba(60, 80, 75, 0.28),
    0 8px 20px -8px rgba(60, 80, 75, 0.1);
}
.feat-msg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Per-position styles create a gentle wavy / arc-shaped column */
.feat-msg-photo[data-pos="1"] { align-self: flex-start; margin-left: 4%;  rotate: -2deg; }
.feat-msg-photo[data-pos="2"] { align-self: flex-end;   margin-right: 6%; rotate: 1.6deg; }
.feat-msg-photo[data-pos="3"] { align-self: flex-start; margin-left: 18%; rotate: -1deg; }
.feat-msg-photo[data-pos="4"] { align-self: flex-end;   margin-right: 16%; rotate: 2deg; }
.feat-msg-photo[data-pos="5"] { align-self: center;                       rotate: -1.5deg; }
.feat-msg-photo[data-pos="6"] { align-self: flex-start; margin-left: 10%; rotate: 1.2deg; }

@media (max-width: 1024px) {
  .feat-msg-section { padding: 120px 24px 130px; }
  .feat-msg-grid { gap: 56px; }
  .feat-msg-text { padding-top: 16px; }
  .feat-msg-title { margin: 18px 0 24px; }
  .feat-msg-lead { margin-bottom: 36px; }
  .feat-msg-photos { gap: 24px; }
}

@media (max-width: 1024px) {
  .feat-msg-photos {
    --photo-h: 220px;
    height: 680px;
  }
  .feat-msg-photo { width: 70%; }
}

@media (max-width: 720px) {
  .feat-msg-section { padding: 80px 16px 90px; }
  .feat-msg-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feat-msg-text { padding-top: 0; }
  .feat-msg-title { font-size: clamp(24px, 6vw, 30px); }
  .feat-msg-lead { font-size: 14px; margin-bottom: 32px; }
  .feat-msg-list > li { grid-template-columns: 48px 1fr; gap: 12px; }
  .feat-msg-list .num { font-size: 22px; }
  .feat-msg-list h3 { font-size: 16px; }
  /* On mobile, drop the marquee — show first 3 photos statically stacked */
  .feat-msg-photos {
    --photo-h: 200px;
    --photo-gap: 18px;
    height: auto;
    overflow: visible;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .feat-msg-track {
    animation: none;
  }
  .feat-msg-track > .feat-msg-photo:nth-child(n+4) {
    display: none;
  }
  .feat-msg-photo { width: 88%; }
  .feat-msg-photo[data-pos="1"] { align-self: flex-start; margin-left: 4%; }
  .feat-msg-photo[data-pos="2"] { align-self: flex-end;   margin-right: 4%; }
  .feat-msg-photo[data-pos="3"] { align-self: flex-start; margin-left: 6%; }
}

@media (prefers-reduced-motion: reduce) {
  .feat-msg-track { animation: none; }
}

/* 4-feature 2x2 grid (used by care/index.html) */
.nf-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.nf-feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.nf-feature-card:nth-child(even) { margin-top: 48px; }
.nf-feature-card .nf-num {
  position: absolute;
  top: -18px; left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.nf-feature-card:nth-child(2) .nf-num { background: var(--c-mint); }
.nf-feature-card:nth-child(3) .nf-num { background: var(--c-yellow); color: var(--c-charcoal); }
.nf-feature-card:nth-child(4) .nf-num { background: var(--c-purple); }
.nf-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin: 8px 0 16px;
}
.nf-feature-card p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text);
}
@media (max-width: 700px) {
  .nf-features { grid-template-columns: 1fr; gap: 32px; }
  .nf-feature-card:nth-child(even) { margin-top: 0; }
}

/* 4-feature photo cards (used by nursery/index.html) — meishoen-style */
.nfp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
  margin-top: 64px;
}
.nfp-feature-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
}
.nfp-card-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 18px 40px -22px rgba(62, 58, 57, 0.35);
  margin-bottom: 26px;
}
.nfp-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.nfp-feature-card:hover .nfp-card-photo img {
  transform: scale(1.04);
}
.nfp-corner {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  pointer-events: none;
}
.nfp-corner-tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.nfp-corner-tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.nfp-corner-bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.nfp-corner-br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.nfp-card-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--c-text);
}
.nfp-dot {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--c-pink);
  transform: translateY(-2px);
}
.nfp-feature-card:nth-child(2) .nfp-dot { background: var(--c-mint); }
.nfp-feature-card:nth-child(3) .nfp-dot { background: var(--c-yellow); }
.nfp-feature-card:nth-child(4) .nfp-dot { background: var(--c-purple); }
.nfp-card-text {
  font-size: 15px;
  line-height: 2.0;
  color: var(--c-text-sub);
  margin: 0;
  padding-left: 23px;
}
@media (max-width: 900px) {
  .nfp-features { gap: 48px 32px; }
  .nfp-card-title { font-size: 19px; }
  .nfp-card-text { font-size: 14px; }
}
@media (max-width: 640px) {
  .nfp-features { grid-template-columns: 1fr; gap: 44px; margin-top: 48px; }
  .nfp-card-photo { aspect-ratio: 16 / 10; border-radius: 22px; margin-bottom: 22px; }
  .nfp-corner { width: 30px; height: 30px; }
  .nfp-corner-tl, .nfp-corner-tr { top: 12px; }
  .nfp-corner-bl, .nfp-corner-br { bottom: 12px; }
  .nfp-corner-tl, .nfp-corner-bl { left: 12px; }
  .nfp-corner-tr, .nfp-corner-br { right: 12px; }
  .nfp-card-title { font-size: 18px; }
  .nfp-card-text { padding-left: 21px; }
}

/* Multi-gen scenes — photo + numbered scene list */
.scenes-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.scenes-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.scenes-photo img { width: 100%; height: 100%; object-fit: cover; }
.scenes-list {
  list-style: none;
  counter-reset: scene;
}
.scenes-list li {
  position: relative;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid var(--c-border);
  counter-increment: scene;
}
.scenes-list li:last-child { border-bottom: none; }
.scenes-list li::before {
  content: counter(scene, decimal-leading-zero);
  position: absolute;
  left: 0; top: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-pink-tint);
  color: var(--c-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.scenes-list .s-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.scenes-list .s-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--c-text-sub);
}
@media (max-width: 900px) {
  .scenes-block { grid-template-columns: 1fr; gap: 40px; }
  .scenes-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 5/4; }
}

/* Inline link with arrow (text-style CTA) */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-pink);
  margin-top: 24px;
}
.text-link .arr {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-pink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.text-link:hover .arr { transform: translateX(4px); }

/* Daily-schedule footnote */
.schedule-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--c-text-sub);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Additional utility */
.u-mt-md { margin-top: 40px; }
.cta-row {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   Timetable (3-column schedule)
   ============================================ */
.timetable {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.tt-row {
  display: grid;
  grid-template-columns: 100px repeat(3, 1fr);
  border-top: 1px solid var(--c-border);
}
.tt-row:first-child { border-top: none; }
.tt-h {
  padding: 16px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  background: var(--c-bg-soft);
  border-left: 1px solid var(--c-border);
}
.tt-h:first-child { border-left: none; }
.tt-h.is-mint { color: var(--c-mint); }
.tt-h.is-pink { color: var(--c-pink); }
.tt-h.is-yellow { color: #b89b22; }
.tt-time {
  background: var(--c-pink-tint);
  padding: 24px 8px;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 16px;
  color: var(--c-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.tt-time small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-pink);
  opacity: 0.85;
  line-height: 1.4;
  letter-spacing: 0;
}
.tt-cell {
  padding: 20px 14px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  border-left: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tt-cell small {
  display: block;
  font-size: 11px;
  color: var(--c-text-sub);
  margin-top: 4px;
  font-weight: 400;
}
.tt-row.is-merged .tt-cell {
  grid-column: 2 / -1;
  background: var(--c-bg-soft);
  font-weight: 600;
  color: var(--c-text);
}
.tt-row.is-end .tt-cell {
  background: var(--c-charcoal);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.16em;
}
@media (max-width: 700px) {
  .tt-row { grid-template-columns: 70px 1fr; }
  .tt-header-row { display: none; }
  .tt-row.is-tri .tt-cell:nth-of-type(2),
  .tt-row.is-tri .tt-cell:nth-of-type(3) { display: none; }
  .tt-row.is-tri .tt-cell:nth-of-type(1) {
    grid-column: 2 / -1;
    align-items: flex-start;
    text-align: left;
    border-left: none;
  }
  .tt-row.is-merged .tt-cell {
    grid-column: 2 / -1;
    align-items: flex-start;
    text-align: left;
    border-left: none;
  }
  .tt-row.is-end .tt-cell {
    text-align: center;
    align-items: center;
  }
  .tt-time { padding: 18px 4px; font-size: 14px; }
}

/* ============================================
   Fee cards (3-column pricing)
   ============================================ */
.fee-block-head {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 24px;
}
.sub-section-title {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-pink);
}
.fee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.fee-card {
  background: var(--c-pink-tint);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.fee-card.is-mint { background: var(--c-mint-tint); }
.fee-card.is-yellow { background: var(--c-yellow-tint); }
.fee-card .fc-tag {
  display: inline-block;
  align-self: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--c-pink);
  margin-bottom: 14px;
}
.fee-card.is-mint .fc-tag { color: var(--c-mint); }
.fee-card.is-yellow .fc-tag { color: #b89b22; }
.fee-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.fee-card .fc-rows {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 8px 20px;
  margin-top: auto;
}
.fee-card .fc-row {
  padding: 12px 0;
  border-top: 1px dashed var(--c-border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
  align-items: center;
}
.fee-card .fc-row:first-child { border-top: none; }
.fee-card .fc-row .fc-label {
  color: var(--c-text-sub);
  letter-spacing: 0.02em;
}
.fee-card .fc-row .fc-value {
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.fee-card .fc-row .fc-value small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--c-text-sub);
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .fee-cards { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   Nav cards (4-tile section navigation)
   ============================================ */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.nav-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 28px;
  background: var(--c-bg-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.nav-card::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.5s ease, background var(--transition);
  z-index: 0;
}
.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--c-pink-tint);
}
.nav-card:hover::after {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.85);
}
.nav-card .nc-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.nav-card .nc-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.nav-card .nc-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--c-text);
}
.nav-card .nc-arrow {
  position: relative;
  z-index: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-charcoal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.nav-card:hover .nc-arrow {
  background: var(--c-pink);
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .nav-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .nav-cards { grid-template-columns: 1fr; }
  .nav-card { padding: 24px; }
}

/* ============================================
   Availability board (care)
   ============================================ */
.availability-board {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 880px;
  margin: 0 auto;
}
.av-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--c-bg-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-text-sub);
  border-bottom: 1px solid var(--c-border);
}
.av-meta .av-update {
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--c-mint);
  letter-spacing: 0.08em;
}
.av-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  padding: 24px 28px;
  border-top: 1px solid var(--c-border);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.av-row:first-of-type { border-top: none; }
.av-row .av-room small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-sub);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.av-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.av-status .av-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-en);
}
.av-status.is-open .av-mark { background: var(--c-mint-tint); color: var(--c-mint); }
.av-status.is-asking .av-mark { background: var(--c-yellow-tint); color: #b89b22; }
.av-status.is-full .av-mark { background: var(--c-pink-tint); color: var(--c-pink); }
.av-status .av-text {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .av-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 22px; }
  .av-status { justify-content: flex-start; }
}

/* Recruit lightweight strip (care top) */
.recruit-strip {
  padding: 72px 24px;
  background: var(--c-bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.recruit-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.recruit-strip p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin: 0;
}

/* Fee summary mini-table */
.fee-summary {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 8px 36px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
}
.fee-summary li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--c-border);
  align-items: baseline;
  font-size: 14px;
  line-height: 1.85;
}
.fee-summary li:first-child { border-top: none; }
.fee-summary .fs-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-mint);
}
.fee-summary .fs-value {
  color: var(--c-text);
}
.fee-summary .fs-value strong {
  font-size: 20px;
  font-weight: 700;
  margin-right: 4px;
}
@media (max-width: 600px) {
  .fee-summary li { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .fee-summary { padding: 8px 24px; }
}

/* Narrow centered note variant */
.note-panel.is-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Nav cards 3-column variant */
.nav-cards.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .nav-cards.cols-3 { grid-template-columns: 1fr; }
}

/* News + Blog 2-column layout */
.news-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
}
.nb-column h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-mint);
  display: inline-block;
}
.nb-column.is-blog h3 { border-bottom-color: var(--c-pink); }
.nb-list {
  list-style: none;
}
.nb-list li {
  border-top: 1px solid var(--c-border);
}
.nb-list li:first-child { border-top: none; }
.nb-list a {
  display: grid;
  grid-template-columns: 96px 1fr 24px;
  gap: 16px;
  padding: 18px 4px;
  align-items: center;
  transition: color var(--transition), background var(--transition);
}
.nb-list.has-thumb a {
  grid-template-columns: 72px 1fr 24px;
}
.nb-list .nb-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.nb-list .nb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.nb-list a:hover .nb-thumb img {
  transform: scale(1.06);
}
.nb-list .nb-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.nb-list .nb-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nb-list .nb-title {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--c-text);
}
.nb-list a:hover { color: var(--c-pink); }
.nb-list .nb-date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--c-text-sub);
  letter-spacing: 0.04em;
}
.nb-list .nb-content {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}
.nb-list .nb-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--c-mint);
  background: var(--c-mint-tint);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-right: 8px;
  vertical-align: middle;
}
.is-blog .nb-list .nb-tag { color: var(--c-pink); background: var(--c-pink-tint); }
.nb-list .nb-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.nb-list a:hover .nb-arrow {
  background: var(--c-pink);
  color: #fff;
}
.nb-column .nb-footer {
  margin-top: 24px;
  text-align: right;
}
@media (max-width: 900px) {
  .news-blog-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 600px) {
  .nb-list a {
    grid-template-columns: 1fr 24px;
    grid-template-rows: auto auto;
    padding: 16px 4px;
    gap: 6px 12px;
  }
  .nb-list .nb-content { grid-column: 1 / -1; grid-row: 2; }
  .nb-list.has-thumb a {
    grid-template-columns: 56px 1fr 24px;
    grid-template-rows: auto;
    gap: 12px;
  }
  .nb-list .nb-thumb {
    width: 56px;
    height: 56px;
    align-self: center;
  }
  .nb-list.has-thumb .nb-arrow {
    align-self: center;
  }
  .nb-list .nb-title { font-size: 13px; }
}

/* ============================================
   Recruit Page (additions for Excel 11 layout)
   ============================================ */

/* 02 Message — 2-column photo + body */
.rec-message {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.rec-message-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-bg-soft);
}
.rec-message-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.rec-message-body .section-title {
  font-size: clamp(24px, 2.6vw, 34px);
  text-align: left;
  margin: 8px 0 24px;
}
.rec-message-body .section-title em {
  font-style: normal;
  color: var(--c-pink);
}
.rec-message-body .intro-text {
  font-size: 15px;
  line-height: 2.1;
  text-align: left;
}
.rec-message-sign {
  margin-top: 32px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--c-text-sub);
  font-weight: 600;
}
@media (max-width: 900px) {
  .rec-message { grid-template-columns: 1fr; gap: 40px; }
  .rec-message-photo { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
}

/* 05 Numbers grid */
.numbers-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.number-tile {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.number-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.number-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--c-mint);
}
.number-tile.is-mint::before { background: var(--c-mint); }
.number-tile.is-pink::before { background: var(--c-pink); }
.number-tile.is-yellow::before { background: var(--c-yellow); }
.number-tile.is-purple::before { background: var(--c-purple); }
.number-tile .nt-en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-sub);
  margin-bottom: 12px;
}
.number-tile .nt-num {
  display: block;
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin-bottom: 12px;
}
.number-tile.is-mint .nt-num { color: var(--c-mint); }
.number-tile.is-pink .nt-num { color: var(--c-pink); }
.number-tile.is-yellow .nt-num { color: #c9a920; }
.number-tile.is-purple .nt-num { color: var(--c-purple); }
.number-tile .nt-num small {
  font-size: 18px;
  font-weight: 500;
  margin-left: 2px;
  color: var(--c-text);
  opacity: 0.7;
}
.number-tile .nt-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.number-tile .nt-note {
  display: block;
  font-size: 11px;
  color: var(--c-text-sub);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .number-tile .nt-num { font-size: 44px; }
}
@media (max-width: 520px) {
  .numbers-grid { grid-template-columns: 1fr; }
}

/* 06 Staff Voice grid (3 columns with photo) */
.staff-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.staff-voice-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.staff-voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.staff-voice-card .svc-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.staff-voice-card .svc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.staff-voice-card .svc-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.staff-voice-card .svc-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-pink);
}
.staff-voice-card .svc-text {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
}
@media (max-width: 900px) {
  .staff-voice-grid { grid-template-columns: 1fr; }
}

/* 07 Job List (5 cards, clickable) */
.job-list-5 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.job-list a.job-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: var(--c-text);
  transition: transform var(--transition), box-shadow var(--transition);
}
.job-list a.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.job-list a.job-card .job-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-pink);
  margin-bottom: 8px;
}
.job-list a.job-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.job-list a.job-card .job-meta {
  font-size: 12px;
  line-height: 1.85;
  color: var(--c-text-sub);
  margin-bottom: 16px;
}
.job-list a.job-card .job-desc {
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 24px;
  flex: 1;
}
.job-list a.job-card .job-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin-top: auto;
}
.job-list a.job-card .btn-circle {
  width: 28px; height: 28px;
  background: var(--c-charcoal);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.job-list a.job-card:hover .btn-circle { background: var(--c-pink); }
@media (max-width: 900px) {
  .job-list-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .job-list-5 { grid-template-columns: 1fr; }
}

/* ============================================
   Recruit Detail Page (/recruit/[slug]/)
   ============================================ */
.recruit-detail-header {
  position: relative;
  padding: calc(var(--header-h) + 80px) 24px 90px;
  background: var(--c-bg-soft);
  overflow: hidden;
}
.recruit-detail-header.is-care { background: var(--c-mint-tint); }
.recruit-detail-header.is-nursery { background: var(--c-pink-tint); }
.recruit-detail-header.is-kitchen { background: #fef9e7; }
.recruit-detail-header.is-office { background: #f5edf7; }
.recruit-detail-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.recruit-detail-header .breadcrumb { margin-bottom: 16px; }
.recruit-detail-header .page-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--c-pink);
  margin-bottom: 12px;
}
.recruit-detail-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin-bottom: 16px;
}
.recruit-detail-header h1 em {
  font-style: normal;
  color: var(--c-pink);
  font-size: 0.7em;
  margin-left: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  vertical-align: middle;
}
.recruit-detail-header .rd-lead {
  font-size: 15px;
  line-height: 2.05;
  max-width: 760px;
}

/* Job spec table */
.job-spec-table {
  list-style: none;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 8px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.job-spec-table li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: start;
}
.job-spec-table li:last-child { border-bottom: none; }
.job-spec-table .jst-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-pink);
  padding-top: 2px;
}
.job-spec-table .jst-value {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
}
.job-spec-table .jst-value ul {
  list-style: disc;
  padding-left: 22px;
  margin: 4px 0;
}
.job-spec-table .jst-value ul li {
  display: list-item;
  border-bottom: none;
  padding: 4px 0;
  grid-template-columns: none;
  font-size: 14px;
  line-height: 1.95;
}
.job-spec-table .jst-value .jst-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--c-text-sub);
}
@media (max-width: 700px) {
  .job-spec-table { padding: 8px 24px; }
  .job-spec-table li { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
}

/* Job summary card (top of detail page) */
.job-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 48px;
}
.job-summary-item {
  background: var(--c-bg-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.job-summary-item .js-label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-text-sub);
  margin-bottom: 6px;
}
.job-summary-item .js-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--c-text);
}
@media (max-width: 900px) {
  .job-summary { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .job-summary { grid-template-columns: 1fr; }
}

/* Other open positions (cross-link) */
.other-positions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}
.other-positions a {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.other-positions a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--c-pink);
}
.other-positions .op-tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-text-sub);
}
.other-positions .op-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .other-positions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .other-positions { grid-template-columns: 1fr; }
}

/* ============================================
   Nursery Top — New Hero (2026-05-23 brushup)
   ============================================ */

/* hero wrapper: full-bleed photo + content overlay */
.nursery-hero {
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 0;
  background: var(--c-pink-tint);
  overflow: hidden;
  min-height: 720px;
}
.nh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.nh-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.40) 35%,
    rgba(255, 255, 255, 0.00) 70%
  );
  z-index: 1;
}
.nh-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* inner content placed over the background */
.nh-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nh-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 640px;
}
.nh-text .breadcrumb { justify-content: center; }
.nh-text .breadcrumb {
  margin-bottom: 4px;
}
.nh-text .breadcrumb,
.nh-text .breadcrumb a {
  color: var(--c-text-sub);
}
.nh-catch {
  display: block;
  margin: 0;
  max-width: 540px;
}
.nh-catch img {
  width: 100%;
  height: auto;
  display: block;
}
.nh-lead {
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  max-width: 560px;
  color: var(--c-text);
  margin: 0 auto;
}
.nh-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.nh-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.nh-meta li {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 6px 14px;
  background: #fff;
  border-radius: 999px;
  color: var(--c-pink);
  border: 1px solid rgba(238, 134, 168, 0.3);
}

/* slider pagination indicator (decorative, no actual slider) */
.nh-pagination {
  position: absolute;
  left: 60px;
  bottom: 90px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nh-pagination .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: background var(--transition), width var(--transition);
}
.nh-pagination .dot.is-active {
  width: 36px;
  border-radius: 999px;
  background: var(--c-pink);
}
.nh-pagination .nh-pg-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-text-sub);
  margin-left: 8px;
}

/* bottom curve transition into next section */
.nh-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  height: 120px;
  pointer-events: none;
}
.nh-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nh-bottom svg path { fill: #fff; }

/* decorative shapes scattered around the hero */
.nh-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.nh-deco svg { width: 100%; height: 100%; display: block; }
.nh-deco-1 { top: 80px; left: 24px; width: 90px; height: 90px; animation: floatY 9s ease-in-out infinite; }
.nh-deco-2 { top: 220px; left: 320px; width: 32px; height: 32px; animation: floatY 7s ease-in-out infinite; animation-delay: 1s; }
.nh-deco-3 { top: 140px; right: 220px; width: 60px; height: 60px; animation: spin 32s linear infinite; }
.nh-deco-4 { bottom: 180px; right: 320px; width: 110px; height: 110px; opacity: 0.85; animation: floatY 11s ease-in-out infinite; animation-delay: 0.5s; }
.nh-deco-5 { bottom: 110px; left: 40%; width: 24px; height: 24px; animation: floatY 6s ease-in-out infinite; animation-delay: 2s; }
.nh-deco-6 { top: 380px; right: 180px; width: 18px; height: 18px; }
.nh-deco-7 { top: 60px; right: 280px; width: 70px; height: 70px; animation: spin 28s linear infinite reverse; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* right-edge fixed sidebar — only on nursery top */
.nh-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nh-sb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  padding: 36px 0 32px;
  background: var(--c-pink);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 15px;
  writing-mode: vertical-rl;
  border-radius: 18px 0 0 18px;
  box-shadow: -4px 4px 16px rgba(62, 58, 57, 0.18);
  transition: background var(--transition), padding-right var(--transition);
}
.nh-sb-btn + .nh-sb-btn {
  background: var(--c-mint);
}
.nh-sb-btn:hover {
  padding-right: 6px;
  color: #fff;
}
.nh-sb-btn .nh-sb-en {
  writing-mode: horizontal-tb;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.9;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 1100px) {
  .nh-sidebar { display: none; }
}

/* responsive — collapse hero into a single column on tablet/phone */
@media (max-width: 1000px) {
  .nursery-hero { min-height: auto; padding-bottom: 0; }
  .nh-bg {
    position: relative;
    inset: 0;
    aspect-ratio: 16/10;
    margin: 0;
  }
  .nh-bg::after {
    background: linear-gradient(to top, rgba(255,255,255,0.6), rgba(255,255,255,0));
  }
  .nh-inner {
    padding: 40px 24px 120px;
  }
  .nh-catch { max-width: 400px; margin: 0 auto; }
  .nh-text { text-align: center; align-items: center; }
  .nh-lead { background: transparent; padding: 0; max-width: none; }
  .nh-pagination { left: 24px; bottom: 60px; }
  .nh-deco-1, .nh-deco-7 { display: none; }
}

/* ============================================
   Page-wide decorative blobs (nursery brushup)
   ============================================ */
.page-blob {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.page-blob svg { width: 100%; height: 100%; display: block; }
.page-blob.is-mint svg { color: var(--c-mint); }
.page-blob.is-pink svg { color: var(--c-pink); }
.page-blob.is-yellow svg { color: var(--c-yellow); }
.page-blob.is-purple svg { color: var(--c-purple); }
.page-blob.is-orange svg { color: #f0a26b; }

.page-blob.pos-tl-1 { top: 60px; left: 32px; width: 80px; height: 80px; animation: floatY 10s ease-in-out infinite; }
.page-blob.pos-tr-1 { top: 100px; right: 40px; width: 64px; height: 64px; animation: floatY 8s ease-in-out infinite; animation-delay: 0.6s; }
.page-blob.pos-bl-1 { bottom: 80px; left: 60px; width: 90px; height: 90px; animation: spin 40s linear infinite; }
.page-blob.pos-br-1 { bottom: 80px; right: 60px; width: 70px; height: 70px; animation: floatY 9s ease-in-out infinite; animation-delay: 1.2s; }
.page-blob.pos-mid-r { top: 50%; right: 4%; width: 32px; height: 32px; transform: translateY(-50%); }
.page-blob.pos-mid-l { top: 40%; left: 5%; width: 28px; height: 28px; }
.page-blob.size-sm { width: 22px !important; height: 22px !important; }
.page-blob.size-md { width: 50px !important; height: 50px !important; }
.page-blob.size-lg { width: 110px !important; height: 110px !important; }

@media (max-width: 700px) {
  .page-blob.pos-tl-1, .page-blob.pos-tr-1 { width: 50px; height: 50px; }
  .page-blob.pos-bl-1, .page-blob.pos-br-1 { width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .nh-deco, .page-blob { animation: none !important; }
}


/* ============================================
   Nursery Hero — Slideshow (2026-05-23 v2)
   ============================================ */
.nh-bg { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.nh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: nh-slide-cycle 18s ease-in-out infinite;
}
.nh-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: nh-slide-zoom 18s ease-in-out infinite;
}
.nh-slide:nth-child(1) { animation-delay: 0s; }
.nh-slide:nth-child(1) img { animation-delay: 0s; }
.nh-slide:nth-child(2) { animation-delay: 6s; }
.nh-slide:nth-child(2) img { animation-delay: 6s; }
.nh-slide:nth-child(3) { animation-delay: 12s; }
.nh-slide:nth-child(3) img { animation-delay: 12s; }

@keyframes nh-slide-cycle {
  0%       { opacity: 0; }
  3%, 30%  { opacity: 1; }
  36%, 97% { opacity: 0; }
  100%     { opacity: 0; }
}
@keyframes nh-slide-zoom {
  0%       { transform: scale(1.02); }
  33%      { transform: scale(1.10); }
  34%, 100%{ transform: scale(1.02); }
}

/* グラデーション・オーバーレイは .nh-bg::after でそのまま */
.nh-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.30) 40%,
    rgba(255, 255, 255, 0.00) 75%
  );
  z-index: 2;
  pointer-events: none;
}

/* ページネーションドットをスライドショーと同期 */
.nh-pagination .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  animation: nh-dot-cycle 18s ease-in-out infinite;
  transition: none;
}
.nh-pagination .dot:nth-child(1) { animation-delay: 0s; }
.nh-pagination .dot:nth-child(2) { animation-delay: 6s; }
.nh-pagination .dot:nth-child(3) { animation-delay: 12s; }
.nh-pagination .dot.is-active { /* デフォルト非アクティブ表示は不要、アニメ任せ */ }
@keyframes nh-dot-cycle {
  0%, 30%  { width: 36px; border-radius: 999px; background: var(--c-pink); }
  34%, 97% { width: 8px;  border-radius: 50%;   background: var(--c-border); }
  100%     { width: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .nh-slide, .nh-slide img, .nh-pagination .dot { animation: none !important; }
  .nh-slide:nth-child(1) { opacity: 1; }
  .nh-pagination .dot:nth-child(1) { width: 36px; border-radius: 999px; background: var(--c-pink); }
}


/* ============================================
   Nursery — Overview Section v2 (yellow / bubble titles)
   ============================================ */
.overview-section.is-ov-v2 {
  padding: 140px 24px 100px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.is-ov-v2 .ov-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: start;              /* 上揃え（写真の上はみ出しを綺麗に） */
  position: relative;
  z-index: 2;
  text-align: left;
  background: #fcf3c8;        /* ブランドイエローの淡いトーン */
  border-radius: 48px;
  padding: 72px 72px 88px;
  overflow: visible;
}

/* 左カラム */
.is-ov-v2 .ov-left {
  position: relative;
}
.is-ov-v2 .ov-vert {
  position: absolute;
  right: -40px;                    /* 親(.ov-inner)から右にはみ出す */
  top: -40px;                      /* 親(.ov-inner)から上にはみ出す */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: #c9a920;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 4;                      /* 親に重なる */
}
.is-ov-v2 .ov-bubbles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: -100px 0 32px 0;         /* 上にはみ出し量を50px下げて -100px に */
  position: relative;
  z-index: 3;
}
.is-ov-v2 .ov-bubble {
  display: inline-block;
  align-self: flex-start;
  background: #fff;                /* 白背景 */
  padding: 16px 32px 16px 28px;
  border-radius: 999px;
  /* ステッカー風の厚み：下部にニュートラルな色付き影＋ソフト影 */
  box-shadow: 0 5px 0 #ece4d3,
              0 10px 18px rgba(62, 58, 57, 0.08);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #a87432;                  /* 落ち着いた茶色 */
  position: relative;
}
.is-ov-v2 .ov-bubble > span { position: relative; z-index: 1; }
/* 両バブルとも左揃え（オフセットなし）、2つ目は1つ目に重ねる */
.is-ov-v2 .ov-bubble:nth-child(1) { z-index: 1; }
.is-ov-v2 .ov-bubble:nth-child(2) {
  margin-left: 0;
  margin-top: 0;                 /* 1行目と2行目は被らせない */
  z-index: 2;
}

.is-ov-v2 .ov-quote {
  margin: 0 0 28px;
  border-left: none;
}
.is-ov-v2 .ov-quote p {
  font-size: 16px;
  line-height: 2.15;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin: 0;
}

.is-ov-v2 .ov-cta { margin-top: 8px; }
.is-ov-v2 .ov-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 56px;
  background: #fff;
  border: 2px dashed #e9c965;
  border-radius: 999px;
  color: #b8862c;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 15px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.is-ov-v2 .ov-pill-btn:hover {
  background: #ecd560;
  color: #fff;
  border-color: #ecd560;
}
.is-ov-v2 .opb-mark {
  display: inline-block;
  width: 0; height: 0;
  border-left: 8px solid #b8862c;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: border-left-color var(--transition);
}
.is-ov-v2 .ov-pill-btn:hover .opb-mark { border-left-color: #fff; }

/* 右カラム：大きな角丸写真＋スピーチバブル */
.is-ov-v2 .ov-right {
  position: relative;
}
.is-ov-v2 .ov-photo {
  position: relative;
  border: 10px solid #fff;          /* 写真の外枠：白い線 */
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: #fff;
  box-shadow: 0 18px 44px rgba(62, 58, 57, 0.18);
  margin-top: -150px;               /* 親(.ov-inner)の上にはみ出す（さらに60px） */
  z-index: 4;
}
.is-ov-v2 .ov-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.is-ov-v2 .ov-speech {
  position: absolute;
  left: 8%;
  bottom: 18%;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text);
  box-shadow: 0 4px 12px rgba(62, 58, 57, 0.10);
}
.is-ov-v2 .ov-speech::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -6px;
  width: 12px; height: 12px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 4px 4px 8px rgba(62, 58, 57, 0.08);
}
.is-ov-v2 .ov-photo-blob {
  position: absolute;
  right: -28px;
  top: -28px;
  width: 84px; height: 84px;
  animation: floatY 9s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.is-ov-v2 .ov-photo-blob svg { width: 100%; height: 100%; }

/* 下端カーブ：次セクションのピンクへ繋ぐ */
.is-ov-v2 .ov-bottom {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  pointer-events: none;
  z-index: 1;
  display: none; /* セクション背景が白になったので下端カーブは不要 */
}
.is-ov-v2 .ov-bottom svg { width: 100%; height: 100%; display: block; }

@media (max-width: 900px) {
  .is-ov-v2 .ov-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 32px 56px;
    border-radius: 32px;
  }
  .is-ov-v2 .ov-left { padding-left: 0; }
  .is-ov-v2 .ov-vert { right: -16px; top: -24px; font-size: 12px; }
  .is-ov-v2 .ov-bubbles { margin: -100px 0 20px 0; align-items: flex-start; gap: 10px; }
  .is-ov-v2 .ov-bubble:nth-child(2) { margin-left: 0; margin-top: 0; }
  .is-ov-v2 .ov-photo { margin-top: -100px; border-width: 8px; }
  .is-ov-v2 .ov-photo { aspect-ratio: 4/3; }
}


/* Nursery Overview v2 — body text (Excel原稿) */
.is-ov-v2 .ov-body {
  margin: 0 0 28px;
}
.is-ov-v2 .ov-body p {
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin: 0 0 16px;
}
.is-ov-v2 .ov-body p:last-child { margin-bottom: 0; }

/* ============================================
   Feature Cards (4-column nav cards with photo + gradient button)
   ============================================ */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.feature-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 18px 32px -14px rgba(62, 58, 57, 0.18),
    0 6px 12px -6px rgba(62, 58, 57, 0.10);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  color: var(--c-text);
  text-decoration: none;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 44px -16px rgba(62, 58, 57, 0.24),
    0 10px 18px -8px rgba(62, 58, 57, 0.14);
}
.feature-card .fc-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature-card .fc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover .fc-photo img {
  transform: scale(1.06);
}
.feature-card .fc-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 22px 24px;
}
.feature-card .fc-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--c-pink);
}
.feature-card .fc-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--c-text);
  margin: 0;
}
.feature-card .fc-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-text-sub);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.feature-card .fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(95deg, var(--c-pink) 0%, var(--c-yellow) 100%);
  box-shadow: 0 6px 14px -6px rgba(238, 134, 168, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.feature-card .fc-btn svg {
  width: 14px;
  height: 14px;
}
.feature-card:hover .fc-btn {
  filter: brightness(1.05);
  box-shadow: 0 10px 18px -8px rgba(238, 134, 168, 0.55);
}

/* Color variants */
.feature-card.fc-mint { border-color: var(--c-mint); }
.feature-card.fc-mint .fc-sub { color: var(--c-mint); }
.feature-card.fc-mint .fc-btn {
  background: linear-gradient(95deg, var(--c-mint) 0%, #a8dccd 100%);
  box-shadow: 0 6px 14px -6px rgba(100, 192, 171, 0.45);
}
.feature-card.fc-mint:hover .fc-btn { box-shadow: 0 10px 18px -8px rgba(100, 192, 171, 0.55); }

.feature-card.fc-pink { border-color: var(--c-pink); }
.feature-card.fc-pink .fc-sub { color: var(--c-pink); }
.feature-card.fc-pink .fc-btn {
  background: linear-gradient(95deg, var(--c-pink) 0%, #f6bca4 100%);
  box-shadow: 0 6px 14px -6px rgba(238, 134, 168, 0.45);
}
.feature-card.fc-pink:hover .fc-btn { box-shadow: 0 10px 18px -8px rgba(238, 134, 168, 0.55); }

.feature-card.fc-yellow { border-color: var(--c-yellow); }
.feature-card.fc-yellow .fc-sub { color: #c9a82d; }
.feature-card.fc-yellow .fc-btn {
  background: linear-gradient(95deg, var(--c-yellow) 0%, #f0b27a 100%);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(236, 213, 96, 0.55);
}
.feature-card.fc-yellow:hover .fc-btn { box-shadow: 0 10px 18px -8px rgba(236, 213, 96, 0.65); }

.feature-card.fc-purple { border-color: var(--c-purple); }
.feature-card.fc-purple .fc-sub { color: var(--c-purple); }
.feature-card.fc-purple .fc-btn {
  background: linear-gradient(95deg, var(--c-purple) 0%, #d4b6dd 100%);
  box-shadow: 0 6px 14px -6px rgba(187, 151, 197, 0.45);
}
.feature-card.fc-purple:hover .fc-btn { box-shadow: 0 10px 18px -8px rgba(187, 151, 197, 0.55); }

@media (max-width: 1024px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .feature-cards { grid-template-columns: 1fr; }
  .feature-card .fc-body { padding: 20px; }
}

/* ============================================
   Journal section (blog list block on nursery top)
   ============================================ */
.journal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.journal-head-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.journal-title {
  font-family: var(--font-en);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-pink);
  line-height: 1.05;
  margin: 0;
}
.journal-sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text-sub);
  margin: 0;
}
.journal-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 4px 10px;
  color: var(--c-text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--c-pink);
  transition: color var(--transition), gap var(--transition);
}
.journal-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--c-pink);
  transform: scaleX(0.4);
  transform-origin: right center;
  opacity: 0.6;
  transition: transform var(--transition), opacity var(--transition);
}
.journal-link:hover {
  color: var(--c-pink);
  gap: 18px;
}
.journal-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.journal-link-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--c-pink);
}
.journal-link-icon svg { width: 100%; height: 100%; }

.journal-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.journal-cat {
  appearance: none;
  background: #fff;
  border: 1.5px solid var(--c-pink);
  color: var(--c-pink);
  padding: 9px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.journal-cat::before {
  content: "・";
  margin-right: 2px;
}
.journal-cat:hover {
  transform: translateY(-2px);
}
.journal-cat.is-active {
  background: var(--c-pink);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(238, 134, 168, 0.5);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--c-text);
  text-decoration: none;
}
.journal-card .jc-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.journal-card .jc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.journal-card:hover .jc-thumb img { transform: scale(1.04); }
.journal-card .jc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.journal-card .jc-cat {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border: 1px solid var(--c-pink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-pink);
}
.journal-card .jc-date {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-text-sub);
}
.journal-card .jc-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--c-text);
  margin: 0;
  transition: color var(--transition);
}
.journal-card:hover .jc-title { color: var(--c-pink); }
.journal-card .jc-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-text-sub);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.journal-card.is-hidden { display: none; }

@media (max-width: 1024px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 640px) {
  .journal-head { gap: 18px; }
  .journal-grid { grid-template-columns: 1fr; gap: 24px; }
  .journal-cats { margin-bottom: 32px; gap: 8px; }
  .journal-cat { padding: 8px 18px; font-size: 12px; }
}

/* ============================================
   Care Top Hero — photo collage + vertical copy (shimashikain-inspired)
   ============================================ */
.care-hero {
  position: relative;
  padding: calc(var(--header-h) + 28px) 0 180px;
  background: var(--c-mint-tint);
  overflow: hidden;
}
.care-hero-stage {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 32px;
  height: clamp(710px, calc(78svh + 150px), 970px);
}
/* Photos */
.care-hero-photo {
  position: absolute;
  overflow: hidden;
  background: rgba(0,0,0,0.04);
  box-shadow: 0 22px 50px -28px rgba(60, 80, 75, 0.35);
  opacity: 0;
  transform: translateY(28px);
  animation: careHeroIn 1s cubic-bezier(.2,.6,.2,1) forwards;
}
.care-hero-photo .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  animation: slidePhotoFade 15s ease-in-out infinite;
}
@keyframes slidePhotoFade {
  0%   { opacity: 0; transform: scale(1.04); }
  5%   { opacity: 1; transform: scale(1.06); }
  33%  { opacity: 1; transform: scale(1.12); }
  38%  { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.14); }
}
.care-hero-photo .slide:nth-child(1) { animation-delay: calc(var(--phase, 0s) + 0s); }
.care-hero-photo .slide:nth-child(2) { animation-delay: calc(var(--phase, 0s) + 5s); }
.care-hero-photo .slide:nth-child(3) { animation-delay: calc(var(--phase, 0s) + 10s); }

/* Main photo: left, large, huge rounded bottom-right */
.care-hero .photo-main {
  --phase: -1.5s;
  left: 32px;
  top: 0;
  width: calc(50% - 32px);
  height: 80%;
  border-radius: 16px 16px 280px 16px;
  animation-delay: .1s;
}
/* Sub photo: top-right small, huge rounded bottom-left */
.care-hero .photo-sub {
  --phase: -3s;
  right: 32px;
  top: 0;
  width: 28%;
  height: 46%;
  border-radius: 16px 16px 16px 220px;
  animation-delay: .3s;
}
/* Accent photo: bottom-right, huge rounded top-left */
.care-hero .photo-accent {
  --phase: -4.5s;
  right: 32px;
  bottom: 0;
  width: 36%;
  height: 41%;
  border-radius: 240px 16px 16px 16px;
  animation-delay: .5s;
}

/* Info block (lead + availability) — sits below photo-main (no overlap) */
.care-hero-info {
  position: absolute;
  left: 32px;
  top: calc(80% + 24px);
  z-index: 4;
  width: calc(50% - 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: careHeroIn 1s cubic-bezier(.2,.6,.2,1) .7s forwards;
}
.care-hero-lead {
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--c-text);
  text-align: center;
  margin: 0;
}

/* Availability status — two floating circle badges, half-overlapping the bottom edge of photo-accent (cantilevering downward) */
.care-hero-status {
  position: absolute;
  /* slight right margin (80px from stage right = ~48px inside photo-accent's right edge) */
  right: 80px;
  /* photo-accent bottom is at stage bottom; offset down by half of circle height (85px) so circles straddle the bottom edge */
  bottom: -85px;
  z-index: 5;
  display: flex;
  gap: 18px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: careHeroIn 1s cubic-bezier(.2,.6,.2,1) .9s forwards;
}
.status-circle {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 18px 38px -10px rgba(60, 80, 75, 0.22),
    0 6px 14px -4px rgba(60, 80, 75, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  text-align: center;
  gap: 8px;
}
.status-circle .cs-eyebrow {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-text-sub);
  line-height: 1.45;
}
.status-circle .cs-main {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  display: inline-block;
  padding: 0 8px;
  background-image: linear-gradient(
    transparent 38%,
    var(--band-color, rgba(100, 192, 171, 0.5)) 38%,
    var(--band-color, rgba(100, 192, 171, 0.5)) 82%,
    transparent 82%
  );
}
.status-circle .cs-main.is-open   { --band-color: rgba(100, 192, 171, 0.55); }
.status-circle .cs-main.is-asking { --band-color: rgba(236, 213, 96, 0.7); }
.status-circle .cs-main.is-full   { --band-color: rgba(238, 134, 168, 0.45); }
.status-circle .cs-footer {
  font-size: 10px;
  color: var(--c-text-sub);
  letter-spacing: 0.06em;
}

@keyframes careHeroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Vertical copy block (writing-mode: vertical-rl) — horizontally centered between photo-main (right edge 50%) and photo-sub (left edge ≈ 70%); center ≈ 60% */
.care-hero-copy {
  position: absolute;
  top: 8%;
  right: 37%;
  z-index: 3;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  transform: translateX(20px);
  animation: careHeroCopyIn 1s cubic-bezier(.2,.6,.2,1) .7s forwards;
}
@keyframes careHeroCopyIn {
  to { opacity: 1; transform: translateX(0); }
}
.care-hero-title {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.26em;
  color: var(--c-text);
}
.care-hero-title .t-line {
  display: block;
  margin: 0;
}
.care-hero-title em {
  font-style: normal;
  color: var(--c-pink);
}

/* Scroll cue (placed below stage, horizontal) */
.care-hero-scroll {
  position: absolute;
  left: 64px;
  bottom: 80px;
  z-index: 3;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--c-text-sub);
  font-family: var(--font-en, 'Poppins', sans-serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  opacity: 0;
  animation: careHeroIn 1s ease-out 1.2s forwards;
}
.care-hero-scroll .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-pink);
  animation: careHeroScrollDot 1.8s ease-in-out infinite;
}
@keyframes careHeroScrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}
.care-hero-scroll .label {
  writing-mode: horizontal-tb;
}

/* Tablet */
@media (max-width: 1100px) {
  .care-hero-stage { height: clamp(670px, calc(70svh + 150px), 870px); padding: 0 24px; }
  .care-hero .photo-main { left: 24px; width: calc(52% - 24px); height: 78%; border-radius: 14px 14px 220px 14px; }
  .care-hero .photo-sub { right: 24px; width: 30%; height: 48%; border-radius: 14px 14px 14px 160px; }
  .care-hero .photo-accent { right: 24px; width: 36%; height: 40%; border-radius: 180px 14px 14px 14px; }
  .care-hero-copy { right: 36%; top: 6%; }
  .care-hero-scroll { left: 24px; }
  .care-hero-info { left: 24px; top: calc(78% + 18px); width: calc(52% - 24px); gap: 14px; }
  .care-hero-lead { font-size: 14px; line-height: 1.9; }
  /* photo-accent on tablet: bottom 0; status half-overlaps the bottom edge (half circle = 74px) with slight right margin */
  .care-hero-status { right: 60px; top: auto; bottom: -74px; gap: 14px; }
  .status-circle { width: 148px; height: 148px; padding: 14px 12px; gap: 6px; }
  .status-circle .cs-main { font-size: 19px; }
  .status-circle .cs-eyebrow { font-size: 10px; }
}

/* Mobile: stack vertically */
@media (max-width: 720px) {
  .care-hero { padding: calc(var(--header-h) + 16px) 0 64px; }
  .care-hero-crumb { padding: 0 16px; margin-bottom: 14px; }
  .care-hero-stage {
    height: auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 14px;
  }
  .care-hero-photo {
    position: relative;
    inset: auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
  }
  .care-hero .photo-main {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    aspect-ratio: 4 / 3;
    border-radius: 12px 12px 140px 12px;
  }
  .care-hero-info {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    width: auto;
    top: auto;
    left: auto;
    gap: 12px;
    transform: none;
    animation: careHeroIn 1s ease-out .4s forwards;
  }
  .care-hero-lead { font-size: 13.5px; line-height: 1.9; text-align: center; }
  .care-hero-status {
    position: static;
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    top: auto;
    right: auto;
    gap: 12px;
    justify-content: center;
    transform: none;
    animation: careHeroIn 1s ease-out .5s forwards;
  }
  .status-circle { width: 130px; height: 130px; padding: 12px 10px; gap: 4px; }
  .status-circle .cs-main { font-size: 17px; padding: 0 6px; }
  .status-circle .cs-eyebrow { font-size: 9.5px; }
  .status-circle .cs-footer { font-size: 9px; }
  .care-hero .photo-sub {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    aspect-ratio: 4 / 5;
    border-radius: 12px 12px 12px 120px;
  }
  .care-hero .photo-accent {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    aspect-ratio: 4 / 5;
    border-radius: 120px 12px 12px 12px;
  }
  .care-hero-copy {
    position: static;
    grid-column: 1 / -1;
    grid-row: 5 / 6;
    writing-mode: horizontal-tb;
    margin: 8px 0 0;
    text-align: center;
    transform: none;
    animation: careHeroIn 1s ease-out .6s forwards;
  }
  .care-hero-title {
    font-size: clamp(22px, 6.2vw, 30px);
    line-height: 1.85;
    letter-spacing: 0.18em;
  }
  .care-hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .care-hero-photo,
  .care-hero-copy,
  .care-hero-scroll,
  .care-hero-info,
  .care-hero-status {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .care-hero-photo .slide {
    animation: none;
    opacity: 0;
    transform: scale(1.04);
  }
  .care-hero-photo .slide:first-child { opacity: 1; }
  .care-hero-scroll .dot { animation: none; }
}

/* ============================================
   Site-wide bottom breadcrumb bar
   ============================================ */
.breadcrumb-bar {
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
  padding: 18px 0;
}
.breadcrumb-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb-bar .breadcrumb {
  margin: 0;
}
@media (max-width: 640px) {
  .breadcrumb-bar { padding: 14px 0; }
  .breadcrumb-bar-inner { padding: 0 16px; }
  .breadcrumb-bar .breadcrumb { font-size: 11px; }
  .breadcrumb-bar .breadcrumb .sep { margin: 0 6px; }
}

/* ============================================
   Page Hero (下層ページヒーロー：左テキスト／右写真)
   ============================================ */
.page-hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 40px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.page-hero-bg img {
  position: absolute;
  width: min(880px, 70vw);
  height: auto;
  top: 50%;
  left: 14%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  animation: mark-rotate 140s linear infinite;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 60vw;
  align-items: center;
}
.page-hero-text {
  padding: 80px 60px 100px max(40px, calc((100vw - 1400px) / 2));
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-sub);
  margin-bottom: 36px;
}
.page-hero-breadcrumb a {
  position: relative;
  padding-bottom: 4px;
  color: var(--c-text-sub);
  text-decoration: none;
  transition: color var(--transition);
}
.page-hero-breadcrumb a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
}
.page-hero-breadcrumb a:hover {
  color: var(--c-pink);
}
.page-hero-breadcrumb .bc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-pink);
  flex-shrink: 0;
}
.page-hero-breadcrumb .bc-current {
  color: var(--c-text);
  font-weight: 600;
}
.page-hero-en {
  display: inline-block;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--c-pink);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.page-hero-lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--c-text);
  max-width: 520px;
}
.page-hero-photo {
  position: relative;
  align-self: stretch;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  border-top-left-radius: 80px;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero-text {
    padding: 60px 24px 32px;
  }
  .page-hero-photo {
    margin-left: 24px;
    border-top-left-radius: 60px;
    aspect-ratio: 16 / 10;
  }
  .page-hero-bg img {
    width: min(800px, 110vw);
    left: 30%;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: calc(var(--header-h) + 20px);
  }
  .page-hero-text {
    padding: 40px 20px 28px;
  }
  .page-hero-breadcrumb { font-size: 10px; gap: 10px; margin-bottom: 24px; }
  .page-hero-en { font-size: 16px; margin-bottom: 14px; }
  .page-hero-title { margin-bottom: 24px; }
  .page-hero-lead { font-size: 14px; line-height: 1.95; }
  .page-hero-photo {
    margin-left: 16px;
    border-top-left-radius: 40px;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-bg img { animation: none; }
}

