@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */ 

#skipToContent a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skipToContent a:focus, 
#skipToContent a:active {width:200px;height:50px;background:#21272e;color:#fff;font-size:14px;font-weight:bold;text-align:center;text-decoration:none;line-height:50px}

.only-desktop {display:block;}
.only-desktop-tablet {display:block;}
.only-tablet-mobile {display:none;}
.only-tablet {display:none;}
.only-mobile {display:none;}

#ws-wrapper {}

.contain {position:relative; width:100%; max-width:1230px; padding-left:15px;padding-right:15px; margin:0 auto;}
.contain:after {content:" "; display:block; clear:both;}

/* header */
#ws-header {width:100%; height:100px; z-index:90; transition: all 0.5s ease-in-out;}
#ws-header .contain {position:relative;}
#ws-header .sitelogo {position:absolute; top:17px; left:15px; z-index:10}

#ws-gnb ul {position:relative; display:flex; justify-content:flex-end}
#ws-gnb ul > li {text-align:center; padding-left:150px; transition: all 0.1s ease-in-out;}
#ws-gnb ul > li > a {display:block; position:relative; color:#2c2c2c; font-size:20px; line-height:100px; font-weight:500; letter-spacing:-.40px;}
#ws-gnb ul > li > a:after {
	content:" ";
	position:absolute;
	bottom:20px;
	left:50%;
	width:0;	
	height:4px;
	opacity:0;
	z-index:0;
	background:linear-gradient(to right, #175ea4, #51a739);
	-webkit-transition: all 0.25s ease-in-out;
	   -moz-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		 -o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
}
#ws-gnb ul > li.active > a:after {
	width:20px;
	left:50%;
	margin-left:-10px;
	opacity:1;
	-webkit-transition: all 0.25s ease-in-out;
	   -moz-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		 -o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
}
#ws-gnb .submenu {display:none; position:absolute; top:100px; right:0;  z-index:102}
#ws-gnb .submenu > ul {display:flex; justify-content:flex-start; transition: all 0.3s ease-in-out;} 
#ws-gnb .submenu > ul > li {padding:0 0 0 45px;}
#ws-gnb .submenu > ul > li > a {display:block; position:relative; color:#fff; font-size:16px; line-height:60px; font-weight:400; letter-spacing:-.40px;}
#ws-gnb .submenu > ul > li > a:after {
	content:" ";
	position:absolute;
	bottom:10px;
	left:50%;
	width:0;	
	height:1px;
	opacity:0;
	z-index:0;
	background:#fff;
	-webkit-transition: all 0.25s ease-in-out;
	   -moz-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		 -o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
}
#ws-gnb .submenu > ul > li > a:hover:after {
	width:100%;
	left:0;
	opacity:1;
	-webkit-transition: all 0.25s ease-in-out;
	   -moz-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		 -o-transition: all 0.25s ease-in-out;
			transition: all 0.25s ease-in-out;
}
#ws-gnb ul li.m1 .submenu {right:265px}
#ws-gnb ul li.m2 .submenu {right:280px}
#ws-gnb ul li.m3 .submenu {right:80px}
.header-fixed #ws-header {position:fixed; background:#fff; box-shadow:2px 2px 3px 2px rgba(0,0,0,.05); animation:fixHeader .5s; -webkit-animation:fixHeader .5s; -moz-animation:fixHeader .5s; -ms-animation:fixHeader .5s;}


