    :root {
        --pink-light: #FFE4EF;
        --pink-main: #FF8FAB;
        --pink-dark: #E8658A;
        --pink-pale: #FFF0F6;
        --yellow: #FFE066;
        --green: #7BC67E;
        --blue: #7EC8E3;
        --orange: #FFB347;
        --purple: #C9A7FF;
        --text: #555555;
        --text-dark: #333333;
        --radius: 20px;
    }

    * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        font-size: 18px;
        scroll-behavior: smooth;
    }

    :target {
        scroll-margin-top: 80px;
    }


    body {
        font-family: 'Noto Sans JP', sans-serif;
        color: var(--text);
        overflow-x: hidden;
        background: linear-gradient(135deg, #FFDDE9 0%, #FFE9F5 40%, #FFF0DC 100%);
        background-attachment: fixed;
        /* 背景を固定して連続性を強調 */
        line-height: 2;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .hero-title {
        font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    }

    h3 {
        margin: 30px 0;
    }

    .font-mplus {
        font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    }

    .t-right {
        text-align: right;
    }

    .t-center {
        text-align: center;
    }

    .f-center {
        margin: 0 auto;
    }


    /* ====== HEADER ====== */
    header {
        position: sticky;
        top: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 4% 5px 3%;
    }

    .header-top {
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        min-height: auto;
        border-radius: 0;
        padding: 0;
    }

    .header-top .logo-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .header-top .logo-area {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .logo-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex-shrink: 0;
        overflow: hidden;
    }

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

    .logo-text {
        display: flex;
        align-items: center;
        gap: 2px;
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: -0.05em;
    }

    /* 各文字の配色 */
    .lt-c {
        color: #1db16d;
    }

    /* チ */
    .lt-e {
        color: #176eb5;
    }

    /* ェ */
    .lt-l {
        color: #f08e9a;
    }

    /* ル */
    .lt-s {
        color: #f29e37;
    }

    /* シ */
    .lt-b {
        color: #f08e9a;
    }

    /* ー */
    .lt-h {
        color: #176eb5;
    }

    /* 保 */
    .lt-u {
        color: #1db16d;
    }

    /* 育 */

    /* 「園」の配色修正（背景なし、オレンジ文字） */
    .lt-n {
        color: #f29e37;
    }

    .mypage-btn {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        background: #ffffff;
        color: var(--pink-dark);
        border: 2px solid var(--pink-main);
        border-radius: 20px;
        padding: 6px 18px;
        font-size: 0.82rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
    }

    .mypage-btn:hover {
        background: var(--pink-main);
        color: #ffffff;
    }

    /* ====== NAV ====== */
    nav {
        background: transparent;
        /* ナビゲーションも背景を透かす */
        padding: 0;
    }

    .nav-icons {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        padding: 0;
        flex-wrap: nowrap;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        padding: 6px 12px 8px;
        border-radius: 12px;
        transition: background 0.2s, transform 0.15s;
        min-width: 68px;
    }

    .nav-item:hover {
        background: var(--pink-light);
        transform: translateY(-2px);
    }

    .nav-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        position: relative;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .nav-icon-wrap::after {
        content: '';
        position: absolute;
        bottom: -3px;
        right: -3px;
        width: 18px;
        height: 18px;
        background: #f08e9a;
        border-radius: 50%;
        border: 2px solid #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-item span.label {
        font-size: 0.72rem;
        color: var(--text);
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
    }

    /* nav icon colors */
    .ni-home .nav-icon-wrap {
        background: #FFE4EF;
        color: #ff9999;
    }

    .ni-about .nav-icon-wrap {
        background: #E8F5E9;
        color: #3BAD7A;
    }

    .ni-day .nav-icon-wrap {
        background: #FFF8E1;
        color: #ffb347;
    }

    .ni-admission .nav-icon-wrap {
        background: #F3E5F5;
        color: #9067C6;
    }

    .ni-support .nav-icon-wrap {
        background: #ffefdd;
        color: #ff9834;
    }

    .ni-news .nav-icon-wrap {
        background: #d1eee1;
        color: #1db16d;
    }

    /* ハンバーガーボタン (可愛い丸形) */
    .hamburger-btn {
        display: none;
        /* デフォルトは非表示 */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 55px;
        background: var(--pink-main);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        /* 絶対配置にして中央配置に影響させない */
        right: 5px;
        top: 0px;
        z-index: 10000;
    }

    .hamburger-btn:hover {
        transform: scale(1.05);
        background: var(--pink-dark);
    }

    .hamburger-btn .bar {
        width: 22px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        margin: 2px 0;
        transition: all 0.4s ease;
    }

    .hamburger-btn .menu-label {
        font-size: 12px;
        color: #fff;
        margin-top: 2px;
        line-height: 1;
    }

    /* Open状態 */
    .hamburger-btn.open .top {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.open .mid {
        opacity: 0;
    }

    .hamburger-btn.open .bot {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* モバイルナビオーバーレイ */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--pink-pale);
        z-index: 9000;
        display: block;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        padding: 120px 0 60px;
    }

    .mobile-nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav .nav-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }

    .mobile-nav-item {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 20px;
        text-decoration: none;
        background: #fff;
        padding: 18px 25px;
        border-radius: 50px;
        color: var(--text-dark);
        font-weight: 800;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
        font-size: 1.1rem;
    }

    .mobile-nav-item i {
        font-size: 24px;
        color: var(--pink-main);
        width: 40px;
        text-align: center;
    }

    .mobile-nav-item:hover {
        background: var(--pink-light);
        transform: scale(1.02);
    }

    /* ====== HERO ====== */
    .hero {
        position: relative;
        background: transparent;
        /* 背景をBodyのグラデーションに任せる */
        padding: 60px 24px 80px;
        text-align: center;
        overflow-x: clip;
        /* 横方向のはみ出しのみをカット */
        overflow-y: visible;
        /* 上下の重なり（ヘッダー等）は維持 */
    }

    .hero-bubbles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }

    /* 虹の装飾 */
    .decor-rainbow {
        position: absolute;
        width: 110%;
        max-width: none;
        height: auto;
        top: -100px;
        left: -1%;
        opacity: 0.75;
        filter: drop-shadow(0 0 15px rgba(244, 120, 154, 0.4)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
        z-index: 1;
    }

    .decor-rainbow svg {
        overflow: visible;
    }

    .bubble {
        position: absolute;
        opacity: 0.25;
        animation: float 6s ease-in-out infinite;
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(50,50)'%3E%3Cg id='p'%3E%3Cpath d='M0,0 C-15,-20 -25,-40 -12,-50 C-5,-55 0,-42 0,-42 C0,-42 5,-55 12,-50 C25,-40 15,-20 0,0' fill='black'/%3E%3C/g%3E%3Cuse href='%23p' transform='rotate(72)'/%3E%3Cuse href='%23p' transform='rotate(144)'/%3E%3Cuse href='%23p' transform='rotate(216)'/%3E%3Cuse href='%23p' transform='rotate(288)'/%3E%3C/g%3E%3C/svg%3E");
        -webkit-mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(50,50)'%3E%3Cg id='p'%3E%3Cpath d='M0,0 C-15,-20 -25,-40 -12,-50 C-5,-55 0,-42 0,-42 C0,-42 5,-55 12,-50 C25,-40 15,-20 0,0' fill='black'/%3E%3C/g%3E%3Cuse href='%23p' transform='rotate(72)'/%3E%3Cuse href='%23p' transform='rotate(144)'/%3E%3Cuse href='%23p' transform='rotate(216)'/%3E%3Cuse href='%23p' transform='rotate(288)'/%3E%3C/g%3E%3C/svg%3E");
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-18px) rotate(10deg);
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
        gap: 40px;
    }

    .mainimg-left {
        flex: 1;
        text-align: left;
    }

    .mainimg-left img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .mainimg-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #mainimg {
        width: 100%;
        max-width: 450px;
        aspect-ratio: 1 / 1;
        position: relative;
        margin: 0 auto;
        z-index: 10;
    }

    .hero-badge {
        display: inline-block;
        background: var(--pink-main);
        color: #ffffff;
        border-radius: 30px;
        padding: 6px 20px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: 0.1em;
    }

    .hero .hero-title {
        font-size: clamp(1.8rem, 5vw, 3.7rem);
        font-weight: 800;
        color: var(--pink-dark);
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .hero .hero-title em {
        font-style: normal;
        color: var(--orange);
    }

    .hero p {
        font-size: 1rem;
        color: #777;
        line-height: 1.8;
        max-width: 500px;
        margin: 0 0 32px 0;
    }

    /* ============================================================
       桜の枠装飾 (Sakura Frame) & スライダー画像
    ============================================================ */
    .sakura-frame {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 12;
    }

    .sakura,
    .petal,
    .sakura-dot {
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* 花全体 */
    .sakura {
        width: 45px;
        height: 45px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(50,50)'%3E%3Cg id='petal'%3E%3Cpath d='M0,0 C -15,-20 -25,-40 -12,-50 C -5,-55 0,-42 0,-42 C 0,-42 5,-55 12,-50 C 25,-40 15,-20 0,0' fill='%23F4789A'/%3E%3C/g%3E%3Cuse href='%23petal' transform='rotate(72)' /%3E%3Cuse href='%23petal' transform='rotate(144)' /%3E%3Cuse href='%23petal' transform='rotate(216)' /%3E%3Cuse href='%23petal' transform='rotate(288)' /%3E%3Ccircle cx='0' cy='0' r='8' fill='%23fff' opacity='0.7'/%3E%3C/g%3E%3C/svg%3E");
    }

    /* 薄いピンクの花 */
    .sakura.light {
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(50,50)'%3E%3Cg id='petal'%3E%3Cpath d='M0,0 C -15,-20 -25,-40 -12,-50 C -5,-55 0,-42 0,-42 C 0,-42 5,-55 12,-50 C 25,-40 15,-20 0,0' fill='%23fbc2d4'/%3E%3C/g%3E%3Cuse href='%23petal' transform='rotate(72)' /%3E%3Cuse href='%23petal' transform='rotate(144)' /%3E%3Cuse href='%23petal' transform='rotate(216)' /%3E%3Cuse href='%23petal' transform='rotate(288)' /%3E%3Ccircle cx='0' cy='0' r='8' fill='%23fff' opacity='0.9'/%3E%3C/g%3E%3C/svg%3E");
    }

    /* 舞う花びら */
    .petal {
        width: 25px;
        height: 25px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25,50 C 10,30 0,10 13,0 C 20,-5 25,8 25,8 C 25,8 30,-5 37,0 C 50,10 40,30 25,50' fill='%23F4789A'/%3E%3C/svg%3E");
    }

    /* 装飾の丸(ドット) */
    .sakura-dot {
        border-radius: 50%;
        background-color: var(--pink-main);
        /* 原本はvar(--color-primary)ですがpink-mainに変更 */
    }

    /* 配置と個別の設定 (花束のように密集させる) */

    /* --- 右上グループ --- */
    .s2 {
        top: 40px;
        right: 40px;
        width: 100px;
        height: 100px;
        transform: rotate(-20deg);
        animation-delay: 0.5s;
        z-index: 5;
    }

    .s4 {
        top: 30px;
        right: -25px;
        width: 45px;
        height: 45px;
        transform: rotate(80deg);
        animation-delay: 2.1s;
        z-index: 4;
    }

    .s6 {
        top: -25px;
        right: 50px;
        width: 40px;
        height: 40px;
        transform: rotate(110deg);
        animation-delay: 1.5s;
        z-index: 4;
    }

    .p2 {
        top: 40px;
        right: 20px;
        transform: rotate(45deg);
        animation-delay: 1.7s;
    }

    .p4 {
        top: 10px;
        right: 80px;
        transform: rotate(-20deg);
        animation-delay: 2.4s;
    }

    /* --- 左下グループ --- */
    .s1 {
        bottom: -15px;
        left: 80px;
        width: 55px;
        height: 55px;
        transform: rotate(15deg);
        animation-delay: 0.0s;
        z-index: 5;
    }

    .s3 {
        bottom: 30px;
        left: -25px;
        width: 60px;
        height: 60px;
        transform: rotate(45deg);
        animation-delay: 1.2s;
        z-index: 4;
    }

    .s5 {
        bottom: 40px;
        left: 50px;
        width: 100px;
        height: 100px;
        transform: rotate(-45deg);
        animation-delay: 0.8s;
        z-index: 4;
    }

    .p1 {
        bottom: 100px;
        left: 20px;
        transform: rotate(30deg);
        animation-delay: 0.2s;
    }

    .p3 {
        bottom: -10px;
        left: 80px;
        transform: rotate(80deg);
        animation-delay: 0.9s;
    }

    .p5 {
        bottom: 10px;
        left: 30px;
        transform: rotate(120deg);
        animation-delay: 1.1s;
    }

    .d5 {
        bottom: -10px;
        left: 40px;
        width: 16px;
        height: 16px;
        opacity: 0.7;
    }

    /* 追加の桜 */
    .s7 {
        top: 25%;
        right: -10px;
        width: 35px;
        height: 35px;
        transform: rotate(25deg);
        z-index: 5;
    }

    .s8 {
        bottom: 30px;
        right: 280px;
        width: 30px;
        height: 30px;
        transform: rotate(-15deg);
        z-index: 5;
    }

    .s9 {
        top: -10px;
        right: 15px;
        width: 30px;
        height: 30px;
        transform: rotate(40deg);
        z-index: 5;
    }

    .s10 {
        top: 20%;
        left: 50px;
        width: 40px;
        height: 40px;
        transform: rotate(-20deg);
        z-index: 5;
    }

    .s11 {
        bottom: 20px;
        left: 180px;
        width: 45px;
        height: 45px;
        transform: rotate(15deg);
        z-index: 15;
    }

    .s12 {
        bottom: 80px;
        right: 80px;
        width: 40px;
        height: 40px;
        transform: rotate(-30deg);
        z-index: 15;
    }

    .s13 {
        bottom: 40px;
        right: 120px;
        width: 30px;
        height: 30px;
        transform: rotate(10deg);
        z-index: 15;
    }

    /* スライド画像と背景装飾の共通設定 */
    .slide1,
    .slide2,
    .slide3 {
        width: 100%;
        height: auto;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    /* スライド写真への追加設定 */
    .slide1,
    .slide2,
    .slide3 {
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(0.9);
        z-index: 2;
        border-radius: 20px;
        overflow: hidden;
    }

    .slide1 {
        animation: slide1 15s linear infinite, mask 15s linear infinite, opa1 1s linear;
    }

    .slide2 {
        animation: slide2 15s linear infinite, mask 15s linear infinite;
    }

    .slide3 {
        animation: slide3 15s linear infinite, mask 15s linear infinite;
    }

    /* キーフレーム設定 */
    @keyframes mask {

        0%,
        100% {
            border-radius: 64% 36% 54% 46% / 49% 41% 59% 51%;
        }

        50% {
            border-radius: 39% 61% 48% 52% / 43% 55% 45% 57%;
        }
    }

    @keyframes opa1 {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes slide1 {
        0% {
            opacity: 1;
        }

        25% {
            opacity: 1;
        }

        35% {
            opacity: 0;
        }

        90% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes slide2 {
        0% {
            opacity: 0;
        }

        25% {
            opacity: 0;
        }

        35% {
            opacity: 1;
        }

        60% {
            opacity: 1;
        }

        70% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes slide3 {
        0% {
            opacity: 0;
        }

        60% {
            opacity: 0;
        }

        70% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    /* ====== GALLERY (Auto-scroll) ====== */
    .section-gallery {
        padding: 60px 0 0;
        overflow: hidden;
    }

    .section-title {
        text-align: center;
        margin: 40px 0;
    }

    .section-title .en {
        font-size: 0.85rem;
        color: var(--pink-main);
        letter-spacing: 0.25em;
        font-weight: 800;
        text-transform: uppercase;
        display: block;
        margin-bottom: 8px;
    }

    /* h1: ページタイトル（一番大きい・メイン装飾） */
    .section-title h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        font-weight: 800;
        color: var(--pink-dark);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding-bottom: 10px;
        position: relative;
    }

    .section-title h1::before,
    .section-title h1::after {
        content: '🌸';
        font-size: 1.4rem;
    }

    .section-title.mt-80 h1::after {
        display: none;
        /* 片方だけの装飾にするなどの調整用（不要なら削除可） */
        content: '🌸';
        display: inline-block;
    }

    /* h2: セクションタイトル（サブタイトル・リボン風や下線など） */
    .section-title h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        font-weight: 800;
        color: var(--text-dark);
        display: inline-block;
        position: relative;
        padding: 0 20px 12px;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--pink-main);
        border-radius: 2px;
    }

    /* h3: 小見出し（吹き出し風やワンポイントマーク） */
    .section-title h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
        font-weight: 800;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

    .section-title h3::before {
        content: '';
        display: inline-block;
        width: 15px;
        height: 40px;
        background: var(--pink-main);
        border-radius: 4px;
    }

    .gallery-track-wrap {
        position: relative;
    }

    .gallery-track {
        display: flex;
        gap: 16px;
        animation: scrollGallery 80s linear infinite;
        width: max-content;
        padding: 8px 0;
    }

    .gallery-track:hover {
        animation-play-state: paused;
    }

    @keyframes scrollGallery {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .gallery-card {
        width: 250px;
        /* サイズアップ */
        height: 180px;
        /* サイズアップ */
        border-radius: 18px;
        overflow: hidden;
        flex-shrink: 0;
        position: relative;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .gallery-card-inner {
        width: 100%;
        height: 100%;
        padding: 8px;
        box-sizing: border-box;
        position: relative;
        display: block;
        overflow: hidden;
    }

    .gallery-card-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

    .gallery-card .cap {
        position: absolute;
        bottom: 12px;
        left: 15px;
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 700;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    /* gallery colors */
    .gc1 {
        background: linear-gradient(135deg, #FFB3C6, #FF6B9D);
    }

    .gc2 {
        background: linear-gradient(135deg, #A8EDEA, #56C596);
    }

    .gc3 {
        background: linear-gradient(135deg, #FFD166, #FF9A3C);
    }

    .gc4 {
        background: linear-gradient(135deg, #C3B1E1, #9B72CF);
    }

    .gc5 {
        background: linear-gradient(135deg, #AEE6FF, #48B0D5);
    }

    .gc6 {
        background: linear-gradient(135deg, #FFE4A0, #FFC857);
    }

    .gc7 {
        background: linear-gradient(135deg, #FFB3D9, #E8658A);
    }

    .gc8 {
        background: linear-gradient(135deg, #B5EAD7, #59C3A4);
    }

    .gc9 {
        background: linear-gradient(135deg, #FFD1E0, #FF85AA);
    }

    .gc10 {
        background: linear-gradient(135deg, #FFE6A7, #FDB833);
    }

    /* ====== PHILOSOPHY ====== */
    .section-philosophy {
        padding: 30px 10px 0;
        margin-bottom: 60px;
    }

    .philosophy-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .philosophy-card {
        background: #ffffff;
        border-radius: 28px;
        padding: 30px 40px 48px;
        box-shadow: 0 8px 40px rgba(255, 143, 171, 0.12);
        position: relative;
        overflow: hidden;
    }

    .card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .card-num {
        color: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .card-num-1 {
        background: linear-gradient(135deg, #FFB3C8, #FF6B9D);
    }

    .card-num-2 {
        background: linear-gradient(135deg, #A8EDEA, #56C596);
    }

    .card-num-3 {
        background: linear-gradient(135deg, #FFD166, #FF9A3C);
    }

    .card-title {
        font-size: 1.5rem;
        font-weight: 800;
    }

    .card-title-1 {
        color: #E8658A;
    }

    .card-title-2 {
        color: #3BAD7A;
    }

    .card-title-3 {
        color: #E87D20;
    }

    .philosophy-card::before {
        content: '🌸';
        position: absolute;
        top: -10px;
        right: 20px;
        font-size: 5rem;
        opacity: 0.07;
    }

    .philosophy-pillars {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .pillar {
        background: var(--pink-pale);
        border-radius: 16px;
        padding: 20px 14px;
        text-align: center;
    }

    .pillar .icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .pillar h4 {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--pink-dark);
        margin-bottom: 6px;
    }

    .pillar p {
        color: #888;
        line-height: 1.6;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .philosophy-text-p {
        line-height: 2.1;
        color: #666;
        border-left: 4px solid #A8EDEA;
        padding-left: 16px;
        margin-bottom: 14px;
    }

    .philosophy-text-p:last-child {
        margin-bottom: 0;
    }

    .color-2 {
        color: #3BAD7A;
    }

    .target-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 14px;
    }

    .target-item {
        background: #FFF8EC;
        border-radius: 14px;
        padding: 18px 14px;
        text-align: center;
    }

    .target-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .target-text {
        color: #E87D20;
    }

    /* ====== ENNITUITE (About Section) ====== */
    .ennituite {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1000px;
        margin: 40px auto 0;
        padding: 0 24px;
    }

    .ennituite-left {
        flex: 0 0 320px;
    }

    .ennituite-left img {
        width: 320px;
        height: 320px;
        object-fit: cover;
        border-radius: 50%;
        border: 10px solid #f4789a;
        box-shadow: 0 10px 30px rgba(255, 143, 171, 0.2);
    }

    .ennituite-right {
        flex: 1;
        color: #666;
    }

    /* ====== LOGO STORY ====== */
    .section-logo {
        padding: 72px 24px 0;
    }

    .logo-story {
        max-width: 800px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 40px;
        align-items: center;
    }

    .logo-visual {
        width: 190px;
        height: 190px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        animation: float 4s ease-in-out infinite;
        margin: 0 auto;
    }

    .logo-visual img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 8px 32px rgba(255, 143, 171, 0.3));
    }

    .logo-story-text h3 {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--pink-dark);
        margin-bottom: 16px;
    }

    .logo-story-text p {
        font-size: 0.85rem;
        line-height: 1.8;
        color: #777;
    }

    .logo-detail-wrap {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 4px;
    }

    .logo-detail-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .logo-detail-icon {
        min-width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .bg-pink-grad {
        background: linear-gradient(135deg, #FFD6E7, #FFB3C8);
    }

    .bg-cyan-grad {
        background: linear-gradient(135deg, #A8EDEA, #56C596);
    }

    .bg-green-grad {
        background: linear-gradient(135deg, #B5EAD7, #59C3A4);
    }

    .logo-detail-title {
        font-weight: 800;
        color: #E8658A;
        margin-bottom: 4px;
    }

    .footer-logo-sm .logo-icon {
        width: 50px;
        height: 50px;
    }

    .footer-logo-sm .logo-text {
        font-size: 1.5rem;
    }

    .logo-story-text .accent {
        color: var(--pink-main);
        font-weight: 700;
    }

    /* ====== SUPPORT ====== */
    .section-support {
        padding: 72px 24px;
        background: #ffe6f2;
    }

    .support-grid {
        max-width: 750px;
        margin: 0 auto;
    }

    .btn-fill {
        display: inline-block;
        background: var(--pink-main);
        color: #ffffff;
        border-radius: 50px;
        padding: 20px 40px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(255, 143, 171, 0.35);
        margin: 10px 0 50px;
    }

    .btn-fill:hover {
        background: var(--pink-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 143, 171, 0.4);
    }

    /* ====== JOBS ====== */
    .section-jobs {
        padding: 60px 5px;
        background: #ffe6f2;
        /* または元の色 */
    }

    .jobs-inner {
        max-width: 800px;
        margin: 0 auto;
        background-color: #fffafa;
        background-image: radial-gradient(#ffcad4 2px, transparent 2px);
        background-size: 24px 24px;
        border-radius: 30px;
        padding: 40px 40px 0;
        border: 10px solid #f17897;
        position: relative;
    }

    .jobs-inner::before {
        content: "";
        position: absolute;
        top: -83px;
        right: -40px;
        width: 100%;
        height: 100%;
        background: url('../images/staff-right.png') no-repeat right top;
        background-size: 400px auto;
        z-index: 1;
    }

    .jobs-text {
        position: relative;
        z-index: 2;
    }

    .jobs-text h2 {
        font-size: 1.7rem;
        font-weight: 800;
        color: #f17897;
        margin-bottom: 16px;
        text-align: center;
    }

    .jobs-text .btn-fill {
        background: linear-gradient(90deg, #FFB347, #FF8C42);
        margin: 20px auto;
        display: block;
        width: 250px;
    }

    /* ====== INFORMATION ======= */
    .section-info {
        padding: 72px 24px 0;
    }

    .section-info {
        padding: 72px 24px 0;
    }

    .facility-overview-list dl {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 15px 30px;
        line-height: 1.8;
        color: #555;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .facility-overview-list dt {
        font-weight: 800;
        color: var(--pink-dark);
        position: relative;
        padding-left: 15px;
    }

    .facility-overview-list dt::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.5em;
        width: 6px;
        height: 6px;
        background: var(--pink-main);
        border-radius: 50%;
    }

    .facility-overview-list dd {
        margin: 0;
        font-weight: 500;
    }

    .info-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .info-row {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background: var(--pink-pale);
        padding: 24px;
        border-radius: 16px;
        border: 2px dashed #FFD6E7;
    }

    .info-label {
        font-weight: 800;
        color: #fff;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.9rem;
        flex-shrink: 0;
        width: 140px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .info-row:nth-child(1) .info-label {
        background: linear-gradient(135deg, #FFB3C8, #FF6B9D);
    }

    .info-row:nth-child(2) .info-label {
        background: linear-gradient(135deg, #FFD166, #FF9A3C);
    }

    .info-row:nth-child(3) .info-label {
        background: linear-gradient(135deg, #A8EDEA, #56C596);
    }

    .info-row:nth-child(4) .info-label {
        background: linear-gradient(135deg, #C3B1E1, #9B72CF);
    }

    .info-row:nth-child(5) .info-label {
        background: linear-gradient(135deg, #FF99A8, #E8658A);
    }

    .info-desc {
        color: #555;
        line-height: 1.8;
        padding-top: 4px;
    }

    .info-desc strong {
        color: var(--pink-dark);
        display: block;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .info-desc .note {
        font-size: 0.85rem;
        color: #888;
        display: inline-block;
    }

    /* ====== ANNUAL EVENTS (event.php) ====== */
    .event-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 10px;
    }

    .event-card {
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        position: relative;
        transition: transform 0.2s ease;
    }

    .event-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .event-month {
        display: inline-block;
        font-size: 1.1rem;
        padding: 4px 20px;
        border-radius: 30px;
        color: #fff;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* 季節ごとのカラーバリエーション */
    .season-spring {
        background: #fce4ec;
    }

    .season-spring .event-month {
        background: linear-gradient(135deg, #FFB3C8, #FF6B9D);
    }

    .season-summer {
        background: #dcedc8;
    }

    .season-summer .event-month {
        background: linear-gradient(135deg, #c0dc75, #70b14c);
    }

    .season-autumn {
        background: #fff59d;
    }

    .season-autumn .event-month {
        background: linear-gradient(135deg, #FFD166, #FF9A3C);
    }

    .season-winter {
        background: #e1bee7;
    }

    .season-winter .event-month {
        background: linear-gradient(135deg, #C3B1E1, #9B72CF);
    }

    .event-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 8px;
    }

    .event-list li {
        font-size: 0.95rem;
        color: #555;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .event-list li i {
        width: 28px;
        text-align: center;
        opacity: 0.9;
        font-size: 1.4rem;
        margin-right: 4px;
    }

    /* 各季節ごとのアイコン色設定 */
    .season-spring .event-list li i {
        color: #E8658A;
        /* 春：少し濃いめのピンク */
    }

    .season-summer .event-list li i {
        color: #3BAD7A;
        /* 夏：濃いめのグリーン */
    }

    .season-autumn .event-list li i {
        color: #E87D20;
        /* 秋：濃いめのオレンジ */
    }

    .season-winter .event-list li i {
        color: #9B72CF;
        /* 冬：濃いめのパープル */
    }

    .event-list li small {
        font-size: 0.75rem;
        font-weight: normal;
        color: #888;
        margin-left: auto;
    }

    /* ====== DAILY SCHEDULE ====== */
    .daily-schedule-wrap {
        margin-top: 10px;
    }

    .daily-header-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .daily-group-title {
        width: calc(50% - 70px);
        text-align: center;
        background: #fff;
        border: 4px solid;
        padding: 12px;
        border-radius: 40px;
        font-weight: 800;
        font-size: 1.25rem;
        color: #333;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .daily-group-title.elder {
        border-color: #FFB3D9;
    }

    .daily-group-title.younger {
        border-color: #A8EDEA;
    }

    .daily-list-inner {
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        padding: 30px 40px 10px;
        border: 4px solid #FFF0F5;
    }

    .daily-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 0px dashed #fce4ec;
        padding: 24px 0;
    }

    .daily-row.border-light {
        padding: 16px 0;
    }

    .daily-row.border-none {
        border-bottom: none;
    }

    .daily-time {
        width: 140px;
        text-align: center;
        font-size: 2.2rem;
        font-family: 'M PLUS Rounded 1c', sans-serif;
        font-weight: 800;
        color: #ff8fab;
        letter-spacing: 2px;
        line-height: 1;
        margin-top: 0px;
        /* 文字のベースラインの違いを補正するマイナスマージン */
    }

    .daily-content {
        width: calc(50% - 70px);
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .daily-content:empty {
        display: block;
    }

    .daily-content.elder {
        padding-right: 15px;
    }

    .daily-content.younger {
        padding-left: 15px;
    }

    .daily-text {
        line-height: 1.6;
        font-weight: 700;
        font-size: 1.05rem;
        color: #444;
        padding-top: 0;
    }

    .daily-content.elder .daily-text {
        text-align: right;
    }

    .daily-badge {
        display: none;
    }

    .daily-icon {
        font-size: 2.5rem;
        width: 60px;
        text-align: center;
        opacity: 0.9;
    }

    /* ====== CHILDCARE SUPPORT ====== */
    .support-pink-theme .support-h4 {
        font-size: 1.2rem;
        color: #D54F7A;
        border-bottom: 2px solid #FFB3D9;
        padding-bottom: 5px;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .support-p {
        line-height: 1.8;
        font-size: 1rem;
        color: #444;
        margin-bottom: 20px;
    }

    .support-intro-box {
        background: #F2FCFC;
        border: 2px dashed #A8EDEA;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 30px;
        text-align: center;
    }

    .support-intro-box .support-p {
        margin-bottom: 0;
        color: #2F8A61;
    }

    .support-box {
        background: #FFF5F8;
        border: 2px solid #FFB3D9;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .support-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .support-list li {
        margin-bottom: 10px;
        font-weight: bold;
        color: #333;
        line-height: 1.5;
    }

    .support-list li:last-child {
        margin-bottom: 0;
    }

    .support-notes {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .support-notes li {
        position: relative;
        padding-left: 1.5em;
        margin-bottom: 10px;
        line-height: 1.6;
        color: #555;
    }

    .support-notes li::before {
        content: '・';
        position: absolute;
        left: 0;
        color: #E8658A;
        font-weight: bold;
    }

    .note {
        font-size: 0.85rem;
        color: #888;
        margin-left: 10px;
        font-weight: normal;
    }

    /* Green Theme (1 column table) */
    .support-green-theme .support-1col-table {
        border: 2px solid #A8EDEA;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }

    .support-green-theme .support-1col-row {
        border-bottom: 1px solid #c2f0ee;
        padding: 20px;
        line-height: 1.8;
        color: #444;
    }

    .support-green-theme .support-1col-row:nth-child(even) {
        background: #FAFEFE;
    }

    .support-green-theme .support-1col-row:last-child {
        border-bottom: none;
    }

    .support-green-theme .support-1col-row strong {
        color: #3BAD7A;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 8px;
        border-bottom: 1px dashed #A8EDEA;
        padding-bottom: 5px;
    }

    /* Class Grid */
    .class-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .class-item {
        background: #fff;
        border: 2px solid #eee;
        border-radius: 20px;
        padding: 20px 10px;
        text-align: center;
        transition: transform 0.2s ease;
    }

    .class-item:hover {
        transform: translateY(-5px);
    }

    .class-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
        line-height: 1;
    }

    .class-icon img {
        width: 1em;
        height: 1em;
        vertical-align: middle;
    }


    .class-item h4 {
        font-size: 1rem;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .class-item p {
        font-size: 0.8rem;
        color: #777;
    }

    /* Class Colors */
    .class-sakura {
        border-color: #FFB3C8;
        background: #FFF5F8;
    }

    .class-sakura h4 {
        color: #E8658A;
    }

    .class-himawari {
        border-color: #FFD166;
        background: #FFFBF0;
    }

    .class-himawari h4 {
        color: #E87D20;
    }

    .class-sumire {
        border-color: #C3B1E1;
        background: #FCFAFF;
    }

    .class-sumire h4 {
        color: #9B72CF;
    }

    .class-tanpopo {
        border-color: #FFE4A0;
        background: #FFFDF5;
    }

    .class-tanpopo h4 {
        color: #E6A100;
    }

    .class-tulip {
        border-color: #FFB3D9;
        background: #FFF6FA;
    }

    .class-tulip h4 {
        color: #D54F7A;
    }

    .class-total {
        text-align: center;
        margin: 20px 0 10px;
    }

    .class-total .badge {
        color: var(--pink-main);
        font-weight: 800;
        font-size: 1.3rem;
        letter-spacing: 0.1em;
    }

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


    .job-benefits {
        background: rgba(255, 255, 255, 0.6);
        border-radius: 15px;
        padding: 15px 20px;
        margin: 20px 0;
        border: 1px dashed var(--pink-main);
    }

    .benefit-label {
        display: inline-block;
        background: var(--pink-main);
        color: #fff;
        font-size: 0.9rem;
        font-weight: 800;
        padding: 2px 12px;
        border-radius: 20px;
        margin-bottom: 8px;
        margin-right: 5px;
    }

    .benefit-list {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
        color: #666 !important;
    }

    .jobs-text .btn-fill:hover {
        background: linear-gradient(90deg, #FF9800, #FF6D2E);
    }

    /* ====== FOOTER (Puroland Style) ====== */
    .footer-puroland {
        background-color: #fffafa;
        /* 非常に薄いピンク */
        background-image: radial-gradient(#ffcad4 2px, transparent 2px);
        background-size: 24px 24px;
        padding: 60px 0 30px;
        width: 100%;
    }

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        margin-bottom: 40px;
    }

    .footer-info {
        flex: 1;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 16px;
        font-family: var(--font-rounded);
        font-weight: 800;
    }

    .footer-address-area {
        font-size: 0.9rem;
    }

    .footer-tel-area {
        color: var(--text-dark);
        margin-bottom: 24px;
    }

    .btn-footer-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 30px;
        border: 1.5px solid var(--pink-main);
        border-radius: 50px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 700;
        transition: all 0.2s ease;
        background: #fff;
        margin: 10px 0;
    }

    .btn-footer-pill:hover {
        background: var(--pink-main);
        color: #fff;
    }

    .btn-footer-pill:hover svg {
        stroke: #fff;
    }


    .sns-label {
        font-weight: 800;
        color: var(--pink-main);
        font-size: 1.1rem;
        letter-spacing: 0.05em;
        text-transform: lowercase;
        transition: color 0.2s ease;
    }

    .sns-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #E1306C;
        transition: all 0.2s ease;
    }

    .sns-icon svg {
        width: 24px;
        height: 24px;
    }

    .btn-footer-pill:hover .sns-label,
    .btn-footer-pill:hover .sns-icon {
        color: #fff;
    }

    .footer-nav-wrap {
        display: flex;
        gap: 60px;
    }

    .footer-nav-col {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-nav-col a {
        color: var(--text-dark);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
    }

    .footer-nav-col a::before {
        content: '>';
        color: var(--pink-main);
        font-weight: 800;
        font-size: 0.8rem;
        margin-right: 8px;
    }

    .footer-nav-col a:hover {
        color: var(--pink-main);
    }

    /* ボトムリンク (境界線付き) */
    .footer-nav-wrap {
        display: flex;
        gap: 40px;
        flex: 1;
        justify-content: flex-end;
    }

    .footer-map {
        width: 100%;
        max-width: 450px;
        background: #fff;
        padding: 8px;
        border-radius: 20px;
        border: 4px solid var(--pink-light);
        box-shadow: 0 4px 15px rgba(232, 101, 138, 0.1);
        overflow: hidden;
        line-height: 0;
    }

    .footer-map iframe {
        border-radius: 12px;
        display: block;
    }

    .footer-bottom {
        border-top: 1px solid #FCE4EC;
        padding-top: 30px;
        text-align: center;
    }

    .footer-note,
    .footer-copy {
        font-size: 0.75rem;
        color: #777;
        margin-bottom: 8px;
    }

    .footer-copy {
        margin-bottom: 0;
    }

    /* ====== GALLERY MODAL ====== */
    .gallery-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        padding: 20px;
    }

    .gallery-modal.active {
        opacity: 1;
        pointer-events: auto;
    }

    .modal-content {
        max-width: 90%;
        max-height: 85vh;
        border-radius: 12px;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
        transform: scale(0.9);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 4px solid #fff;
    }

    .gallery-modal.active .modal-content {
        transform: scale(1);
    }

    .modal-close {
        position: absolute;
        top: 30px;
        right: 40px;
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        z-index: 10001;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    /* ====== SUPPORT ACCORDION ====== */
    .support-accordion {
        width: 100%;
    }

    .support-summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        list-style: none;
        padding: 10px 20px;
        user-select: none;
        position: relative;
        z-index: 10;
        border: 3px solid #ff8fab;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .support-summary::-webkit-details-marker {
        display: none;
    }

    .support-summary-text {
        font-weight: bold;
        font-size: 1.1rem;
        pointer-events: none;
        color: #333;
    }

    .support-summary h3 {
        margin: 0 !important;
        pointer-events: none;
    }

    .toggle-icon {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .support-accordion[open] .toggle-icon {
        transform: rotate(180deg);
    }

    .support-accordion[open] .info-content {
        animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    /* ====== こども誰でも通園制度 導入レイアウト ====== */
    .daredemo-intro {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 25px;
        align-items: center;
    }

    .daredemo-text-area {
        flex: 1 1 50%;
        min-width: 250px;
    }

    .daredemo-img-area {
        flex: 1 1 40%;
        text-align: center;
        min-width: 200px;
    }

    .daredemo-img-area img {
        width: 100%;
        max-width: 380px;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .daredemo-h4 {
        font-size: 1.25rem;
        color: #3BAD7A;
        margin: 0 0 15px 0;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .daredemo-points {
        display: flex;
        gap: 20px;
    }

    .daredemo-point {
        flex: 1;
        background: #F2FAEE;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        margin-top: 20px;
    }

    .daredemo-point .point-title {
        font-size: 1.1rem;
        color: #3BAD7A;
        margin: 0 0 8px 0;
        font-weight: 700;
        align-items: center;
        display: flex;
        gap: 5px;
    }

    .daredemo-point .point-title::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #FF8FAB;
        font-size: 0.9rem;
    }

    .daredemo-point p {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.6;
        color: #444;
        margin: 0;
    }

    .daredemo-point span.marker-line {
        background: linear-gradient(transparent 60%, rgba(123, 198, 126, 0.5) 60%);
    }


    /* ====== RECRUIT FORM ====== */
    .form-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }

    .form-notice {
        color: var(--pink-dark);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .form-table {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }

    .form-table th,
    .form-table td {
        border: 1px solid #ddd;
        padding: 18px 20px;
        color: #555;
    }

    .form-table th {
        background: #F4F4F4;
        font-weight: 600;
        width: 32%;
        text-align: left;
        vertical-align: middle;
    }

    .form-table td {
        background: #FFFFFF;
        width: 68%;
    }

    .form-table input[type="text"],
    .form-table input[type="tel"],
    .form-table input[type="email"],
    .form-table textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e0e0e0;
        background: #F9F9F9;
        font-family: inherit;
        font-size: 1rem;
        color: #555;
        box-sizing: border-box;
    }

    .form-table input::placeholder,
    .form-table textarea::placeholder {
        color: #aaa;
    }

    .form-table textarea {
        resize: vertical;
    }

    .form-radio {
        margin-right: 20px;
        cursor: pointer;
        display: inline-block;
        margin-bottom: 5px;
        margin-top: 5px;
        color: #555;
    }

    .form-radio input {
        margin-right: 5px;
    }

    .btn-blue {
        display: inline-block;
        background: #2D7AF1;
        color: #fff;
        padding: 12px 50px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        border: none;
        font-size: 1.1rem;
        cursor: pointer;
        transition: 0.3s;
        letter-spacing: 2px;
    }

    .btn-blue:hover {
        background: #1b60cd;
    }


    /* ============================================================
   INLINE STYLE CONVERSION
============================================================ */

    /* Utility Classes */
    .mt-30 {
        margin-top: 30px !important;
    }

    .mt-40 {
        margin-top: 40px !important;
    }

    .mt-50 {
        margin-top: 50px !important;
    }

    .mb-15 {
        margin-bottom: 15px !important;
    }

    .mb-20 {
        margin-bottom: 20px !important;
    }

    .mb-30 {
        margin-bottom: 30px !important;
    }

    .mb-40 {
        margin-bottom: 40px !important;
    }

    .mb-60 {
        margin-bottom: 60px !important;
    }

    .text-grey {
        color: #666 !important;
    }

    .text-pink {
        color: #E8658A !important;
    }

    .text-green {
        color: #3BAD7A !important;
    }

    .flex-center-gap20 {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Complaints Section (contact.php) */
    .complaint-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .complaint-item {
        background: #fdfdfd;
        border: 1px solid #eee;
        border-radius: 16px;
        padding: 24px;
        position: relative;
    }

    .complaint-title {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--pink-dark);
        margin-bottom: 15px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .complaint-title::before {
        content: "\f05a";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--pink-main);
    }

    .complaint-content {
        font-size: 0.95rem;
        line-height: 1.8;
        color: #555;
    }

    .complaint-ol {
        padding-left: 1.2em;
        margin: 0;
    }

    .complaint-image {
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .complaint-image img {
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .mt-80 {
        margin-top: 80px !important;
    }

    /* Hero Bubbles (index.php) */
    .hero-bubble-1 {
        width: 80px;
        height: 80px;
        background: #FFB3C8;
        top: 15%;
        left: 8%;
        animation-delay: 0s;
    }

    .hero-bubble-2 {
        width: 50px;
        height: 50px;
        background: #FF99A8;
        top: 60%;
        left: 5%;
        animation-delay: 1.5s;
    }

    .hero-bubble-3 {
        width: 60px;
        height: 60px;
        background: #FF7EB3;
        top: 20%;
        right: 10%;
        animation-delay: 0.8s;
    }

    .hero-bubble-4 {
        width: 90px;
        height: 90px;
        background: #FFA1C5;
        top: 55%;
        right: 6%;
        animation-delay: 2s;
    }

    .hero-bubble-5 {
        width: 40px;
        height: 40px;
        background: #FFC4D9;
        top: 80%;
        left: 20%;
        animation-delay: 1s;
    }

    .hero-bubble-6 {
        width: 110px;
        height: 110px;
        background: #FFA8C2;
        top: 8%;
        left: 45%;
        animation-delay: 0.5s;
    }

    .hero-bubble-7 {
        width: 35px;
        height: 35px;
        background: #FF85AA;
        top: 75%;
        right: 25%;
        animation-delay: 2.5s;
    }

    .hero-bubble-8 {
        width: 70px;
        height: 70px;
        background: #FFD1E0;
        top: 30%;
        left: 35%;
        animation-delay: 1.8s;
    }

    /* Recruit Pamphlet Area */
    .recruit-pamphlet {
        max-width: 800px;
    }

    .recruit-h4 {
        font-size: 1.3rem;
    }

    /* Recruit Pamphlet Link (recruit.php) */
    .recruit-book-link {
        display: inline-block;
        background: #fff;
        border: 3px solid #FFB3D9;
        border-radius: 15px;
        padding: 20px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        max-width: 500px;
        width: 100%;
        box-sizing: border-box;
    }

    .recruit-book-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .recruit-book-img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 15px;
        display: block;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .recruit-book-title {
        font-size: 1.2rem;
        font-weight: bold;
        color: #333;
        display: block;
    }

    .recruit-book-sub {
        display: block;
        font-size: 0.85rem;
        color: #888;
        margin-top: 5px;
    }

    /* Privacy Content (privacy.php) */
    .privacy-box {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
        text-align: left;
        padding: 20px;
    }

    .privacy-title {
        color: #E8658A;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.2rem;
        border-bottom: 2px solid #FFB3D9;
        padding-bottom: 5px;
    }

    .privacy-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .privacy-list li {
        margin-bottom: 8px;
    }

    .privacy-icon {
        color: #E8658A;
        margin-right: 8px;
    }

    /* Icon Colors */
    .icon-pink {
        color: #E8658A !important;
    }

    .icon-green {
        color: #3BAD7A !important;
    }

    .icon-yellow {
        color: #FFD166 !important;
    }

    .icon-soft-pink {
        color: #FFB3C8 !important;
    }

    .icon-orange {
        color: #E87D20 !important;
    }

    .icon-cyan {
        color: #A8EDEA !important;
    }

    .icon-purple {
        color: #C3B1E1 !important;
    }

    .icon-mint {
        color: #56C596 !important;
    }

    .icon-deep-orange {
        color: #FF9A3C !important;
    }

    .icon-lavender {
        color: #9B72CF !important;
    }

    .icon-grey {
        color: #999 !important;
    }

    /* Event Specific */
    .philosophy-card-event {
        padding: 40px 20px !important;
    }

    .philosophy-text-event {
        margin-bottom: 30px !important;
        border-left: none !important;
        padding-left: 0 !important;
    }

    /* Footer Map */
    .footer-map-frame {
        border: 0;
    }

    .btn-grey {
        background: #ccc !important;
        color: #333 !important;
        border: none !important;
        padding: 12px 30px !important;
    }

    .mt-60 {
        margin-top: 60px !important;
    }

    .mb-50 {
        margin-bottom: 50px !important;
    }

    /* Contact Page Specific */
    .contact-phone-btn {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #ff8fab;
        color: #fff !important;
        text-decoration: none;
        padding: 20px 60px;
        border-radius: 50px;
        transition: all 0.3s;
        box-shadow: 0 4px 16px rgba(255, 143, 171, 0.35);
    }

    .contact-phone-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(232, 101, 138, 0.4);
    }

    .contact-phone-number {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    .contact-phone-time {
        font-size: 0.95rem;
        opacity: 0.9;
    }

    .required-star {
        color: #E8658A;
        font-size: 0.8rem;
        margin-left: 4px;
    }

    .privacy-consent-box {
        margin-top: 30px;
        text-align: center;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
    }

    .privacy-consent-label {
        cursor: pointer;
        font-size: 1rem;
        font-weight: bold;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .privacy-consent-checkbox {
        width: 20px;
        height: 20px;
    }

    .privacy-link {
        color: #0066cc;
        text-decoration: underline;
    }

    .form-note {
        font-size: 0.8rem;
        font-weight: normal;
    }

    .thanks-title {
        font-size: 1.5rem;
    }

    .thanks-text {
        line-height: 1.8;
    }

    .icon-yellow {
        color: #FFD166 !important;
    }

    /* Support Page Specific */
    .support-p-mb20 {
        margin-bottom: 20px;
    }

    .support-intro-title {
        font-size: 1.1rem;
        font-weight: bold;
    }

    .pdf-download-box {
        text-align: center;
        background-color: #FFF5F8;
        border: 4px dotted #FFB3D9;
        padding: 0px 20px;
    }

    .pdf-title-text {
        font-size: 1.5rem;
        color: #333;
    }

    .pdf-icon-large {
        font-size: 3rem;
        color: #E8658A;
        margin-bottom: 15px;
    }

    .pdf-desc-text {
        margin-bottom: 30px;
        font-weight: bold;
        color: #555;
    }

    .pdf-btn-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .pdf-btn-download {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
        padding: 15px 30px;
        letter-spacing: 0.2em;
    }

    /* About Page Specific */
    .icon-pink-heart {
        color: #FF6B9D !important;
    }

    .icon-green-leaf {
        color: #56C596 !important;
    }

    .icon-orange-comment {
        color: #FF9A3C !important;
    }

    .icon-blue-shield {
        color: #48B0D5 !important;
    }

    .icon-green-seedling {
        color: #56C596 !important;
    }

    .icon-yellow-handshake {
        color: #FFB347 !important;
    }

    .icon-pink-praying {
        color: #E8658A !important;
    }

    .icon-purple-reader {
        color: #9B72CF !important;
    }

    .class-note-small {
        font-size: 0.85rem;
        border: none;
        padding: 0;
    }

    /* ============================================================
    SMARTPHONE (SP) STYLES
    ============================================================ */
    @media screen and (max-width: 767px) {
        html {
            font-size: 16px;
        }

        .break:after {
            content: "\A";
            white-space: pre;
        }


        .header-top {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
        }

        header {
            flex-direction: row;
            padding: 10px 15px;
            justify-content: space-between;
        }

        .logo-icon {
            width: 55px;
            height: 55px;
        }

        .logo-text {
            font-size: 1.4rem;
            gap: 1px;
        }

        .hero {
            padding: 40px 20px 60px;
        }

        .hero-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .mainimg-left {
            text-align: center;
        }

        .mainimg-left img {
            width: 100%;
            max-width: 300px;
        }

        .mainimg-right {
            width: 100%;
        }

        #mainimg {
            max-width: 320px;
            margin-top: 10px;
        }

        .s2,
        .s5 {
            width: 50px;
            height: 50px;
        }

        .hero h1 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .decor-rainbow {
            width: 150%;
            left: 50%;
            transform: translateX(-50%);
            top: 100px;
            bottom: auto;
        }

        .ennituite {
            flex-direction: column;
            text-align: left;
            gap: 30px;
        }

        .ennituite-left {
            flex: 0 0 auto;
        }

        .ennituite-left img {
            width: 280px;
            height: 280px;
        }

        .philosophy-pillars {
            grid-template-columns: 1fr;
        }

        .logo-story {
            grid-template-columns: 1fr;
            text-align: left;
        }

        .jobs-inner {
            padding: 40px 40px 20px 40px;
            min-height: 450px;
            margin: 0 10px;
        }

        .jobs-inner::before {
            top: -65px;
            right: -20px;
            background-size: 300px auto;
        }

        .jobs-text {
            max-width: 100%;
        }

        .hamburger-btn {
            display: flex;
            z-index: 10000;
        }

        nav {
            display: none;
            /* スマホ版では標準ナビを隠す */
        }

        .nav-icon-wrap {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .footer-top {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 40px;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-sns {
            justify-content: center;
        }

        .footer-nav-wrap {
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }

        .footer-nav-col {
            align-items: center;
        }

        .modal-close {
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            font-size: 30px;
        }

        /* -------------------------
           INFORMATION (移管)
        ------------------------- */
        .info-row {
            flex-direction: column;
            gap: 12px;
            padding: 16px;
        }

        .info-label {
            width: auto;
            display: inline-block;
        }

        .philosophy-card {
            padding: 30px 20px 40px;
        }

        .philosophy-card-dl {
            padding: 0px 20px 40px;
        }

        .target-grid {
            grid-template-columns: 1fr;
        }

        /* DAILY SCHEDULE (SP) - Reverting to PC-like Left/Right Split */
        .daily-schedule-wrap {
            margin-top: 10px;
        }

        .daily-header-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 0;
        }

        .daily-group-title {
            width: calc(50% - 30px);
            text-align: center;
            background: #fff;
            border: 2px solid;
            padding: 8px 4px;
            border-radius: 20px;
            font-weight: 800;
            font-size: 0.85rem;
            color: #333;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .daily-group-title.elder {
            border-color: #FFB3D9;
        }

        .daily-group-title.younger {
            border-color: #A8EDEA;
        }

        .daily-group-title i {
            display: none;
        }

        .daily-list-inner {
            padding: 10px !important;
            border-width: 2px !important;
            background: #fff !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
            border: 2px solid #FFF0F5 !important;
            border-radius: 20px;
        }

        .daily-row {
            display: flex;
            flex-direction: row;
            /* FORCE ROW */
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 1px dashed #fce4ec;
            background: transparent;
            border-radius: 0;
            padding: 10px 0 !important;
            margin-bottom: 0;
            box-shadow: none;
            border-left: none;
            border-right: none;
            border-top: none;
        }

        .daily-row.border-light {
            padding: 10px 0 !important;
        }

        .daily-row.border-none {
            border-bottom: none;
        }

        .daily-time {
            width: 50px;
            text-align: center;
            font-size: 1.1rem;
            margin: 0;
            padding: 0;
            text-shadow: none;
            letter-spacing: 0px;
            border: none;
            line-height: 1;
            margin-top: -2px;
        }

        .daily-content {
            width: calc(50% - 30px);
            padding: 0 !important;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 0;
        }

        .daily-content:empty {
            display: block !important;
        }

        .daily-content.elder {
            border-bottom: none;
            padding-right: 5px !important;
            padding-bottom: 0 !important;
        }

        .daily-content.younger {
            border-top: none;
            padding-left: 5px !important;
            padding-top: 0 !important;
        }

        .daily-content.elder .daily-text,
        .daily-content.younger .daily-text {
            flex: 1;
            font-size: 0.85rem;
            line-height: 1.4;
            padding-top: 0;
        }

        .daily-content.elder .daily-text {
            text-align: right !important;
        }

        .daily-content.younger .daily-text {
            text-align: left !important;
        }

        .daily-content.elder .daily-icon,
        .daily-content.younger .daily-icon {
            font-size: 1.2rem;
            width: 25px;
            margin: 0;
            padding: 0;
            display: block;
            opacity: 0.9;
        }

        .daily-content.elder .daily-icon {
            order: 0;
            text-align: left;
        }

        .daily-content.younger .daily-icon {
            order: 2;
            text-align: right;
        }

        .daily-badge {
            display: none !important;
        }

        /* CHILDCARE SUPPORT (SP) */
        .support-p,
        .support-list li,
        .support-notes li,
        .support-green-theme .support-1col-row {
            font-size: 0.9rem;
        }

        .note {
            display: block;
            margin-left: 0;
            margin-top: 5px;
        }

        /* CHILDCARE SUPPORT - Daredemo Intro */
        .daredemo-intro {
            flex-direction: column;
            align-items: stretch;
            gap: 30px;
        }

        .daredemo-points {
            flex-direction: column;
            gap: 15px;
        }

        .daredemo-text-area,
        .daredemo-img-area {
            width: 100%;
        }

        .daredemo-img-area img {
            max-width: 100%;
        }

        /* RECRUIT FORM - Form Table */
        .form-table th,
        .form-table td {
            display: block;
            width: 100%;
        }

        .form-table td {
            border-top: none;
        }

        .form-radio {
            display: block;
            margin-bottom: 10px;
        }

        .contact-phone-number {
            font-size: 1rem;
        }

        .btn-fill {
            margin: 10px 0 10px;
        }
    }