
#sp-fixed-menu {
   opacity: 0;
}

    #sp-nav {
        display: none;
    }

 @media(max-width:599px){
    #sp-nav {
        display: block;
    }
}
    .openbtn {
        position: fixed;
        top: 4px;
        right: 10px;
        z-index: 9999;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #215099;
        width: 45%;
    }
    .openbtn span:nth-of-type(1) {
        top: 15px;
    }
    .openbtn span:nth-of-type(2) {
        top: 23px;
    }
    .openbtn span:nth-of-type(3) {
        top: 31px;
    }
    .openbtn.active span{
        background-color: #fff;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    #g-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100vh;
        background: rgba(20, 20, 20, 0.7);
        transition: all 0.6s;
    }
    #g-nav.panelactive {
        left: 0;
    }
    #g-nav.panelactive #g-nav-list {
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    #div_container #g-nav-list {
        text-align: start;
    }
    #g-nav-list ul {
        list-style: none;
        margin-top: 75px;
		width:80%;
		margin-left:auto;
		margin-right:auto;
		background:#fff;
		padding:10px;
		border: 1px solid #ccc;
    }
    #g-nav-list ul li{
        margin-bottom: 15px;
		text-indent: 26px;
		background: url() no-repeat 6px;
    }
    #g-nav-list ul li a {
        font-size: 1.0rem;
        color:#222;
		font-weight: bolder;
        text-decoration: none;
    }
    #g-nav-list ul li a:hover{
		color:#5238FF; 
    }


