@charset "UTF-8";
/* =========================================================================
   もりのこ幼稚園  Morinoko Kindergarten — 共通スタイル（全ページ共有）
   設計方針: ダーク×ビビッド多色ポップ × 丸ゴシック × 浮遊ポップ装飾。
   アンカー実測: うおみこども園(uomi.jp) — bg #082622 / 文字 #FAFAFA /
   M PLUS Rounded 1c + Fredoka / 多色テーマカード / 波ディバイダ / 丸み。
   全デバイス互換・iOS安全（filter/backdrop-filterのblurアニメ・mix-blend・
   100vh前提・JS連動パララックスは不使用。波＝SVG、浮遊＝控えめCSS, reduced-motion対応）。
   ========================================================================= */

/* ===== RESET ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{font-size:16px;-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}}
body{
  font-family:var(--ff-jp);color:var(--ink);line-height:1.95;
  background:var(--bg);overflow-x:hidden;-webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,textarea,select,button{font-family:inherit;font-size:inherit;color:inherit}
:focus-visible{outline:3px solid var(--c-yellow);outline-offset:3px;border-radius:6px}

/* ===== DESIGN TOKENS（デザイン憲法） ===== */
:root{
  /* 地（深緑・暗→明のリズム用に3段） */
  --bg:#0b2b26;            /* ベース深緑 */
  --bg-deep:#082622;       /* 最深部（アンカー実測値） */
  --bg-2:#103a32;          /* やや明るいパネル */
  --surface:#15433a;       /* カード地 */
  --surface-2:#1d5043;     /* 浮いたカード */
  /* 文字 */
  --ink:#f7f6ee;           /* ほぼ白（アンカー#FAFAFA系） */
  --ink-soft:#a9ccc0;      /* 補助テキスト（やわらかミント） */
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(255,255,255,.24);
  /* ビビッド多色ポップ（ダーク地で映える明度に調整） */
  --c-blue:#37acff;
  --c-pink:#ff5d86;
  --c-yellow:#ffc63b;
  --c-green:#36d99c;
  --c-lime:#a6e85a;
  --c-purple:#bd7cf2;
  --c-cyan:#33dcdc;
  --c-orange:#ff8a47;
  --cream:#f3ead4;         /* 波・明色アクセント（控えめ） */
  /* テーマ（セクションごとに差し替え） */
  --theme:var(--c-yellow);
  --theme2:var(--c-pink);
  /* 形 */
  --r:20px; --r-lg:34px; --r-xl:48px; --r-pill:999px;
  --maxw:1120px; --maxw-wide:1280px;
  --sh:0 22px 50px rgba(0,0,0,.34);
  --sh-pop:0 10px 0 rgba(0,0,0,.16);
  --ease:cubic-bezier(.34,1.4,.5,1); /* 弾むイージング＝ポップの肝 */
  --ease-soft:cubic-bezier(.22,.61,.36,1);
  /* フォント */
  --ff-jp:'M PLUS Rounded 1c',-apple-system,'Hiragino Maru Gothic ProN',sans-serif;
  --ff-display:'Fredoka',var(--ff-jp);
}

/* ===== SKIP LINK ===== */
.skip-link{
  position:fixed;top:-60px;left:16px;z-index:2000;background:var(--c-yellow);color:#1a2b22;
  padding:10px 18px;border-radius:0 0 14px 14px;font-size:.8rem;font-weight:800;transition:top .3s;
}
.skip-link:focus{top:0}

/* ===== UTILITY ===== */
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px;position:relative}
.container-wide{max-width:var(--maxw-wide);margin:0 auto;padding:0 24px}
.text-center{text-align:center}
.center-block{margin-left:auto;margin-right:auto}
.en{font-family:var(--ff-display);font-weight:500}

.section-en{
  font-family:var(--ff-display);font-size:.82rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--theme);margin-bottom:14px;
  display:inline-flex;align-items:center;gap:10px;
}
.section-en::before{content:"";width:26px;height:10px;border-radius:var(--r-pill);background:var(--theme);opacity:.95}
.section-head.center .section-en{justify-content:center}
.section-title{
  font-family:var(--ff-jp);font-size:clamp(1.5rem,3.6vw,2.4rem);font-weight:800;
  line-height:1.5;letter-spacing:.01em;margin-bottom:18px;color:var(--ink);
}
.section-lead{font-size:.95rem;color:var(--ink-soft);line-height:2;max-width:580px}
.section-head{margin-bottom:46px}
.section-head.center{text-align:center;display:flex;flex-direction:column;align-items:center}
.section-head.center .section-lead{margin-left:auto;margin-right:auto}
.lead-desc{font-size:.96rem;color:var(--ink-soft);line-height:2.05;margin-bottom:14px}

/* ===== SECTION（丸みパネル＋ポップ装飾） ===== */
.section{position:relative;padding:96px 0;background:var(--bg)}
.section.bg-cream{background:var(--bg-2)}
.section.bg-sage{background:var(--bg-deep)}
.section.bg-green{background:var(--bg-2)}
/* セクションテーマ色の割り当て（多色だが規律を持たせる） */
.section{--theme:var(--c-blue);--theme2:var(--c-cyan)}
.section.bg-cream{--theme:var(--c-yellow);--theme2:var(--c-orange)}
.section.bg-sage{--theme:var(--c-pink);--theme2:var(--c-purple)}
.section.bg-green{--theme:var(--c-green);--theme2:var(--c-lime)}
/* 紙吹雪帯（セクション上下のガター＝アンカーの高密度装飾を再現） */
/* 装飾帯（セクション種別ごとに別の語彙＝印象を変える） */
.section::before,.message::before{
  content:"";position:absolute;left:0;right:0;top:0;height:150px;pointer-events:none;z-index:0;
  background-image:url('../img/deco/deco-dark-a.svg');background-position:center top;background-size:1200px auto;background-repeat:repeat-x;opacity:.62;
}
.section::after,.message::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:150px;pointer-events:none;z-index:0;
  background-image:url('../img/deco/deco-dark-a.svg');background-position:center bottom;background-size:1040px auto;background-repeat:repeat-x;opacity:.5;transform:scaleY(-1);
}
.section.bg-sage::before,.section.bg-sage::after{background-image:url('../img/deco/deco-dark-b.svg')}
.section.bg-green::before,.section.bg-green::after{background-image:url('../img/deco/deco-dark-c.svg')}
.section.bg-cream::before,.section.bg-cream::after{background-image:url('../img/deco/deco-light.svg');opacity:.9}
.section .container{z-index:2}
.message-en,.message-body{position:relative;z-index:2}

