@charset "UTF-8";

/* ブレークポイント
SP:～519px
Tab:520px～959px
PC:960px～ */

/* 変数宣言 */
:root {
    --main-color: #FFF5DF;
    --sub-color: #B5C480;
    --text-color: #666666;
    --size-sm: 1.2rem;
    --size-md: 1.6rem;
    --size-lg: 2.6rem;
    --size-xl: 3.2rem;
    --size-2xl: 4.2rem;
    --size-3xl: 6.6rem;
    --font-nplus: "M PLUS Rounded 1c", sans-serif;
    --gutter-base: 8px;
    --side-gutter: calc(var(--gutter-base)*2);
    --contents-gutter: calc(var(--gutter-base)*5);
    --contents-gutter-pc: calc(var(--gutter-base)*10);
    --section-gutter: calc(var(--gutter-base)*10);
    --section-gutter-pc: calc(var(--gutter-base)*20);
    --footer-gutter: calc(var(--gutter-base)*40);
}

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

html {
    font-size: 62.5%;
    overflow-x: hidden;
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    font-family: var(--font-nplus);
    font-size: 1.5rem;
    letter-spacing: .05em;
    color: var(--text-color);
    overflow-x: hidden;
    box-sizing: border-box;
    word-break: keep-all;
    background-color: var(--main-color);
}

a {
    transition: opacity .3s;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border-style: none;
}



@media screen and (max-width: 767px) {

    body {
        font-size: 14px;
    }

    /* 見出し */
    .title {
        font-size: 26px;
        margin-bottom: 20px;
    }



    /* レイアウト */
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

}




/*--------------------------------
レイアウト
---------------------------------*/

.js-scroll-trigger {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}


.js-scroll-trigger.active {
    opacity: 1;
    transform: translateY(0);
}






/*--------------------------------
ヘッダー
---------------------------------*/

.header-logo {
    letter-spacing: .1em;
    position: absolute;
    text-align: center;
    top: 11px;
    left: 50%;
    z-index: 1;
    margin: 0 0 0 -73px;
    width: 130px;
    height: 130px;
    font-size: 100%;
    line-height: 1.5;
}


.header-logo a img {
    padding-bottom: 10px;
    transition: opacity 0.3s ease-in-out;
}


.header-logo a:hover img {
    opacity: 0.7;
}




/* PCでは非表示 */
.header_sp,
.menu {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--main-color);
    box-shadow: 0 5px 10px -6px rgba(0, 0, 0, .1);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 40px;
    font-family: var(--font-nplus);
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}



.gnav {
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
}


.gnav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gnav-left {
    /* 修正: ロゴの左半分とのゆとりを確保 */
    margin-right: 150px;

}

.gnav-right {
    margin-left: 150px;
}

/* 項目間のゆとりを広げる */
.gnav-item:not(:last-child) {
    margin-right: 0px;
}



.gnav-item:not(:last-child) {
    margin-right: 50px;
}


.gnav-item a {
    position: relative;
    font-size: var(--size-md);
    font-weight: normal;
    display: inline-block;
    padding: 5px 0;
    transition: .3s;
    letter-spacing: .1.2em;
    color: var(--text-color);
}

.gnav-item a:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    content: "";
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #333;
}


.gnav-item a:hover:after {
    width: 100%;
}

.gnav-item span.material-symbols-outlined {
    padding-left: 1rem;
    vertical-align: sub;
}


/*右上ナビゲーション*/
.header-contact-nav {
    position: absolute;
    top: 15px;
    right: 40px;
    z-index: 11;
}

.contact-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list .gnav-item {
    margin-left: 5px;
}


