:root {
  --cream: #FFF8E8;
  --cream-deep: #FFEFC9;
  --bg: #FFFEFB;
  --paper: #ffffff;
  --ink: #2A2F40;
  --ink-soft: #4F5468;
  --ink-mute: #6D7488;

  --pink: #FF8FB3;
  --pink-deep: #E96A95;
  --pink-soft: #FFDCE6;

  --sun: #FFD84D;
  --sun-deep: #E6B423;
  --sun-soft: #FFF0AA;

  --sky: #7DCDE0;
  --sky-deep: #3FA9C5;
  --sky-soft: #D7F1F6;

  --mint: #9FDDB4;
  --mint-deep: #5DBE85;

  --coral: #FF9F7A;
  --orange: #E08A4C;
  --lilac: #C9A9E8;

  --r-card: 28px;
  --r-blob: 36px;
  --r-pill: 999px;

  --heading-font: 'Yusei Magic', 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  --heading-weight: 400;

  --shadow-soft: 0 8px 24px rgba(80, 70, 120, .10);
  --shadow-card: 0 14px 38px rgba(80, 70, 120, .14);
  --shadow-pop: 0 18px 0 rgba(0, 0, 0, .06);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  /* width/height 属性から縦横比を保つ（属性値で高さが固定されないようにする） */
  height: auto
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

.font-display {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  letter-spacing: .02em
}

.font-en {
  font-family: 'Fredoka', sans-serif;
  letter-spacing: .06em
}

.font-hand {
  font-family: 'Kosugi Maru', sans-serif
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px
}

.wrap-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px
}

/* ========================================================== HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
}

.brand-blob {
  pointer-events: auto;
  position: relative;
  width: 170px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  filter: drop-shadow(0 4px 14px rgba(80, 70, 120, .18));
}

.brand-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block
}

.brand-blob img {
  position: relative;
  z-index: 1;
  height: auto;
  width: auto;
  max-height: 38px;
  max-width: 100%;
  object-fit: contain
}

/* transparent logo variant (no white blob, used on subpages too) */
.brand-blob--bare {
  width: auto;
  height: auto;
  padding: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

.brand-blob--bare img {
  max-height: 64px
}

@media (max-width: 600px) {
  .brand-blob--bare img {
    max-height: 84px
  }
}

.menu-btn {
  pointer-events: auto;
  position: relative;
  width: 64px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform .2s, opacity .2s;
  margin-top: 0;
}

.menu-btn:hover {
  transform: translateY(-2px) rotate(-2deg);
  opacity: .95
}

.menu-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .22))
}

/* ========================================================== HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: #C4E7F0;
  /* clip + clip-margin：横方向のはみ出しは従来どおり抑えつつ、
     .hero-wave の bottom:-1px（下端の線防止）だけを許容する */
  overflow: clip;
  overflow-clip-margin: 2px;
  display: flex;
  flex-direction: column;
}

.hero-photo {
  position: absolute;
  inset: 0
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-photo img.active {
  opacity: 1
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .20) 0%, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .30) 100%);
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 3
}

.hero-deco img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .10))
}

.hero-deco.d1 {
  top: 18%;
  left: 6%;
  width: 64px
}

.hero-deco.d2 {
  top: 30%;
  right: 9%;
  width: 80px
}

.hero-deco.d3 {
  bottom: 34%;
  left: 10%;
  width: 52px
}

.hero-deco.d4 {
  top: 60%;
  right: 14%;
  width: 66px
}

.hero-deco.chick {
  width: 110px
}

.hero-deco.chick.d2 {
  width: 120px
}

.hero-deco.chick.d4 {
  width: 100px
}

.hero-stack {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 28px 130px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--pink-deep);
  padding: 8px 16px 9px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .14em;
}

.hero-badge::before {
  content: "★";
  color: var(--sun-deep)
}

.hero-title {
  margin: 28px 0 14px;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.25;
  color: #fff;
  letter-spacing: .02em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .10), 0 8px 24px rgba(0, 0, 0, .18);
}

.hero-title .pink,
.hero-title .sun {
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .10), 0 8px 24px rgba(0, 0, 0, .18)
}

.hero-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #fff;
  font-weight: 500;
  max-width: 640px;
  margin: 6px auto 38px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.btn:hover {
  opacity: .85
}

.btn .arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
  border: none
}

.btn-pink .arrow {
  background: #fff;
  color: var(--pink)
}

.btn-sun {
  background: var(--sun);
  color: var(--ink);
  border: none
}

.btn-sun .arrow {
  background: var(--ink);
  color: var(--sun)
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, .55)
}

.btn-ghost .arrow {
  background: #fff;
  color: var(--sky-deep)
}

/* bottom:-1px で hero の下端から 1px はみ出させ、hero の高さが端数（100vh の端数・ブラウザズーム時）
   になっても下端に背景写真の線が出ないようにする。.hero 側は overflow を clip にして
   このはみ出しだけを許容する（overflow:hidden だと -1px がクリップされて線が出る） */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 140px;
  z-index: 4
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%
}

/* ========================================================== PAGE HEAD (sub-pages) */
.page-head {
  position: relative;
  height: 380px;
  overflow: hidden;
  color: #fff;
  background: #C4E7F0;
  padding-top: 90px;
}

.page-head-photo {
  position: absolute;
  inset: 0
}

.page-head-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82
}

.page-head-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(120, 200, 220, .28) 0%, rgba(96, 178, 200, .5) 100%);
}

/* blog: 園児の顔がひよこイラストと重なるため、写真を右へずらす */
.page-head--blog .page-head-photo img {
  width: 140%;
  max-width: none;
  object-position: left center;
}

.page-head-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 28px;
}

.page-head-en {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: .36em;
  font-size: 16px;
  text-indent: .36em;
  opacity: .95;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

.page-head-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(34px, 5vw, 56px);
  margin: 2px 0 14px;
  letter-spacing: .08em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 6px 22px rgba(0, 0, 0, .32);
}

/* crayon-admission: logo sits at the very top; hide the default chick */
.page-head--crayon .page-head-inner::before {
  display: none
}

.page-head--crayon .ph-logo {
  display: block;
  width: auto;
  height: clamp(72px, 9vw, 104px);
  margin: 0 auto 10px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .28));
}

.page-head--crayon .page-head-title {
  font-size: clamp(26px, 3.4vw, 40px)
}

/* about: extra breathing room below the page-head title */
.page-head--about .page-head-title {
  margin-bottom: 64px;
  white-space: nowrap
}

/* about: intro statement section — trim the bottom padding */
.section--statement {
  padding-bottom: 24px
}

.page-head-lead {
  font-size: 16px;
  opacity: .95;
  max-width: 540px;
  line-height: 1.9;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .28);
}

.page-head-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 3
}

.page-head-wave svg {
  display: block;
  width: 100%;
  height: 100%
}

/* administrative pages (news / download / compliance / privacy):
   no hero photo — solid brand-color fill matching the site palette */
.page-head--plain {
  background: linear-gradient(160deg, var(--ph-c1, var(--sky)) 0%, var(--ph-c2, var(--sky-deep)) 100%);
  color: var(--ink);
}

.page-head--plain .page-head-title,
.page-head--plain .page-head-en,
.page-head--plain .page-head-lead {
  text-shadow: none;
}

.page-head--plain .page-head-photo {
  display: none;
}

/* 淡い塗り背景では濃い影が浮くため、ロゴの影を弱める */
.page-head--plain .ph-logo {
  filter: drop-shadow(0 2px 6px rgba(90, 60, 40, .16));
}

.page-head--sky {
  --ph-c1: #D9F1F7;
  --ph-c2: #B7E3EE;
}

.page-head--mint {
  --ph-c1: #DCF2E5;
  --ph-c2: #BBE6CD;
}

.page-head--sun {
  --ph-c1: #FCF0C8;
  --ph-c2: #F7E29A;
}

.page-head--pink {
  --ph-c1: #FCE0EA;
  --ph-c2: #F8C9DA;
}

/* くれよんハウス系ページ用：ブランドのピーチ〜ラベンダーを淡くした塗り */
.page-head--crayon-soft {
  --ph-c1: #FCE3D5;
  --ph-c2: #E7D6F2;
}

/* くれよんハウス紹介ページ用：利用案内(--crayon-soft)より少し濃いピーチ〜パープル */
.page-head--crayon-deep {
  --ph-c1: #F3D6C0;
  --ph-c2: #D2B3E8;
}

.page-head--blue {
  --ph-c1: #DCE6FB;
  --ph-c2: #B7CCF2;
}

.page-head--violet {
  --ph-c1: #E1DFF9;
  --ph-c2: #C0BCF0;
}

/* ブログ記事詳細用：一覧(--violet)より少し濃いすみれ色 */
.page-head--violet-deep {
  --ph-c1: #E9DAF6;
  --ph-c2: #CBB0EA;
}

.page-head--orange {
  --ph-c1: #FCE4D2;
  --ph-c2: #F5BE93;
}

.page-head--lime {
  --ph-c1: #EFF4C9;
  --ph-c2: #DCE89B;
}

/* 園での生活用：他ページと重ならない、明るいライムグリーン */
.page-head--facility {
  --ph-c1: #E7F6BA;
  --ph-c2: #BEE474;
}

/* 園での生活：タイトルと下部の波線の間に余白をつくる */
.page-head--facility .page-head-inner {
  padding-bottom: 40px;
}

