@charset "utf-8";

/*-------------------------------------------------------------------------
HEADER PATTERN1
*/

/* common.css の a:hover / button:hover { opacity: .7 } を打ち消し */
.l-header a:hover,
.navg a:hover {
    opacity: 1;
}

.l-header *,
.navg *{
    font-family: 'NotoSansJP', 'Hiragino Kaku Gothic ProN','Meiryo', sans-serif;
}
body{
    padding-top: 100px;
}

/* LAYOUT
--------------------------- */
.l-header{
    position: fixed;
    top     : 0;
    left    : 0;
    z-index : 8;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--main-color);
}
.header__right {
    display: flex;
    gap    : 1px;
    position: relative;
}
.header__right::after{
    content: '';
    display: block;
    width: 1px;
    height: 100px;
    background-color: var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
    .header__btn {
        width: 100px;
        height: 100px;
        background-color: var(--main-color);
        border: 2px solid var(--main-color);
        display        : flex;
        gap            : 12px;
        align-items    : center;
        flex-direction : column;
        justify-content: space-around;
        padding: 15px 0 11px;
        font-size  : 14px;
        font-weight: 700;
        color      : #fff;
        transition: 0.4s;
    }
    .header__btn:hover {
        opacity: 1;
        background-color: #fff;
        color: var(--main-color);
    }
        .header__btn svg {
            width: 36px;
            height: 36px;
            fill: #fff;
            transition: 0.4s;
        }
        .header__btn:hover svg {
            fill: var(--main-color);
        }

/* ナビゲーション
--------------------------- */
.navg {
    position: fixed;
    top     : 180px;
    right   : 0;
    z-index : 7;
}
    .navg__list > * + * {
        margin: 1px 0 0;
    }
        .navg__link {
            width: 94px;
            height: 80px;
            background-color: #333;
            border: 2px solid #333;
            display        : flex;
            align-items    : center;
            flex-direction : column;
            justify-content: space-between;
            padding: 2px 0 4px;
            font-size  : 12px;
            font-weight: 700;
            color      : #fff;
            line-height: 1.23;
            text-align: center;
            transition: 0.4s;
        }
        .navg__link:hover {
            opacity: 1;
            background-color: #fff;
            color: #333;
        }
            .navg__icn {
                flex: 1;
                place-content: center;
            }
                .navg__link svg {
                    width: 37px;
                    height: 34px;
                    fill: #fff;
                    transition: 0.4s;
                }
                .navg__link:hover svg {
                    fill: #333;
                }
                /* 保護者アイコン: 塗りを背景色に合わせ、strokeで線アイコンに見せる */
                .navg__link--human svg {
                    fill: none;
                }
                .navg__link--human svg path {
                    fill: #333;
                    stroke: #fff;
                    stroke-width: 2;
                    transition: 0.4s;
                }
                .navg__link--human:hover svg path {
                    fill: #fff;
                    stroke: #333;
                }

