@charset "UTF-8";
.gnav-inner.inner{
    max-width: 1000px;
    margin: auto;
}
.header-info{
    padding: 15px 0 10px;
}
.header-info.inner{
    max-width: 1000px;
    margin: auto;
}
#gnav{
    background-color: #bb171e;
}
.header-tagline{
    font-size: 0.87rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 0.8em;
}
.gnav-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 0;
}
.gnav-list.inner{
    max-width: 1000px;
    margin: auto;
}
.gnav-list li{
    list-style: none;
}
.gnav-list li a{
    position: relative;
    display: block;
    text-align: center;
    font-size: 0.89rem;
    font-weight: bold;
    line-height: 1.36;
    color: #fff;
    text-decoration: none;
    padding: 1.219em 1em;
}
.gnav-list li a:hover{
    color: #fbff04;
}
.gnav-list li a span{
    display: block;
    font-family: 'Proza Libre';
    font-weight: 500;
    font-size: 10px;
}

/* 900px以下 */
@media (max-width: 900px) {
    #header{
        position: relative;
        padding-top: 0;
    }
    #header .sitename{
        position: relative;
        padding: 7px 0 7px 15px;
    }
    .header-info{
        line-height: 0;
        padding: 0;
    }
    .header-info-lofo{
        display: grid;
        grid-template-columns: 1fr 55px;
        width: 100%;
    }
    .menu-button{
        position: relative;
        transition: all .5s;
        background-color: #bb171e;
        padding: 10px;
        z-index: 9999;
    }
    .menu-button .label{
        width: auto;
        height: auto;
        margin: 0 0 5px;
        color: #f6b256;
        text-align: center;
        line-height: 1;
        font-size: 10px;
        font-family: 'Proza Libre';
        font-weight: 500;
    }
    .menu-button .h_menu{
        position: relative;
        width: 30px;
        height: 20px;
        margin: 0 auto;
    }
    .menu-button span {
        display: block;
        transition: all .5s;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #f6b256;
    }
    .menu-button span:nth-of-type(1) {
        top: 0;
    }
    .menu-button.active span:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }
    .menu-button span:nth-of-type(2) {
        top: 9px;
    }
    .menu-button.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-button span:nth-of-type(3) {
        bottom: 0;
    }
    .menu-button.active span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }
    #gnav{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    .gnav-list.inner{
        width: auto;
        margin-inline: 15px;
    }
    .gnav-list.flex{
        display: flex;
        flex-wrap: wrap;
    }
    .gnav-list li{
        border-bottom: 1px solid #ff3333;
        position: relative;
        width: 100%;
    }
    .gnav-list li a{
        padding: 0.84em 1em;
        font-size: 1.1rem;
        text-align: left;
    }
    .gnav-list li:not(.dropnav) a:before {
        
    }
    .gnav-list li a::before{
        content: "";
        position: absolute;
        top: 1.5em;
        right: 1.4em;
        width: 6px;
        height: 6px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: top center;
        transform-origin: top center;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .gnav-list li a span{
        display: none;
    }
}