@media (max-width:900px) {
  .page-head--facility .page-head-inner {
    padding-bottom: 120px;
  }
}

.page-head--seafoam {
  --ph-c1: #E3F2D8;
  --ph-c2: #BEE3A0;
}

.page-head--teal {
  --ph-c1: #D2F1EC;
  --ph-c2: #9FDFD1;
}

.page-head--rose {
  --ph-c1: #FCE0DE;
  --ph-c2: #F6AFA8;
}

.breadcrumb {
  padding: 24px 0;
  background: var(--bg);
  margin-top: -2px;
  position: relative;
  z-index: 5
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  font-size: 16px;
  color: var(--ink-mute);
}

.breadcrumb a {
  color: var(--ink-soft);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--pink-deep)
}

.breadcrumb .sep {
  color: var(--ink-mute)
}

/* ========================================================== NOTICE STRIP */
.notice-strip {
  background: var(--bg);
  padding: 26px 24px;
}

.notice-card {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 24px;
  padding: 18px 26px;
  border: 2px dashed var(--pink-soft);
  flex-wrap: wrap;
}

.notice-tag {
  background: var(--pink);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .18em;
  padding: 6px 14px;
  border-radius: 999px;
  flex-shrink: 0;
}

.notice-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500
}

.notice-card strong {
  color: var(--pink-deep)
}

.notice-card .arrow-tag {
  margin-left: auto;
  color: var(--sky-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}

/* ========================================================== SECTION */
.section {
  position: relative;
  padding: 20px 0 110px
}

/* first content section on each page: tighten the space above its heading */
.breadcrumb+.section {
  padding-top: 22px
}

.section.bg-cream {
  background: var(--cream)
}

.section.bg-sky {
  background: var(--sky-soft)
}

.section.bg-pink {
  background: #FFF1F5
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-deep);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: .16em;
  font-size: 16px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px
}

.eyebrow.sky {
  color: var(--sky-deep)
}

.eyebrow.sky::before,
.eyebrow.sky::after {
  background: var(--sky-deep)
}

.eyebrow.sun {
  color: var(--sun-deep)
}

.eyebrow.sun::before,
.eyebrow.sun::after {
  background: var(--sun-deep)
}

/* Centered Japanese title with dashed line + English caps below */
.shead {
  text-align: center;
  margin-bottom: 48px;
  position: relative
}

.shead-jp {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
  letter-spacing: .18em;
  color: var(--ink);
  margin: 0;
  padding-bottom: 18px;
  position: relative;
  white-space: nowrap;
  max-width: 100%;
}

.shead-jp::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 4px;
  height: 0;
  border-top: 2.5px dotted var(--pink);
}

.shead-en {
  display: block;
  margin-top: 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: .36em;
  font-size: 16px;
  color: var(--pink-deep);
  text-indent: .36em;
}

.shead.sky .shead-en {
  color: var(--sky-deep)
}

.shead.sky .shead-jp::after {
  border-color: var(--sky)
}

.shead.sun .shead-en {
  color: var(--sun-deep)
}

.shead.sun .shead-jp::after {
  border-color: var(--sun)
}

.shead.invert .shead-jp {
  color: var(--ink)
}

.shead.invert .shead-en {
  color: var(--ink-mute)
}

.shead.invert .shead-jp::after {
  border-color: rgba(42, 47, 64, .45)
}

.shead-jp .pink {
  color: var(--pink-deep)
}

.shead-jp .sun {
  color: var(--sun-deep)
}

.shead-jp .sky {
  color: var(--sky-deep)
}

.shead-lead {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 2;
}

.shead.invert .shead-lead {
  color: var(--ink-soft)
}

.sec-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
  margin: 14px 0 18px;
}

.sec-title .pink {
  color: var(--pink-deep)
}

.sec-title .sky {
  color: var(--sky-deep)
}

.sec-title .sun {
  color: var(--sun-deep)
}

.sec-title .underline {
  background: linear-gradient(transparent 65%, var(--sun-soft) 65%);
  padding: 0 .1em;
}

.sec-lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto
}

/* chick illustration above each section heading */
.shead {
  position: relative
}

.shead::before {
  content: "";
  display: block;
  width: auto;
  height: 72px;
  margin: 0 auto 14px;
  background-image: url('../img/chicks/chick-2.png');
  background-size: auto 72px;
  background-repeat: no-repeat;
  background-position: center bottom;
}

/* explicit chick per section via data-chick attribute */
.shead[data-chick="wave"]::before {
  background-image: url('../img/chicks/chick-wave.png');
}

.shead[data-chick="calm"]::before {
  background-image: url('../img/chicks/chick-calm.png');
}

.shead[data-chick="run"]::before {
  background-image: url('../img/chicks/chick-run.png');
}

.shead[data-chick="surprise"]::before {
  background-image: url('../img/chicks/chick-surprise.png');
}

.shead[data-chick="sing"]::before {
  background-image: url('../img/chicks/chick-sing.png');
}

.shead[data-chick="flower"]::before {
  background-image: url('../img/chicks/chick-flower.png');
}

.shead[data-chick="flag"]::before {
  background-image: url('../img/chicks/chick-flag.png');
}

.shead[data-chick="pair"]::before {
  background-image: url('../img/chicks/chick-pair.png');
}

.shead[data-chick="question"]::before {
  background-image: url('../img/chicks/chick-question.png');
}

.shead.invert::before {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .2));
}

/* chick illustration above page-head title (sub pages) */
.page-head-inner {
  position: relative
}

.page-head-inner::before {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  background-image: url('../img/chicks/chick-1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
}

/* crayon-house: small wordmark logo above the CRAYON HOUSE label (where the chick used to sit) */
.crayon-page .page-head-inner::before {
  display: none
}

.crayon-page .page-head-title {
  margin: 0 0 14px
}

.crayon-page .page-head-title .ph-logo {
  display: block;
  width: auto;
  height: 128px;
  margin: 0 auto -22px;
  transform: translateY(-24px);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .28));
}

.crayon-page .page-head-lead {
  display: none
}

/* policy layout */
.policy {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center
}

.policy-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 42px 44px 44px;
  box-shadow: 0 8px 28px rgba(80, 70, 120, .10);
}

.policy-card::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 32px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sun);
}

.policy-card .stamp {
  position: absolute;
  top: -22px;
  left: 32px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .06em;
  z-index: 1;
  text-align: center;
  line-height: 1.1;
}

.policy-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.3;
  margin: 8px 0 22px;
}

.policy-title .hi {
  color: var(--pink-deep)
}

.policy-body {
  font-size: 16px;
  color: var(--ink);
  line-height: 2
}

.policy-pillars {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap
}

.pillar {
  background: var(--cream);
  border-radius: 999px;
  padding: 10px 18px 11px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pillar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink)
}

.pillar:nth-child(2) .dot {
  background: var(--sky)
}

.pillar:nth-child(3) .dot {
  background: var(--mint)
}

.pillar:nth-child(4) .dot {
  background: var(--sun)
}

.policy-collage {
  position: relative;
  height: 520px
}

.collage-frame {
  position: absolute;
  background: #fff;
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.collage-frame img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.c1 {
  width: 62%;
  height: 64%;
  top: 0;
  left: 0;
  transform: rotate(-1.5deg)
}

.c2 {
  width: 54%;
  height: 50%;
  bottom: -55px;
  right: 0;
  transform: rotate(2deg)
}

.c3 {
  width: 36%;
  height: 36%;
  top: 38%;
  left: 38%;
  transform: rotate(-1deg);
  z-index: 2;
  background: #fff;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  border: 4px solid var(--pink-soft)
}

.c3 .num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--pink-deep)
}

.c3 .lbl {
  font-size: 16px;
  letter-spacing: .18em;
  margin-top: 4px;
  color: var(--ink-mute)
}

.c3 .sub {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
  color: var(--ink)
}

.collage-deco {
  position: absolute;
  width: 90px;
  filter: drop-shadow(0 6px 12px rgba(80, 70, 120, .18))
}

.collage-deco.cd1 {
  top: -30px;
  right: -20px;
  width: 130px
}

.collage-deco.cd2 {
  bottom: -20px;
  left: -12px;
  width: 90px
}

/* ========================================================== VTAG */
.vphoto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 8px
}

.vphoto {
  position: relative
}

.vphoto-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(80, 70, 120, .14);
  aspect-ratio: 4/3;
}

.vphoto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.vphoto-shead {
  text-align: center;
  margin-bottom: 30px
}

.vtag-stack {
  position: absolute;
  top: -18px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 2
}

.vtag-stack.right {
  left: auto;
  right: 14px
}

.vtag {
  writing-mode: vertical-rl;
  background: var(--sky-deep);
  color: #fff;
  padding: 14px 10px 16px;
  border-radius: 6px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .12em;
  box-shadow: 0 6px 18px rgba(63, 169, 197, .32);
  min-height: 170px;
}

.vtag.pink {
  background: var(--pink);
  box-shadow: 0 6px 18px rgba(255, 143, 179, .36)
}

.vtag.sun {
  background: var(--sun-deep);
  box-shadow: 0 6px 18px rgba(230, 180, 35, .32);
  color: #fff
}

.vtag.mint {
  background: var(--mint-deep);
  color: #fff;
  box-shadow: 0 6px 18px rgba(93, 190, 133, .32)
}

