@charset "UTF-8";



header#header{
    box-sizing:border-box;
    margin: 0 auto;
    max-width:100%;
    height:;
    background-color:#;
    text-align: ;
    padding:; /* 메뉴 위치 */
}
a#title{
    display: none;
    font-size:15px; 
}
div#wrap{
    position: relative;
}

div#slide_bg{
    display: none;
    position: fixed;
    top: 0;
    left: -50%;
    height: 100%;
    width: 50%;
    background-color: rgba(0,0,0,0.5); /* 모바일 배경 */
    z-index: 99;
}

div#slide_menu{ /* 모바일 메뉴 펼쳐짐*/
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    margin-left: +300px;
    height: 100%; 
    padding-top: 60px;
    background-color: #fff; 
    z-index:9998;  
}
#close_btn{ /* 모바일 닫기 버튼 */
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px; cursor:pointer;
}


ul.nav_main, ul.m_nav, ul.m_nav_sub{
    text-align: ;
    list-style: none;
    padding-left: 0;
	
}

ul.nav_main>li{
    display: inline-block;
    font-size: 0;
    margin: -2.9px;
}

.nav_title a{ /* 메인메뉴 */
    display: inline-block; font-size:15px; color:#222;
    padding:8px 0;
    width: 150px;
    transition: 0.3s;
    border-radius:5px;
}
.nav_title a:hover { padding-left:20px; color:#fff;}

.nav_sub a{ /* 서브메뉴 */
    display: inline-block; font-size:16px; color:#222;
    padding: 5px 0;
    width: 150px;
    transition: 0.3s;
    border-radius: ;
}
.nav_sub a:hover { color:#fff; }
 
ul.nav_sub{
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    background-color: #ff6000;
    border-radius: ;
}

ul.m_nav_sub{
    display: none;
}

.m_nav_title a{
    display: inline-block;
    width: 100%;
    padding:10px 20px; font-size:15px; font-weight:500;
}
.m_nav_sub { background-color:#ededed; padding:5px 0; }
.m_nav_sub a{ font-size:13px; padding:4px 20px; font-weight:400; } /* 모바일 2차 서브메뉴 */   
.m_nav_sub a:hover{color:#ed1c24; font-weight: bold;}

/* 모바일 로그인, 회원가입 */
.m_login { margin:10px 0 10px 18px; overflow:hidden;}
.m_login ul li a { float:left; background:#f6f6f6; border:1px solid #CCC; margin-right:5px; padding:3px 5px; font-size:0.9em;}


div#content{
    max-width: ;
    height: ;
    background-color: #;
}

div#burgerbtn{  /*모바일 삼선메뉴*/
    display: none;
    position: absolute;
    top: 45px;
    right: 5%;
    width: 25px;
    height: 25px;
    cursor: pointer; color:#fff;
	
}

@media (min-width:768px) and (max-width:1299px){
	
ul.nav_main{
      display: none;  
    }
    a#title{
        display: none;
    }
   div#burgerbtn{ /* 모바일 삼선메뉴*/
    display: block;
    position: absolute;
    top:30px;
    right: 0;
    width: 25px;
    height: 25px;
    cursor: pointer; color:#fff;
}
    div#slide_menu{
        display: block;
    }
    div#slide_bg{
        display: block; 
    }

}

@media screen and (max-width: 767px){
    ul.nav_main{
      display: none;  
    }
    a#title{
        display: none;
    }
    div#burgerbtn{ /* 모바일 삼선메뉴*/
        display: flex;
        position: absolute;
        top:20px;
        right: 0;
        width: 25px;
        z-index: 9997;
        height: 25px;
        cursor: pointer; color:#fff;
    }
    div#slide_menu{
        display: block;
    }
    div#slide_bg{
        display: block;
    }
    
}