@charset "utf-8";

/* ----------------------------------------------------------
menu
---------------------------------------------------------- */

.menu_container {
    background-color: #fff;
    position: fixed;
    width: 100vw;
    height: 100vh;
    padding: 25vh 0;
    display: none;
    z-index: 200;
}

.menu_container .layout {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.menu_container .layout .img {
    max-width: 320px;
}

.menu_container .layout .menu {
    width: 480px;
}

.menu_container .layout .menu li {
    margin-bottom: 30px;
}

.menu_container .layout .menu a {
    font-size: 2.4rem;
    color: #fcbe00;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    background-color: #fff;
    padding: 20px 25px;
    position: fixed;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}

.menu_btn_box {
    position: fixed;
    top: 32px;
    right: 25px;
    z-index: 300 !important;
}

.menu_btn {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 29px;
    margin: 0 auto;
    display: block;
}

.menu_btn span {
    text-align: center;
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 2px;
    background: #000;
    width: 100%;
}

.menu_btn span:nth-of-type(1) {
    top: 0;
    right: 0;
}

.menu_btn span:nth-of-type(2) {
    top: 13px;
    right: 0;
}

.menu_btn span:nth-of-type(3) {
    top: 27px;
    right: 0;
}

.menu_btn.active span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(6px) rotate(-135deg);
    width: 100%;
}

.menu_btn.active span:nth-of-type(2) {
    opacity: 0;
}

.menu_btn.active span:nth-of-type(3) {
    top: 12px;
    left: 0;
    transform: translateY(-6px) rotate(135deg);
    width: 100%;
}


/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    background-color: #64be00;
    padding: 20px 25px;
}

.footer .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_menu {
    display: flex;
    gap: 30px;
    font-size: 1.6rem;
}

.footer .copyright,
.footer_menu a {
    color: #fff;
    font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {

    .menu_container {
        padding: 25vh 0;
    }

    .menu_container .layout {
        display: block;
    }

    .menu_container .layout .img {
        max-width: 250px;
    }

    .menu_container .layout .menu {
        width: 100%;
        margin-top: 40px;
    }

    .menu_container .layout .menu li {
        margin-bottom: 20px;
    }

    .menu_container .layout .menu a {
        font-size: 1.8rem;
    }

    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header {
        padding: 15px 20px;
    }

    .header .logo img {
        width: 42vw;
    }

    .menu_btn {
        width: 28px;
        height: 20px;
    }

    .menu_btn span:nth-of-type(2) {
        top: 9px;
    }

    .menu_btn span:nth-of-type(3) {
        top: 18px;
    }

    .menu_btn_box {
        top: 5.8vw;
        right: 20px;
    }


    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer {
        padding: 30px 0 10px;
    }

    .footer .layout {
        display: block;
    }

    .footer_menu {
        display: flex;
        justify-content: center;
        gap: 30px;
        font-size: 1.4rem;
    }

    .footer .copyright,
    .footer_menu a {
        font-size: 1.4rem;
    }

    .footer .copyright {
        text-align: center;
        margin-top: 20px;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/