.vphoto-foot {
  margin-top: 18px;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-soft);
}

/* ========================================================== IMMERSIVE BLUE */
.immerse {
  position: relative;
  background: #C4E7F0;
  color: var(--ink);
  padding: 0 0 110px;
  overflow: hidden;
}

.immerse .wave-top {
  display: block;
  width: 100%;
  height: 120px
}

.wave-top-immerse {
  display: block;
  width: 100%;
  height: 120px;
  margin-bottom: -1px
}

.immerse .shead-jp {
  color: var(--ink)
}

.immerse .shead-jp::after {
  border-color: rgba(42, 47, 64, .45)
}

.immerse .shead-en {
  color: var(--ink-mute)
}

.immerse-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px
}

.immerse-body {
  text-align: center;
  font-size: 16px;
  line-height: 2.2;
  margin: 0 auto 60px;
  max-width: 720px;
}

.immerse-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.immerse-photos .img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  position: relative;
}

.immerse-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.immerse-photos .img .cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  color: var(--sky-deep);
  padding: 8px 16px 9px;
  border-radius: 6px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.immerse-photos .img:nth-child(2) .cap {
  background: var(--pink);
  color: #fff
}

.immerse-wave-bottom {
  display: block;
  width: 100%;
  height: 120px;
  margin-bottom: -1px
}

/* ========================================================== ENVIRONMENT */
.env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 8px
}

.env-cell {
  position: relative
}

.env-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 14px 30px rgba(80, 70, 120, .12);
}

.env-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.env-pill {
  display: inline-block;
  background: var(--sky-deep);
  color: #fff;
  padding: 10px 22px 11px;
  border-radius: 6px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  margin: -22px 0 0 18px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(63, 169, 197, .30);
}

.env-cell:nth-child(2) .env-pill {
  background: var(--pink)
}

.env-cell:nth-child(3) .env-pill {
  background: var(--sun-deep)
}

.env-text {
  margin-top: 14px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85
}

/* ========================================================== TIMELINE */
.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0 20px
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(180deg, var(--pink) 0 8px, transparent 8px 14px);
  transform: translateX(-50%);
}

.t-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.t-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 14px 30px rgba(80, 70, 120, .14);
  max-width: 380px;
  width: 100%;
  justify-self: end;
}

.t-row.alt .t-photo {
  justify-self: start
}

.t-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* 写真なしの行：透明のスペーサーで写真カラムを占有し、本文位置を維持 */
.t-photo-spacer {
  visibility: hidden;
}

.t-photo.is-pair {
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 380px
}

.t-photo.is-pair img {
  width: 82%;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(80, 70, 120, .14)
}

.t-photo.is-pair img:first-child {
  align-self: flex-start
}

.t-photo.is-pair img:last-child {
  align-self: flex-end
}

.t-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  justify-self: start;
  margin-top: 30px;
  max-width: 430px;
}

.t-row.alt .t-content {
  justify-self: end;
  align-self: end;
  margin-top: 0;
  margin-bottom: 30px;
  align-items: flex-end;
  text-align: left
}

/* 2枚組写真は背が高くなるため、テキストの縦位置を写真の上端に合わせる */
.t-row.alt.t-row--pair-top .t-content {
  align-self: start;
  margin-top: 30px;
  margin-bottom: 0;
}

.t-pill {
  background: var(--sky-deep);
  color: #fff;
  padding: 14px 22px 16px;
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(63, 169, 197, .30);
  align-self: flex-start;
}

.t-row.alt .t-pill {
  align-self: flex-end
}

.t-pill .time {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .06em;
  flex-shrink: 0
}

.t-pill .label {
  display: inline-block
}

.t-row.alt .t-photo {
  order: 2
}

.t-pill.pink {
  background: var(--pink);
  box-shadow: 0 8px 20px rgba(255, 143, 179, .36)
}

.t-pill.sun {
  background: var(--sun-deep);
  box-shadow: 0 8px 20px rgba(230, 180, 35, .32)
}

.t-pill.mint {
  background: var(--mint-deep);
  box-shadow: 0 8px 20px rgba(93, 190, 133, .32)
}

.t-desc {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.75;
  padding: 0 4px;
}

/* ========================================================== AGE GROUPS */
.ages-section {
  background: var(--cream);
  padding: 100px 0 110px
}

.ages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px
}

.age-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(80, 70, 120, .08);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.age-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(80, 70, 120, .14)
}

.age-photo {
  height: 160px;
  position: relative;
  overflow: hidden
}

.age-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.age-photo .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  padding: 6px 14px 7px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .12em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .10);
}

.age-card.a1 .badge {
  color: var(--sky-deep)
}

.age-card.a2 .badge {
  color: var(--pink-deep)
}

.age-card.a3 .badge {
  color: var(--sun-deep)
}

.age-card.a4 .badge {
  color: var(--mint-deep)
}

.age-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.age-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--sky-deep)
}

.age-card.a2 .age-num {
  color: var(--pink-deep)
}

.age-card.a3 .age-num {
  color: var(--sun-deep)
}

.age-card.a4 .age-num {
  color: var(--mint-deep)
}

.age-num .yr {
  font-size: 16px;
  color: var(--ink-mute);
  margin-left: 4px;
  font-weight: 600
}

.age-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
}

.age-bldg {
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: .04em;
  margin: -4px 0 4px
}

.age-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0
}

/* ========================================================== PHILOSOPHY 3 cards */
/* TOP: 粉浜学園の想いを特集セクションとして強調（保育方針・保育目標に準じた存在感） */
.section--pledge {
  background: linear-gradient(180deg, #FFF0F5 0%, #FFF6F0 52%, var(--bg) 100%);
  padding-top: 88px;
  padding-bottom: 80px;
}

.shead--pledge {
  margin-bottom: 80px;
}

/* TOP: 粉浜学園の想い（雲形で3つのキーフレーズを囲む） */
.pledge-cloud {
  position: relative;
  max-width: 680px;
  margin: 48px auto 0;
}

.pledge-cloud-shape {
  display: block;
  width: 100%;
  height: auto;
}

.pledge-cloud-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 12%;
  transform: translateY(-6%);
}

.pledge-cloud .pledge-lead {
  max-width: none;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(21px, 2.7vw, 30px);
  line-height: 1.8;
  letter-spacing: .02em;
}

.pledge-line {
  display: block;
}

.pledge-line+.pledge-line {
  margin-top: 18px;
}

.pledge-line--orange {
  color: #F2994A;
}

.pledge-line--blue {
  color: #3F8FD1;
}

.pledge-line--green {
  color: #4CAF50;
}

@media (max-width:768px) {
  .pledge-cloud-inner {
    padding: 0 3%;
  }

  .pledge-cloud .pledge-lead {
    /* 雲幅に対して各行が1行に収まる上限まで拡大 */
    font-size: clamp(14px, 4.6vw, 20px);
    letter-spacing: 0;
    line-height: 1.5;
  }

  .pledge-line+.pledge-line {
    margin-top: 4px;
  }
}

/* TOP: 粉浜学園の想いの締めメッセージ */
.pledge-closing {
  max-width: 840px;
  margin: 80px auto 0;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1.6;
  letter-spacing: .06em;
  color: var(--ink);
}

.pledge-closing-lead {
  display: block;
  margin: 28px 0 40px;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.4;
  letter-spacing: .06em;
  color: var(--ink);
}

@media (max-width:768px) {
  .pledge-closing {
    margin-top: 40px;
    font-size: 17px;
  }

  .pledge-closing-lead {
    margin: 20px 0 24px;
    font-size: 22px;
  }
}

@media (max-width:768px) {
  .section--pledge {
    padding-top: 60px;
    padding-bottom: 56px;
  }
}

.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px
}

.philo-card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 18px 28px 18px;
  text-align: center;
  transition: transform .3s ease;
}

.philo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  box-shadow: 0 12px 28px rgba(80, 70, 120, .08);
  z-index: -1;
}

.philo-card:hover {
  transform: translateY(-4px)
}

.philo-photo {
  width: min(280px, 82%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 24px rgba(80, 70, 120, .12);
}

.philo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.philo-photo .ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px dashed var(--pink-soft);
}

.philo-card:nth-child(2) .philo-photo .ring {
  border-color: var(--sky-soft)
}

.philo-card:nth-child(3) .philo-photo .ring {
  border-color: var(--sun-soft)
}

.philo-num {
  position: absolute;
  top: 18px;
  left: 24px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--pink);
  font-size: 16px;
  letter-spacing: .15em;
}

.philo-card:nth-child(2) .philo-num {
  color: var(--sky-deep)
}

.philo-card:nth-child(3) .philo-num {
  color: var(--sun-deep)
}

.philo-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}

/* flex アイテムを1つにまとめ、内部は通常のテキストとして折り返す */
.philo-title-in {
  display: block;
  width: 100%;
}

.philo-text {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
  line-height: 1.95;
  text-wrap: balance;
  word-break: auto-phrase;
}

/* 波線で囲まれた導入フレーズ */
.philo-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2em;
  margin-bottom: 18px;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--pink-deep);
}

.philo-card:nth-child(2) .philo-lead {
  color: var(--sky-deep);
}

.philo-card:nth-child(3) .philo-lead {
  color: var(--sun-deep);
}

.sticker {
  position: absolute;
  width: 60px;
  height: 60px
}

.sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.philo-card:nth-child(1) .sticker {
  top: -12px;
  right: -8px;
  transform: rotate(14deg)
}

.philo-card:nth-child(2) .sticker {
  top: -10px;
  right: -12px;
  transform: rotate(-10deg)
}

.philo-card:nth-child(3) .sticker {
  top: -14px;
  right: -8px;
  transform: rotate(8deg)
}

/* ========================================================== GUIDE TRIO */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px
}

.guide-card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s;
}

.guide-card:hover {
  transform: translateY(-5px)
}

.guide-img {
  position: relative;
  height: 230px;
  overflow: hidden
}

.guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.guide-card:hover .guide-img img {
  transform: scale(1.06)
}

.guide-img .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  padding: 6px 14px 7px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
}

.guide-card.g1 .badge {
  color: var(--pink-deep)
}

.guide-card.g2 .badge {
  color: var(--sky-deep)
}

.guide-card.g3 .badge {
  color: var(--sun-deep)
}

.guide-card.g4 .badge {
  color: var(--mint-deep)
}

.guide-body {
  padding: 24px 26px 28px
}

.guide-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 22px;
  margin: 0 0 10px;
}

.curri-age {
  display: inline-block;
  margin-left: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .02em;
  color: #8a8f98;
  background: #f1f1f4;
  padding: 2px 9px;
  border-radius: 999px;
  vertical-align: middle;
}

.guide-text {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.85;
  word-break: normal;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.guide-link .arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .25s;
}

.guide-card.g2 .guide-link .arrow {
  background: var(--sky)
}

.guide-card.g3 .guide-link .arrow {
  background: var(--sun);
  color: var(--ink)
}

.guide-card.g4 .guide-link .arrow {
  background: var(--mint);
  color: var(--ink)
}

.guide-card:hover .guide-link .arrow {
  transform: translateX(4px)
}

.guide-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

/* ========================================================== DAILY LIFE bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 18px;
  margin-top: 48px;
}

.bento-cell {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.b1 {
  grid-column: span 3;
  grid-row: span 2
}

.b2 {
  grid-column: span 3;
  grid-row: span 2
}

.b4 {
  grid-column: span 3;
  grid-row: span 2
}

.b6 {
  grid-column: span 3;
  grid-row: span 2
}

.bento-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  color: var(--ink);
  padding: 6px 12px 7px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

/* ========================================================== NEWS wave */
.news-wave {
  position: relative;
  background: #C4E7F0;
  color: var(--ink);
  padding: 0 0 110px;
  overflow: hidden;
}

.news-wave .wave-top {
  display: block;
  width: 100%;
  height: 120px
}

.news-inner {
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto
}

.news-inner .sec-title {
  color: var(--ink)
}

.news-inner .sec-lead {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 14px auto 0
}

.news-inner .eyebrow {
  color: var(--sky-deep)
}

.news-inner .eyebrow::before,
.news-inner .eyebrow::after {
  background: rgba(63, 169, 197, .5)
}

.news-head {
  text-align: center;
  margin-bottom: 50px
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.news-item {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  min-height: 220px;
  box-shadow: 0 10px 26px rgba(80, 70, 120, .10);
}

.news-item:hover {
  transform: translateY(-4px)
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--ink-mute);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: .08em
}

.news-tag {
  font-size: 13px;
  padding: 4px 10px 5px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.t-important {
  background: var(--pink-soft);
  color: var(--pink-deep)
}

.t-related {
  background: #FFE2D5;
  color: #D87142
}

.t-fac {
  background: var(--sky-soft);
  color: var(--sky-deep)
}

.t-open {
  background: var(--sun-soft);
  color: var(--sun-deep)
}

.t-visit {
  background: #E2F4D9;
  color: #62A03B
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0
}

/* トップのお知らせカードはタイトルをカード中央に配置 */
.news-grid .news-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center
}

.news-link {
  margin-top: auto;
  font-size: 16px;
  color: var(--pink-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.news-cta {
  text-align: center;
  margin-top: 40px
}

/* ========================================================== CRAYON BANNER */
.crayon-section {
  padding: 100px 0 60px;
  background: var(--bg)
}

.crayon {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #F4A88C 0%, #EF96B0 60%, #B89BD8 100%);
  border-radius: 32px;
  padding: 48px 52px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(239, 150, 176, .20);
}

.crayon-chick {
  position: absolute;
  width: 120px;
  top: -18px;
  right: -12px;
  z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .18));
}

.crayon::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  right: -60px;
  top: -80px;
}

.crayon::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  right: 130px;
  bottom: -50px;
}

.crayon-meta {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: .16em;
  font-size: 16px;
  opacity: .95
}

.crayon-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.crayon-title .crayon-logo {
  display: block;
  width: auto;
  height: clamp(72px, 9vw, 108px);
  margin: 2px 0 0
}

.crayon-lead {
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 24px;
  max-width: 520px
}

.crayon-note {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  margin: 14px 0 0
}

.crayon-words {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.crayon-word {
  background: rgba(255, 255, 255, .22);
  padding: 6px 14px 7px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.crayon-visual {
  position: relative;
  height: 260px
}

.crayon-circle {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.crayon-c1 {
  width: 180px;
  height: 180px;
  top: 40px;
  left: 50%;
  transform: translateX(-55%);
  font-size: 24px;
  z-index: 2
}

.crayon-c1 .small {
  font-size: 16px;
  font-family: 'Fredoka', sans-serif;
  letter-spacing: .16em;
  color: var(--coral);
  margin-bottom: 6px
}

.crayon-c2 {
  width: 110px;
  height: 110px;
  top: 0;
  right: 0;
  font-size: 32px;
  color: var(--sun-deep);
  background: #fff
}

.crayon-c2 em {
  font-style: normal;
  color: var(--pink-deep);
  font-size: 16px;
  display: block;
  font-family: 'Fredoka', sans-serif;
  letter-spacing: .1em;
  margin-top: 4px
}

.crayon-c3 {
  width: 90px;
  height: 90px;
  bottom: 0;
  right: 60px;
  font-size: 16px;
  color: var(--sky-deep)
}

/* ========================================================== RECRUIT */
.recruit-section {
  padding: 80px 0 110px;
  background: var(--bg)
}

.recruit {
  position: relative;
  background: var(--sun-soft);
  border-radius: 32px;
  padding: 50px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.recruit::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 216, 77, .30);
  right: -100px;
  top: -160px;
}

.recruit-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  letter-spacing: .2em;
  font-size: 16px;
  color: var(--sun-deep)
}

.recruit-chick {
  position: absolute;
  width: 130px;
  bottom: -22px;
  right: 32px;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(80, 70, 120, .16));
}

.recruit-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  margin: 12px 0 16px;
  color: var(--ink);
}

.recruit-text {
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 26px;
  max-width: 480px;
  color: var(--ink)
}

.recruit-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.stat {
  background: #fff;
  border-radius: 22px;
  padding: 18px 20px
}

.stat-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--pink-deep);
  line-height: 1
}

.stat-num .unit {
  font-size: 16px;
  color: var(--ink-soft);
  margin-left: 4px
}

.stat-lbl {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 700;
  margin-top: 6px
}

.stat:nth-child(2) .stat-num {
  color: var(--sky-deep)
}

.stat:nth-child(3) .stat-num {
  color: var(--sun-deep)
}

.stat:nth-child(4) .stat-num {
  color: var(--mint-deep)
}

/* ========================================================== CONTACT */
.contact-wave {
  position: relative;
  background: #FBD3E2;
  color: var(--ink);
  padding: 0 0 100px;
  overflow: hidden
}

.contact-wave .wave-top {
  display: block;
  width: 100%;
  height: 120px
}

.contact-inner {
  padding: 0 28px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto
}

.contact-inner .eyebrow {
  color: var(--pink-deep)
}

.contact-inner .eyebrow::before,
.contact-inner .eyebrow::after {
  background: rgba(233, 106, 149, .5)
}

.contact-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.25;
  margin: 14px 0 18px;
}

.contact-lead {
  font-size: 16px;
  opacity: .95;
  margin: 0 0 42px;
  line-height: 1.95
}

.contact-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap
}

.phone-card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 22px 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 24px rgba(80, 70, 120, .10);
}

.phone-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.phone-card .num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  color: var(--pink-deep);
  white-space: nowrap
}

.phone-card .lbl {
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 4px
}

/* ========================================================== TABLE (for profile info) */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(80, 70, 120, .08);
}

.info-table th,
.info-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--cream-deep);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none
}

/* 見出し列は「中身が折り返さない最小幅」までテーブルごとに自動で縮める。
   width:1% + nowrap で内容幅に収縮し、余った幅はすべて本文列に渡る。
   見出しが長く2行に分けたい場合は <br class="br-sp"> を入れて制御する */
.info-table th {
  background: var(--pink-deep);
  width: 1%;
  white-space: nowrap;
  font-weight: 700;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: .04em;
}

/* ========================================================== FEATURE ROW (about page) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 1fr 1fr
}

.feature-row.reverse>div:first-child {
  order: 2
}

.feature-row .img {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 14px 38px rgba(80, 70, 120, .14);
}

.feature-row .img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feature-row h3 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
  margin: 0 0 16px;
}

.feature-row h3 .small {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

.feature-row p {
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 14px;
  color: var(--ink-soft);
  word-break: normal;
  text-wrap: wrap;
}

.feature-row p strong {
  color: var(--ink);
  font-weight: 700
}

/* ========================================================== GREETING (CEO message) */
.greeting {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  background: #fff;
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 12px 32px rgba(80, 70, 120, .10);
}

