/* ==========================================================
   このは保育園（架空デモ）
   参考にしたデザイン言語: 濃紺×くすみピンク×チョーク手描き
   ========================================================== */
:root {
  --ink: #323a45;          /* 濃紺（墨色寄り） */
  --ink-deep: #2b323c;
  --pink: #f3cdc9;         /* くすみピンク */
  --pink-deep: #eab8b3;
  --paper: #f4f3f0;        /* 薄グレー紙 */
  --white: #fff;
  --green: #4a7a52;
  --orange: #c96f4a;
  --font: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --script: "Caveat", cursive;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-weight: 500;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sp-only { display: none; }
@media (max-width: 767px) { .sp-only { display: inline; } }

/* デモ注記 */
.demo-note {
  position: relative;
  z-index: 110;
  background: var(--ink-deep);
  color: #cfd6df;
  font-size: 11px;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: .06em;
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 26px;
  left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .35s ease, top .35s ease, box-shadow .35s ease, padding .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 16px 20px 12px;
}
.header--solid {
  top: 0;
  background: var(--pink);
  box-shadow: 0 2px 14px rgba(43,50,60,.12);
  padding: 8px 20px 6px;
}
.header, .header__item, .header__logo { color: #fff; }
.header--solid, .header--solid .header__item, .header--solid .header__logo { color: var(--ink); }
.header--solid .header__logo-en { color: #6d747d; }
.header:not(.header--solid) .header__logo-en { color: rgba(255,255,255,.8); }
.header:not(.header--solid) .header__item,
.header:not(.header--solid) .header__logo { text-shadow: 0 1px 8px rgba(30,36,44,.5); }
.header__nav { display: flex; gap: 26px; }
.header__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: color .25s;
}
.header__item:hover { color: var(--pink-deep); }
.header__icon { width: 26px; height: 26px; }
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  margin: 0 8px;
}
.header__logo-mark { width: 46px; height: 24px; }
.header__logo-text { font-size: 17px; font-weight: 900; letter-spacing: .14em; }
.header__logo-en { font-family: var(--script); font-size: 13px; color: #9aa1ab; letter-spacing: .06em; }
.header__burger { display: none; }
@media (max-width: 900px) {
  .header { justify-content: space-between; }
  .header__nav { display: none; }
  .header__burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: 0; padding: 8px;
  }
  .header__burger span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
  .header { top: 0; background: var(--pink); color: var(--ink); padding: 8px 16px; }
  .header__item, .header__logo { color: var(--ink); }
}

/* ---------- サイドタブ ---------- */
.sidetabs {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidetab {
  position: relative;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 9px;
  border-radius: 10px 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  box-shadow: 0 4px 14px rgba(43,50,60,.18);
  transition: transform .25s;
}
.sidetab:hover { transform: translateX(-3px); }
.sidetab svg { width: 17px; height: 17px; }
.sidetab--access { background: var(--ink); color: #fff; }
.sidetab--photo { background: var(--pink); color: var(--ink); }
.sidetab__new {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  writing-mode: horizontal-tb;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  border-radius: 999px;
  padding: 2px 7px;
  letter-spacing: .08em;
}
@media (max-width: 767px) { .sidetabs { display: none; } }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  height: min(86vh, 780px);
  min-height: 480px;
  overflow: hidden;
}
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__copy {
  position: absolute;
  top: 22%;
  left: 8%;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: clamp(18px, 2.3vw, 26px);
  font-weight: 900;
  letter-spacing: .34em;
  line-height: 2.1;
  color: #fff;
  text-shadow: 0 2px 14px rgba(30,36,44,.55), 0 0 30px rgba(30,36,44,.35);
}
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(30px, 4vw, 56px);
  display: block;
}
.hero__flag {
  position: absolute;
  right: 34px;
  bottom: 30px;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  padding: 10px 12px 8px;
  box-shadow: 0 2px 10px rgba(43,50,60,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-family: var(--script);
  font-size: 13px;
  letter-spacing: .1em;
  animation: flagSway 2.6s ease-in-out infinite;
}
.hero__flag svg { width: 30px; height: 44px; }
@keyframes flagSway {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
@media (max-width: 767px) {
  .hero { height: 68vh; }
  .hero__copy { top: 22px; left: 14px; gap: 9px; }
  .hero__copy span { padding: 13px 5px; }
  .hero__flag { right: 18px; bottom: 18px; }
}

/* ---------- 見出し共通 ---------- */
.sec-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 34px;
}
.sec-title__en {
  font-family: var(--script);
  font-size: 15px;
  letter-spacing: .34em;
  color: #9aa1ab;
  text-transform: uppercase;
}
.sec-title__jp {
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 900;
  letter-spacing: .3em;
}
.sec-title--light .sec-title__en { color: rgba(255,255,255,.55); }
.sec-title--light .sec-title__jp { color: #fff; }

/* ---------- NEWS ---------- */
.news { padding: 58px 24px 74px; background: var(--white); }
.news__deco { display: flex; justify-content: center; margin-bottom: 8px; }
.news__deco svg { width: min(340px, 80vw); height: auto; }
.chalk--ink { color: var(--ink); opacity: .8; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
}
.news-card { display: flex; flex-direction: column; gap: 10px; }
.news-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
/* 台形・不定形クロップ（参考サイトの核） */
.news-card__thumb--a { clip-path: polygon(8% 0, 100% 4%, 94% 100%, 0 92%); border-radius: 18px; }
.news-card__thumb--b { clip-path: polygon(0 6%, 92% 0, 100% 94%, 6% 100%); border-radius: 22px; }
.news-card__thumb--c { clip-path: polygon(4% 4%, 96% 0, 100% 100%, 0 96%); border-radius: 26px 14px 24px 16px; }
.news-card__thumb--d { clip-path: polygon(0 0, 100% 8%, 92% 96%, 4% 100%); border-radius: 16px 26px 14px 24px; }
.news-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .news-card__thumb img { transform: scale(1.06); }
.news-card__badge {
  position: absolute;
  left: 0; bottom: 10px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  letter-spacing: .08em;
}
.news-card__meta {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: #9aa1ab;
  font-weight: 700;
}
.news-card__meta i { font-style: normal; color: var(--pink-deep); margin: 0 4px; }
.news-card__title {
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.8;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--pink);
  transition: border-color .25s;
}
.news-card:hover .news-card__title { border-color: var(--pink-deep); }
@media (max-width: 960px) { .news__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .news__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } .news-card__title { font-size: 12px; } }

/* ---------- ABOUT（ダーク） ---------- */
.about {
  position: relative;
  background: var(--ink);
  padding: 72px 24px 64px;
  overflow: hidden;
}
.chalk { color: rgba(255,255,255,.5); }
.about__deco { position: absolute; pointer-events: none; }
.about__deco--tl { left: 0; top: 40px; width: 150px; }
.about__deco--tr { right: 0; top: 24px; width: 210px; }
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1060px;
  margin: 0 auto;
}
.blob { display: flex; flex-direction: column; align-items: center; text-align: center; }
.blob__shape {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  background: var(--pink);
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  display: grid;
  place-items: center;
  transition: transform .35s ease, border-radius .6s ease;
}
.blob:nth-child(2) .blob__shape { border-radius: 52% 48% 46% 54% / 48% 54% 46% 52%; }
.blob:nth-child(3) .blob__shape { border-radius: 48% 52% 56% 44% / 54% 48% 52% 46%; }
.blob:hover .blob__shape {
  transform: translateY(-8px) rotate(-1.5deg);
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}
.blob__art { width: 72%; height: auto; }
.blob__more {
  position: absolute;
  right: -4px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--pink-deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .06em;
}
.blob__more svg { width: 13px; height: 13px; }
.blob__en {
  margin-top: 20px;
  font-family: var(--script);
  font-size: 13px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.55);
}
.blob__title {
  margin-top: 2px;
  color: #fff;
  font-size: 17.5px;
  font-weight: 900;
  letter-spacing: .18em;
}
.blob__desc {
  margin-top: 8px;
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  line-height: 2;
}
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; max-width: 320px; }
  .about__deco--tr { width: 140px; }
}

