@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: 1220px ){
	#header,#headerInnerWrap{height:100px;}
	#headerInner {display: flex; align-items: center; justify-content: space-between; width: 100%;}
	#header .header-top {height: 100px; border-bottom: 0; width: 100%;}
	#header .header-bottom {display: none;}
		
	#header .logo{text-align: center; position: static; padding:17.5px 0;}
	#header .logo a {display: inline-block;}
	
	.header-move-btn {margin-left: 0; margin-right: 280px;}
	/* .header-move-btn {display: none;} */

	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{right: 50px; bottom: 35px;}
	.sitemap-line-btn {display: none;}
	.header-search-box {margin-right: 0;}
	/* -------- Header :: GNB(Pc) -------- */
	#gnb{display:none;}
	.gnb-overlay-bg{display:none}

	/* -------- Header :: GNB(Mobile/기본스타일) -------- */
	#gnbM{ 
		display:block; 
		position:fixed; 
		top:0px; 
		right:-102%;
		width:100%; 
		height:100%;  
		background-color:#fff;
		z-index:100; 
		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;
	}
	#gnbM .logo {margin-left:15px;}
	/* GNB Mobile :: 레이아웃 */
	.gnb-navigation-wrapper{position:relative; width: 100% ;height:100%; box-sizing:border-box; padding-top:80px; overflow-y:auto; background-color: #fff;}	/* padding-top : Header 높이값 */
	.header-util-menu-box{position: relative; top: 0; left: 0; width: 100%; height: 80px;}
	.header-util-menu-box + .gnb-navigation-wrapper{padding-top:0}
	.gnb-navigation-inner{padding: 0 15px;}
	/* GNB Mobile :: 메뉴영역 :: 1차 */
	#navigation > li{border-bottom:1px solid #eee;}
	#navigation > li:first-child{border-top:1px solid #eee}
	#navigation > li > a {position:relative; display:block; padding:20px 15px; color:#222; font-size:20px; font-weight:700; }
	#navigation > li.active > a{color:#143db1;}
	#navigation > li.has-2dep > a{}
	#navigation > li.has-2dep.active > a{}
	#navigation > li .gnb-icon{position:absolute; top:50%; right:15px; margin-top:-8.5px; color: #222;}
	#navigation > li .gnb-icon i{font-size:17px;}
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep{display:none; }
	#navigation > li .gnb-2dep > li{height:auto !important; border-top:1px solid #eee;}
	#navigation > li .gnb-2dep > li > a{display:block; color:#222; letter-spacing: -0.25px; font-size:17px; padding:13px 20px;}
	#navigation > li .gnb-2dep > li.on > a{background-color:#eee;}
	/* GNB Mobile :: 메뉴영역 ::  3차 */
	#navigation > li .gnb-2dep > li > .gnb-3dep{display:none; padding:10px; background-color:#aaa; margin:0 10px}
	#navigation > li .gnb-2dep > li > .gnb-3dep > li > a{display:block; padding:8px 0; font-size:13px; color:#fff;}
	#navigation > li .gnb-2dep > li > .gnb-3dep > li > a:before{display:inline-block; content:"-"; margin-right:5px;}
	
	
	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn{
		display:block; /* position:fixed; */position: absolute; top:37px; right:15px; z-index:9998; 
		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:2px; background-color:#000; margin: 6px 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:#333;}
	.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(8px) rotate(45deg);
		  -ms-transform: translateY(8px) rotate(45deg);
		  -o-transform: translateY(8px) rotate(45deg);
		  transform: translateY(8px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		 -webkit-transform: translateY(-8px) rotate(-45deg);
		  -ms-transform: translateY(-8px) rotate(-45deg);
		  -o-transform: translateY(-8px) rotate(-45deg);
		  transform: translateY(-8px) rotate(-45deg);
	}
	
	#header.fixed-header .nav-open-btn .line{background-color:#fff}
}
@media all and ( max-width: 800px ){
	#header,#headerInnerWrap{height:80px;}
	#headerInner {width: 100%;}
	#header .logo{ text-align: center; position: static;}
	#header .logo a {display: inline-block;}
	#header .logo{/* padding:13.5px 0; */ padding: 25px 0 22px;}	/* padding값 적절히 바꿔주세요 */
	#header .logo img{height:30px;}
	#header .header-top {height: 80px;}
	.header-move-btn {margin-right: 60px;}
	
	.header-util-box {z-index: 9999;right:40px; bottom: 26px;}
	.header-search-open-btn {display: block;}
	.header-search-close-btn {display: block;}
	.header-search-box {position: fixed; top: -80px; left: 0; height: 80px; width: 100%; background: #fff; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;  -ms-transition: all 0.5s; transition: all 0.5s; }
	.header-search-box.open {top: 0;}

	.header-search-box .header-search-inner {width: 100%;}
	.header-search-inner .header-search-inner-box {height: 80px;}
	.header-search-inner .header-search-word {height: 80px; color: #000;}
	.header-search-inner .header-search-word::placeholder {color: #000;}
	.header-search-inner .header-search-btn {display: none;}

	.nav-open-btn {top: 26px;}
	.nav-open-btn .line {width: 16px; margin: 4px auto;}
	.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) */
	.header-util-menu-box{height: 60px;}
	.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:14px; padding: 23px 10px;}
	#navigation > li .gnb-2dep > li > a{font-size:12px; padding: 14px 20px;}
}

/* ****************** FOOTER ********************** */
@media all and (max-width:1220px){
	.top-footer-gnb .area-box{padding-right: 60px;}
	.top-footer-gnb .gnb a{font-size: 15px; line-height: 59px;}

	.bottom-footer-gnb .area-box{padding-right: 60px;}
	.bottom-footer-gnb ul li a{font-size: 15px;}
		
	#footerInner{position:static;}
	.footer-left-con{float:none; }
	.footer-right-con{float:none;}
	#footerBottom .footer-right-con{position: static; margin-top: 40px;}
}
@media all and (max-width:1024px){
	#footerTop{display: none;}
}
@media all and (max-width:800px){
	#footerBottom{padding:45px 0;}
	/* Footer :: 왼쪽정보 */
	.footer-address p{font-size:12px; line-height:18px; -ms-word-break: keep-all; word-break: keep-all;}
	.footer-address span{display:inline-block; margin-right:5px}
	.footer-address span.mt-10{margin-top: 10px;}
	.footer-address .slash{display: inline-block; margin-right:5px}
	.footer-address .m-br{display: block;}
	.footer-copyright{margin-top: 10px; font-size:12px; line-height:18px;}
	
	/* Footer :: 오른쪽정보 :: 패밀리사이트 */
	.family-site-box{width:150px;}
	.family-site-box .family-site-open-btn{height:25px; line-height:25px; text-indent:10px; font-size:14px;}
	.family-site-box .family-site-open-btn i{right:10px; margin-top:-7px; font-size: 14px;}
	.family-site-box.open .family-site-open-btn i{transform:rotate(180deg); right:0px}
	.family-site-list{bottom:27px; padding:10px 0;}
	.family-site-list a{padding:10px; font-size:12px;}
	/* Footer :: 푸터로고 */
	.foot-logo{margin-top: 0; height: 27px; padding-right:5.5%;}
	.foor-logo2{margin-top: 0; height: 27px; padding-right:5.5%;}
	.foot-logo img, .foor-logo2 img{height: 100%;}
}
@media all and (max-width:480px){
	.family-site-box{width: 110px;}
	.family-site-box .family-site-open-btn{font-size:12px;}
}
@media all and (max-width:359px){
	/* Footer :: 오른쪽정보 :: 패밀리사이트 */
	.family-site-box{margin-top: 20px; float:none;}
	/* Footer :: 푸터로고 */
	.foot-logo{float:none;}
	.foor-logo2{float:none;}
}

/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1220px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual .visual-txt-con{padding-left: 15px; width: calc(100% - 30px);}
	/* #topMenu02{background-color: #fff;} */
	#topMenu02 .side-menu-inner ul li > a{font-size: 16px;}
}
@media all and (max-width:1024px){
	#topMenu02 .side-menu-inner ul li > a{font-size: 15px;}
}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:220px; text-align: center;}
	#visual .visual-txt-con{height:100%; padding: 0;}
	#visual .visual-sub-txt{display: none;}
	#visual .visual-tit{font-size:32px;}
	#visual .location{display: none;}

	/*  SUB LAYOUT ::  서브메뉴(스타일1,2) */
	#topMenu01,
	#topMenu02{display:none}
	
	/*  SUB LAYOUT :: 서브메뉴 모바일 (스타일1) */
	#topMenuM01{display:block; position:relative; height:50px; padding: 0 15px; -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
	#topMenuM01 .side-menu-inner{height:50px; background: #000;}
	#topMenuM01 .location-to-home-btn{position:absolute; width:50px; height:50px; left:0px; top:0px; background-color:#fff; text-align:center;}
	#topMenuM01 .location-to-home-btn i{color:#333; font-size:20px; line-height:50px;}
	#topMenuM01 .menu-location{position:relative; float:left; width:100%;}
	#topMenuM01 .menu-location > .cur-location{position:relative; display:block; height:50px; padding:0 30px 0 10px; }
	#topMenuM01 .menu-location > .cur-location span{display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:50px; color:#fff; font-weight:400; font-size:14px;}
	#topMenuM01 .menu-location > .cur-location .arrow{position:absolute; top:50%; right:10px; width:20px; height:20px; margin-top:-10px; font-size:20px; color: #fff;}
	#topMenuM01 .menu-location > .cur-location.open .arrow{transform:rotate(-180deg); margin-top:-10px;}
	#topMenuM01 .menu-location .location-menu-con{display:none; position:absolute; top:50px; 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 {height: auto !important;}
	#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:#282ebf; font-weight:500;}

	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content{padding-bottom:20px}
}
@media all and ( max-width: 480px ){
	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:180px}
}
/* ****************** 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}
}

/* 제품 뷰페이지 서브 비주얼 추가 css */
@media all and (max-width:1220px){
	#visual.sub-visual-prd_view .visual-txt-con .table-cell-layout{width: 57%;}
	#visual.sub-visual-prd_view .sub-prd-img{width: 40%;}
	.sub-visual-prd_view .sub-prd-btn {right: 15px;}
}
@media all and (max-width:800px){
	#visual.sub-visual-prd_view{height: 250px;}
	#visual.sub-visual-prd_view .visual-txt-con{height:auto; padding: 75px 0; }
	#visual.sub-visual-prd_view .visual-txt-con .table-cell-layout{width: 100%;}
	.sub-visual-prd_view .sub-prd-btn{position: relative; right: 0; top: 0; display: inline-block; margin-top: 30px; width: 140px; height: 35px; line-height: 35px; font-size: 14px;}
	#visual.sub-visual-prd_view .sub-prd-img{margin-top: 0; top: auto;	bottom: 25px; width: 100%; height: auto; -webkit-transform: translate(0, 0); transform: translate(0, 0);     -ms-filter: drop-shadow(0px 15px 30px rgba(0,0,0,0.12)); filter: drop-shadow(0px 15px 30px rgba(0,0,0,0.12));}
	#visual.sub-visual-prd_view .sub-prd-img img{height: 120px;}
}

/* **** 푸터 수정사항 200908 **** */
.m{display:none;}
@media all and ( max-width: 800px ){
	.m{display:block;}
}
