@charset "utf-8";
/* header color change*/
.l-hedaer__cont.js-color a{
    color: #fff;
    transition: .2s;
}
.c-modal__btn-line.js-color,
.c-modal__btn-line.js-color::before,
.c-modal__btn-line.js-color::after{
    background-color: #fff;
    transition: .2s;
}
.l-header{
    position: fixed;
    z-index: 9997;
    width: 100%;
}
.l-hedaer__cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .9rem 0 .5rem;
    height: .9rem;
}
.l-header__cont-logo{
    display: block;
    width: 186px;
}
.l-header__cont-nav > ul{
    display: flex;
    justify-content: flex-end;
    column-gap: .2rem;
}
.c-modal__btn{
    position: fixed;
    z-index: 9999;
    top: .3rem;
    right: .2rem;
    width: 40px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.c-modal__btn-line{
    width: 25px;
    height: 4px;
    border-radius: 9999px;
    background-color: #3e3a39;
    position: relative;
    transition: .2s;
}
.c-modal__btn-line::before,
.c-modal__btn-line::after{
    content: "";
    position: absolute;
    height: 100%;
    border-radius: 9999px;
    background-color: #3e3a39;
    transition: .2s;
}
.c-modal__btn-line::before {
    width: 40px;
    transform: translateY(-8px);
}
.c-modal__btn-line::after {
    width: 16px;
    transform: translateY(8px);
}
.c-modal__btn-line.is-open {
    background-color: transparent;
}
.c-modal__btn-line.is-open::before,
.c-modal__btn-line.is-open::after {
    content: "";
    transition: .2s;
}
.c-modal__btn-line.is-open::before {
    width: 40px;
    transform: rotate(25deg);
    background-color: #3e3a39;
}
.c-modal__btn-line.is-open::after {
    width: 40px;
    transform: rotate(-25deg);
    background-color: #3e3a39;
}
.c-modal__cont{
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
/*     background: #fff url("../img/header/menu_bg.png") repeat-y top right / 20% auto; */
    background: #fff;
    transition: opacity .3s;
    overflow-y: scroll;
}
.c-modal__cont.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s;
}
.c-modal__cont-head{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 .9rem 0 .5rem;
    height: .9rem;
    position: relative;
    z-index: 1;
}
.c-modal__cont-logo{
    display: block;
    width: 186px;
}
.c_modal__cont-body{
    padding: 1rem .9rem 1rem .5rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .2rem;
}
.c_modal__cont-ttl{
    display: flex;
    align-items: flex-end;
    margin-bottom: .6rem;
    column-gap: .2rem;
}
.c_modal__cont-nav{
    margin-left: .5rem;
}
.c_modal__cont-nav > li a::before{
    content: '-';
}
.c_modal__cont-nav > li a{
    display: block;
    margin-bottom: .2rem;
}
@media only screen and (max-width: 1024px) {
    .l-hedaer__cont{
        padding: 0 60px 0 .2rem;
    }
    .l-header__cont-nav{
        display: none;
    }
    .c-modal__btn{
        top: .2rem;
        right: .4rem;
    }
    .c-modal__cont{
        background-size: 40% auto;
    }
    .c-modal__cont-head{
        padding: 0 60px 0 .2rem;
    }
    .c_modal__cont-body{
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
        gap: .6rem;
        padding-bottom: 2rem;
    }
}