/* ===== ライトセクション（クリーム地・明暗のリズム＝アンカー踏襲） ===== */
.section.bg-cream{background:linear-gradient(180deg,#f6eed9,#efe5cd);color:#163a2d}
.section.bg-cream .section-title,.section.bg-cream .feature-name,.section.bg-cream .info-card h3,
.section.bg-cream .card-body h3,.section.bg-cream .voice-text,.section.bg-cream .tl-body h3,
.section.bg-cream .event-card h3,.section.bg-cream .faq-q,.section.bg-cream .step h3{color:#163a2d}
.section.bg-cream .section-lead,.section.bg-cream .lead-desc,.section.bg-cream .info-card p,
.section.bg-cream .feature-desc,.section.bg-cream .card-body p,.section.bg-cream .tl-body p,
.section.bg-cream .step p,.section.bg-cream .event-card li,.section.bg-cream .faq-a-inner,
.section.bg-cream .legal p,.section.bg-cream .legal li{color:#5d6b54}
.section.bg-cream .info-card,.section.bg-cream .feature-card,.section.bg-cream .card,
.section.bg-cream .faq-item,.section.bg-cream .step,.section.bg-cream .event-card,
.section.bg-cream .voice-card,.section.bg-cream .table-wrap,.section.bg-cream .recruit-inner{background:#fffdf6;border-color:rgba(22,58,45,.12)}
.section.bg-cream .recruit-body .lead-desc{color:#5d6b54}
.section.bg-cream .info-table th{background:#efe5cd;color:#c2671f}
.section.bg-cream .info-table td{background:#fffdf6;color:#5d6b54}
.section.bg-cream .voice-text{color:#3a4a3f}
.section.bg-cream .news-title-text{color:#163a2d}
.section.bg-cream .news-item:hover{background:#fffdf6}
.section.bg-cream .btn-outline{color:#163a2d}
.section.bg-cream .timeline::before{background:rgba(22,58,45,.16)}
.section.bg-cream .tl-item::before{border-color:#f3e9d2}
@keyframes floaty{from{transform:translateY(0)}to{transform:translateY(-16px)}}
@media (prefers-reduced-motion: reduce){
  .section::before,.section::after{animation:none}
}

/* ===== BUTTONS（丸ピル＋ハード影＝ポップ） ===== */
.btn{
  display:inline-flex;align-items:center;gap:9px;font-size:.92rem;font-weight:800;
  letter-spacing:.02em;transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s;
  border-radius:var(--r-pill);padding:15px 32px;line-height:1.2;
}
.btn svg{width:1.05em;height:1.05em;transition:transform .25s var(--ease)}
.btn:hover svg{transform:translateX(4px)}
.btn-fill{background:var(--c-yellow);color:#23311f;box-shadow:0 6px 0 #c79516}
.btn-fill:hover{transform:translateY(-3px);box-shadow:0 9px 0 #c79516}
.btn-fill:active{transform:translateY(2px);box-shadow:0 3px 0 #c79516}
.btn-fill-white{background:var(--ink);color:#16312a;box-shadow:0 6px 0 rgba(0,0,0,.25)}
.btn-fill-white:hover{transform:translateY(-3px);box-shadow:0 9px 0 rgba(0,0,0,.25)}
.btn-outline{border:2.5px solid var(--theme);color:var(--theme);background:transparent;padding:13px 30px}
.btn-outline:hover{background:var(--theme);color:#10241e;transform:translateY(-2px)}
.btn-outline-white{border:2.5px solid rgba(255,255,255,.85);color:var(--ink);padding:13px 30px}
.btn-outline-white:hover{background:var(--ink);color:#16312a;transform:translateY(-2px)}
.btn-line{
  color:var(--theme);padding:6px 2px;border-radius:0;font-weight:800;
  border-bottom:3px solid var(--theme);gap:8px;
}
.btn-line:hover{gap:14px}

/* ===== SCROLL FADE ===== */
.fade-up{opacity:0;transform:translateY(26px);transition:opacity .7s var(--ease-soft),transform .7s var(--ease-soft)}
.fade-up.is-visible{opacity:1;transform:none}
.fade-up.d1{transition-delay:.09s}
.fade-up.d2{transition-delay:.18s}
.fade-up.d3{transition-delay:.27s}
@media (prefers-reduced-motion: reduce){
  .fade-up{opacity:1!important;transform:none!important;transition:none}
}

/* ===== HEADER ===== */
.header{position:fixed;top:0;left:0;width:100%;z-index:1000;padding:0 30px;transition:background .35s,box-shadow .35s,padding .35s}
.header.scrolled{background:rgba(8,38,34,.92);box-shadow:0 2px 0 var(--line)}
.header-inner{max-width:var(--maxw-wide);margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:80px;transition:height .35s}
.header.scrolled .header-inner{height:66px}
.header-logo{display:flex;align-items:center;gap:11px;font-family:var(--ff-display);font-size:1.18rem;font-weight:700;color:var(--ink);line-height:1.05}
.header-logo .logo-mark{flex:0 0 auto;display:flex}
.header-logo small{display:block;font-family:var(--ff-display);font-size:.5rem;font-weight:500;letter-spacing:.18em;color:var(--ink-soft);text-transform:uppercase;margin-top:2px}
.logo-mark svg{display:block}
.header-nav{display:flex;align-items:center;gap:24px}
.header-nav a{position:relative;font-size:.86rem;font-weight:700;color:var(--ink);letter-spacing:.02em;padding:8px 0;transition:color .25s}
.header-nav a::after{content:"";position:absolute;left:0;bottom:2px;width:0;height:3px;border-radius:3px;background:var(--c-yellow);transition:width .3s var(--ease)}
.header-nav a:hover{color:var(--c-yellow)}
.header-nav a:hover::after,.header-nav a[aria-current="page"]::after{width:100%}
.header-nav a[aria-current="page"]{color:var(--c-yellow)}
.header-cta{
  display:inline-flex;align-items:center;font-family:var(--ff-jp);font-size:.84rem;font-weight:800;
  background:var(--c-pink);color:#fff;padding:11px 22px;border-radius:var(--r-pill);white-space:nowrap;
  box-shadow:0 5px 0 #d23a63;transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.header-cta:hover{transform:translateY(-2px);box-shadow:0 8px 0 #d23a63}

/* ハンバーガー */
.hamburger{display:none;width:44px;height:44px;position:relative;border-radius:12px}
.hamburger span{position:absolute;left:11px;width:22px;height:2.5px;border-radius:2px;background:var(--ink);transition:.3s}
.hamburger span:nth-child(1){top:15px}
.hamburger span:nth-child(2){top:21px}
.hamburger span:nth-child(3){top:27px}

/* モバイルナビ */
.mobile-nav{
  position:fixed;inset:0;z-index:1100;background:var(--bg-deep);
  display:flex;flex-direction:column;justify-content:center;gap:2px;padding:40px 34px;
  transform:translateX(100%);transition:transform .4s var(--ease-soft);overflow-y:auto;
}
.mobile-nav.is-open{transform:none}
.mobile-nav a{display:flex;align-items:baseline;gap:12px;font-size:1.4rem;font-weight:800;color:var(--ink);padding:13px 0;border-bottom:2px dashed var(--line)}
.mobile-nav a .mn-en{font-family:var(--ff-display);font-size:.7rem;font-weight:500;letter-spacing:.12em;color:var(--c-yellow);text-transform:uppercase}
.mobile-nav a.btn{justify-content:center;margin-top:22px;border-bottom:none;background:var(--c-yellow);color:#23311f}
.mobile-nav-close{position:absolute;top:24px;right:24px;width:46px;height:46px;border-radius:50%;background:var(--surface)}
.mobile-nav-close::before,.mobile-nav-close::after{content:"";position:absolute;top:22px;left:12px;width:22px;height:2.5px;border-radius:2px;background:var(--ink)}
.mobile-nav-close::before{transform:rotate(45deg)}
.mobile-nav-close::after{transform:rotate(-45deg)}

/* ===== HERO（トップ） ===== */
.hero{
  position:relative;min-height:100vh;min-height:100svh;display:flex;flex-direction:column;align-items:center;
  background:radial-gradient(120% 78% at 50% 32%,#16493c 0%,var(--bg-deep) 66%);
  overflow:hidden;padding:118px 0 0;text-align:center;
}
/* 放射バースト（中央から外へ広がるグラデ円錐＋グロー＋ブロブ） */
.hero-burst{position:absolute;inset:0;z-index:1;pointer-events:none;background:url('../img/deco/hero-burst.svg') center top/cover no-repeat;opacity:.92}
/* 曲面ステージ（子どもが立つ丘）＋下の白波は .wave-divider */
.hero-stage{position:absolute;left:50%;bottom:-2px;transform:translateX(-50%);width:min(1280px,100vw);height:360px;z-index:2;pointer-events:none;
  background:radial-gradient(58% 150% at 50% 100%,#15463a 0%,#0d342b 70%,transparent 72%);}
.hero-inner{position:relative;z-index:5;max-width:880px;margin:0 auto;padding:0 24px;width:100%;display:flex;flex-direction:column;align-items:center}
.hero-kicker{
  display:inline-flex;align-items:center;gap:10px;font-family:var(--ff-display);font-weight:600;
  font-size:.82rem;letter-spacing:.16em;text-transform:uppercase;color:#16312a;background:var(--c-lime);
  padding:8px 18px;border-radius:var(--r-pill);margin-bottom:20px;box-shadow:0 5px 0 rgba(0,0,0,.18);transform:rotate(-1.5deg);
}
.hero-copy{
  font-family:var(--ff-jp);font-weight:800;color:var(--ink);position:relative;
  font-size:clamp(2.6rem,7.8vw,5.5rem);line-height:1.22;letter-spacing:.004em;margin-bottom:28px;
  text-shadow:0 4px 26px rgba(0,0,0,.38);
}
.hero-copy .l1{display:inline-block;font-size:.6em;line-height:1.3;color:var(--ink);opacity:.96}
.hero-copy .pop{
  color:#23311f;background:var(--c-yellow);padding:.02em .14em;border-radius:.14em;
  box-decoration-break:clone;-webkit-box-decoration-break:clone;
}
.hero-copy .pop2{position:relative;color:var(--c-pink)}
.hero-copy .pop2::after{content:"";position:absolute;left:-2%;right:-2%;bottom:-.06em;height:.12em;border-radius:6px;background:var(--c-pink);opacity:.55}
.hero-sub{font-size:clamp(.9rem,1.4vw,1.02rem);color:var(--ink);line-height:1.95;margin:0 auto 24px;max-width:720px;font-weight:500;text-shadow:0 2px 12px rgba(0,0,0,.5)}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
/* 中央の大きな主役（顔アップ・FVの核） */
.hero-kid-center{position:absolute;left:50%;bottom:-16px;transform:translateX(-50%);width:clamp(300px,46vw,600px);z-index:4;filter:drop-shadow(0 20px 28px rgba(0,0,0,.5))}
/* 吹き出し（うおみの会話バブル相当） */
.speech{position:absolute;z-index:6;display:flex;align-items:center;justify-content:center;text-align:center;border-radius:50%;font-weight:800;line-height:1.25;padding:8px;box-shadow:var(--sh-pop)}
.speech.s-blue{background:var(--c-blue);color:#08263a}
.speech.s-cyan{background:var(--c-cyan);color:#0c2a2a}
.speech.s-yellow{background:var(--c-yellow);color:#23311f}
.speech.s-lime{background:var(--c-lime);color:#1c3a14}
.hero .deco-mascot,.hero .deco-kid{z-index:3}
@media (max-width:767px){.speech{display:none}.hero-kid-center{width:clamp(220px,70vw,320px)}}

/* =========================================================================
   v7 セクション品質向上（うおみ準拠：太い見出し / 写真前面カード / 大きな日付）
   ========================================================================= */
/* 見出し＝エディトリアルに太く大きく */
.section-title{font-size:clamp(1.75rem,4.2vw,2.9rem);font-weight:800;line-height:1.38;letter-spacing:.005em}
.section-en{font-family:var(--ff-display);font-weight:600;font-size:.84rem;letter-spacing:.14em}
.message-en{font-size:clamp(1.8rem,5vw,3.4rem)}

/* info-card：上部に太いテーマ色バー＋大アイコン */
.info-card{border-top:7px solid var(--theme)}
.card-icon{width:66px;height:66px;border-radius:22px}
.info-card h3{font-size:1.18rem}

/* feature（教育3本柱）→ うおみCONTENTS風：写真大・色ラベル・番号大 */
.feature-visual{aspect-ratio:16/10}
.feature-card{border:none;background:var(--surface)}
.feature-num{width:52px;height:52px;font-size:1.3rem;top:16px;left:18px}
.feature-name{font-size:1.34rem;margin:24px 26px 12px}
.feature-name::before{content:"";display:block;width:40px;height:5px;border-radius:5px;background:var(--theme);margin-bottom:14px}

/* facility card：色ラベル＋大きめ写真 */
.card{border:none}
.card-body h3{font-size:1.12rem}
.card-body h3::before{content:"";display:inline-block;width:18px;height:18px;border-radius:6px;background:var(--theme,var(--c-green));margin-right:8px;vertical-align:-3px}
.card-grid.cols-4 .card:nth-child(4n+1){--theme:var(--c-yellow)}
.card-grid.cols-4 .card:nth-child(4n+2){--theme:var(--c-pink)}
.card-grid.cols-4 .card:nth-child(4n+3){--theme:var(--c-cyan)}
.card-grid.cols-4 .card:nth-child(4n){--theme:var(--c-purple)}

/* News → うおみ signature：カード行＋特大の色付き日付 */
.news-list{gap:12px}
.news-item{background:var(--surface);border:2px solid var(--line);border-radius:var(--r-lg);padding:20px 26px;gap:24px}
.news-item:hover{transform:translateX(0) translateY(-4px);background:var(--surface-2)}
.news-date{font-family:var(--ff-display);font-weight:700;font-size:1.5rem;color:var(--theme);min-width:118px}
.news-list .news-item:nth-child(3n+1){--theme:var(--c-yellow)}
.news-list .news-item:nth-child(3n+2){--theme:var(--c-pink)}
.news-list .news-item:nth-child(3n+3){--theme:var(--c-cyan)}
.section.bg-cream .news-item{background:#fffdf6}
.section.bg-cream .news-item:hover{background:#fff}

/* voice：引用記号と本文を大きく */
.voice-quote{font-size:4rem}
.voice-text{font-size:1rem}

/* セクション見出しの装飾（中央見出しに小さなアクセント） */
.section-head.center .section-title::after{content:"";display:block;width:54px;height:6px;border-radius:6px;background:var(--theme);margin:18px auto 0}

@media (max-width:767px){
  .news-item{flex-wrap:wrap;gap:8px 16px}
  .news-date{min-width:auto;font-size:1.2rem}
}

/* =========================================================================
   日本語改行品質（禁則処理・全デバイス）— テキスト無改変・末尾配置でカスケード安全
   日本語改行処理_作業フロー書.md ステップ① に準拠
   ========================================================================= */
/* 行頭禁則のみで一本化（keep-all/overflow-wrap:anywhere は句読点を孤立させるため撤去）。
   日本語は文字間で自然に折り返り、。、」は行頭/行末禁則で正しく留まる。 */
.hero-copy,.hero-sub,.hero-kicker,.section-title,.section-lead,.section-en,.lead-desc,
.message-en,.message-body,.feature-name,.feature-desc,.info-card h3,.info-card p,
.card-body h3,.card-body p,.voice-text,.voice-author,.tl-body h3,.tl-body p,
.event-card h3,.faq-q,.faq-a-inner,.step h3,.step p,.news-title-text,.cta-title,.cta-sub,
.treasure-title,.treasure-jp,.treasure-lead,.page-hero h1,.page-hero p,.legal p,.legal li,
.info-table th,.info-table td,.footer-desc,.footer h4,.btn,.speech,
h1,h2,h3,h4,p,li{
  line-break:strict;word-break:normal;overflow-wrap:normal;
}
/* 割りたくない短語だけ塊保護（見出し内の単語割れ防止・テキスト無改変） */
.hero-copy .pop,.hero-copy .pop2,.no-break{white-space:nowrap}

/* =========================================================================
   FV モバイル最適化（中央放射→縦積み：装飾を隠し主役を本文の下へ）
   ========================================================================= */
@media (max-width:767px){
  .hero{min-height:auto;padding:104px 0 64px}
  .hero .deco-mascot{display:none}      /* おばけ等の被り・はみ出し防止 */
  .hero-scroll{display:none}
  .hero-stage{display:none}
  .hero-burst{opacity:.68}
  .hero-copy{font-size:2.05rem;line-height:1.3}
  .hero-sub{font-size:.9rem;line-height:1.95;max-width:340px}
  .hero-actions{margin-bottom:16px}
  .hero-kid-center{position:static;transform:none;left:auto;bottom:auto;width:min(300px,76vw);margin:8px auto 0;display:block}
  /* 見出しはSPで文節が1行に収まるサイズに（末尾の短行・句読点孤立を防ぐ） */
  .section-title{font-size:1.4rem;line-height:1.55}
  .message-en{font-size:1.65rem}
  .treasure-title{font-size:2rem}
  .cta-title{font-size:1.55rem}
  .feature-name{font-size:1.18rem}
  .page-hero h1{font-size:1.65rem}
  .recruit-body .section-title,.split-text .section-title{font-size:1.55rem}
}
.hero-scroll{
  position:absolute;left:50%;bottom:74px;transform:translateX(-50%);z-index:3;
  font-family:var(--ff-display);font-size:.62rem;font-weight:600;letter-spacing:.3em;color:var(--ink-soft);
  writing-mode:vertical-rl;padding-bottom:46px;
}
.hero-scroll::after{content:"";position:absolute;left:50%;bottom:0;width:2px;height:36px;background:var(--c-yellow);border-radius:2px;animation:scrolldot 1.8s ease-in-out infinite}
@keyframes scrolldot{0%{transform:translateY(-36px);opacity:0}40%{opacity:1}100%{transform:translateY(0);opacity:0}}
@media (prefers-reduced-motion: reduce){.hero-scroll::after{animation:none}}
/* 波ディバイダ（ヒーロー下端／汎用） */
.wave-divider{position:absolute;left:0;right:0;bottom:-1px;z-index:3;line-height:0;color:var(--bg)}
.wave-divider svg{display:block;width:100%;height:64px}

/* ===== MESSAGE ===== */
.message{position:relative;padding:112px 0;text-align:center;background:var(--bg)}
.message-en{font-family:var(--ff-display);font-weight:600;font-size:clamp(1.6rem,4.5vw,3rem);line-height:1.3;color:var(--c-yellow);margin-bottom:28px}
.message-body{font-size:1.02rem;line-height:2.3;color:var(--ink);max-width:680px;margin:0 auto;font-weight:500}

/* ===== PHOTO BAND ===== */
.photo-band{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:var(--maxw-wide);margin:0 auto;padding:0 24px 112px}
.photo-band-item{aspect-ratio:4/3;border-radius:var(--r-lg);background-size:cover;background-position:center;border:4px solid var(--surface-2);transition:transform .4s var(--ease)}
.photo-band-item:nth-child(1){transform:rotate(-1.5deg)}
.photo-band-item:nth-child(2){transform:translateY(-18px) rotate(1deg)}
.photo-band-item:nth-child(3){transform:rotate(2deg)}
.photo-band-item:hover{transform:translateY(-6px) rotate(0)}

/* ===== SPLIT ===== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.split.reverse .split-visual{order:2}
.split-visual{position:relative}
.about-img{aspect-ratio:5/4;border-radius:var(--r-lg);background-size:cover;background-position:center;box-shadow:var(--sh);border:5px solid var(--surface-2)}
.about-visual::before{content:"";position:absolute;width:120px;height:120px;border-radius:50%;background:var(--theme);opacity:.18;top:-26px;left:-26px;z-index:0}
.about-float{
  position:absolute;right:-14px;bottom:-18px;z-index:2;background:var(--c-pink);color:#fff;
  border-radius:var(--r);padding:16px 22px;font-weight:800;font-size:.84rem;line-height:1.5;
  box-shadow:var(--sh-pop);text-align:center;
}
.about-float .num{display:block;font-family:var(--ff-display);font-size:1.5rem;color:#fff}

/* ===== CARD GRID / INFO CARD ===== */
.card-grid{display:grid;gap:24px}
.card-grid.cols-2{grid-template-columns:repeat(2,1fr)}
.card-grid.cols-3{grid-template-columns:repeat(3,1fr)}
.card-grid.cols-4{grid-template-columns:repeat(4,1fr)}
.info-card{
  background:var(--surface);border-radius:var(--r-lg);padding:34px 28px;
  border:2px solid var(--line);transition:transform .3s var(--ease),border-color .3s,box-shadow .3s;
}
.info-card:hover{transform:translateY(-8px);border-color:var(--theme);box-shadow:var(--sh)}
.card-icon{
  display:inline-flex;align-items:center;justify-content:center;width:62px;height:62px;border-radius:20px;
  background:var(--theme);color:#16312a;margin-bottom:18px;
}
.card-icon svg{width:30px;height:30px}
.info-card h3{font-size:1.12rem;font-weight:800;margin-bottom:12px;color:var(--ink)}
.info-card p{font-size:.9rem;color:var(--ink-soft);line-height:1.95}
/* nth色替え（多色テーマカード＝アンカーのtheme-pink/green/purple踏襲） */
.card-grid.cols-3 .info-card:nth-child(3n+1){--theme:var(--c-yellow)}
.card-grid.cols-3 .info-card:nth-child(3n+2){--theme:var(--c-pink)}
.card-grid.cols-3 .info-card:nth-child(3n+3){--theme:var(--c-cyan)}
.card-grid.cols-2 .info-card:nth-child(4n+1){--theme:var(--c-blue)}
.card-grid.cols-2 .info-card:nth-child(4n+2){--theme:var(--c-pink)}
.card-grid.cols-2 .info-card:nth-child(4n+3){--theme:var(--c-green)}
.card-grid.cols-2 .info-card:nth-child(4n){--theme:var(--c-purple)}

/* ===== FEATURES（番号付き大カード） ===== */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.feature-card{
  background:var(--surface);border-radius:var(--r-lg);overflow:hidden;position:relative;
  border:2px solid var(--line);transition:transform .3s var(--ease),box-shadow .3s,border-color .3s;
}
.feature-card:hover{transform:translateY(-8px);box-shadow:var(--sh);border-color:var(--theme)}
.feature-visual{aspect-ratio:16/11;background-size:cover;background-position:center}
.feature-card:nth-child(3n+1){--theme:var(--c-yellow)}
.feature-card:nth-child(3n+2){--theme:var(--c-pink)}
.feature-card:nth-child(3n+3){--theme:var(--c-cyan)}
.feature-num{
  position:absolute;top:14px;left:16px;font-family:var(--ff-display);font-weight:600;font-size:1.1rem;
  background:var(--theme);color:#16312a;width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;box-shadow:var(--sh-pop);
}
.feature-name{font-size:1.18rem;font-weight:800;color:var(--ink);margin:22px 26px 10px}
.feature-desc{font-size:.9rem;color:var(--ink-soft);line-height:1.95;margin:0 26px 28px}

/* ===== GALLERY（トップ） ===== */
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:200px;gap:16px}
.gallery-item{border-radius:var(--r-lg);background-size:cover;background-position:center;border:4px solid var(--surface-2);transition:transform .4s var(--ease)}
.gallery-item:hover{transform:scale(1.02)}
.gallery-item.span-2{grid-column:span 2;grid-row:span 2}

/* ===== VOICE（横スワイプ） ===== */
.voice-slider{display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;padding:8px 4px 26px;-webkit-overflow-scrolling:touch}
.voice-slider::-webkit-scrollbar{height:8px}
.voice-slider::-webkit-scrollbar-thumb{background:var(--theme);border-radius:8px}
.voice-card{
  flex:0 0 min(360px,82vw);scroll-snap-align:start;background:var(--surface);
  border-radius:var(--r-lg);padding:32px 30px 30px;border:2px solid var(--line);position:relative;
}
.voice-card:nth-child(3n+1){--theme:var(--c-yellow)}
.voice-card:nth-child(3n+2){--theme:var(--c-pink)}
.voice-card:nth-child(3n+3){--theme:var(--c-purple)}
.voice-quote{font-family:var(--ff-display);font-size:3.4rem;line-height:.6;color:var(--theme);margin-bottom:8px}
.voice-text{font-size:.95rem;color:var(--ink);line-height:2;margin-bottom:18px;font-weight:500}
.voice-author{font-size:.82rem;font-weight:800;color:var(--theme)}

/* ===== NEWS ===== */
.news-header{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:30px;flex-wrap:wrap}
.news-list{display:flex;flex-direction:column;gap:2px}
.news-item{
  display:flex;align-items:center;gap:18px;padding:20px 22px;border-radius:var(--r);
  transition:background .25s,transform .25s;flex-wrap:wrap;
}
.news-item:hover{background:var(--surface);transform:translateX(6px)}
.news-date{font-family:var(--ff-display);font-weight:500;color:var(--ink-soft);font-size:.9rem;flex:0 0 auto}
.news-tag{font-size:.72rem;font-weight:800;padding:5px 14px;border-radius:var(--r-pill);background:var(--c-blue);color:#0c2a33;flex:0 0 auto}
.news-tag.event{background:var(--c-pink);color:#fff}
.news-tag.recruit{background:var(--c-yellow);color:#23311f}
.news-title-text{font-size:.96rem;font-weight:500;color:var(--ink)}

/* ===== RECRUIT（トップ） ===== */
.recruit-inner{display:grid;grid-template-columns:1fr 1.1fr;gap:54px;align-items:center;background:var(--surface);border-radius:var(--r-xl);padding:46px;border:2px solid var(--line)}
.recruit-visual{aspect-ratio:5/4;border-radius:var(--r-lg);background-size:cover;background-position:center;border:5px solid var(--surface-2)}

/* ===== SNS FEED ===== */
.sns-feed{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.sns-cell{position:relative;aspect-ratio:1/1;border-radius:var(--r);background-size:cover;background-position:center;overflow:hidden;transition:transform .25s var(--ease)}
.sns-cell:hover{transform:scale(1.05)}
.sns-cell .ig{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff;background:rgba(8,38,34,.2);opacity:0;transition:opacity .25s}
.sns-cell:hover .ig{opacity:1}
.sns-cell .ig svg{width:30px;height:30px}

/* ===== CTA ===== */
.cta{position:relative;padding:108px 0;text-align:center;background:radial-gradient(120% 120% at 50% 0%,#143f34,var(--bg-deep));overflow:hidden}
.cta::before{content:"";position:absolute;top:-90px;right:-40px;width:280px;height:280px;border-radius:50%;background:rgba(255,198,59,.06)}
.cta::after{content:"";position:absolute;bottom:-90px;left:-40px;width:240px;height:240px;border-radius:50%;background:rgba(255,93,134,.07)}
.cta-inner{position:relative;z-index:2}
.cta-en{font-family:var(--ff-display);font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--c-yellow);margin-bottom:14px}
.cta-title{font-size:clamp(1.7rem,4.4vw,2.7rem);font-weight:800;line-height:1.5;margin-bottom:18px;color:var(--ink)}
.cta-sub{color:var(--ink-soft);line-height:2;margin-bottom:34px}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:30px}
.cta-tel a{font-family:var(--ff-display);font-weight:600;font-size:1.8rem;color:var(--ink)}
.cta-tel small{display:block;color:var(--ink-soft);font-size:.8rem;margin-top:4px}

/* ===== PAGE HERO（下層） ===== */
.page-hero{
  position:relative;padding:158px 0 70px;text-align:center;overflow:hidden;
  background:radial-gradient(120% 120% at 70% 0%,#13463a,var(--bg-deep));
}
.page-hero::before{content:"";position:absolute;width:200px;height:200px;border-radius:50%;background:var(--c-pink);opacity:.14;top:-50px;right:8%}
.page-hero::after{content:"";position:absolute;width:120px;height:120px;border-radius:50%;background:var(--c-yellow);opacity:.16;bottom:-30px;left:10%}
.page-hero-inner{position:relative;z-index:2;max-width:760px;margin:0 auto;padding:0 24px}
.ph-en{font-family:var(--ff-display);font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--c-yellow);margin-bottom:12px}
.page-hero h1{font-size:clamp(1.9rem,5vw,3rem);font-weight:800;color:var(--ink);line-height:1.4;margin-bottom:14px}
.page-hero p{color:var(--ink-soft);font-size:1rem;line-height:1.9}

/* ===== BREADCRUMB ===== */
.breadcrumb{max-width:var(--maxw);margin:0 auto;padding:22px 24px 0}
.breadcrumb ol{display:flex;flex-wrap:wrap;gap:8px;font-size:.78rem;color:var(--ink-soft)}
.breadcrumb li{display:flex;align-items:center;gap:8px}
.breadcrumb li:not(:last-child)::after{content:"›";color:var(--line-strong)}
.breadcrumb a{color:var(--ink-soft)}
.breadcrumb a:hover{color:var(--c-yellow)}
.breadcrumb li[aria-current="page"]{color:var(--ink);font-weight:700}

/* ===== CARD（施設等） ===== */
.card{background:var(--surface);border-radius:var(--r-lg);overflow:hidden;border:2px solid var(--line);transition:transform .3s var(--ease),box-shadow .3s}
.card:hover{transform:translateY(-7px);box-shadow:var(--sh)}
.card-img{aspect-ratio:4/3;background-size:cover;background-position:center}
.card-body{padding:20px 22px 24px}
.card-body h3{font-size:1.05rem;font-weight:800;margin-bottom:8px;color:var(--ink)}
.card-body p{font-size:.86rem;color:var(--ink-soft);line-height:1.85}

/* ===== TIMELINE ===== */
.timeline{max-width:760px;margin:0 auto;position:relative;padding-left:30px}
.timeline::before{content:"";position:absolute;left:6px;top:8px;bottom:8px;width:3px;border-radius:3px;background:var(--line-strong)}
.tl-item{position:relative;padding:0 0 36px 34px}
.tl-item:last-child{padding-bottom:0}
.tl-item::before{content:"";position:absolute;left:-2px;top:4px;width:18px;height:18px;border-radius:50%;background:var(--c-yellow);border:4px solid var(--bg);box-shadow:0 0 0 2px var(--c-yellow)}
.tl-item:nth-child(3n+2)::before{background:var(--c-pink);box-shadow:0 0 0 2px var(--c-pink)}
.tl-item:nth-child(3n+3)::before{background:var(--c-cyan);box-shadow:0 0 0 2px var(--c-cyan)}
.tl-time{font-family:var(--ff-display);font-weight:600;color:var(--c-yellow);font-size:1.05rem;margin-bottom:6px}
.tl-body h3{font-size:1.06rem;font-weight:800;color:var(--ink);margin-bottom:8px}
.tl-body p{font-size:.9rem;color:var(--ink-soft);line-height:1.95}

/* ===== TABLE ===== */
.table-wrap{border-radius:var(--r-lg);overflow:hidden;border:2px solid var(--line);overflow-x:auto}
.info-table{width:100%;border-collapse:collapse;min-width:520px}
.info-table th,.info-table td{text-align:left;padding:18px 22px;font-size:.92rem;border-bottom:1px solid var(--line);vertical-align:top;line-height:1.9}
.info-table tr:last-child th,.info-table tr:last-child td{border-bottom:none}
.info-table th{background:var(--surface);color:var(--c-yellow);font-weight:800;width:230px;white-space:nowrap}
.info-table td{background:var(--bg-2);color:var(--ink-soft)}

/* ===== STEPS ===== */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;counter-reset:step}
.step{background:var(--surface);border-radius:var(--r-lg);padding:34px 24px 28px;position:relative;border:2px solid var(--line);counter-increment:step}
.step::before{content:counter(step);position:absolute;top:-18px;left:24px;font-family:var(--ff-display);font-weight:600;width:46px;height:46px;border-radius:50%;background:var(--c-yellow);color:#23311f;display:flex;align-items:center;justify-content:center;box-shadow:var(--sh-pop)}
.step:nth-child(4n+2)::before{background:var(--c-pink);color:#fff}
.step:nth-child(4n+3)::before{background:var(--c-cyan);color:#0c2a2a}
.step:nth-child(4n)::before{background:var(--c-purple);color:#fff}
.step h3{font-size:1.04rem;font-weight:800;color:var(--ink);margin:8px 0 8px}
.step p{font-size:.86rem;color:var(--ink-soft);line-height:1.9}

/* ===== FAQ ===== */
.faq-list{max-width:840px;margin:0 auto;display:flex;flex-direction:column;gap:14px}
.faq-item{background:var(--surface);border-radius:var(--r-lg);border:2px solid var(--line);overflow:hidden}
.faq-item.open{border-color:var(--c-yellow)}
.faq-q{display:flex;align-items:center;gap:14px;width:100%;text-align:left;padding:22px 24px;font-size:1rem;font-weight:800;color:var(--ink)}
.faq-q .q-mark{font-family:var(--ff-display);font-weight:600;color:#23311f;background:var(--c-yellow);width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.faq-q .q-icon{margin-left:auto;position:relative;width:18px;height:18px;flex:0 0 auto}
.faq-q .q-icon::before,.faq-q .q-icon::after{content:"";position:absolute;top:8px;left:0;width:18px;height:2.5px;border-radius:2px;background:var(--c-yellow);transition:transform .3s}
.faq-q .q-icon::after{transform:rotate(90deg)}
.faq-item.open .q-icon::after{transform:rotate(0)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s var(--ease-soft)}
.faq-a-inner{padding:0 24px 24px 70px;font-size:.92rem;color:var(--ink-soft);line-height:2}

/* ===== EVENTS（年間行事） ===== */
.events-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.event-card{background:var(--surface);border-radius:var(--r-lg);padding:28px 24px;border:2px solid var(--line);border-top:6px solid var(--theme)}
.event-card:nth-child(4n+1){--theme:var(--c-lime)}
.event-card:nth-child(4n+2){--theme:var(--c-cyan)}
.event-card:nth-child(4n+3){--theme:var(--c-orange)}
.event-card:nth-child(4n){--theme:var(--c-blue)}
.event-season{font-family:var(--ff-display);font-weight:600;color:var(--theme);letter-spacing:.08em;margin-bottom:2px}
.event-card h3{font-size:1.3rem;font-weight:800;color:var(--ink);margin-bottom:14px}
.event-card ul{display:flex;flex-direction:column;gap:8px}
.event-card li{font-size:.88rem;color:var(--ink-soft);padding-left:18px;position:relative}
.event-card li::before{content:"";position:absolute;left:0;top:9px;width:8px;height:8px;border-radius:50%;background:var(--theme)}

/* ===== GALLERY MASONRY ===== */
.gallery-masonry{columns:3;column-gap:16px}
.gallery-masonry a{display:block;margin-bottom:16px;border-radius:var(--r-lg);overflow:hidden;border:4px solid var(--surface-2);break-inside:avoid;transition:transform .3s var(--ease)}
.gallery-masonry a:hover{transform:scale(1.03) rotate(-1deg)}
.gallery-masonry img{width:100%;display:block}

/* ===== PAGINATION ===== */
.pagination{display:flex;justify-content:center;align-items:center;gap:10px;margin-top:40px}
.pagination a,.pagination .pg-current{display:flex;align-items:center;justify-content:center;min-width:44px;height:44px;border-radius:50%;font-family:var(--ff-display);font-weight:600;border:2px solid var(--line)}
.pagination a{color:var(--ink-soft)}
.pagination a:hover{border-color:var(--c-yellow);color:var(--c-yellow)}
.pagination .pg-current{background:var(--c-yellow);color:#23311f;border-color:var(--c-yellow)}
.pagination a svg{width:18px;height:18px}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder{aspect-ratio:4/3;border-radius:var(--r-lg);background:var(--surface);border:3px dashed var(--line-strong);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;color:var(--ink-soft);text-align:center;padding:20px}
.map-pin{display:flex;width:56px;height:56px;color:var(--c-pink)}
.map-pin svg{width:56px;height:56px}

/* ===== FORM ===== */
.form{max-width:760px;margin:0 auto;background:var(--surface);border-radius:var(--r-xl);padding:40px;border:2px solid var(--line)}
.form-row{margin-bottom:22px}
.form-row.two{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.form label{display:block;font-weight:800;font-size:.88rem;margin-bottom:8px;color:var(--ink)}
.req{color:var(--c-pink);font-size:.78rem}
.opt{color:var(--ink-soft);font-size:.72rem;font-weight:500}
.form input,.form select,.form textarea{
  width:100%;padding:14px 16px;border-radius:14px;border:2px solid var(--line);
  background:var(--bg-2);color:var(--ink);transition:border-color .25s;
}
.form input::placeholder,.form textarea::placeholder{color:rgba(169,204,192,.5)}
.form input:focus,.form select:focus,.form textarea:focus{outline:none;border-color:var(--c-yellow)}
.form textarea{min-height:140px;resize:vertical}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-note{font-size:.78rem;color:var(--ink-soft);line-height:1.9}
.form-submit{text-align:center;margin-top:28px}
.form-success{display:none;max-width:620px;margin:0 auto;text-align:center;background:var(--surface);border-radius:var(--r-xl);padding:54px 40px;border:2px solid var(--c-green)}
.form-success.show{display:block}
.fs-icon{width:72px;height:72px;margin:0 auto 20px;border-radius:50%;background:var(--c-green);color:#0c2a22;display:flex;align-items:center;justify-content:center}
.fs-icon svg{width:38px;height:38px}
.form-success h3{font-size:1.3rem;font-weight:800;color:var(--ink);margin-bottom:12px}
.form-success p{color:var(--ink-soft);line-height:1.9}

/* ===== LEGAL ===== */
.legal h2{font-size:1.16rem;font-weight:800;color:var(--c-yellow);margin:30px 0 12px}
.legal p{color:var(--ink-soft);line-height:2.05;margin-bottom:10px}
.legal ul{margin:0 0 14px;padding-left:4px}
.legal li{color:var(--ink-soft);line-height:1.9;padding-left:20px;position:relative}
.legal li::before{content:"";position:absolute;left:0;top:11px;width:8px;height:8px;border-radius:50%;background:var(--c-yellow)}

/* ===== FOOTER ===== */
.footer{background:var(--bg-deep);padding:72px 0 30px;border-top:3px solid var(--line)}
.footer-inner{max-width:var(--maxw-wide);margin:0 auto;padding:0 30px;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px}
.footer-brand{display:flex;align-items:center;gap:11px;font-family:var(--ff-display);font-size:1.2rem;font-weight:700;color:var(--ink);margin-bottom:16px}
.footer-desc{font-size:.84rem;color:var(--ink-soft);line-height:2}
.footer-sns{display:flex;gap:12px;margin-top:18px}
.footer-sns a{display:flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;background:var(--surface);color:var(--ink);transition:transform .25s var(--ease),background .25s}
.footer-sns a:hover{transform:translateY(-3px);background:var(--c-yellow);color:#23311f}
.footer-sns svg{width:20px;height:20px}
.footer h4{font-size:.92rem;font-weight:800;color:var(--c-yellow);margin-bottom:14px}
.footer-links{display:flex;flex-direction:column;gap:9px}
.footer-links a{font-size:.85rem;color:var(--ink-soft);transition:color .2s}
.footer-links a:hover{color:var(--c-yellow)}
.footer-copy{max-width:var(--maxw-wide);margin:46px auto 0;padding:24px 30px 0;border-top:1px solid var(--line);text-align:center;font-size:.78rem;color:var(--ink-soft);line-height:1.9}
.footer-copy .credit{font-family:var(--ff-display);letter-spacing:.06em;color:var(--ink-soft)}

/* ===== FLOATING CTA ===== */
.float-cta{position:fixed;right:18px;bottom:18px;z-index:900;display:flex;flex-direction:column;gap:12px;align-items:flex-end;opacity:0;transform:translateY(20px);pointer-events:none;transition:opacity .3s,transform .3s}
.float-cta.show{opacity:1;transform:none;pointer-events:auto}
.float-line{display:inline-flex;align-items:center;gap:9px;background:#06C755;color:#fff;font-weight:800;font-size:.88rem;padding:13px 20px;border-radius:var(--r-pill);box-shadow:0 6px 0 #049a43}
.float-line svg{width:20px;height:20px;flex:0 0 auto}
.float-top{width:48px;height:48px;border-radius:50%;background:var(--c-yellow);color:#23311f;display:flex;align-items:center;justify-content:center;align-self:flex-end;box-shadow:var(--sh-pop)}
.float-top svg{width:22px;height:22px}

/* ===== DEMO NOTE ===== */
.demo-note{position:fixed;left:14px;bottom:14px;z-index:950;max-width:340px;background:var(--surface-2);color:var(--ink);font-size:.76rem;line-height:1.7;padding:14px 16px;border-radius:16px;border:2px solid var(--c-yellow);box-shadow:var(--sh)}
.demo-note button{margin-top:8px;font-size:.74rem;font-weight:800;color:#23311f;background:var(--c-yellow);padding:5px 14px;border-radius:var(--r-pill)}

/* =========================================================================
   RESPONSIVE — タブ 1023↓ / SP 767↓（崩れ防止・全デバイス互換）
   ========================================================================= */
@media (max-width:1023px){
  .header{padding:0 22px}
  .header-nav,.header-cta{display:none}
  .hamburger{display:block}
  .card-grid.cols-4,.features-grid,.steps,.events-grid{grid-template-columns:repeat(2,1fr)}
  .sns-feed{grid-template-columns:repeat(3,1fr)}
  .recruit-inner{grid-template-columns:1fr;gap:30px;padding:34px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:30px}
  .gallery-masonry{columns:2}
}
@media (max-width:767px){
  html{font-size:15px}
  .section{padding:70px 0}
  .hero{min-height:auto;padding:128px 0 110px}
  .split{grid-template-columns:1fr;gap:46px}
  .split.reverse .split-visual{order:0}
  .about-float{right:10px}
  .card-grid.cols-2,.card-grid.cols-3,.card-grid.cols-4,.features-grid,.steps,.events-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:150px}
  .gallery-item.span-2{grid-column:span 2;grid-row:span 1}
  .photo-band{grid-template-columns:1fr;gap:20px}
  .photo-band-item{transform:none!important}
  .sns-feed{grid-template-columns:repeat(3,1fr)}
  .gallery-masonry{columns:1}
  .footer-inner{grid-template-columns:1fr 1fr}
  .form{padding:24px}
  .form-row.two{grid-template-columns:1fr;gap:18px}
  .info-table th{width:38%;white-space:normal}
  .news-item{gap:10px}
  .demo-note{max-width:none;left:10px;right:10px;bottom:10px}
  .page-hero{padding:130px 0 56px}
}
@media (max-width:430px){
  .footer-inner{grid-template-columns:1fr}
}

/* =========================================================================
   ポップ装飾レイヤー（高密度・アンカー踏襲）
   ========================================================================= */
/* 散布マスコット（マークアップ側で top/left/right/bottom/width をインライン指定） */
.deco-mascot{position:absolute;pointer-events:none;z-index:1;animation:floaty 7s var(--ease-soft) infinite alternate;filter:drop-shadow(0 6px 10px rgba(0,0,0,.22))}
.deco-mascot.alt{animation-duration:6s;animation-delay:.6s}
.deco-mascot.alt2{animation-duration:8s;animation-delay:1.1s}
.hero .deco-mascot,.page-hero .deco-mascot,.cta .deco-mascot{z-index:2}
@media (prefers-reduced-motion:reduce){.deco-mascot{animation:none}}
/* 切り抜き子ども（実写・透過PNG） */
.deco-kid{position:absolute;z-index:2;pointer-events:none;filter:drop-shadow(0 12px 16px rgba(0,0,0,.34))}
@media (max-width:767px){.deco-kid.sp-hide{display:none}.deco-kid{filter:drop-shadow(0 6px 10px rgba(0,0,0,.3))}}

/* ===== SIGNATURE: たからもの ポラロイド散乱 ===== */
.treasure{position:relative;padding:96px 0 104px;background:var(--bg-deep);overflow:hidden}
.treasure-head{text-align:center;max-width:680px;margin:0 auto 50px;position:relative;z-index:2}
.treasure-title{font-family:var(--ff-display);font-weight:700;font-size:clamp(2.2rem,6vw,4rem);line-height:1.05;letter-spacing:.01em}
.treasure-title .o{color:var(--c-yellow)}.treasure-title .p{color:var(--c-pink)}.treasure-title .c{color:var(--c-cyan)}.treasure-title .g{color:var(--c-green)}
.treasure-jp{font-size:1.05rem;font-weight:800;color:var(--ink);margin:14px 0 8px}
.treasure-lead{font-size:.92rem;color:var(--ink-soft);line-height:2}
.polaroids{position:relative;z-index:2;max-width:1000px;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:center;gap:20px}
.polaroid{background:#fbf8ef;padding:12px 12px 40px;border-radius:8px;box-shadow:var(--sh);width:230px;position:relative}
.polaroid img{width:100%;height:170px;object-fit:cover;border-radius:4px;display:block}
.polaroid span{position:absolute;left:0;right:0;bottom:12px;text-align:center;font-family:var(--ff-display);font-weight:600;color:#3a4a3f;font-size:.94rem}
.polaroid:nth-child(1){transform:rotate(-5deg)}
.polaroid:nth-child(2){transform:rotate(3deg) translateY(16px)}
.polaroid:nth-child(3){transform:rotate(-2deg) translateY(-8px)}
.polaroid:nth-child(4){transform:rotate(5deg) translateY(10px)}
.polaroid:hover{transform:rotate(0) translateY(-8px);transition:transform .3s var(--ease)}

/* ===== FOOTER キャラ帯（クレヨンの上に並ぶマスコット） ===== */
.footer-band{position:relative;display:flex;justify-content:center;align-items:flex-end;gap:0;height:158px;background:var(--bg-deep);overflow:visible}
.footer-band .crayon{width:46px;height:84px;border-radius:14px 14px 4px 4px;position:relative;margin:0 5px}
.footer-band .crayon::before{content:"";position:absolute;top:-14px;left:50%;transform:translateX(-50%);border-left:14px solid transparent;border-right:14px solid transparent;border-bottom:16px solid currentColor}
.footer-band .crayon:nth-of-type(1){color:var(--c-pink);background:var(--c-pink)}
.footer-band .crayon:nth-of-type(2){color:var(--c-yellow);background:var(--c-yellow)}
.footer-band .crayon:nth-of-type(3){color:var(--c-cyan);background:var(--c-cyan)}
.footer-band .crayon:nth-of-type(4){color:var(--c-green);background:var(--c-green)}
.footer-band .crayon:nth-of-type(5){color:var(--c-blue);background:var(--c-blue)}
.footer-band .crayon:nth-of-type(6){color:var(--c-purple);background:var(--c-purple)}
.footer-band .crayon:nth-of-type(7){color:var(--c-orange);background:var(--c-orange)}
.footer-band .fb-mascot{position:absolute;bottom:64px;width:62px;animation:floaty 6s var(--ease-soft) infinite alternate}
.footer-band .fb-mascot:nth-of-type(2){bottom:70px;animation-delay:.7s}
.footer-band .fb-mascot:nth-of-type(3){bottom:66px;animation-delay:1.2s}
@media (prefers-reduced-motion:reduce){.footer-band .fb-mascot{animation:none}}

/* 装飾のレスポンシブ調整 */
@media (max-width:767px){
  .deco-mascot.sp-hide{display:none}
  .polaroid{width:150px}.polaroid img{height:120px}
  .section::before,.section::after{height:74px;opacity:.4}
  .footer-band .crayon{width:32px;height:60px;margin:0 3px}
  .footer-band .fb-mascot{width:44px}
}
