@charset "utf-8";
/* *******************************************************
 * filename : layout_responsive.css
 * description : 전체 레이아웃 반응형 CSS
 * date : 2019-09-03
******************************************************** */

/* ****************** 공통클래스 ********************** */
@media all and (max-width:1620px){
	.area-box{padding:0 15px;}
}
@media all and (max-width:1220px){
	.area{padding:0 15px;}
}
/* ****************** HEADER ********************** */
@media all and ( max-width: 1366px ){
	/* -------- Header :: Layout -------- */
	#headerInner{padding:0 15px}
	/* -------- Header :: GNB(PC) -------- */
	#gnb > ul{padding-left: 80px;}
	#gnb > ul > li > a{font-size:16px; padding:0 30px}
	#gnb > ul > li .gnb-2dep ul li a{font-size:14px;}
}
@media all and ( max-width: 1220px ){
	#header{position: relative;}
	#header,#headerInnerWrap{height:80px;}
	#headerInnerWrap{position:fixed; z-index:99;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f37b21+0,f39221+100 */
	background: rgb(243,123,33); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(243,123,33,1) 0%, rgba(243,146,33,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(243,123,33,1) 0%,rgba(243,146,33,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(243,123,33,1) 0%,rgba(243,146,33,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f37b21', endColorstr='#f39221',GradientType=0 ); /* IE6-9 */
	}
	#header .logo{padding:26px 0;}	/* padding값 적절히 바꿔주세요 */
	
	/* -------- Header :: UTIL BOX -------- */
	.header-lang04 {margin-top: 22.5px; float: right; margin-left: 0; margin-right: 50px;}

	.header-util-box{display: none;}
	/* Header :: 사이트맵 버튼 */
	.sitemap-line-btn, .sitemap-custom-btn{display:none;}
	
	/* -------- Header :: GNB(Pc) -------- */
	#gnb{display:none;}
	.gnb-overlay-bg{display:none}

	/* -------- Header :: GNB(Mobile/기본스타일) -------- */
	.gnb-overlay-bg-m{display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:9998;}	
	#gnbM{ 
		display:block; 
		position:fixed; 
		top:0px; 
		right:-102%;
		width:100%; 
		height:100%;  
		max-width:100%; 
		background-color:#f2f2f2; 
		z-index:9999; 
		box-shadow:-2px 1px 11px rgba(0, 0, 0, .3);
		transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); 
		-webkit-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);  
		-oz-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); 
		-ms-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);		/* gnb OPEN 속도 */
		visibility:hidden;
	}
	#gnbM.open{
		right:0px; 
		visibility:visible;
	}
	/* GNB Mobile :: 레이아웃 */
	.gnb-navigation-wrapper{position:relative; height:100%; box-sizing:border-box; padding-top:80px; overflow-y:auto;}	/* padding-top : Header 높이값 */
	.header-util-menu-box + .gnb-navigation-wrapper{padding-top:0}
	
	/* GNB Mobile :: 1차 */
	#gnbM #navigation{margin-top: 55px; text-align: center;}
	#gnbM #navigation > li{}
	#gnbM #navigation > li > a {position:relative; display:block; padding:20px 15px; color:#111; font-size:20px; font-weight: 500; letter-spacing: -0.75px;}
	#gnbM #navigation > li.active > a{color:#f57f20;}
	#gnbM #navigation > li.has-2dep > a{}
	#gnbM #navigation > li.has-2dep.active > a{}
	/* GNB Mobile :: 2차 */
	#gnbM #navigation > li .gnb-2dep{display:none; padding:15px 0; background-color:#fff;}
	#gnbM #navigation > li .gnb-2dep > li{}
	#gnbM #navigation > li .gnb-2dep > li > a{display:block; color:#4e4e4e; font-weight: 400; letter-spacing: -0.75px; font-size:13px; padding:10px 15px;}
	#gnbM #navigation > li .gnb-2dep > li.on > a{opacity:1.0;filter:Alpha(opacity=100); text-decoration:underline;}
	/* GNB Mobile :: 3차 */
	#gnbM #navigation > li .gnb-2dep > li > .gnb-3dep{display:none; padding:10px 20px; background-color:#aaa;}
	#gnbM #navigation > li .gnb-2dep > li > .gnb-3dep > li > a{display:block; padding:8px 0; font-size:13px; color:#fff;}
	#gnbM #navigation > li .gnb-2dep > li > .gnb-3dep > li > a:before{display:inline-block; content:"-"; margin-right:5px;}
	
	
	/* -------- GNB Mobile :: 언어선택 및 회원메뉴 -------- */
	.header-util-menu-box{height:80px;}
	/* 회원메뉴 */
	.member-menu-box{text-align:center; padding:10px 0; height:100%; /* margin-right:60px; */
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		 box-sizing: border-box; 
	}
	.member-menu-box li{float:left; width:50%; height:100%; position:relative;}
	.member-menu-box li:before{content:""; position:absolute; top:50%; margin-top: -10px; left:0px; width:1px; height:20px; background-color:rgba(0,0,0,0.1); content:"";}
	.member-menu-box li:first-child:before{display:none;}
	.member-menu-box li a{display:block; color:#444;  padding:6px 0}
	.member-menu-box li a i{font-size:30px;}
	.member-menu-box li a strong{display:block; padding-top:5px; font-size:13px; letter-spacing:-0.5px; font-weight:400;}

	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn{
		display:block; position:fixed; top:24px;  right:15px; z-index:10000; 
		height:30px;
		transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); 
		-webkit-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);  
		-oz-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); 
		-ms-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
	}
	.nav-open-btn .line{
		display:block; width:28px; height:3px; background-color:#fff; margin: 4px auto;
		-webkit-transition: all 0.3s ease-in-out;
	  -o-transition: all 0.3s ease-in-out;
	  transition: all 0.3s ease-in-out;
	}
	.nav-open-btn.active .line{background-color:#222;}
	.nav-open-btn.active .line:nth-child(2), .nav-open-btn.active .line:nth-child(4){opacity: 0;}
	.nav-open-btn.active .line:nth-child(1){
		 -webkit-transform: translateY(7px) rotate(45deg);
		  -ms-transform: translateY(7px) rotate(45deg);
		  -o-transform: translateY(7px) rotate(45deg);
		  transform: translateY(7px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		 -webkit-transform: translateY(-7px) rotate(-45deg);
		  -ms-transform: translateY(-7px) rotate(-45deg);
		  -o-transform: translateY(-7px) rotate(-45deg);
		  transform: translateY(-7px) rotate(-45deg);
	}
	
	#header.fixed-header .nav-open-btn .line{background-color:#fff}

	.m-search-con{top: 24px; text-align: center; position: relative;}
	.m-search-con .header-search-word{display: inline-block; width: 64.75%; max-width: 211px; padding: 0 40px 0 8px; height: 41px; border: 1px solid #cfcfcf; -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	background:#fff;}
	.m-search-con .header-search-btn{color: #020202; position: absolute; right: 50%; top: 11.5px; margin-right: -120.5px;}
}
@media all and ( max-width: 800px ){
	#header,#headerInnerWrap{height:60px;}
	#header .logo{padding:20px 0;}	/* padding값 적절히 바꿔주세요 */
	#header .logo img{height:20px;}

	.header-lang04 {margin-top: 15px; margin-right: 35px; width:60px; height:30px;}
	.header-lang04 .lang-open-btn {padding:0 10px; font-size:13px; line-height: 30px;}
	.header-lang04 .lang-open-btn i {margin-right: 5px; font-size:18px; margin-top:-2px; }
	.header-lang04 .lang-open-btn .arrow i{font-size:13px;}
	.header-lang04 > ul {top:30px;}
	.header-lang04 > ul > li {padding-top:6px;}
	.header-lang04 > ul > li > a{font-size:13px; line-height: 30px;}
	/* Header :: 사이트맵, 네비게이션 버튼 */
	.nav-open-btn{top:15px; margin-top:0;}
	.nav-open-btn .line{width:20px; height:2px;}
	.nav-open-btn.active .line:nth-child(1){
		 -webkit-transform: translateY(6px) rotate(45deg);
		  -ms-transform: translateY(6px) rotate(45deg);
		  -o-transform: translateY(6px) rotate(45deg);
		  transform: translateY(6px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		 -webkit-transform: translateY(-6px) rotate(-45deg);
		  -ms-transform: translateY(-6px) rotate(-45deg);
		  -o-transform: translateY(-6px) rotate(-45deg);
		  transform: translateY(-6px) rotate(-45deg);
	}
	/* Header :: GNB(Mobile) */
	.gnb-navigation-wrapper{padding-top:60px} /* padding-top : Header 높이값 */
	.gnb-style-full .header-util-menu-box + .gnb-navigation-wrapper{top:60px; }
	.gnb-style-full-member .gnb-navigation-wrapper{bottom:60px;}
	#navigation > li > a{font-size:15px;}
	#navigation > li .gnb-2dep > li > a{font-size:13px;}

	/* Header :: 언어선택 및 회원메뉴 */
	.header-util-menu-box{height:60px;}
	/* 언어선택 */
	.header-util-menu-box .lang-select{padding:10px; }
	.header-util-menu-box .lang-select li > a{height:38px; line-height:38px}
	/* 회원메뉴 */
	.member-menu-box{padding:5px 0;}
	.member-menu-box li a{ padding:4px 0}
	.member-menu-box li a i{font-size:24px;}
	.member-menu-box li a strong{padding-top:3px;}
	.gnb-style-full .member-menu-box{height:60px}
	.gnb-style-full .member-menu-box li a{padding:10px 0;}

}

/* ****************** FOOTER ********************** */
@media all and (max-width:1220px){
	/* -------- FOOTER :: 레이아웃 -------- */
	#footerTop, #footerBottom{text-align:left;}
	.footer-left-con,.footer-right-con{float:none; }
	.footer-right-con.pc-ver{display: none;}
	.footer-right-con.m-ver{display: block;}

	/* Footer :: 푸터로고 */
	.footer-right-con .foot-logo{text-align: center;}
	/* Footer :: 푸터메뉴 */
	.foot-menu{float:none; display:inline-block;}
	.footer-address{margin-top: 30px;}
}

@media all and (max-width:800px){
	/* -------- Footer :: 상단 -------- */
	#footerTop .area-box {padding-top: 17px; padding-bottom: 17px;}
	/* Footer :: 푸터메뉴 */
	.foot-menu{float: none;}
	.foot-menu li{padding-left:17px; line-height:25px;}
	.foot-menu li a{font-size:13px;}
	
	/* -------- Footer :: 하단 -------- */
	#footerBottom {padding: 35px 0 85px;}
	/* Footer :: SNS 리스트 */
	.foot-tel, .foot-fax{margin-left: 17px; font-size: 13px; line-height: 1;}
	.foot-tel{margin-left: 0;}
	.foot-tel span, .foot-fax span{margin-right: 3px;}
	/* Footer :: 왼쪽정보 */
	.footer-address p{font-size:13px; line-height:1.3; padding-bottom:15px;}
	.footer-address p.tit{margin-top: 35px; font-size: 20px; margin-bottom: 0;}
	.footer-address span{display:block; margin-right:0; margin-bottom: 5px;}
	.footer-copyright{margin-top: 27px; font-size:13px; line-height: 1.2;}
	
	/* Footer :: 푸터로고 */
	.foot-logo img{height:25px;}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1220px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .visual-txt-con{padding:0}
	#visual .visual-txt-container {margin-top: 0;}
	/*  SUB LAYOUT :: 서브메뉴(스타일3) */
	#topMenu03 .area{padding:0;}
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content{padding:70px 15px}
}

@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:240px;}
	#visual .visual-tit{font-size:30px;}
	/*  SUB LAYOUT ::  서브메뉴(스타일1,2) */
	#topMenu01,
	#topMenu02{display:none}
	
	/*  SUB LAYOUT :: 서브메뉴 모바일 (스타일1) */
	#topMenuM01{display:block; position:relative; height:45px; }
	#topMenuM01 .side-menu-inner{height:44px; padding-left:44px; border-bottom:1px solid #ddd; }
	#topMenuM01 .location-to-home-btn{position:absolute; width:44px; height:44px; left:0px; top:0px; background-color:#fff; text-align:center; }
	#topMenuM01 .location-to-home-btn i{color:#ff9600; font-size:20px; line-height:44px;}
	#topMenuM01 .menu-location{position:relative; float:left; width:50%;}
	#topMenuM01 .menu-location.full{width:100%;}
	#topMenuM01 .menu-location > .cur-location{position:relative; display:block; height:44px; padding:0 30px 0 10px; border-left:1px solid #ddd; background-color: #fff;}
	#topMenuM01 .menu-location > .cur-location span{display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:44px; color:#222; font-weight:400; font-size:15px;}
	#topMenuM01 .menu-location > .cur-location .arrow{position:absolute; top:50%; right:10px; width:20px; height:20px;margin-top:-8px; font-size:20px;}
	#topMenuM01 .menu-location > .cur-location.open .arrow{transform:rotate(-180deg); margin-top:-10px;}
	#topMenuM01 .menu-location .location-menu-con{display:none; position:absolute; top:44px; left:0px; width:calc(100% - 2px); border:1px solid #ddd; border-top:0; background-color:#fff; z-index:11; }
	#topMenuM01 .menu-location.location1 .location-menu-con{width:calc(100% - 1px)}
	#topMenuM01 .menu-location .location-menu-con li a{display:block; padding:7px 10px; font-size:14px; line-height:1.5; word-break:keep-all;}
	#topMenuM01 .menu-location .location-menu-con li.on{position:relative;}
	#topMenuM01 .menu-location .location-menu-con li.on a{color:#ff9600; font-weight:500;}
	/* 선택된메뉴앞에 bullet 넣을때 */
	/* #topMenu03 .menu-location .location-menu-con li.on a{padding-left:25px;}
	#topMenu03 .menu-location .location-menu-con li.on a:before{content:""; position:absolute; top:50%; left:10px; width:7px; height:3px; margin-top:-1px; background-color:#f57f20} */

	/*  SUB LAYOUT :: 상단정보 (공통) */
	#contentInfoCon{margin-bottom: 30px;}
	#contentInfoCon .content-tit{font-size:24px}
	#contentInfoCon .content-sub-tit{font-size:13px; line-height:18px;}
	
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content{padding:50px 15px}
	#content.pd-css{padding:40px 15px;}
}



/* ****************** MODAL LAYERPOPUP ********************** */
@media all and ( max-width: 800px ){
	/* modal layer content */
	.footer-modal-content h1{height:46px; line-height:46px; font-size:18px; text-align:left; padding:0 15px}
	.modal-close-btn i{font-size:24px}
	.footer-inner-box{padding:15px}
	.footer-inner{padding:10px; height:250px;}
	/* 사이트맵  */
	.sitemap-wrapper{padding:15px}
	.sitemap-wrapper > ul > li{float:none; width:auto; margin-bottom:15px;}
	.sitemap-wrapper > ul > li > h2{font-size:16px; margin:0; margin-bottom:5px;}
	.sitemap-wrapper > ul > li .sitemap-2dep{overflow:hidden; margin:0 -1%; padding:0;}
	.sitemap-wrapper > ul > li .sitemap-2dep li{float:left; position:relative; width:31.33%; margin:1%; word-break:keep-all;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:before{position:absolute; top:0px; left:0; bottom:0px; width:1px; background-color:#eee; content:"";}
	.sitemap-wrapper > ul > li .sitemap-2dep li:nth-child(3n+1){clear:both;}
	.sitemap-wrapper > ul > li .sitemap-2dep a{padding:7px; border:1px solid #eee; font-weight:300; }

}
@media all and ( max-width: 480px ){
	/* 사이트맵  */
	.sitemap-wrapper > ul > li .sitemap-2dep li{width:48%;}
}