.contact-list .btn {
    display: flex;
    align-items: center;
    background-color: var(--sub-color);
    border: 1px solid var(--sub-color);
    border-radius: 50px;
    padding: 5px 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-list .btn span.material-icons {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.contact-list .btn:first-child span.material-icons {
    color: #E62C36;
}


.contact-list .btn a {
    font-size: 1.4rem;
    color: #fff;
    margin-left: 5px;
    white-space: nowrap;
}


/* ホバー効果をli要素に適用 */
.contact-list .btn:hover {
    background-color: #fff;
    border-color: var(--sub-color);
}

/* ホバー時の文字とアイコンの色を変更 */
.contact-list .btn:hover a,
.contact-list .btn:hover span.material-icons {
    color: var(--sub-color);
}

.contact-list .btn a:after,
.contact-list .btn a:hover:after {
    display: none !important;
}


/*--------------------------------
SPヘッダー(ハンバーガー）
---------------------------------*/

/* ＝＝＝＝＝min-width:960px＝＝＝＝＝ */
@media screen and (max-width: 959px) {

    .header {
        display: none;
    }

    .header_sp {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        display: block;
        width: 30px;
        height: 24px;
        cursor: pointer;
    }

    .menu {
        z-index: 998;
    }


    /* ハンバーガーの線 */
    .menu-bar {
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--text-color, #666);
        transition: transform 0.3s, opacity 0.3s;
    }

    .menu-bar1 {
        top: 0;
    }

    .menu-bar2 {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-bar3 {
        bottom: 0;
    }

    /* ハンバーガーアイコンがクリックされた時のX印への変化 */
    .header_sp.active .menu-bar1 {
        transform: translateY(10px) rotate(45deg);
    }

    .header_sp.active .menu-bar2 {
        opacity: 0;
    }

    .header_sp.active .menu-bar3 {
        transform: translateY(-11px) rotate(-45deg);
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 99;

        background-color: var(--main-color);
        padding: 80px 20px 20px;

        /* 初期状態では左に隠す（JavaScriptで .open クラスを付与して表示） */
        transform: translateX(-100%);
        transition: transform 0.5s;

        /* メニュー項目の縦並び配置 */
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    /* メニューが開いた状態 */
    .menu.open {
        transform: translateX(0);
    }

    /* メニュー項目 (HOME, 園についてなど) */
    .menu-con {
        text-align: center;
        margin-bottom: 20px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(181, 196, 128, 0.5);
    }

    .menu-con a {
        display: block;
        font-size: var(--size-md);
        /* 1.6rem */
        font-weight: bold;
        color: var(--text-color);
        text-decoration: none;
        padding: 10px;
    }

    /* PCは非表示にする */
    .gnav {
        display: none;
    }

    .header-contact-nav {
        position: static;
        top: auto;
        right: auto;
        z-index: auto;
        margin-top: auto;
        /* メニューの最後に押しやる */
        padding: 20px 0;
    }

    /* ボタンのリストを調整 */
    .contact-list {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    /* 縦並びにする場合の li のマージン調整 */
    .contact-list .gnav-item {
        margin-left: 0;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
    }

    /* ボタン要素自体 (li) を調整 */
    .contact-list .btn {
        width: 100%;
        justify-content: center;
    }

    .header .container {
        padding: 20px 40px;
    }

    .header-logo {
        position: static;
        margin: 0;
        width: auto;
        height: auto;
    }

}



/*--------------------------------
お問い合わせボタン (Contact Button)
---------------------------------*/
.contact-button a {
    width: 200px;
    background-color: #e96b8e;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
    white-space: nowrap;

    text-align: center;
    justify-content: center;
    margin: 30px auto;
    margin-bottom: 80px;
    display: grid;

    place-content: center;
}

.contact-button a:hover {
    background-color: #e65c71;
}

/* media Queries 767 */
@media screen and (max-width: 767px) {
    .contact-button a {
        padding: 12px 25px;
        font-size: 14px;
    }
}




/*--------------------------------
Footer - PCスタイル
---------------------------------*/
.footer-info-sp {
    display: none;
}


#Footer {
    background-color: var(--main-color);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    padding-bottom: 0;
}

/*  フッター内部コンテナ (ロゴとメニュー) */
.footer-inner.container {
    position: relative;
    z-index: 10;
    padding-bottom: 250px;

    /* ロゴとメニューを横並びにする */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/*  ロゴのスタイル */
.footer-logo {
    display: block;
    margin: 0 0 40px 0;
    width: 150px;
    height: 150px;
    z-index: 20;
    flex-shrink: 0;
}

.footer-logo a img:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

/* 4. ナビゲーションエリア */
.footer-nav-area {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* ナビゲーションリスト全体 */
.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    gap: 30px;
    text-align: left;
}

.footer-nav-list>li {
    padding: 30px 10px;
    line-height: 1.8;
}




/* サブメニュー */
.submenu {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}


.submenu li a {
    display: block;
    padding-left: 20px;
    position: relative;
}

/* 画像を挿入するための疑似要素 */
.submenu li a::before {
    content: '';
    display: block;
    background-image: url('../../img/arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(130%) contrast(80%);
}


/* 5. コピーライトエリア (コンテンツフローの中で配置) */

.caution {
    font-size: 10px;
    color: var(--text-color);
    opacity: 0.7;
    text-align: right;
    margin-top: 30px;
    margin-bottom: 5px;
    z-index: 99;
}

.copyright {
    padding-top: 30px;
    font-size: var(--size-sm);
    color: var(--text-color);
    margin: 0;
    text-align: right;
}

/* 6. 背景のウサギ */
.footer-bottom-img {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
}

.footer-bottom-img img {
    width: 100vw;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    margin-bottom: -300px;
    display: block;
}


/*--------------------------------
Footer - 1200px 〜 960px のうさぎ画像　調整
---------------------------------*/
@media screen and (max-width: 1200px) and (min-width: 960px) {

    /* 6. 背景のウサギの画像自体の調整 */
    .footer-bottom-img img {
        margin-bottom: -200px;
        margin-top: 30px;
    }

    .footer-inner.container {
        padding-bottom: 150px;
    }
}





/*--------------------------------
SPサイズ　フッター
---------------------------------*/

@media screen and (max-width: 959px) {

    .footer-nav-area {
        display: none;
    }

    .footer-info-sp {
        display: block;
        margin: 0 auto 0;
        padding: 0 20px;
        text-align: center;
        margin: 0 auto 350px;
        line-height: 1.6;
        font-size: 14px;
        color: var(--text-color);
        padding: 0 20px;
    }



    #Footer {
        padding: 50px 0 0;
    }

    /* 2. フッター内部コンテナ */
    .footer-inner.container {
        display: block;
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 80px;
    }

    /* 3. ロゴのスタイル  */
    .footer-logo {
        width: 120px;
        height: 120px;
        margin: 0 auto 50px;
    }


    .footer-info-sp p {
        margin: 5px 0;
    }

    .footer-info-sp .name {
        padding-top: 30px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* 5. コピーライトエリア */

    .caution {
        padding-top: 30px;
        text-align: center;
        margin-top: 30px;
    }

    .copyright {
        padding-top: 30px;
        font-size: var(--size-sm);
        margin: 0;
        z-index: 10;
        text-align: center;
    }

    /* 6. 背景のウサギ - 表示位置を調整 */
    .footer-bottom-img {
        position: absolute;
        top: auto;
        left: 0;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .footer-bottom-img img {
        margin-top: 0;
        margin-bottom: 0;
        width: 150vw;
        max-width: none;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}



/*media Queries 500px
----------------------------------------------------*/
@media screen and (max-width: 500px) {
    .footer-inner.container {
        margin-bottom: 50px;
    }

    .footer-bottom-img {
        bottom: 0px;
    }

    .footer-bottom-img img {
        width: 200vw;
    }

    .footer-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

}