/*
---------------------------------------
layout_header
---------------------------------------
*/




.l_header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9990;
    background-color: #fff;
}
.l_header--inner {
    padding: 3.125vw;
}
.l_header--logo {
    width: 80%;
}
.l_header--menu {
    margin-top: 2.5%;
    width: 16%;
    height: 16vw;
    background: url(../../images/navi_btn.png) no-repeat top left 100%;
    background-size: 100%;
    z-index: 10;
}


.l_gnav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #910000;
    color: #fff;
    transition: transform .4s;
    z-index: 10;
    padding-top: 30%;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
    transition: opacity .4s;
}
.active .l_gnav {
    opacity: 1;
    pointer-events: auto;
}
.l_gnav--inner {
    width: 90%;
    padding-bottom: 10%;
    margin: 0 auto;
}
.l_gnav--txt {
    font-size: 5vw;
    margin-bottom: 5%;
}
.l_gnav--list {
    margin-bottom: 5%;
}
.l_gnav--list li {
    padding-bottom: 3%;
    border-bottom: 1px solid #fff;
    margin-bottom: 3%;
}
.l_gnav--sns li {
    margin-right: 10px;
}