/* 給食バナー + 園だより */
.lower {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  max-width: 1060px;
  margin: 64px auto 0;
  align-items: start;
}
.lunchbn {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 2px solid rgba(255,255,255,.85);
  outline: 2px solid rgba(255,255,255,.35);
  outline-offset: 4px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s;
  background: var(--ink-deep);
}
.lunchbn:hover { transform: translateY(-4px); }
.lunchbn__photo {
  flex: 0 0 40%;
  aspect-ratio: 1 / 1;
  align-self: center;
  margin: 14px 0 14px 14px;
  border-radius: 50%;
  overflow: hidden;
}
.lunchbn__photo img { width: 100%; height: 100%; object-fit: cover; }
.lunchbn__body {
  flex: 1;
  padding: 22px 20px 22px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lunchbn__doodle { width: 84px; margin-bottom: 4px; }
.lunchbn__sub { font-size: 11.5px; color: rgba(255,255,255,.7); letter-spacing: .1em; }
.lunchbn__title {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 900;
  letter-spacing: .16em;
  border-bottom: 2px dashed rgba(255,255,255,.5);
  padding-bottom: 6px;
}
.blog__head {
  color: #fff;
  font-size: 16.5px;
  font-weight: 900;
  letter-spacing: .2em;
  margin-bottom: 14px;
}
.blog__head span { font-family: var(--script); font-size: 13px; color: rgba(255,255,255,.5); margin-left: 10px; letter-spacing: .3em; }
.blog__item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
}
.blog__thumb {
  flex: 0 0 62px;
  width: 62px; height: 62px;
  border-radius: 50%;
  overflow: hidden;
}
.blog__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog__date { display: block; font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .08em; }
.blog__title {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.4);
  text-underline-offset: 4px;
  line-height: 1.8;
}
.blog__item:hover .blog__title { text-decoration-color: var(--pink); }
@media (max-width: 860px) {
  .lower { grid-template-columns: 1fr; gap: 36px; }
}

