@charset "utf-8";
/* *******************************************************
 * filename : layout_responsive.css
 * description : 전체 레이아웃 반응형 CSS
 * date : 2021-06-14
******************************************************** */

/* ****************** 공통레이아웃 ********************** */
@media all and (max-width:1660px){	/* max-width : (area-box width) + 60px */
	.area-box{padding:0 5%; max-width:none;}
}
@media all and (max-width:1420px){ /* max-width : (area width) + 60px */ 
	.area{padding:0 5%; max-width:none;}
}
@media all and (max-width:1024px){
	.area-box,
	.area{padding:0 5%;}
}

/* ****************** HEADER ********************** */
@media all and ( max-width: 1820px ){
	#gnb > ul{width: 68%;}
}
@media all and ( max-width: 1660px ){
	.header-util-box{right: 5%;}
}
@media all and ( max-width: 1420px ){
	#header .logo a{width: 170px; height: 30px;}
	#gnb > ul{padding: 0;}
}
@media all and ( max-width: 1366px ){
	#gnb > ul > li > a{padding:0 30px; font-size:17px;}
	#gnb.total-menu > ul > li .gnb-2dep ul li a{font-size: 15px;}
}
@media all and ( max-width: 1220px ){	/* 1024까지 레이아웃유지가 안될시 max-width: 컨텐츠너비+20px */
	#header,#headerInnerWrap{height:80px;}
	#headerInnerWrap{position:fixed; z-index:99;}
	#header .logo{padding:22px 0;}	/* padding값 적절히 바꿔주세요 */
	#header .logo a{width: 205px; height: 36px;}
	
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{padding-right:70px;}
	/* 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:-82%;
		width:80%; 
		height:100%;  
		max-width:280px; 
		background-color:#fff; 
		z-index:9999; 
		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);  
		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; height:calc(100% - 80px);}
	
	/* GNB Mobile :: 메뉴영역 :: 1차 */
	#navigation > li > a {position:relative; display:block; padding:15px; color:#545454; font-size:29px; font-weight:700;}
	#navigation > li > a span{position: relative; display: inline-block;}
	#navigation > li > a span:before{position: absolute; bottom: -17px; left: 50%; width: 0; height: 4px; content: ''; background-color: #0053a0; display: block; -webkit-transition: all 0.3s; transition: all 0.3s;}
	#navigation > li.active > a{color:#0053a0;}
	#navigation > li.active > a span:before{width: 100%; left: 0;}
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep{display:none; padding:30px 0; background-color:#f2f2f2; border-top: 1px solid #e5e5e5;}
	#navigation > li .gnb-2dep > ul > li{height:auto !important;}
	#navigation > li .gnb-2dep > ul > li > a{display:block; color:#545454; font-size:26px; padding:12px 15px;}
	#navigation > li .gnb-2dep > ul > li.on > a{color:#000; font-weight:500;}
	/* GNB Mobile :: 메뉴영역 ::  3차 */
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep{display:none; padding:10px; background-color:#aaa; margin:0 10px}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a{display:block; padding:8px 0; font-size:13px; color:#fff;}
	#navigation > li .gnb-2dep > ul > li > .gnb-3dep > li > a:before{display:inline-block; content:"-"; margin-right:5px;}
	
	/* -------- GNB Mobile :: 스타일2 (Full Style) -------- */
	#gnbM.gnb-style-full{ 
		top:-100%; 
		right:0;
		width:100%; 
		height:100%;  
		max-width:none; 
	}
	#gnbM.gnb-style-full.open{
		top:0px; 
	}
	.gnb-style-full .gnb-navigation-wrapper{height:auto; width:100%; position:absolute; top:0px; bottom:0px; left:0; padding-top:0;}
	.gnb-style-full .header-util-menu-box + .gnb-navigation-wrapper{top:80px; }
	.gnb-style-full-member .gnb-navigation-wrapper{bottom:80px;}
	.gnb-style-full .gnb-navigation-inner{display:table; width:100%; height:100%;}
	.gnb-style-full #navigation{
		display:table-cell;
		vertical-align:middle;
	}
	.gnb-style-full #navigation > li{
		text-align:center; border:0; 
		opacity:0;filter:Alpha(opacity=0); 
		-webkit-transform:translateY(-20px);
		transform:translateY(-20px);
		-webkit-transition:all 0s 0s;
		transition:all 0s 0s;
	}
	.gnb-style-full #navigation > li:first-child {border:0}
	.gnb-style-full #navigation > li > a {}
	.gnb-style-full #navigation > li .gnb-icon i{display:none;}
	.gnb-style-full.open #navigation > li{
		opacity:1.0;filter:Alpha(opacity=100); 
		-webkit-transform:translateY(0px); 
		transform:translateY(0px); 
		-webkit-transition:transform 0.8s, opacity 0.8s;
		transition:transform 0.8s, opacity 0.8s;
	}
	.gnb-style-full.open #navigation > li:nth-child(1){-webkit-transition-delay: 0.3s; transition-delay:0.3s;}
	.gnb-style-full.open #navigation > li:nth-child(2){-webkit-transition-delay: 0.4s; transition-delay:0.4s;}
	.gnb-style-full.open #navigation > li:nth-child(3){-webkit-transition-delay: 0.6s; transition-delay:0.6s;}
	.gnb-style-full.open #navigation > li:nth-child(4){-webkit-transition-delay: 0.7s; transition-delay:0.7s;}
	.gnb-style-full.open #navigation > li:nth-child(5){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(6){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	
	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn{
		display:block; position:fixed; top:24px; right:5%; z-index:10000; 
		height:30px;
		-webkit-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
		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;
	     transition: all 0.3s ease-in-out;
	}
	.nav-open-btn.active .line{background-color:#000;}
	.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);
		  transform: translateY(7px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		 -webkit-transform: translateY(-7px) rotate(-45deg);
		  transform: translateY(-7px) rotate(-45deg);
	}
	
	#header.top-fixed #headerInnerWrap{background-color:#fff; border-bottom:1px solid #ddd;}
	#header.top-fixed .logo a{background: url("../images/common/logo_c.png") center/cover no-repeat;}
	#header.top-fixed .nav-open-btn .line{background-color:#000;}
}
@media all and ( max-width: 800px ){
	#header,#headerInnerWrap{height:60px;}
	#header .logo{padding:15px 0;}	/* padding값 적절히 바꿔주세요 */
	#header .logo a{width: 170px; height: 30px;}

	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{padding-right:35px; margin-top: -19px;}

	/* Header :: 언어선택 */
	.header-lang {position:relative; z-index:100; width:38px; height: auto;}
	.header-lang strong, .header-lang .arrow{display: none;}
	.header-lang .lang-open-btn {
		overflow:hidden; position:relative; display:block; width:38px; height:38px; line-height: 38px; color:#fff; text-align:center; 
		-webkit-transition: all 0.5s; transition: all 0.5s; -webkit-border-radius:50%;border-radius:50%;
	}
	.header-lang .lang-open-btn i {margin-right: 0; display:inline-block; position:relative; z-index:11; vertical-align: middle; font-size:24px; margin-top:-2px; color:#fff;}
	.header-lang.open .lang-open-btn i{color:#fff;}
	.header-lang .lang-open-btn .arrow{position:absolute; top:0px; right:0px;}
	.header-lang .lang-open-btn .arrow i{font-size:16px;}
	.header-lang > ul {overflow:hidden; display:none; position:absolute; top:-5px; left:-1px; z-index:10; width:100%; text-align:center; background-color:#3b3b3b; border-radius:50px; padding:40px 0 10px;}
	.header-lang > ul > li > a{display:block; font-size:12px; line-height: 24px; color:#fff;}
	.header-lang > ul > li > a em{display: none;}

	/* 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);
		  transform: translateY(6px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		 -webkit-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:21px;}
	#navigation > li > a span:before{bottom: -16px; height: 2px;}
	#navigation > li .gnb-2dep{padding:20px 0;}
	#navigation > li .gnb-2dep > ul > li > a{font-size:19px;}
}

/* ****************** FOOTER ********************** */
@media all and (max-width:1660px){
	.footer-right-con{right: 5%;}
}
@media all and (max-width:1260px){
	/* -------- FOOTER :: 레이아웃 -------- */
	#footerTop{display: none;}
	#footerBottom{border-top: 1px solid #efefef; text-align:center;}
	.footer-left-con, .footer-right-con,
	.foot-logo, .foot-info-group{position: static; float:none; width: 100%; text-align: center;}
	.foot-logo{margin-top: 0; padding-right: 0;}
	.foot-info-group{margin-top: 30px;}
	.foot-menu li{float: none; display: inline-block;}
	.footer-right-con{margin-top: 30px;}
	.family-site-box, .to-top-btn{float: none; display: inline-block;}
}

@media all and (max-width:800px){
	#footerBottom{padding:30px 0;}

	/* Footer :: 푸터로고 */
	.foot-logo img{height: 30px;}

	.foot-info-group{margin-top: 25px;}
	/* Footer :: 푸터메뉴 */
	.foot-menu li{padding-left:20px;}
	.foot-menu li a{font-size:12px;}

	/* Footer :: 정보 */
	.footer-address{margin-top:15px;}
	.footer-address .footer-address-txt{font-size:12px; margin:0 -6px;}
	.footer-address p{margin:0 6px;}

	/* Footer :: Copyright */
	.footer-copyright{margin-top: 10px; font-size:12px;}

	.footer-right-con{margin-top: 25px;}
	/* Footer :: 패밀리사이트 */
	.family-site-box{margin-right: 0; width:160px;}
	.family-site-box .family-site-open-btn{height:50px; line-height:50px; padding:0 40px 0 30px; font-size:12px;}
	.family-site-box .family-site-open-btn:after{right:20px; font-size:14px;}
	.family-site-box.open .family-site-open-btn{-webkit-border-radius: 0 0 20px 20px; border-radius: 0 0 20px 20px;}
	.family-site-list{padding:10px 0 0; -webkit-border-radius: 20px 20px 0 0; border-radius: 20px 20px 0 0;}
	.family-site-list a{padding:10px 20px; font-size:12px;}

	/* Footer :: TOP버튼 */
	.to-top-btn{width:50px; height:50px; font-size: 12px; position:fixed; bottom:-100px; right:15px; 
	opacity:0;filter:Alpha(opacity=0);
	-webkit-transition:all 0.6s; transition:all 0.6s
	-webkit-border-radius:50%; border-radius:50%;}
	.to-top-btn.bottom-fixed{position: fixed; bottom:25px; opacity:1.0;filter:Alpha(opacity=100);}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1420px){
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:130px 5%;}
}
@media all and (max-width:1220px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:500px;}
	#visual .visual-txt-con{padding:0;}
	#visual .visual-txt-container {padding-top: 40px;}
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:100px 5%;}
	#content.wide{padding:100px 0 155px}
}
@media all and (max-width:1024px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:430px;}
	#visual .visual-tit{font-size:50px;}
	#topMenu01 .side-menu-inner ul li{margin: 0 35px;}
	#topMenu01 .side-menu-inner ul li > a{font-size: 17px;}
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:80px 5%;}
	#content.wide{padding:80px 0 100px}
	#contentInfoCon .content-tit{font-size: 38px;}
}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:310px;}
	#visual .visual-txt-container {padding-top: 30px;}
	#visual .visual-tit{font-size:36px;}
	/*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
	#topMenu01,
	#topMenu02,
	#topMenu03{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:#0053a0; font-size:20px; line-height:44px;}
	#topMenuM01 .menu-location{position:relative; float:left; width:50%;}
	#topMenuM01 .menu-location > .cur-location{position:relative; display:block; width:100%; text-align:left; height:44px; padding:0 30px 0 10px; border-left:1px solid #ddd;}
	#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:-10px; font-size:20px;}
	#topMenuM01 .menu-location.open > .cur-location .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:#0053a0; font-weight:500;}

	/*  SUB LAYOUT :: 상단정보 (공통) */
	#contentInfoCon{margin:0 auto 20px;}
	#contentInfoCon .content-tit{font-size:29px}

	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:65px 5%}
	#content.wide{padding:65px 0}
}