.greeting-photo {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 8px 20px rgba(80, 70, 120, .16);
}

.greeting-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.greeting-role {
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 6px
}

.greeting-name {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 24px;
  margin: 0 0 18px;
}

.greeting-quote {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 22px;
  color: var(--pink-deep);
  margin: 0 0 20px;
}

.greeting p.body {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0 0 14px;
  word-break: normal;
  text-wrap: wrap;
}

/* ========================================================== MAP */
.map {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: 0 12px 30px rgba(80, 70, 120, .12);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0
}

/* ========================================================== FORM */
.form {
  background: #fff;
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 8px 28px rgba(80, 70, 120, .08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.form-field {
  margin-bottom: 24px
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-label .req {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 16px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-deep);
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 140px
}

.form-help {
  font-size: 16px;
  color: var(--ink-mute);
  margin: 6px 0 0
}

.form-privacy {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 16px;
  margin: 24px 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.form-privacy a {
  color: var(--pink-deep);
  text-decoration: underline
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 24px
}

.form-submit {
  text-align: center;
  margin-top: 8px
}

.form-note {
  font-size: 16px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 18px
}

/* ========================================================== FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.faq-cat {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 22px;
  color: var(--pink-deep);
  margin: 40px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-cat::after {
  content: "";
  flex: 1;
  height: 2px;
  border-top: 2px dotted var(--pink-soft);
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(80, 70, 120, .06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: var(--ink);
}

.faq-q::before {
  content: "Q";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.faq-q-text {
  min-width: 0;
}

.faq-q::after {
  content: "＋";
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--pink);
  font-weight: 700;
  transition: transform .25s;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg)
}

.faq-a {
  padding: 0 24px 22px 70px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.95;
}

.faq-a p {
  margin: 0 0 10px
}

.faq-a ul {
  margin: 0;
  padding-left: 18px
}

/* スマホでは回答文の左インデント（Qバッジ分の70px）をやめ、左右の余白を揃えて本文幅を稼ぐ */
@media (max-width:600px) {
  .faq-a {
    padding-left: 24px;
  }
}

/* ========================================================== ADMISSION TYPES */
.adm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.adm-grid.two-up {
  grid-template-columns: repeat(2, 1fr)
}

.adm-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(80, 70, 120, .08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.adm-card.t1 {
  border-top: 6px solid var(--pink)
}

.adm-card.t2 {
  border-top: 6px solid var(--sky)
}

.adm-card.t3 {
  border-top: 6px solid var(--sun)
}

.adm-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--pink-deep);
}

.adm-card.t2 .adm-num {
  color: var(--sky-deep)
}

.adm-card.t3 .adm-num {
  color: var(--sun-deep)
}

.adm-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 20px;
  margin: 0;
}

.adm-meta {
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 700;
  margin: 0;
  line-height: 1.7
}

.adm-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0
}

/* ========================================================== FOOTER */
.footer {
  background: #545E7A;
  color: rgba(255, 255, 255, .88);
  padding: 70px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 48px
}

.footer-brand h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  margin: 0 0 14px;
}

.footer-brand h3 .footer-corp {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .7)
}

.footer-brand a {
  color: #fff;
  font-weight: 700
}

.footer-brand .pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px
}

.footer-brand .pills a {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  background: rgba(255, 255, 255, .08);
  padding: 6px 12px 7px;
  border-radius: 999px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 28px
}

.footer-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 14px 0;
  color: #fff;
}

.footer-link .ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap
}

.footer-link .en {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .5);
  margin-left: auto
}

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
}

/* ========================================================== UTILS */
.text-center {
  text-align: center
}

.section-head {
  text-align: center;
  margin-bottom: 0
}

/* generic wave divider — insert as <svg class="wave-div" ...> between sections */
.wave-div {
  display: block;
  width: 100%;
  height: 90px;
  margin: -1px 0;
  position: relative;
  z-index: 1
}

/* wave coming out of the sky-deep news band needs that colour behind it */
.wave-div--from-sky {
  background: #C4E7F0
}

/* home page section spacing + inline-copy emphasis (no inline styles) */
.policy-cta {
  margin-top: 48px
}

.section--pledge .policy-cta {
  margin-top: 110px
}

@media (max-width:768px) {
  .section--pledge .policy-cta {
    margin-top: 64px
  }
}

.news-shead {
  margin-bottom: 50px
}

.contact-shead {
  margin-bottom: 30px
}

.policy-em {
  font-style: normal;
  font-weight: 700
}

.policy-em--sky {
  color: var(--sky-deep)
}

.policy-em--pink {
  color: var(--pink-deep)
}

.policy-em--orange {
  color: var(--orange)
}

/* ========================================================== SUB-PAGE HELPERS
   (replace the prototype's inline styles — see CLAUDE.md: no inline CSS) */
.mt-18 {
  margin-top: 18px
}

.mt-20 {
  margin-top: 20px
}

.mt-24 {
  margin-top: 24px
}

.mt-28 {
  margin-top: 28px
}

.mt-30 {
  margin-top: 30px
}

.mt-36 {
  margin-top: 36px
}

.mt-48 {
  margin-top: 48px
}

.mt-60 {
  margin-top: 60px
}

.mb-14 {
  margin-bottom: 14px
}

.mb-24 {
  margin-bottom: 24px
}

.mb-56 {
  margin-bottom: 56px
}

.shead--mb36 {
  margin-bottom: 36px
}

.note-text {
  font-size: 16px;
  color: var(--ink-mute)
}

.intro-lead {
  font-size: 16px;
  color: var(--ink-soft)
}

.lead-note {
  font-size: 16px;
  color: var(--ink-soft)
}

.block-subhead {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--ink)
}

.tel-link {
  color: var(--pink-deep);
  font-weight: 700
}

.adm-num-unit {
  font-size: .5em;
  margin-left: 4px;
  color: var(--ink-mute)
}

/* facility: 課外教室の注釈ボックス */
.extra-note {
  text-align: center
}

.extra-note p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.85
}

/* facility: 保育方針・保育目標 ヒーロー */
.policy-hero {
  padding: 80px 0 70px
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.policy-hero-col {
  display: flex;
  flex-direction: column;
  align-items: center
}

.policy-hero-title {
  font-family: 'Zen Maru Gothic', var(--heading-font), sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: .5em;
  padding-left: .5em;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 18px;
  text-align: center;
}

.policy-hero-title::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  border-bottom: 2px dashed currentColor;
  opacity: .55;
}

.policy-hero-title--blue {
  color: var(--sky-deep)
}

.policy-hero-title--orange {
  color: var(--orange)
}

.policy-hero-image {
  position: relative;
  width: 88%;
  aspect-ratio: 5/3;
  margin: 30px auto 0;
}

.policy-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  background: #eee;
  box-shadow: 0 14px 30px rgba(80, 70, 120, .14);
}

.policy-strips {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  bottom: -20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 0 18px 0 0;
  list-style: none;
  margin: 0;
  pointer-events: none;
}

.policy-strips li {
  writing-mode: vertical-rl;
  font-family: 'Zen Maru Gothic', var(--heading-font), sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  padding: 14px 9px;
  letter-spacing: .06em;
  line-height: 1.65;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .20);
}

.policy-strips--blue {
  justify-content: flex-end;
  padding: 0 0 0 18px
}

.policy-strips--blue li {
  background: #6FC3D6
}

.policy-strips--blue li:nth-child(3) {
  margin-right: auto
}

.policy-strips--orange {
  padding: 0 6% 0 0
}

.policy-strips--orange li {
  background: var(--orange)
}

@media (max-width:900px) {
  .policy-hero {
    padding: 60px 0 40px
  }

  .policy-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .policy-hero-title {
    font-size: 24px
  }

  .policy-strips li {
    font-size: 16px;
    padding: 10px 7px
  }
}

/* facility: カリキュラム 乳児/園児 サブ見出し */
.curri-group {
  margin-top: 36px
}

.curri-subhead {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0 0 12px;
  border-bottom: 2px dashed var(--pink-soft);
}

.curri-subhead-jp {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 24px;
  color: var(--ink);
}

.curri-subhead-age {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--pink-deep);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--pink-soft);
}

/* facility: 年齢別の行事 ポラロイド風カード */
.event-group {
  margin-top: 36px
}

.event-subhead {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  padding: 10px 22px 11px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(63, 169, 197, .18);
}

.event-subhead-jp {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 22px;
  color: var(--sky-deep);
}

.event-subhead-age {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--sky-deep);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.event-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px 16px 8px;
  box-shadow: 0 8px 24px rgba(63, 169, 197, .14);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-4px) rotate(-.6deg);
  box-shadow: 0 14px 32px rgba(63, 169, 197, .22)
}

.event-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sky-soft);
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.event-card:hover .event-photo img {
  transform: scale(1.05)
}

.event-season {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .16em;
  color: #fff;
  padding: 5px 12px 6px;
  border-radius: 4px;
  background: var(--sky-deep);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
}

.event-season--infant {
  background: var(--pink-deep)
}

.event-season--kids {
  background: var(--sky-deep)
}

.event-season--all {
  background: var(--sun-deep)
}

.event-body {
  padding: 18px 8px 14px
}

.event-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--ink);
}