.submenu-bg {display:none; position:absolute; top:100px; left:0; width:100%; background:#000; opacity:.4; z-index:10}


@keyframes fixHeader {
    0% {
       transform: translate3d(0, -100%, 0);
    }

    100% {
       transform: translate3d(0, 0, 0);
    }
}


/* for mobile */
.btn-m-menu {display:none; position:absolute; top:30px; right:15px; width:32px; height:22px; text-align:center; text-indent:-9999em; z-index:50;}
.btn-m-menu span {position:absolute; right:0; top:50%; margin-top:-1.5px; width:22px; height:2px; background:#000;}
.btn-m-menu span:before,
.btn-m-menu span:after {content:" "; position:absolute; right:0; width:32px; height:2px; background:#000; transition-duration:0.3s, 0.3s; transition-delay:0.3s, 0s;}
.btn-m-menu span:before {top:-10px; transition-property:top, transform;}
.btn-m-menu span:after {bottom:-10px; transition-property:bottom, transform;}

.mobile-navigation {position:fixed; top:0; right:0; padding:20px; width:500px; height:100%; overflow:auto; transition:.3s ease-in-out; -ms-transform:translateX(100%); transform:translateX(100%); background:#fff; z-index:101;}
.mobile-navigation .logo {margin-bottom:20px; padding-left:15px;}
.mobile-navigation .logo img {height:40px;}
.mobile-navigation .nav-menu>ul>li {border-bottom:1px solid #dfdfdf;}
.mobile-navigation .nav-menu>ul>li>a {position:relative; padding:10px 0; display:block; color:#2c2c2c; font-size:20px; font-weight:500; line-height:1.3em;}
.mobile-navigation .nav-menu>ul>li>a:after {content:""; position:absolute; top:50%; right:15px; transform:translateY(-75%) rotate(45deg); width:10px; height:10px; border-right:2px solid #2c2c2c; border-bottom:2px solid #2c2c2c;}
.mobile-navigation .nav-menu>ul>li.active>a {color:#175ea4}
.mobile-navigation .nav-menu>ul>li.active>a:after {transform:translateY(-35%) rotate(-135deg); border-color:#175ea4;}
.mobile-navigation .nav-menu .submenu {display:none; margin:-1px 0 0 0; padding:10px 0;}
.mobile-navigation .nav-menu .submenu>ul>li>a {display:block; position:relative; padding:5px 0 5px 10px ; color:#2c2c2c; font-size:18px; font-weight:400; line-height:1.3em;}
.mobile-navigation .nav-menu .submenu>ul>li>a:after {content:"";position:absolute; top:13px; left:0; width:4px; height:4px; background:#dfdfdf; transition:.2s ease-in-out;}
.mobile-navigation .nav-menu .submenu>ul>li>a:hover {color:#175ea4}
.mobile-navigation .nav-menu .submenu>ul>li>a:hover:after {background:#175ea4}
.mobile-overlay {display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:#000; opacity:.76; z-index:98;}

html.menu-opened {overflow:hidden;}
html.menu-opened .mobile-navigation {-ms-transform:translateX(0); transform:translateX(0);}
html.menu-opened .mobile-overlay {display:block;}
html.menu-opened .btn-m-menu {right:20px;}
html.menu-opened .btn-m-menu span {background:none;}
html.menu-opened .btn-m-menu span:before,
html.menu-opened .btn-m-menu span:after {transition-delay:0s, 0.3s; background:#2c2c2c;}
html.menu-opened .btn-m-menu span:before {top:0; transform:rotate(45deg);}
html.menu-opened .btn-m-menu span:after {bottom:0; transform:rotate(-45deg);}


/* sub page */
.sub-visual {position:relative; width:100%; height:300px; overflow:hidden;}
.sub-visual .content {position:absolute; top:35%; left:0;  text-align:center; transform:translateY(-35%); color:#fff;  width:100%; z-index:20}
.sub-visual .tit {font-size:42px; line-height:1.3em; font-weight:700;}
.sub-visual .background {
	position:absolute; 
	top:0; 
	left:0;
	width:100%; height:100%;	
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	transform:scale(1.09);
    -ms-transform:scale(1.09); /* IE 9 */
    -moz-transform:scale(1.09); /* Firefox */
    -webkit-transform:scale(1.09); /* Safari and Chrome */
    -o-transform:scale(1.09); /* Opera */
	transition: all 2s ease-out 0s;
	transition-delay: 0.1s;
	z-index:0;
}
.sub-visual.load .background {
	transform:scale(1);
    -ms-transform:scale(1); /* IE 9 */
    -moz-transform:scale(1); /* Firefox */
    -webkit-transform:scale(1); /* Safari and Chrome */
    -o-transform:scale(1); /* Opera */
}


.sub-title {margin:70px 0; text-align:center;}
.sub-title h2 {position:relative; padding-bottom:15px; color:#2c2c2c; font-size:30px; line-height:1.6em; font-weight:700; letter-spacing:-.40px;}
.sub-title h2:after {content:"";position:absolute; bottom:0; left:50%; width:30px; height:4px; background:#195ba1; margin-left:-15px;}


#lnb {background:rgba(0,0,0,.70); position:relative; margin-top:-60px;}
.lnb {max-width:1200px; margin:0 auto;}
.lnb ul {display:flex; }
.lnb ul li {position:relative; text-align:center;}
.lnb ul li a {display:block; color:#fff; font-size:18px; line-height:60px;} 
.lnb ul li.active a {background:#4ea638;}

.lnb-menu {margin-bottom:50px;}
.lnb-menu ul {display:flex; padding-left:1px;}
.lnb-menu ul li {text-align:center; margin-left:-1px;}
.lnb-menu ul li:first-child a {border-left:1px solid #ddd;}
.lnb-menu ul li a {display:block; font-size:18px; line-height:48px; color:#2c2c2c; border:1px solid #ddd; border-bottom:1px solid #4ca33c;}
.lnb-menu ul li.active a {position:relative; z-index:2; color:#4ba23d; border-color:#4ca33c; border-bottom-color:#fff;}


.ws-real-cont {padding-bottom:100px;}




/* footer */
#ws-footer {position:relative; background:#2c2c2c; color:#949494; font-size:14px ;line-height:1.8em;padding:40px 0;}
#ws-footer address {font-style:normal;}
#ws-footer .bar {padding:0 10px;}
#ws-footer .contain {position:relative;}

.foot-row {display:flex; justify-content: space-between; align-items:center;}
.foot-row strong {display:block; color:#fff;font-weight:500;}

.foot-logo img {opacity:.20;}