/* ****************** MODAL LAYERPOPUP ********************** */
@media all and ( max-width: 800px ){
	/* modal layer content */
	.footer-modal-content{width:auto; margin:50px 15px}
	.footer-modal-content h1{font-size:18px; text-align:left; padding:0 30px 15px 0}
	.modal-close-btn{right:-3px; top:-3px;}
	.modal-close-btn i{font-size:24px}
	.footer-inner-box{padding:15px}
	.footer-inner{padding:10px; height:250px;}
}

/* ****************** 사이트맵 ********************** */
@media all and ( max-width: 1366px ){
	/* -------- 사이트맵 02 -------- */
	/* 사이트맵 02 :: 메뉴 */
	.sitemap-wrapper-style02 > ul > li > h2{margin:80px 20px 20px; font-size:16px;}
	.sitemap-wrapper-style02 > ul > li .sitemap-2dep a{padding:15px 5px 15px 20px; font-size:13px; }
}
@media all and ( max-width: 1024px ){
	/* -------- 사이트맵 02 -------- */
	/* 사이트맵 02 :: Layout */
	#sitemapContent,
	#sitemapContent.open{display:none;}
}
@media all and ( max-width: 800px ){
	/* -------- 사이트맵 01 -------- */
	/* 사이트맵 01 */
	.sitemap-wrapper{padding:15px}
	.sitemap-wrapper > ul{display:block;}
	.sitemap-wrapper > ul > li{float:none; display:block; 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:""; display:none;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:nth-child(3n+1){clear:both;}
	.sitemap-wrapper > ul > li .sitemap-2dep a{padding:7px; font-weight:300; }
}
@media all and ( max-width: 480px ){
	/* -------- 사이트맵 01 -------- */
	/* 사이트맵 01 */
	.sitemap-wrapper > ul > li .sitemap-2dep li{width:48%;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:nth-child(3n+1){clear:none;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:nth-child(odd){clear:both;}
}