/* SNSバッジ */
.sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.sns__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 4px;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: .18em;
  transition: background .25s, color .25s;
}
.sns__badge b { font-family: var(--script); font-size: 17px; letter-spacing: .04em; margin-left: 4px; }
.sns__badge svg { width: 20px; height: 20px; }
.sns__badge:hover { background: rgba(255,255,255,.95); color: var(--ink); }

/* ---------- フッター ---------- */
.footer {
  background:
    radial-gradient(circle at 12px 14px, rgba(50,58,69,.06) 2px, transparent 2.6px),
    radial-gradient(circle at 46px 44px, rgba(50,58,69,.05) 2px, transparent 2.6px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
  padding: 56px 24px 30px;
}
.footer__card {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e5e2da;
  box-shadow: 0 8px 30px rgba(43,50,60,.07);
  padding: 42px 40px 40px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr;
  gap: 36px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .1em;
}
.footer__logo i { font-family: var(--script); font-size: 13px; font-weight: 600; color: #9aa1ab; font-style: normal; margin-left: 6px; }
.footer__logo-mark { width: 40px; height: 24px; }
.footer__addr { margin-top: 12px; font-size: 12.5px; color: #6b7280; }
.footer__links {
  list-style: none;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 18px;
  font-size: 13px;
  font-weight: 700;
}
.footer__links a:hover { color: var(--pink-deep); }
.footer__about { font-size: 13px; color: #4a5058; }
.footer__about p + p { margin-top: 14px; }
.footer__about a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.footer__tel {
  border: 1px solid #d8d4ca;
  padding: 14px 16px;
  text-align: center;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .04em;
}
.footer__tel small { display: block; font-size: 11px; font-weight: 500; color: #6b7280; margin-top: 2px; }
.footer__mail {
  display: block;
  margin-top: 12px;
  border: 1px solid #d8d4ca;
  padding: 13px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
  transition: background .25s;
}
.footer__mail:hover { background: var(--pink); }
.footer__mail small { display: block; font-size: 10.5px; font-weight: 500; color: #6b7280; margin-top: 2px; }
.footer__map {
  margin-top: 34px;
  height: 200px;
  background:
    linear-gradient(rgba(50,58,69,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50,58,69,.05) 1px, transparent 1px),
    #dedbd4;
  background-size: 40px 40px;
  display: grid;
  place-items: center;
}
.footer__map-pin {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--script);
  font-size: 13px;
  letter-spacing: .2em;
}
.footer__map-pin svg { width: 34px; height: 20px; }
.footer__copy {
  text-align: center;
  margin-top: 26px;
  font-size: 10.5px;
  letter-spacing: .2em;
  color: #9aa1ab;
}
.footer__copy small { letter-spacing: .06em; }
@media (max-width: 900px) {
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__card { padding: 30px 22px; }
}

/* ---------- ふわっと出現（純CSS・常時可視ベース） ---------- */
@media (prefers-reduced-motion: no-preference) {
  .news-card, .blob { animation: rise .8s ease both; }
  .news-card:nth-child(2) { animation-delay: .08s; }
  .news-card:nth-child(3) { animation-delay: .16s; }
  .news-card:nth-child(4) { animation-delay: .24s; }
  .blob:nth-child(2) { animation-delay: .1s; }
  .blob:nth-child(3) { animation-delay: .2s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================
   追加パーツ（実物確認を反映）
   ========================================================== */

/* 左端の縦書きコピーライト */
.side-copy {
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 9.5px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.75);
  z-index: 95;
  pointer-events: none;
  transition: color .35s;
}
body.scrolled .side-copy { color: #b8bec6; }
@media (max-width: 900px) { .side-copy { display: none; } }

/* ブロブの指差しアイコン */
.blob__hand { width: 26px; height: 21px; }
.blob__more { padding: 9px 14px 9px 16px; gap: 6px; }

/* チョーク装飾の配置 */
.about__deco--leaves { left: 8px; top: 56px; width: min(190px, 20vw); }
.about__deco--sky { right: 6px; top: 30px; width: min(230px, 24vw); }
.about__deco--logo { left: 5%; top: 300px; width: 84px; }
@media (max-width: 900px) {
  .about__deco--leaves { width: 110px; top: 30px; opacity: .8; }
  .about__deco--sky { width: 120px; top: 20px; opacity: .8; }
  .about__deco--logo { display: none; }
}

/* ---------- 園での一日（独自セクション） ---------- */
.day { background: var(--paper); padding: 66px 24px 74px; }
.day__track {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.day__line {
  position: absolute;
  left: 8%; right: 8%;
  top: 27px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--pink-deep) 0 10px, transparent 10px 18px);
}
.day__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.day__dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--pink-deep);
  color: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transition: transform .3s, background .3s;
}
.day__item:hover .day__dot { transform: translateY(-4px); background: var(--pink); }
.day__dot svg { width: 25px; height: 25px; }
.day__time {
  margin-top: 6px;
  font-family: var(--script);
  font-size: 17px;
  letter-spacing: .06em;
  color: var(--pink-deep);
  font-weight: 600;
}
.day__label { font-size: 14.5px; font-weight: 900; letter-spacing: .14em; }
.day__desc { font-size: 11.5px; line-height: 1.9; color: #6b7280; }
@media (max-width: 860px) {
  .day__track { grid-template-columns: 1fr; gap: 22px; max-width: 340px; }
  .day__line { display: none; }
  .day__item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
    background: var(--white);
    border-radius: 14px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 54px auto 1fr;
    grid-template-areas: "dot time label" "dot desc desc";
    column-gap: 12px;
  }
  .day__dot { grid-area: dot; }
  .day__time { grid-area: time; margin: 0; align-self: end; }
  .day__label { grid-area: label; align-self: end; }
  .day__desc { grid-area: desc; }
}

/* ---------- PAGE TOP ---------- */
.pagetop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-radius: 10px;
  padding: 8px 10px 7px;
  box-shadow: 0 3px 12px rgba(43,50,60,.16);
  font-family: var(--script);
  font-size: 10.5px;
  line-height: 1.15;
  letter-spacing: .12em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
}
body.scrolled .pagetop { opacity: 1; pointer-events: auto; transform: none; }
.pagetop svg { width: 22px; height: 30px; }
.pagetop:hover { background: var(--pink); }
@media (max-width: 767px) { .pagetop { right: 12px; bottom: 12px; padding: 7px 8px 6px; } .pagetop svg { width: 18px; height: 24px; } }

/* NEWバッジを丸い吹き出しに（実物準拠） */
.sidetab__new {
  top: -14px; left: -18px;
  transform: rotate(-6deg);
  width: 40px; height: 40px;
  border-radius: 50% 50% 50% 12%;
  background: var(--white);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 10.5px;
  box-shadow: 0 2px 8px rgba(43,50,60,.2);
  padding: 0;
}

/* ヒーローの下端が波なので余白調整 */
.news { padding-top: 34px; }

/* ヒーロー上部の可読性確保（写真が明るいケースの保険） */
.hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(30,36,44,.66) 0%, rgba(30,36,44,.46) 22%, rgba(30,36,44,.18) 60%, rgba(30,36,44,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__copy { z-index: 2; }
.hero__wave { z-index: 3; }

/* ヘッダー（ヒーロー重なり時）の可読性を確実に */
.header:not(.header--solid) {
  background: linear-gradient(180deg, rgba(30,36,44,.55) 0%, rgba(30,36,44,.32) 60%, rgba(30,36,44,0) 100%);
  padding-bottom: 26px;
}
.header:not(.header--solid) .header__item,
.header:not(.header--solid) .header__logo {
  text-shadow: 0 1px 3px rgba(20,26,34,.8), 0 2px 12px rgba(20,26,34,.6);
}
@media (max-width: 900px) {
  .header:not(.header--solid) { background: var(--pink); padding-bottom: 8px; }
  .header:not(.header--solid) .header__item,
  .header:not(.header--solid) .header__logo { text-shadow: none; }
}

/* SP: デモ注記と固定ヘッダーの重なりを解消（stickyで自然に積む） */
@media (max-width: 900px) {
  .header { position: sticky; top: 0; }
  .hero__copy { top: 14%; left: 7%; }
}


/* 給食バナー: SPは縦積み */
@media (max-width: 560px) {
  .lunchbn { flex-direction: column; }
  .lunchbn__photo { flex: none; width: 62%; margin: 18px auto 0; }
  .lunchbn__body { padding: 14px 18px 20px; text-align: center; align-items: center; }
  .lunchbn__doodle { margin-left: auto; margin-right: auto; }
}