.event-text {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.85
}

/* facility: 園の1日 園児/乳児 サブ見出し */
.oneday-group {
  margin-top: 32px
}

.oneday-group--infant {
  margin-top: 60px
}

.oneday-subhead {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 28px;
  padding: 12px 26px 13px;
  background: #fff;
  border: 2px solid var(--pink);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 143, 179, .22);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.oneday-subhead-jp {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 22px;
  color: var(--pink-deep);
}

.oneday-subhead-age {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--pink);
}

/* facility: 年間行事 左右写真+中央テキスト */
.ann-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 24px 0 0;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
}

.ann-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
}

.ann-legend-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.ann-legend-item--infant {
  background: var(--pink-deep)
}

.ann-legend-item--kids {
  background: var(--sky-deep)
}

.ann-headers {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 0 22px;
  margin: 36px 0 14px;
}

.ann-header-label {
  justify-self: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  padding: 8px 32px 9px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(80, 70, 120, .18);
}

.ann-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px
}

.ann-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(80, 70, 120, .10);
}

.ann-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.ann-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

/* 年間行事: 写真2枚の縦並び（互い違い）スロット */
.ann-photo--pair {
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
}

.ann-photo--pair img {
  aspect-ratio: 4/3;
  height: auto;
  width: 82%;
  border-radius: 16px;
}

.ann-photo--pair img:first-child {
  align-self: flex-start;
}

.ann-photo--pair img:last-child {
  align-self: flex-end;
  margin-right: -8%;
}

.ann-row:hover .ann-photo img {
  transform: scale(1.04)
}

.ann-photo-tag {
  position: absolute;
  top: 12px;
  z-index: 2;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
  color: #fff;
  padding: 5px 12px 6px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.ann-photo--left .ann-photo-tag {
  left: 12px
}

.ann-photo--right .ann-photo-tag {
  right: 12px
}

.tag-infant {
  background: var(--pink-deep)
}

.tag-kids {
  background: var(--sky-deep)
}

.ann-center {
  text-align: center;
  padding: 14px 12px;
}

.ann-month {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  color: #fff;
  padding: 6px 20px 7px;
  border-radius: 999px;
  background: var(--mint-deep);
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(93, 190, 133, .32);
}

.ann-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.45;
}

.ann-title strong {
  color: var(--pink-deep)
}

.ann-text {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.85
}

.ann-text strong {
  color: var(--pink-deep);
  font-weight: 700
}

@media (max-width:900px) {
  .ann-headers {
    display: none
  }

  .ann-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px
  }

  .ann-photo {
    max-width: 340px;
    margin: 0 auto;
    width: 100%
  }

  .ann-center {
    order: -1;
    padding: 4px 8px 0
  }
}

/* facility: wide "科学あそび" guide card */
.guide-grid--single {
  grid-template-columns: 1fr
}

/* about: two operated-facility cards, centered */
.guide-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto
}

.guide-card--wide {
  display: grid;
  grid-template-columns: 1fr 2fr
}

.guide-card--wide .guide-img {
  height: auto
}

.guide-card--wide .guide-body {
  padding: 32px
}

/* contact / crayon: centered phone row */
.contact-row--center {
  justify-content: center
}

/* admission: sky-gradient promo banner reusing .crayon */
.crayon--sky {
  background: linear-gradient(135deg, #7DCDE0 0%, #3FA9C5 100%);
  box-shadow: 0 12px 32px rgba(63, 169, 197, .22)
}

/* admission-crayon: crayon-tinted page head（写真なしの塗りは page-head--plain 側で指定） */
.page-head--crayon:not(.page-head--plain) {
  background: linear-gradient(135deg, #F4A88C 0%, #EF96B0 60%, #B89BD8 100%)
}

@media (max-width:900px) {
  .guide-card--wide {
    grid-template-columns: 1fr
  }
}

/* page top */
.top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: opacity .2s;
}

.top-btn:hover {
  opacity: .85
}

/* ========================================================== MENU DRAWER */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(59, 66, 86, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 56;
  width: min(420px, 90vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.5, .1, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, .18);
  overflow-y: auto;
}

.menu-drawer.open {
  transform: translateX(0)
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--cream-deep);
}

.menu-head img {
  height: 40px;
  width: auto;
  object-fit: contain
}

.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: background .2s;
}

.menu-close:hover {
  background: var(--cream-deep)
}

.menu-body {
  padding: 24px 28px 32px;
  flex: 1
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.menu-nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 12px;
  border-bottom: 1px dashed var(--cream-deep);
  color: var(--ink);
  transition: background .2s, color .2s;
}

.menu-nav a:hover {
  background: var(--cream);
  color: var(--pink-deep)
}

.menu-nav a .ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 17px
}

.menu-nav a .en {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--ink-mute);
  margin-left: auto;
}

/* nested expandable submenu */
.menu-nav details {
  padding: 0;
  margin: 0
}

.menu-nav details>summary {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 12px;
  border-bottom: 1px dashed var(--cream-deep);
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: background .2s, color .2s;
}

.menu-nav details>summary::-webkit-details-marker {
  display: none
}

.menu-nav details>summary::marker {
  content: ""
}

.menu-nav details>summary:hover {
  background: var(--cream);
  color: var(--pink-deep)
}

.menu-nav details>summary .ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 17px
}

.menu-nav details>summary .en {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--ink-mute);
  margin-left: auto;
  margin-right: 10px;
}

.menu-nav details>summary::after {
  content: "+";
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--pink);
  font-size: 18px;
  transition: transform .25s;
  flex-shrink: 0;
}

.menu-nav details[open]>summary::after {
  content: "−"
}

.menu-nav details .submenu {
  display: flex;
  flex-direction: column;
  background: #fff
}

.menu-nav details .submenu a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 12px 14px 32px;
  border-bottom: 1px dashed var(--cream-deep);
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}

.menu-nav details .submenu a:hover {
  background: rgba(255, 232, 200, .55);
  color: var(--pink-deep)
}

.menu-nav details .submenu a .ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink)
}

.menu-nav details .submenu a .en {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  letter-spacing: .16em;
  color: var(--ink-mute);
  margin-left: auto
}

.menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.menu-cta .phone {
  background: var(--cream);
  color: var(--ink)
}

.menu-cta .phone strong {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--pink-deep);
  font-size: 18px
}

.menu-cta .contact-btn {
  background: var(--pink);
  color: #fff
}

body.menu-open {
  overflow: hidden
}

/* ========================================================== Mobile */
@media (max-width: 900px) {
  .policy {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .policy-collage {
    height: 360px
  }

  .philo-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .philo-lead {
    min-height: 0;
  }

  .guide-grid {
    grid-template-columns: 1fr
  }

  .guide-grid--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
  }

  .event-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px
  }

  .b1,
  .b2,
  .b4,
  .b6 {
    grid-column: span 1;
    grid-row: span 1
  }

  .news-grid {
    grid-template-columns: 1fr 1fr
  }

  .crayon {
    grid-template-columns: 1fr;
    padding: 100px 18px 36px
  }

  .crayon-visual {
    height: 260px
  }

  .crayon-chick {
    width: 84px;
    top: 14px;
    right: 14px
  }

  .crayon-c1 {
    width: 140px;
    height: 140px;
    top: 30px;
    transform: translateX(-90%)
  }

  .crayon-c2 {
    width: 92px;
    height: 92px;
    font-size: 16px
  }

  .crayon-c2 em {
    font-size: 16px
  }

  .crayon-c3 {
    width: 96px;
    height: 96px;
    bottom: 8px;
    right: 20px;
    font-size: 16px
  }

  .recruit {
    grid-template-columns: 1fr;
    padding: 36px 18px 120px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-links {
    grid-template-columns: 1fr 1fr
  }

  .section {
    padding: 70px 0
  }

  .hero-deco.d2,
  .hero-deco.d4 {
    display: none
  }

  .hero-stack {
    padding-top: 30px
  }

  .ages-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .vphoto-grid {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .env-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .immerse-photos {
    grid-template-columns: 1fr
  }

  .timeline::before {
    left: 18px
  }

  .t-row {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .t-row.alt .t-photo {
    order: 0
  }

  .t-photo-spacer {
    display: none
  }

  .t-pill {
    align-self: flex-start !important
  }

  .t-content {
    justify-self: start !important;
    align-self: start !important;
    margin: 0 0 0 36px !important;
    align-items: flex-start;
    text-align: left
  }

  .t-row.alt .t-content {
    justify-self: start !important;
    align-self: start !important;
    margin: 0 0 0 36px !important;
    align-items: flex-start;
    text-align: left
  }

  .t-row.alt .t-pill {
    align-self: flex-start
  }

  .vtag {
    min-height: 140px;
    font-size: 16px
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .feature-row.reverse>div:first-child {
    order: 0
  }

  .greeting {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px;
    text-align: center
  }

  .greeting-photo {
    max-width: 200px;
    margin: 0 auto
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .adm-grid,
  .adm-grid.two-up {
    grid-template-columns: 1fr
  }

  .info-table th {
    font-size: 16px
  }

  .info-table th,
  .info-table td {
    padding: 14px 16px;
    font-size: 16px
  }
}

@media (max-width: 600px) {
  .t-photo.is-pair {
    grid-template-columns: 1fr;
    max-width: 100%
  }

  .t-content,
  .t-row.alt .t-content {
    margin-top: 30px !important
  }

  .menu-btn {
    width: 62px;
    height: 62px
  }

  .brand-blob {
    width: 152px;
    height: 68px;
    padding: 3px 0px
  }

  .brand-blob img {
    max-height: 90px
  }

  .news-grid {
    grid-template-columns: 1fr
  }

  .footer-links {
    grid-template-columns: 1fr
  }

  .phone-card {
    padding: 18px 20px
  }

  .phone-card .num {
    font-size: 24px
  }

  .ages-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .guide-grid--four {
    grid-template-columns: 1fr
  }

  .shead-jp {
    font-size: 24px;
    letter-spacing: .12em
  }

  .shead-jp::after {
    left: 8%;
    right: 8%
  }

  .form {
    padding: 24px
  }

  .page-head {
    height: 340px
  }

  .page-head-inner {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .page-head-inner::before {
    width: 54px;
    height: 54px;
    margin-bottom: 8px
  }

  .page-head-title {
    font-size: 30px;
    margin: 8px 0 10px
  }

  .page-head-lead {
    font-size: 16px;
    line-height: 1.7
  }

  .page-head-wave {
    height: 50px
  }

  .feature-row.reverse {
    grid-template-columns: 1fr
  }

  .policy-card {
    padding: 32px 22px 30px
  }

  .policy-pillars {
    gap: 10px;
    margin-top: 20px
  }

  .pillar {
    padding: 8px 14px 9px;
    font-size: 16px;
    gap: 6px
  }

  .pillar .dot {
    width: 7px;
    height: 7px
  }

  .crayon {
    padding: 36px 18px
  }

  .crayon:has(.crayon-chick) {
    padding-top: 100px
  }

  .crayon-visual {
    height: 180px
  }

  .crayon-visual:has(.crayon-c3) {
    height: 260px
  }

  .crayon-chick {
    width: 84px;
    top: 14px;
    right: 14px
  }

  .recruit-chick {
    width: 96px;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%)
  }

  .crayon-title,
  .recruit-title {
    font-size: 26px
  }

  .crayon-meta,
  .recruit-eyebrow {
    padding-right: 60px
  }

  /* home hero: stack the headline vertically on phones */
  .home-page .hero-title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: .12em;
    line-height: 1.4;
    font-size: clamp(34px, 9vw, 48px);
    margin: 0 auto;
    max-height: 60vh;
  }

  /* in vertical-rl, <br> creates a new column to the LEFT, the natural reading flow */
  .home-page .hero-stack {
    padding: 50px 28px 80px
  }
}

/* ========================================================== BLOG (microCMS) */
/* --- カテゴリー絞り込み --- */
.blog-cats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px
}

.blog-cats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center
}

/* PC: 全タブを1行に並べ、グループ間にスペースを空ける */
@media (min-width:901px) {
  .blog-cats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px
  }

  .blog-cats-row {
    gap: 10px
  }
}

