@charset "utf-8";
@import url(../font/Pretendard/pretendard.css);

/* PC =========================  */

.ellipsisLine {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsisText {
    white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.clear{
    clear: both;
}

/* layout */
body{
}
#wrap {
}
.box_inner {
    max-width:1280px;
    width: 100%;    
    margin:0 auto;
}

*{ 
    font-family: 'Pretendard';
    margin: 0px;
    padding: 0px;
}

/* 기존 헤더 삭제 */
header {
    width:100%;
    background:#fff;
    z-index: 100;
    border-bottom: 1px solid #ccc;
    position: sticky;    
    top: 0;    
}

header .header_area {
    height: 150px;    
}

header .header_area .mngemt_main{
    position: absolute;
    display: inline-block;    
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    top: 5px;
    left: 80px;
    font-weight: bold;
    background: #333;
    color: #fff;
}

    /*******************************************************
    * 2025.10.22 최기근 추가
    * mobile 버전에서 관리자 메인 버튼 숨김
    */
    @media all and (max-width:800px) {
    	
        header .header_area .mngemt_main{
            display:none;
        }
    }
    /*******************************************************/

header .header_area .openMOgnb {
    position: relative;
    float: right;
    right: 70px;
    display:block;
    padding: 15px 20px;
    margin: 0 50px;
    width: 40px;
    height: 40px;
    display: none;
}
header .header_area .openMOgnb img {
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
header .header_area .openMOgnb span {
    box-sizing:border-box;
    display:block;
    width:30px;
    height:4px;
    margin-bottom:5px;
    border-radius:10px;
    background:#333;
}
header .header_area .ico_mobile{
    display: none;
}

.header_cont .closePop {
    display:none;
}

header div.container {
    position: relative;
    top: 30px;
}

header div.container > div.logo_wrap {
    float: left;
    margin: 0 auto;
    text-align: center;
    position: relative;
    left: 450px;
    z-index: 300px;
}
header div.container .pc_logo{
    display: block;
}
header div.container .mobile_logo{
    display: none;
}
header div.container img.logo {
    width:400px;
    z-index: 300px;
}


.hr_line{
    position: absolute;
    left: 0;
    top: 151px;
    border-bottom: 1px solid #ccc;
    width: 100%;
    z-index: 2000;
}


.header_cont {
    position: absolute;
    width: 100%;
    left: 0;
    top: 110px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    background: #fff;
    z-index: 1000;
}

nav.nav_pc{
    display: block;
}
nav.nav_mobile{
    display: none;
}
.header_cont nav{
    max-width: 1280px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    z-index: 1000;
    margin: 0 auto;
}

.header_cont .gnb {
    max-width: 1280px;
    width: 100%;
}
.header_cont .gnb > li {
    float:left;    
}
.header_cont .gnb > li > a {
    position: relative;
    left: 40px;
    display:block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size:1.1em;
    font-weight: bold;
    color:#333;
    box-sizing:border-box; 
    text-align: center;
}
.header_cont .gnb > li > a:hover {
    border-bottom: 4px solid #0082ec; 
    color: #0082ec;
}

.header_cont .gnb > li > a.sugang{
    display: block;
    background: #20418e;
    border-bottom: 0px;
    color: #fff;
}
.header_cont .gnb > li > a.sugang:hover{
    background: #0082ec;
    color: #fff;
}

.gnb_depth {
    z-index:900;
    display: none;
    background: #fff;
    padding-bottom: 10px;
}

.gnb_depth .submenu_list {
    padding: 0;
    margin: 0;
    position: relative;
    left: 40px;
    z-index:300;
    box-sizing:border-box;
}

.gnb_depth .submenu_list li {

}
.gnb_depth .submenu_list li a {
    display:block;
    font-size: 1em;
    font-weight: normal;    
    padding:15px;
    text-align: center;
}
.gnb_depth .submenu_list li a:hover {
    background: #0082ec;
    color: #fff;
    font-weight: bold;
}
.gnb_depth .submenu_list li:last-child a {
}
.gnb_depth .submenu_list li a.on {
}

/* 모바일 메뉴 새로 구축 */
nav.mobile_side_menu{
	padding: 20px;
	background-color: #1d2b70;
	border-radius: 10px;
	color: #fff;
	position: fixed;
	top: 10px;
	right: 10px;
	width: 300px;
	max-width: 90vw;     /* 모바일 안전장치 */
    height: 100dvh;
	transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
    text-align: center;
    box-sizing: border-box;
    max-height: calc(100dvh - 20px);
    overflow: hidden;
    margin-bottom: 5px;
    
    display: flex;
	flex-direction: column;
}

nav.mobile_side_menu .menu_inner{
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
nav.mobile_side_menu .menu_inner .menu_scroll{
	flex: 1;
    overflow-y: auto;
    padding-right: 5px;
	padding-bottom: 90px;

    -ms-overflow-style: none;
    scrollbar-width: none;	
}

/* Chrome, Safari */
nav.mobile_side_menu .menu_scroll::-webkit-scrollbar{
    display: none;
}

nav.mobile_side_menu.active-menu {
    transform: translateX(0);
}

nav.mobile_side_menu .logo-box{
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	margin-bottom: 20px;
	width: 100%;
	height: 50px;
	align-items: center;
}

nav.mobile_side_menu img{
	width: 60%;
	object-fit: contain;
}

nav.mobile_side_menu .logo-box span{
	font-size: 25px;
}

nav.mobile_side_menu a{
	color: #fff;
}

nav.mobile_side_menu .category{
	
	-webkit-tap-highlight-color: transparent;
	padding: 10px;
	color: #fff;
	cursor: pointer;
	
}

nav.mobile_side_menu .toggle-title{
	display: flex;
	justify-content: space-between;
	margin: 5px;
}

nav.mobile_side_menu .toggle-title span{
	font-weight: bold;
}

nav.mobile_side_menu .category .menu_wrap{
	/* overflow: hidden; */
	text-align: left;
	max-height: 500px;
    padding: 10px;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

nav.mobile_side_menu .category .menu_wrap div{
	margin: 10px;
}

nav.mobile_side_menu .menu_wrap a:active{
	/* border : 1px solid red; */
	color:red;
}

nav.mobile_side_menu .category .menu_wrap div:hover{
	transform: scale(1.01);	
}

nav.mobile_side_menu .menu_wrap a{
	font-size: 18px;
}

nav.mobile_side_menu .side-btn-box {
	position: sticky;
    bottom: 0;
	margin-top: auto;
    background-color: #1d2b70;
    padding-top: 10px;

    display: flex;
    justify-content: center;
    gap: 15px;
}

nav.mobile_side_menu .wh-btn {
	width: 40%;
	height: 40px;
	background-color: #fff;
	color: #00349f;
	font-size: 18px;
	font-weight: bold;
	border-style: none;
	border-radius: 10px;
	cursor: pointer;
}

nav.mobile_side_menu .wh-btn:hover{
	transform: scale(1.02);
}

nav.mobile_side_menu .wh-btn:active{
	transform: scale(1.02);
}

nav.mobile_side_menu hr{
    display: block;
    height: 1px;
    background: #185fa5;
    border: 0;
    margin: 10px 0;
}

nav.mobile_side_menu #clsBtn:hover{
	cursor: pointer;
}

.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4); /* 살짝 어둡게 */
    z-index: 9999;
    display: none;
}

.mobile_side_menu.active-menu + .side-overlay {
    display: block;
}

/* PC/태블릿에서는 오버레이 제거 */
@media (min-width: 801px) {
    .side-overlay {
        display: none !important;
    }
}

/*태블릿*/
@media all and (max-width:1065px) and (min-width:801px){
    
    #wrap {}
    .box_inner {
        width:100%;
    }
    
    header {
        text-align:center;
        z-index:200;
    }
    
/*    메뉴 그림자*/
	header.on {
        position: absolute;
        height: auto;
        width: 100%;
        background:#31353d88;
    }
    
    header .header_area {
        height: 90px;
    }

    /* 추가 작업 */
    header div.container {
        position: relative;
/*        border: 1px solid red;*/
        top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* 상단 로고 */
    header div.container > div.logo_wrap {
        float: none;
        position: relative;
        left: 0;
        top: 0;
        width: 70%;
        box-sizing: border-box;
        margin-right: 0;
    }
    header div.container img.logo {
        max-width:300px;
        width: 100%;
    }
        
    header .header_area .openMOgnb {
        position: relative;
        float: none;
        right:20px;
        display:block;
        padding: 15px 20px;
        margin: 5px 20px 0;
    }
    header .header_area div.ico_mobile {
        display: none;
    }
    
    .header_cont .closePop {
        display:none;
    }
    
    header div.container div.phone_wrap {
        display: none;
    }
    header div.container .phone_image_wrap {
        display: none;
    }
    
    .hr_line{
        display: none;
    }

    .header_cont {
        position: absolute;
        width: 100%;
        left: 0;
        top: 90px;
        border-top: 1px solid #ccc;
        border-bottom: 0px solid #ccc;
        box-sizing: border-box;
        background: #fff;
        z-index: 1000;
    }
    
    nav.nav_pc{
        display: none;
    }
    nav.nav_mobile{
        display: block;
    }
    
    .header_cont nav{
        position: fixed;
        right: 0;
        top: 0;
        width: 70%;
        box-sizing: border-box;
        display: none;
    }
    
    .header_cont nav .logo_title{
        width: 100%;
        box-sizing: border-box;
        background:rgba(14,16,118,1);
        padding-left: 20px;
    }
    .header_cont nav .logo_name{
        height: 60px;
        line-height: 60px;
        
        color: #fff;
        z-index: 1;
        font-size: 1.3em;
        font-weight: bold;
        text-align: left;
        padding-left: 10px;
    }     
    .header_cont .closePop {
        display:block;
        position:absolute;
        right:0;
        top:5px;
    }
	.header_cont .closePop a {
        display:block;
        width:50px;
        height:50px;
        text-indent:-9999px;
        overflow:hidden;
        background:url(../imgs/btn_closeMenu.png) no-repeat;
        background-size:50px;
        z-index: 300;
    }
    
    .header_cont .gnb {
        color: #333;
        margin: 0;
        padding: 0;
    }
    .header_cont .gnb > li {
        float: none;
    }
    .header_cont .gnb > li > a {
        position: relative;
        left: 0;        
        display:block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-size:1.2em;
        font-weight: bold;
        color:#333;
        box-sizing:border-box;        
        border-bottom: 1px solid #ccc;
        
        text-align: left;
        padding-left: 20%;
    }
    .header_cont .gnb > li > a:hover {
        background: #66f;
        color: #fff;
        border: none;
    }    
    .header_cont .gnb > li img{
        text-align: left;
        width: 30px;
        height: 30px;
    }

    .gnb_depth {
        display: none;
        padding-bottom: 0;
    }
    .gnb_depth .submenu_list {
        padding: 0;
        margin: 0;
        position: relative;
        left: 0;
        z-index:300;
        box-sizing:border-box;
    }
    .gnb_depth .submenu_list li a {
        display:block;
        font-size: 1em;
        font-weight: normal;
        height: 50px;
        line-height: 50px;
        font-size:1.2em;
        padding:0 15px;
        text-align: center;
        border-bottom: 1px solid #ccc;
        color: #333;
        background: url('../imgs/ico_bullet.png') no-repeat 22% center;
        text-align: left;
        padding-left: 27%;
    }
    
    /* 메뉴 추가 */
    #mask { 
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: #000;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        filter: alpha(opacity=50);
        zoom: 1;
        opacity: 0.5;
        z-index: 9998;
        display: none;
    }
    .slide_menu { 
        width: 80%;
        height: 100%;
        max-width: 320px;
        position: fixed;
        top: 0; right: 0;
        overflow-y: scroll;
        z-index: 9999;
        display: none;
    }
    
}

/*큰 모바일*/
@media all and (max-width:800px) and (min-width:370px){

    #wrap {}
    .box_inner {
        width:100%;
        height: auto;
    }
    
    header {
        width:100%;
        z-index: 200;
        position: fixed;
        top: 0;        
    } 

	header.on {
        position: absolute;
        height: auto;
        width: 100%;
    }
    
    header .header_area {
        position: absolute;
        height: 80px;
        background:rgba(1,1,1,0.2);   
    }

    header div.container {
        position: relative;
        top: 15px;
        
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    header div.container > div.logo_wrap {
        float: none;
        position: relative;
        left: 0px;
        top: 0px;
        width: 60%;
        box-sizing: border-box;
        margin: 0;
        z-index: 30;
        padding: 0;
        height: 40px;
        
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header div.container .pc_logo{
        display: none;
    }
    header div.container .mobile_logo{        
        display: block;
        margin-left: 5px;
        width: 90%;
        height: auto;
    }
    
    header div.container .mobile_logo_image {        
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    header .header_area .ico_wrap{
        float: none;
        position: relative;
        right: 0px;
        top: 0px;
        width: auto;
        box-sizing: border-box;
        z-index: 30;
        height: 40px;
        display: flex;
        justify-content: flex-end;
        gap: 5px;
    }
    header .header_area .ico_wrap div.ico_pc {
        display: none;
    }
    header .header_area .ico_wrap div.ico_mobile {
 		width: 140px;   	
    	min-width: 120px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }
    header .header_area .ico_wrap div.ico_mobile a{
    	width:40px;
        height:40px;
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    header .header_area .ico_wrap img.ico_tel{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    header .header_area .ico_wrap img.ico_location{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    header .header_area .ico_wrap img.ico_menu{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .header_cont .closePop {
        display:none;
    }
    
    header div.container div.phone_wrap {
        display: none;
    }
    header div.container .phone_image_wrap {
        display: none;
    }
    
    .hr_line{
        display: none;
    }
    
/*    헤더 메뉴 안보이게 해둠*/
    .header_menu{
               
    }
    .header_menu ul{        
        clear: both;
        margin-left: 5px;
    }
    .header_menu ul li{
        float: left;
    }
    .header_menu ul li a{
        display: block;
        border: 1px solid #ccc;
        color: #333;
        border-radius: 5px;
        height: 20px;
        line-height: 20px;
        font-size: 1em;
        font-weight: bold;
        text-align: left;
        margin: 0 5px;
    }
    .header_menu ul li a img{
        width: 20px;
        height: 20px;
        border: 1px solid red;
    }
    

    .header_cont {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0px;
        border-top: none;
        border-bottom: none;
        box-sizing: border-box;
/*        background: #fff6;*/
        z-index: 1000;
    }
    
    nav.nav_pc{
        display: none;
    }
    nav.nav_mobile{
        display: block;
    }
    
    .header_cont nav{
        position: fixed;
        right: 0;
        top: 0;
        width: 70%;        
        box-sizing: border-box;
        display: none;
    }
    
    .header_cont nav .logo_title{
        width: 100%;
        box-sizing: border-box;
        background:rgba(14,16,118,1);
        padding-left: 20px;
    }
    .header_cont nav .logo_name{
        height: 60px;
        line-height: 60px;
        
        color: #fff;
        z-index: 1;
        font-size: 1.2em;
        font-weight: bold;
        text-align: left;
        padding-left: 10px;
    }    
    .header_cont .closePop {
        display:block;
        position:absolute;
        right:0;
        top:5px;
    }
	.header_cont .closePop a {
        display:block;
        width:50px;
        height:50px;
        text-indent:-9999px;
        overflow:hidden;
        background:url(../imgs/btn_closeMenu.png) no-repeat;
        background-size:50px;
        z-index: 300;        
    }
    
    .header_cont .gnb {
        color: #333;
        margin: 0;
        padding: 0;
    }
    .header_cont .gnb > li {
        float: none;
    }
    .header_cont .gnb > li > a {
        position: relative;
        left: 0;        
        display:block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-size:1.2em;
        font-weight: bold;
        color:#333;
        box-sizing:border-box;        
        border-bottom: 1px solid #ccc;
        
        text-align: left;
        padding-left: 20%;
    }
    .header_cont .gnb > li > a:hover {
        background: #66f;
        color: #fff;
        border: none;
    }    
    .header_cont .gnb > li img{
        text-align: left;
        width: 30px;
        height: 30px;
    }

    .gnb_depth {
        display: none;
        padding-bottom: 0;
    }
    .gnb_depth .submenu_list {
        padding: 0;
        margin: 0;
        position: relative;
        left: 0;
        z-index:300;
        box-sizing:border-box;
    }
    .gnb_depth .submenu_list li a {
        display:block;
        font-size: 1em;
        font-weight: normal;
        height: 50px;
        line-height: 50px;
        font-size:1.2em;
        padding:0 15px;
        text-align: center;
        border-bottom: 1px solid #ccc;
        color: #333;
/*        background: url('../imgs/ico_bullet.png') no-repeat 22% center;*/
        text-align: left;
        padding-left: 27%;
    }

    #mask { 
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: #000;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        filter: alpha(opacity=50);
        zoom: 1;
        opacity: 0.5;
        z-index: 9998;
        display: none;
    }
    .slide_menu { 
        width: 80%;
        height: 100%;
        max-width: 320px;
        position: fixed;
        top: 0; right: 0;
        overflow-y: scroll;
        z-index: 9999;
        display: none;
    }
    

	    
}

@media all and (max-width:590px) {
	
	/* 스크롤 후 → 검은 이미지 표시 */
	.header_area.scrolled .logo_black,
	.header_area.scrolled .ico_black {
	    display: inline-block;
	}
	
	.header_area.scrolled .ico_black {
	    height: 30px;
	    line-height: 30px;
	    margin-right: 10px;
	}
	
	header .header_area .ico_wrap .ico_mobile a{
		height: 30px;
		line-height: 30px;
	}
	
	header .header_area .ico_wrap{
		justify-content: flex-end;
	}
	
    header .header_area .ico_wrap img.ico_tel{
        width:30px;
        height:30px;
    }
    header .header_area .ico_wrap img.ico_location{
        width:30px;
        height:30px;
        padding-right: 10px;
    }
    header .header_area .ico_wrap img.ico_menu{
        width:30px;
        height:30px;
        margin: 0;
    }
    
    header .header_area .ico_wrap div.ico_mobile{
    	gap: 0;
    }
	
}

/*작은 모바일*/
@media all and (max-width:370px) {

    #wrap {}
    .box_inner {
        width:100%;
    }
    
    header {
        width:100%;
        z-index: 200;
        position: fixed;
        top: 0;
    } 

	header.on {
        position: absolute;
        height: auto;
        width: 100%;
    }
    
    header .header_area {
        position: absolute;
        height: 80px;
        background:rgba(1,1,1,0.2);
    }


    header div.container {
        position: relative;
        top: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    header div.container > div.logo_wrap {
        float: none;
        position: relative;
        left: 10px;
        top: 0px;
        width: 60%;
        box-sizing: border-box;
        margin: 0;
        
    }
    header div.container .pc_logo{
        display: none;
    }
    header div.container .mobile_logo{        
        display: flex;
        justify-content: center;
        margin-left: 5px;
        width: 90%;
        height: auto;
    }
    header div.container .mobile_logo_image {        
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    header .header_area .ico_wrap{
        float: none;
        position: relative;
        right: 0px;
        top: 0px;
        width: 40%;
        box-sizing: border-box;
        margin: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 5px;
    }
    header .header_area .ico_wrap div.ico_pc {
        display: none;
    }
    header .header_area .ico_wrap div.ico_mobile {
        display: block;
    }
    header .header_area .ico_wrap img.ico_tel{
        width:23px;
        height:23px;
        padding: 3px;
        margin: 0;
    }
    header .header_area .ico_wrap img.ico_location{
        width:23px;
        height:23px;
        padding: 3px;
        margin: 0;
    }
    header .header_area .ico_wrap img.ico_menu{
        width:23px;
        height:23px;
        padding: 3px;
        margin: 0;
        z-index: 100px;
    }
    
    .header_cont .closePop {
        display:none;
    }
    
    header div.container div.phone_wrap {
        display: none;
    }
    header div.container .phone_image_wrap {
        display: none;
    }
    
    .hr_line{
        display: none;
    }
    
    .header_menu ul{        
        clear: both;
        margin-left: 5px;
    }
    .header_menu ul li{
        float: left;
    }
    .header_menu ul li a{
        display: block;
        border: 1px solid #ccc;
        color: #333;
        border-radius: 5px;
        height: 20px;
        line-height: 20px;
        font-size: 1em;
        font-weight: bold;
        text-align: left;
        margin: 0 5px;
    }
    .header_menu ul li a img{
        width: 20px;
        height: 20px;
        border: 1px solid red;
    }
    
    .header_cont {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0px;
        border-top: none;
        border-bottom: none;
        box-sizing: border-box;
        z-index: 1000;
    }
    
    nav.nav_pc{
        display: none;
    }
    nav.nav_mobile{
        display: block;
    }
    
    .header_cont nav{
        position: fixed;
        right: 0;
        top: 0;
        width: 70%;        
        box-sizing: border-box;
        display: none;
    }
    
    .header_cont nav .logo_title{
        width: 100%;
        box-sizing: border-box;
        background:rgba(14,16,118,1);
        padding-left: 20px;
    }
    .header_cont nav .logo_name{
        height: 60px;
        line-height: 60px;
        
        color: #fff;
        z-index: 1;
        font-size: 1.2em;
        font-weight: bold;
        text-align: left;
        padding-left: 10px;
    }    
    .header_cont .closePop {
        display:block;
        position:absolute;
        right:0;
        top:5px;
    }
	.header_cont .closePop a {
        display:block;
        width:50px;
        height:50px;
        text-indent:-9999px;
        overflow:hidden;
        background:url(../imgs/btn_closeMenu.png) no-repeat;
        background-size:50px;
        z-index: 300;        
    }
    
    .header_cont .gnb {
        color: #333;
        margin: 0;
        padding: 0;
    }
    .header_cont .gnb > li {
        float: none;
    }
    .header_cont .gnb > li > a {
        position: relative;
        left: 0;        
        display:block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-size:1.2em;
        font-weight: bold;
        color:#333;
        box-sizing:border-box;        
        border-bottom: 1px solid #ccc;
        
        text-align: left;
        padding-left: 20%;
    }
    .header_cont .gnb > li > a:hover {
        background: #66f;
        color: #fff;
        border: none;
    }    
    .header_cont .gnb > li img{
        text-align: left;
        width: 30px;
        height: 30px;
    }

    .gnb_depth {
        display: none;
        padding-bottom: 0;
    }
    .gnb_depth .submenu_list {
        padding: 0;
        margin: 0;
        position: relative;
        left: 0;
        z-index:300;
        box-sizing:border-box;
    }
    .gnb_depth .submenu_list li a {
        display:block;
        font-size: 1em;
        font-weight: normal;
        height: 50px;
        line-height: 50px;
        font-size:1.2em;
        padding:0 15px;
        text-align: center;
        border-bottom: 1px solid #ccc;
        color: #333;
        text-align: left;
        padding-left: 27%;
    }

    #mask { 
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: #000;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        filter: alpha(opacity=50);
        zoom: 1;
        opacity: 0.5;
        z-index: 9998;
        display: none;
    }
    .slide_menu { 
        width: 80%;
        height: 100%;
        max-width: 320px;
        background: #fff;
        position: fixed;
        top: 0; right: 0;
        overflow-y: scroll;
        z-index: 9999;
        display: none;
    }

} 


@media (max-width:800px){
    /* =================================================
	   MOBILE HEADER SCROLL STATE
	================================================= */
	
	/* 기본 상태: 검은 이미지 숨김 */
	.logo_black,
	.ico_black {
	    display: none;
	}
	
	/* 기본 상태: 흰 이미지 표시 */
	.logo_white,
	.ico_white {
	    display: inline-block;
	    height: 30px;
	    line-height: 30px;
	}
	
	/* 스크롤 후 상태 */
	.header_area.scrolled {
	    background: rgba(255, 255, 255, 0.85) !important;
	}
	
	.box_shadow{
		display: none;
	}
	
	/* 스크롤 후 → 흰 이미지 숨김 */
	.header_area.scrolled .logo_white,
	.header_area.scrolled .ico_white {
	    display: none;
	}
	
	/* 스크롤 후 → 검은 이미지 표시 */
	.header_area.scrolled .logo_black,
	.header_area.scrolled .ico_black {
	    display: inline-block;
	}
	
	.header_area.scrolled .ico_black {
	    height: 30px;
	    line-height: 30px;
	    margin-right: 10px;
	}
}






