.menu_box{
    width: 350px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #222;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform .5s ease-in-out;
}

.menu_box.show{
    transform: translateX(0);
}

.close_btn{
    width: 100%;
    border-bottom: 1px solid #636363;
    padding: 20px 25px;
    box-sizing: border-box;
}

.close_btn i{
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

ul.fix_main{
    width: 100%;
}

ul.fix_main>li{
    width: 100%;
    border-bottom: 1px solid #636363;
}

ul.fix_main>li p{
    width: 100%;
    padding: 15px 15px 15px 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color .3s;
}

ul.fix_main>li.on p{
    background-color: #0b752f;
}

ul.fix_main>li p span{
    font-size: 14px;
    color: #fff;
}

ul.fix_main>li p i{
    color: #fff;
    font-size: 20px;
    transition: transform .3s;
}

ul.fix_main>li.on p i{
    transform: rotate(180deg);
}

ul.fix_sub{
    width: 100%;
    display: none;
}

ul.fix_sub li{
    width: 100%;
    border-top: 1px solid #636363;
    padding: 10px 30px;
    box-sizing: border-box;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    background-color: #464646;
    transition: background-color .3s;
}

ul.fix_sub li:hover{
    background-color: #636363;
}

span.full_bg2{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

span.full_bg2.on{
    opacity: 1;
    visibility: visible;
}

.top{
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 6%;
    right: 3.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: #0b752f;
    cursor: pointer;
}

.top i{
    font-size: 20px;
    color: #fff;
}



































/* mobile */
@media screen and (max-width: 767px){

    .menu_box{
        width: 300px;
    }

    .close_btn{
        padding: 15px 20px;
    }
    
    .close_btn i{
        font-size: 24px;
        cursor: inherit;
    }
    
    ul.fix_main>li p{
        padding: 10px 15px 10px 20px;
        cursor: inherit;
    }

    ul.fix_main>li p span{
        font-size: 12px;
    }
    
    ul.fix_main>li p i{
        font-size: 16px;
    }
    
    ul.fix_sub li{
        padding: 10px 20px;
        font-size: 13px;
        cursor: inherit;
    }
    
    .top{
        width: 35px;
        height: 35px;
        bottom: 8%;
        right: 3%;
        cursor: inherit;
    }
    
    .top i{
        font-size: 16px;
    }
    

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .menu_box{
        width: 300px;
    }

    .close_btn{
        padding: 15px 20px;
    }
    
    .close_btn i{
        font-size: 24px;
        cursor: inherit;
    }
    
    ul.fix_main>li p{
        padding: 10px 15px 10px 20px;
        cursor: inherit;
    }

    ul.fix_main>li p span{
        font-size: 12px;
    }
    
    ul.fix_main>li p i{
        font-size: 16px;
    }
    
    ul.fix_sub li{
        padding: 10px 20px;
        font-size: 13px;
        cursor: inherit;
    }
    
    .top{
        width: 35px;
        height: 35px;
        bottom: 5%;
        right: 5%;
        cursor: inherit;
    }
    
    .top i{
        font-size: 16px;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px){

    .top{
        bottom: 10%;
        right: 3%;
    }
    
}