/* スマホ: 年齢カテゴリー（0〜5歳）を3列×2行で固定（0,1,2 / 3,4,5） */
@media (max-width:600px) {
  .blog-cats-row--age {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 300px;
  }

  .blog-cats-row--age .blog-cat-chip {
    justify-content: center;
    box-sizing: border-box;
  }
}

.blog-date-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px 8px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.5;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--cream-deep);
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.blog-date-chip:focus {
  outline: 2px solid var(--pink);
  outline-offset: 2px
}

.blog-date-chip:hover {
  background: var(--cream)
}

.blog-cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px 8px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--cream-deep);
  transition: background .2s, color .2s, border-color .2s;
}

.blog-cat-chip:hover {
  background: var(--cream)
}

.blog-cat-chip.is-active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.blog-cat-chip--spacer {
  margin-left: 18px
}

/* --- 一覧（コンパクトなカード） --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  transition: transform .25s, box-shadow .25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card)
}

.blog-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream)
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06)
}

.blog-thumb.is-empty {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sky-soft) 100%);
}

.blog-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1
}

.blog-card-meta,
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.blog-date {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  font-size: 16px;
  color: var(--ink-mute);
}

.blog-cat {
  font-size: 16px;
  padding: 3px 9px 4px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.blog-card-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- 状態表示 --- */
.blog-state {
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  padding: 48px 16px;
  margin: 0;
}

/* --- ページング --- */
.blog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 48px
}

.blog-pager-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow-soft);
  transition: opacity .2s;
}

.blog-pager-btn:hover {
  opacity: .85
}

.blog-pager-btn[aria-disabled="true"] {
  opacity: .35;
  pointer-events: none
}

.blog-pager-info {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 16px
}

/* --- 記事詳細 --- */
.page-head--article .page-head-title {
  font-size: clamp(24px, 3.2vw, 40px);
  white-space: normal;
  line-height: 1.4;
  max-width: 900px;
}

.blog-article-meta {
  justify-content: center;
  margin-bottom: 22px
}

.blog-body {
  font-size: 16px;
  line-height: 2;
  color: var(--ink)
}

.blog-body>*:first-child {
  margin-top: 0
}

.blog-body p {
  margin: 0 0 1.4em
}

.blog-body h2 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 26px;
  line-height: 1.4;
  margin: 1.8em 0 .7em;
  padding-bottom: .4em;
  border-bottom: 2px dashed var(--pink-soft);
}

.blog-body h3 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: 21px;
  line-height: 1.5;
  margin: 1.6em 0 .6em;
  color: var(--pink-deep);
}

.blog-body h4 {
  font-weight: 700;
  font-size: 17px;
  margin: 1.4em 0 .5em
}

.blog-body a {
  color: var(--sky-deep);
  text-decoration: underline;
  text-underline-offset: 2px
}

.blog-body ul,
.blog-body ol {
  margin: 0 0 1.4em;
  padding-left: 1.6em
}

.blog-body li {
  margin: .3em 0
}

.blog-body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: .6em 0
}

.blog-body blockquote {
  margin: 1.4em 0;
  padding: 14px 20px;
  border-left: 4px solid var(--sky);
  background: var(--sky-soft);
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft);
}

.blog-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 16px
}

.blog-body th,
.blog-body td {
  border: 1px solid var(--cream-deep);
  padding: 10px 12px;
  text-align: left
}

.blog-body th {
  background: var(--cream);
  font-weight: 700
}

.blog-body code {
  background: var(--cream);
  border-radius: 6px;
  padding: .15em .45em;
  font-size: .9em;
}

.blog-body hr {
  border: none;
  border-top: 1px dashed var(--ink-mute);
  margin: 2em 0
}

.blog-back {
  text-align: center;
  margin-top: 48px
}

@media (max-width:1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:760px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }
}

@media (max-width:600px) {
  .blog-body {
    font-size: 16px
  }

  .blog-body h2 {
    font-size: 22px
  }

  .blog-body h3 {
    font-size: 19px
  }

  .blog-pager {
    gap: 12px
  }

  .blog-pager-btn {
    padding: 10px 16px;
    font-size: 16px
  }
}

/* ========================================================== SUB-PAGE CONTENT
   お知らせ一覧 / 書類ダウンロード / プライバシー / 苦情解決                    */

/* --- お知らせ一覧（news list） --- */
.news-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-list .news-item {
  min-height: 0;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  box-shadow: var(--shadow-soft);
}

.news-list .news-meta {
  flex: none;
  width: 96px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 2px;
}

.news-list .news-title {
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.9;
}

.t-site {
  background: var(--cream-deep);
  color: var(--ink-mute);
}

@media (max-width: 640px) {
  .news-list .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 22px;
  }

  .news-list .news-meta {
    width: auto;
    flex-direction: row;
    align-items: center;
  }
}

/* --- お知らせの状態表示（読み込み中／未設定／エラー）と「もっと見る」 --- */
.news-state {
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  padding: 40px 16px;
  margin: 0;
}

/* トップページのお知らせ帯は淡色背景のため濃い文字色にする */
.news-wave .news-state {
  color: var(--ink-soft);
}

.news-more {
  text-align: center;
  margin-top: 32px;
}

/* --- 書類ダウンロード（document list） --- */
.doc-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 20px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s, box-shadow .25s;
}

.doc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.doc-item__icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--pink-deep);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-item__name {
  font-weight: 700;
  font-size: 17px;
}

.doc-item__meta {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 3px;
  font-family: 'Fredoka', sans-serif;
  letter-spacing: .08em;
}

.doc-item__arrow {
  margin-left: auto;
  color: var(--sky-deep);
  font-size: 22px;
  font-weight: 700;
}

/* --- プライバシーポリシー（legal prose） --- */
.legal-doc {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 44px 48px;
  color: var(--ink-soft);
  line-height: 2;
}

.legal-doc> :first-child {
  margin-top: 0;
}

.legal-doc h2 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  color: var(--sky-deep);
  font-size: 20px;
  margin: 34px 0 10px;
  letter-spacing: .04em;
}

.legal-doc p {
  margin: 0 0 14px;
}

.legal-doc ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
  list-style: disc;
}

.legal-doc li {
  margin-bottom: 6px;
}

.legal-doc .legal-date {
  color: var(--ink-mute);
  font-size: 14px;
  margin-top: 26px;
}

@media (max-width: 640px) {
  .legal-doc {
    padding: 32px 24px;
  }
}

/* --- 苦情解決（block title / step list / note） --- */
.mw-860 {
  max-width: 860px;
  margin-inline: auto;
}

