@media screen and (max-width: 900px) {
    .gHeader_spMenuIcon{
        background-color: transparent;
        border: none;
        z-index: 100;
        cursor: pointer;
        position: absolute;
        right: 10px;
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 50%;
        z-index: 9999;
    }
    .gHeader_spMenuIcon span{
        pointer-events: none;
        background-color: #000;
        width: 23px;
        height: 2px;
        display: block;
        margin-bottom: 4px;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
        z-index: 100;
        position: relative;
        top: 2px;
    }
    .gHeader_spMenuIcon-active {
        background-color: #fff;
    }
    .gHeader_spMenuIcon-active span {
        background-color: rgb(1 11 113);
    }
    .gHeader_spMenuIcon-active span:nth-child(1) {
        -webkit-transform: translateY(6px) rotate(135deg);
        -ms-transform: translateY(6px) rotate(135deg);
        transform: translateY(6px) rotate(135deg);
    }
    .gHeader_spMenuIcon-active span:nth-child(2) {
        -webkit-transform: translateX(-18px) scaleX(0);
        -ms-transform: translateX(-18px) scaleX(0);
        transform: translateX(-18px) scaleX(0);
    }
    .gHeader_spMenuIcon-active span:nth-child(3) {
        -webkit-transform: translateY(-6px) rotate(-135deg);
        -ms-transform: translateY(-6px) rotate(-135deg);
        transform: translateY(-6px) rotate(-135deg);
    }
    .mobileNav {
        width: 100%;
        margin-right: auto;
        overflow: auto;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
        z-index: 9998;
        height: 100vh;
        padding-bottom: 80px;
        background: linear-gradient(135deg, rgb(5, 37, 184) 0%, rgb(14, 99, 201) 98%);
        font-family: "Zen Kaku Gothic New", sans-serif;
    }
    .logo-white {
        display: none;
        position: relative;
        z-index: 9999;
    }
    .mobileNav-active {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .mobileNav-active ~ .headerLogo .logo-white {
        display: block;
    }
    .mobileNav-active ~ .headerLogo .hidden-pc {
        display: none;
    }
    .mobileNav_links {
        list-style: none;
        padding: 0;
        margin: 100px 39px 0;
    }
    .mobileNav-active .mobileNav_item {
        opacity: 1;
    }
    .mobileNav_acc {
        border-bottom: 1px solid #58c6c1;
        padding-left: 15px;
    }
    .mobileNav_btn {
        position: relative;
    }
    .mobileNav_btn button {
        width: 100%;
        text-align: left;
        color: #fff;
        height: 50px;
        display: flex;
        align-items: center;
    }
    .mobileNav_content {
        height: 0;
        overflow: hidden;
        transition: .4s;
    }
    .mobileNav_content-active {
        height: auto;
        margin-bottom: 20px;
    }
    .mobileNav_list{
        color: #fff;
        line-height: 30px;
        padding-bottom: 5px;
    }
    .mobileNav_list:last-child{
        padding-bottom: 0;
    }
    .mobileNav_item-type02{
        border-bottom: 1px solid #58c6c1;
        padding-left: 15px;
        height: 50px;
        display: flex;
        align-items: center;
        color: #fff;
    }
    .mobileNav_btn::before,.mobileNav_btn::after{
        content: "";
        display: block;
        width: 15px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 50%;
        right: 20px;
        border-radius: 5px;
    }
    .mobileNav_btn::after {
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .mobileNav_acc.open .mobileNav_btn::after {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 0;
    }

}