
/* MENU BTN z-index */
/* 50 ~ 100 */

.reser-btn{
    position: fixed;
    right: 110px;
    top: 80px;
    z-index: 9000;
    display: flex;
    align-items: center;
}

.reser-btn a{
    display: block;
    width: 50px;
}

.reser-btn a:last-child{
    width: 40px;
}

/* MENU BTN */

#btn-menu{
    position: fixed;
    width: 50px;
    height: 30px;
    z-index: 100;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  
}
#btn-menu .wrapper{
    width: 100%;
    height: 100%;
}
#btn-menu .line{
    position: absolute;
    background-color: #404040;
    width: 100%;
    height: 7px;
    transition: all 0.5s ease;
}
#btn-menu.on .line{
    background-color: #404040;
}
#btn-menu .line.no1{
    top: 0;
}
#btn-menu .line.no2{
    top: 50%;
    transform: translateY(-50%);
}
#btn-menu .line.no3{
    top: 100%;
    transform: translateY(-100%);
}
#btn-menu.trans .line{
    background-color: #404040;
}
.gnb-line.trans{
    background-color: #404040;
}


/* MENU-EVENT */

#btn-menu.on{
    z-index: 300;
}

#btn-menu.on .line.no1{
    transform: rotate(-45deg);
    top: 50%;
}

#btn-menu.on .line.no2{
    display: none;
}

#btn-menu.on .line.no3{
    transform: rotate(45deg);
    top: 50%;
}


/* LOGO */
/* zIndex 101~200 */
#logo{
    position: fixed;
    left: 85px;
    top: 75px;
    z-index: 200;
    width: 70px;
}

/* GNB START */

/* z-index 10~49 */

.gnb-line{
    position: fixed;
    left: 10.4%;
    top: 80px;
    width: 1px;
    height: 80%;
    background-color: #404040;
    z-index: 20;
}

#gnb{
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: #fff;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
}
.menu-logo{
    width: 100px;
    position: absolute;
    left: 85px;
    top: 80px;
}

#gnb.on{
    z-index: 250;
    opacity: 1;
    background: rgba(255, 255, 255, 0.7);
}

#gnb_1dul{
    display: flex;
    width: 68.75%;
    margin: 0 auto;
    padding: 95px 0;
}
.gnb_1dli{
    font-size: 15px;
    padding: 15px;
    color: #404040;
    font-weight: 700;
    padding: 0 25px;
}
.gnb_2dul{
    font-size: 13px;
    font-weight: 400;
    padding-top: 35px;
}
.gnb_2dli{
    line-height: 1.9;
}

.fp-viewing-onemore4 #hd.down #btn.menu .line{
    background-color: #404040;
}

.naver{
    margin-right: 10px;
}



@media screen and (max-width:1366px){
    #btn-menu{
        left: unset;
        right: 70px;
        top: 70px;
        width: 40px;
        height: 20px;
    }
    #btn-menu .line{
        height: 3px;
    }
    .menu-logo{
        display: none;
        position: absolute;
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%);
    }
    .gnb-line{
        display: none;
    }
    #gnb_1dul{
        left: 50%;
    }
    .reser-btn{
        right: 130px;
        top: 45px;
    }
    #logo{
        top: 50px;
        left: 40px;
    }
}

@media screen and (max-width:1024px) {
    #gnb{
        width: 30%;
        right: 0;
    }
    #gnb_1dul{
        width: 100%;
        flex-direction: column;
        overflow: auto;
    }
    .gnb_1dli{
        
        margin-bottom: 20px;
    }
    .gnb_2dul{
        padding-top: 10px;
    }
}



@media(max-width: 560px){
    .menu-logo{
        display: none;
    }
    #btn-menu{
        width: 35px;
        height: 15px;
        top: 30px;
        right: 20px;
    }
    #btn-menu .line{
        height: 2px;
    }
	#logo{
        left: 20px;
        top: 5px;
        width: 40px;
    }
    #gnb{
        width: 60%;
    }
    #gnb_1dul{
        position: unset;
        flex-direction: column;
        transform: unset;
        overflow: auto;
        height: 100%;
        padding: 70px 0;
    }
    .reser-btn{
        right: 65px;
        top: 13px;
        width: 80px;
    }
    .naver{
        margin-right: 5px;
    }
    
}