.block-title {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  color: var(--ink);
  font-size: 24px;
  text-align: center;
  margin: 0 0 22px;
  letter-spacing: .04em;
}

.step-list {
  padding-left: 0;
  max-width: 860px;
  margin: 0 auto;
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-list li {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 24px 28px 24px 70px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sky-deep);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 17px;
}

.info-note {
  max-width: 860px;
  margin: 40px auto 0;
  background: var(--sky-soft);
  border-radius: 28px;
  padding: 30px 34px;
}

.info-note h2 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  color: var(--sky-deep);
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: .04em;
}

.info-note p {
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0;
}

/* ============================================================
   Scroll reveal (fade-in)
   `.reveal-ready` is added by assets/js/reveal.js before first
   paint. Without it (JS disabled / failed to load) everything
   stays fully visible.

   Reveal is per content element: each heading / table / card
   fades in only when it scrolls into view. The section's own
   background and any wave dividers (class contains "wave") are
   never touched. Each `.is-visible` rule repeats its hidden
   selector plus `.is-visible`, so it always wins on specificity.
   ============================================================ */

/* Content blocks inside a section (headings, tables, notes, ...),
   excluding card grids — those cascade per card below. */
html.reveal-ready body>section:not(.hero):not(.page-head) :is(.wrap, .wrap-narrow, .wrap-wide, .msg-page__inner, .news-inner, .contact-inner)>*:not([class*="wave"]):not(.philo-grid):not(.guide-grid):not(.grid):not(.card-grid):not(.info-cards) {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 2.2s cubic-bezier(.16, 1, .3, 1),
    transform 2.2s cubic-bezier(.16, 1, .3, 1);
}

html.reveal-ready body>section:not(.hero):not(.page-head) :is(.wrap, .wrap-narrow, .wrap-wide, .msg-page__inner, .news-inner, .contact-inner)>*:not([class*="wave"]):not(.philo-grid):not(.guide-grid):not(.grid):not(.card-grid):not(.info-cards).is-visible {
  opacity: 1;
  transform: none;
}

/* Individual cards inside a grid. */
html.reveal-ready body>section:not(.hero):not(.page-head) :is(.philo-grid, .guide-grid, .grid, .card-grid, .info-cards)>* {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 2s cubic-bezier(.16, 1, .3, 1),
    transform 2s cubic-bezier(.16, 1, .3, 1);
}

html.reveal-ready body>section:not(.hero):not(.page-head) :is(.philo-grid, .guide-grid, .grid, .card-grid, .info-cards)>*.is-visible {
  opacity: 1;
  transform: none;
}

/* Gentle load-in for the page heading text (not the wave). */
html.reveal-ready .page-head .page-head-inner {
  animation: reveal-head 1.8s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes reveal-head {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* For users who prefer reduced motion, keep the opacity fade (a fade is not
   vestibular motion) but drop the upward slide so nothing physically moves. */
@media (prefers-reduced-motion: reduce) {

  html.reveal-ready body>section:not(.hero):not(.page-head) :is(.wrap, .wrap-narrow, .wrap-wide, .msg-page__inner, .news-inner, .contact-inner)>*,
  html.reveal-ready body>section:not(.hero):not(.page-head) :is(.philo-grid, .guide-grid, .grid, .card-grid, .info-cards)>* {
    transform: none !important;
    transition: opacity 2s cubic-bezier(.16, 1, .3, 1) !important;
  }

  html.reveal-ready .page-head .page-head-inner {
    animation-name: reveal-head-fade;
  }
}

@keyframes reveal-head-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ========================================================== 改行制御 */
/* 語句が行をまたいで分断されるのを防ぐ */
.nb {
  white-space: nowrap;
}

/* スマホ（480px以下）でのみ改行する。PC・タブレットでは無視される */
.br-sp {
  display: none;
}

/* PC・タブレット（481px以上）でのみ改行する。スマホでは無視される。
   PC幅を基準に置いた改行が、スマホで行末に数文字だけ残すのを防ぐ */
.br-pc {
  display: inline;
}

@media (max-width:480px) {
  .br-sp {
    display: inline;
  }

  .br-pc {
    display: none;
  }
}

/* 小書き仮名・長音記号が行頭に落ちないよう禁則処理を強める */
html {
  line-break: strict;
}

/* 見出し・短いリード文は文節単位で折り返す */
h1,
h2,
h3,
.page-head-lead,
.shead-lead,
.intro-lead,
.block-title,
.guide-title,
.recruit-title,
.crayon-meta,
.philo-title,
.faq-q,
.t-pill .label,
.info-table th,
.info-table td {
  word-break: auto-phrase;
}

/* テーブルは列幅が内容の最小幅に引きずられないようにする */
.info-table th,
.info-table td {
  overflow-wrap: anywhere;
}

/* 本文は行いっぱいまで文字を詰めて折り返す（行末に余白が残るのを避ける）。
   分断されると読みにくい語句は個別に .nb を当てて制御する */
p,
li,
dt,
dd,
summary,
figcaption {
  word-break: normal;
}

/* ドロワーのサブメニューを1行に収める */
@media (max-width:600px) {
  .menu-nav details .submenu a {
    gap: 10px;
    padding-left: 22px;
  }

  .menu-nav details .submenu a .ja {
    font-size: 15px;
    white-space: nowrap;
  }

  .menu-nav details .submenu a .en {
    font-size: 13px;
    letter-spacing: .08em;
  }
}

/* 情報テーブルは余白を詰めて本文列に幅を渡す（見出し列の幅は内容に応じて自動） */
@media (max-width:600px) {

  .info-table th,
  .info-table td {
    padding: 14px 12px;
  }
}

/* タイムラインのラベルを1行に収める */
@media (max-width:600px) {
  .t-pill {
    padding: 13px 16px 15px;
    gap: 10px;
  }

  .t-pill .label {
    font-size: 16px;
  }
}

/* 関連施設バナーのメタ表記を1行に収める */
@media (max-width:600px) {
  .crayon-meta {
    letter-spacing: .06em;
  }
}

/* パンくずは項目単位で折り返す（語中で切れないように） */
.breadcrumb ol {
  flex-wrap: wrap;
}

.breadcrumb li {
  white-space: nowrap;
}

/* ドロワーのメニュー項目を1行に収める */
@media (max-width:600px) {

  .menu-nav a .ja,
  .menu-nav details>summary .ja {
    white-space: nowrap;
  }

  .menu-nav a .en,
  .menu-nav details>summary .en {
    font-size: 14px;
    letter-spacing: .1em;
  }
}

/* グリッド内のカードが最小幅で押し広げられないようにする */
.program-manager-grid>* {
  min-width: 0;
}

/* 採用バナーの数値ラベルを行内に収める */
@media (max-width:480px) {
  .stat-lbl {
    font-size: 15px;
  }
}

/* ==========================================================
   390px前後の改行最適化
   文言は変更せず、固定文は .br-sp / .nb、可変文は幅と文字サイズで整える
   ========================================================== */
.msg-page {
  padding: 140px 20px 80px;
  text-align: center;
}

.msg-page__inner {
  width: min(100%, 760px);
  margin-inline: auto;
}

.msg-page__code {
  margin: 0 0 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--sky-deep);
}

.msg-page__title {
  margin: 0 0 24px;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.4;
  text-wrap: balance;
}

.msg-page__lead {
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width:480px) {

  p,
  li,
  td,
  dt,
  dd,
  figcaption {
    word-break: auto-phrase;
  }

  /* 長文のメッセージは文節折り返しにすると行末の余白が目立つため、
     行いっぱいまで文字を詰める（改行位置は <br class="br-sp"> で個別に制御） */
  .program-manager-message {
    word-break: normal;
  }

  .msg-page {
    padding: 128px 20px 64px;
  }

  .msg-page__title {
    font-size: 28px;
  }

  .msg-page__lead {
    font-size: 15px;
  }

  .faq-q {
    padding: 20px;
    gap: 12px;
    font-size: 15px;
  }

  .faq-a {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .guide-body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .guide-text,
  .event-text,
  .env-text,
  .t-desc,
  .ann-text,
  .adm-text,
  .crayon-lead,
  .feature-row p,
  .greeting p.body,
  .news-title,
  .note-text,
  .lead-note,
  .form-note,
  .form-privacy,
  .info-note p,
  .legal-doc,
  .extra-note p {
    font-size: 15px;
  }

  .greeting {
    padding: 24px;
  }

  .adm-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .phone-card {
    gap: 12px;
    padding: 16px;
  }

  .phone-card .icon {
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .phone-card .lbl {
    font-size: 15px;
    letter-spacing: .05em;
  }

  .tel-link {
    white-space: nowrap;
  }

  .form-privacy {
    padding: 16px 18px;
  }

  .legal-doc {
    padding-right: 20px;
    padding-left: 20px;
  }

  .step-list li {
    padding: 20px 20px 20px 58px;
    font-size: 15px;
  }

  .step-list li::before {
    top: 20px;
    left: 16px;
  }

  .step-list strong {
    font-size: 16px;
  }

  .info-note {
    padding: 26px;
  }

  .info-table th,
  .info-table td {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 15px;
  }

  .info-table td {
    overflow-wrap: normal;
  }

  .news-list .news-item {
    padding-right: 18px;
    padding-left: 18px;
  }
}

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

  .blog-card-body {
    padding: 14px 18px 18px;
  }
}