<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

ol,
ul {
    list-style: none;
    list-style-type: none;
}

header .gNav-menu li{
    line-height: 1.2;
    display: flex;
    align-items:  center;
    height: 86px;
}
header a {
    text-decoration: none;
    color: #009245;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.1em;
}
header .bg-grade01 a{
    color: #fff;
}
header li.sp{
    display: none;
}

.hamburger {
    margin: 0px auto 0;
    width: 100%;
    /*max-width: 1200px;*/
    display: flex;
    justify-content: space-between;
}

.logo {
    font-size: 40px;
    font-weight: 700;
}

.hamburger .btn-gNav {
    position: fixed;
    top: 32px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #009245;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    z-index: 100;
}

.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
    background: #009245;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #009245;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-gNav {
    display: none;
}

.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 10px;
    line-height: 1.2;
}

@media screen and (max-width: 1179px) {
    .btn-gNav {
        display: block;
    }

    header .gNav-menu li{
        height: auto;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background-color: rgba(255, 255, 255, 1);
        font-size: 16px;
        box-sizing: border-box;
        z-index:2;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
    }

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        border-bottom: #999 1px solid;
    }

    header li.sp{
        display: block;
        text-align: left;
    }

}




</pre></body></html>