@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */ 

:root {
    /* color */
    --color-primary: #213564;
    --color-secondary: #5f73a3;
}

.c1 {color:var(--color-primary) !important;}

#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;outline-color:#f37736;}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}

#wrapper {position:relative;}

/* header */
#header {position:fixed; top:0; left:0; width:100%; z-index:100; transition:.3s; border-bottom:1px solid rgba(255,255,255,0.3)}
#header .contain {max-width:1460px; position:relative; display:flex; align-items:center; justify-content:space-between; height:100px; z-index:10;}

.sitelogo a {display:block; background:url("../images/common/logo-w.png") no-repeat 0 center / contain; width:231px; height:36px; font-size:0; line-height:0;}

#gnb>ul {display:flex; justify-content:center;} 
#gnb>ul>li {position:relative; padding:0 54px;}
#gnb>ul>li>a {position:relative; display:flex; align-items:center; flex-direction:column; justify-content:center; height:100px; color:#fff; font-size:20px; font-weight:600; letter-spacing:-.01em; line-height:1.3em;}
#gnb>ul>li:hover>a {color:var(--color-primary) !important;}
#gnb .submenu {position:absolute; left:0; width:100%; height:0; overflow:hidden; text-align:center;}
#gnb .submenu>ul {padding:25px 5px;}
#gnb .submenu>ul>li>a {display:block; padding:12px 0; color:#454545; font-size:16px; line-height:1.33em; letter-spacing:0; font-weight:500;}
#gnb .submenu>ul>li>a:hover {color:var(--color-primary); text-decoration:underline;}
.submenu-bg {display:none; position:absolute; width:100%; left:0; background:rgba(255,255,255,0.9);}

.btn-all-menu {position:relative; width:26px; height:20px;}
.btn-all-menu span {position:absolute; left:10px; right:0; top:50%; height:2px; margin-top:-1px; background:#fff;}
.btn-all-menu span:before,
.btn-all-menu span:after {content:" "; position:absolute; left:-10px; right:0; height:2px; background:#fff;}
.btn-all-menu span:before {top:-9px;}
.btn-all-menu span:after {bottom:-9px;}

/* for mobile */
.btn-m-menu {display:none; position:relative; width:26px; height:20px;}
.btn-m-menu span {position:absolute; left:10px; right:0; top:50%; height:2px; margin-top:-1px; background:#fff;}
.btn-m-menu span:before,
.btn-m-menu span:after {content:" "; position:absolute; left:-10px; right:0; height:2px; background:#fff;}
.btn-m-menu span:before {top:-9px;}
.btn-m-menu span:after {bottom:-9px;}

.mobile-navigation {display:none; position:fixed; top:0; right:0; width:300px; height:100%; overflow:auto; transition:.2s linear; -ms-transform:translateX(100%); transform:translateX(100%); background:#fff; z-index:102;}
.mobile-navigation .home {display:flex; align-items:center; height:80px; padding:0 20px; color:#242424; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .home img {height:32px;}
.mobile-navigation .nav-menu>ul {border-top:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li {border-bottom:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li>a {position:relative; padding:10px 48px 10px 20px; display:block; color:#242424; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .nav-menu>ul>li>a:after {content:""; position:absolute; top:50%; right:20px; transform:translateY(-75%) rotate(45deg); width:11px; height:11px; border-right:2px solid #505050; border-bottom:2px solid #505050;}
.mobile-navigation .nav-menu>ul>li.active>a {color:#fff; background:var(--color-primary);}
.mobile-navigation .nav-menu>ul>li.active>a:after {transform:translateY(-35%) rotate(-135deg); border-color:#fff;}
.mobile-navigation .nav-menu .submenu {display:none; background:#f8f8f8; color:#454545; font-size:16px; font-weight:400; line-height:1.5em;}
.mobile-navigation .nav-menu .submenu ul li {border-top:1px solid #e5e5e5;}
.mobile-navigation .nav-menu .submenu ul li a {display:block; padding:12px 20px;}
.mobile-navigation .nav-menu .submenu ul li a:hover {color:var(--color-primary);}
.mobile-navigation .close {position:absolute; top:25px; right:15px; width:26px; height:26px; text-indent:-9999em; overflow:hidden;}
.mobile-navigation .close:before,
.mobile-navigation .close:after {content:" "; position:absolute; top:12px; left:0; width:100%; height:3px; background:#242424; border-radius:3px;}
.mobile-navigation .close:before {transform:rotate(45deg);}
.mobile-navigation .close:after {transform:rotate(-45deg);}
.mobile-overlay {display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:#000; opacity:0.6; z-index:101;}

html.menu-opened {overflow:hidden;}
html.menu-opened .mobile-navigation {-ms-transform:translateX(0); transform:translateX(0);}
html.menu-opened .mobile-overlay {display:block;}

#header:hover {background:#fff;}
#header:hover .sitelogo a {background-image:url('../images/common/logo.png');}
#header:hover #gnb>ul>li>a {color:#242424;}
#header:hover .btn-all-menu span {background:#454545;}
#header:hover .btn-all-menu span:before,
#header:hover .btn-all-menu span:after {background:#454545;}
#header:hover .btn-m-menu span {background:#454545;}
#header:hover .btn-m-menu span:before,
#header:hover .btn-m-menu span:after {background:#454545;}

#header.header-fixed {background:#fff; box-shadow:0px 3px 10px rgba(0,0,0,0.1)}
#header.header-fixed .sitelogo a {background-image:url('../images/common/logo.png');}
#header.header-fixed #gnb>ul>li>a {color:#242424;}
#header.header-fixed .btn-all-menu span {background:#454545;}
#header.header-fixed .btn-all-menu span:before,
#header.header-fixed .btn-all-menu span:after {background:#454545;}
#header.header-fixed .btn-m-menu span {background:#454545;}
#header.header-fixed .btn-m-menu span:before,
#header.header-fixed .btn-m-menu span:after {background:#454545;}

/* main */
#main #container .contain {max-width:1460px;}

.main-visual {position:relative; overflow:hidden; color:#fff;}
.main-visual .contain {max-width:1460px !important;}
.main-visual .item {height:100vh;}
.main-visual .img {transition:5s; transform:scale(1); position:absolute; top:0; right:0; width:100%; height:100%;}
.main-visual .img img {position:absolute; top:50%; left:0; transform:translateY(-50%); -ms-transform:translateY(-50%); -webkit-transform:translateY(-50%); width:100%; height:auto !important; max-width:100%; min-height:100%; object-fit:cover;}
.main-visual .slick-slide.active .img {transform:scale(1.06);}
.main-visual .caption {padding:0 80px; position:absolute; top:50%; left:0; transform:translateY(-50%); width:100%; z-index:2;}
.main-visual .caption h2 {font-size:50px; font-weight:500; letter-spacing:-.04em; line-height:1.4em;}
.main-visual .caption p {margin:25px 0 70px; font-size:20px; font-weight:500; letter-spacing:-.03em; line-height:1.6em;}
.main-visual .slick-arrow {position: absolute; top:50%; transform:translateY(-50%); border:0; background-color:transparent; line-height:0; font-size:0; letter-spacing:0; width:31px; height:60px; background-size:contain; background-repeat:no-repeat; background-position:50% 50%; z-index:10;}
.main-visual .slick-prev {left:52px; background-image:url('../images/main/mv-prev.png');}
.main-visual .slick-next {right:52px; background-image:url('../images/main/mv-next.png');}
.main-visual .slick-dots {position:absolute; width:100%; left:0; bottom:50px; text-align:center;}
.main-visual .slick-dots li {margin:0 5px; display:inline-block;}
.main-visual .slick-dots button {width:30px; height:3px; background-color:rgba(255,255,255,0.2); font-size:0; line-height:0; letter-spacing:0; border:0;}
.main-visual .slick-dots li.slick-active button {background:#fff;}

.main-sec {padding:100px 0;}

.doc-btn {display:inline-flex; align-items:center; justify-content:space-between; padding:0 20px; height:50px; min-width:180px; letter-spacing:-.01em; line-height:1.3em; border:1px solid rgba(255,255,255,0.5); border-radius:10px; color:#fff; transition:.3s;}
.doc-btn:after {width:8px; height:14px; content:''; background-size:contain; background-repeat:no-repeat; background-position:50% 50%; background-image: url('../images/main/arr.png');}
.doc-btn:hover {background:var(--color-primary); border-color:var(--color-primary);}

.gray-bg {background-color:#f8f8f8;}

.main-links ul {display:flex; margin:-15px;}
.main-links ul li {width:33.3333%; padding:15px; text-align:center;}
.main-links .box {display:flex; flex-direction:column; align-items:center; justify-content:center; overflow:hidden; position:relative; min-height:300px; border-radius:10px;}
.main-links .box:after {content:''; position:absolute; left:0; top:0; right:0; bottom:0; border:1px solid #ddd; border-radius:10px;}
.main-links .tit {margin:20px 5px 25px; font-size:28px; font-weight:700; letter-spacing:-.02em; line-height:1.4em; color:#242424;}
.main-links .doc-btn {height:0; opacity:0; position:relative; z-index:1; color:#454545; border-color:#ddd;}
.main-links .doc-btn:after {background-image:url('../images/main/arr-black.png');}
.main-links .doc-btn:hover {color: #fff;}
.main-links .doc-btn:hover:after {color:#fff; background-image:url('../images/main/arr.png');}

.main-links .box:hover:after {border:2px solid var(--color-primary);}
.main-links .box:hover .tit {color:var(--color-primary);}
.main-links .box:hover .doc-btn {height:50px; opacity:1;} 

.main-all-links .links ul {display:flex; margin:-17px;}
.main-all-links .links ul li {width:33.3333%; padding:17px;}
.main-all-links .tit {margin-bottom:11px; font-size:28px; font-weight:700; letter-spacing:-.02em; line-height:1.3em; color:#fff;}
.main-all-links .txt {letter-spacing:-.02em; line-height:1.5em; color:#fff;}
.main-all-links a {overflow:hidden; display:block; border-radius:10px;}
.main-all-links .bnr-link {padding:33px 180px 47px 40px; background-repeat:no-repeat; background-position:right 30px center;}
.main-all-links .bnr-link.bg1 {background-color:var(--color-primary); margin-bottom:30px; background-image:url('../images/main/ico-bnr-link1.png');}
.main-all-links .bnr-link.bg2 {background-color:var(--color-secondary); background-image:url('../images/main/ico-bnr-link2.png')}
.main-all-links .biz-link {display:flex; flex-direction:column; align-items:flex-start; justify-content:space-between; height:100%; padding:36px 40px 40px; background:url('../images/main/biz-link-bg.jpg') no-repeat 50% 50% / cover;}
.main-all-links .biz-link:hover .doc-btn {background:var(--color-primary); border-color:var(--color-primary);}
.root_daum_roughmap {width:100% !important;}
.map-link .root_daum_roughmap {height:381px !important;}
.map-link {position:relative; padding:0;}
.map-link .caption {display:flex; align-items:center; padding:16px 20px; line-height:1.56em; position:absolute; left:0; bottom:0; width:100%; z-index:1; background:rgba(33,53,100,0.9); color:#fff;}
.map-link .caption .add {width:255px;}
.map-link .caption .bar {width:1px; height:35px; margin:0 20px; background:rgba(255,255,255,0.3);}
.map-link .caption .info {font-size:15px;}

/* sub */
.sub-visual {position:relative; height:420px; text-align:center; color:#fff; overflow:hidden; background:#333;}
.sub-visual .bg {position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; transition:2s; opacity:1; transform:scale(1.1); background-repeat:no-repeat; background-position:50% 0; background-size:cover;}
.sub-visual .inner {position:absolute; top:50%; left:0; width:100%; margin-top:48px; padding:0 20px; transform:translateY(-50%);}
.sub-visual p {font-size:38px; line-height:1.3em; letter-spacing:-.03em; font-weight:700;}
.sub-visual .bg1 {background-image:url("../images/common/sv1.jpg");}
.sub-visual .bg2 {background-image:url("../images/common/sv2.jpg");}
.sub-visual .bg3 {background-image:url("../images/common/sv3.jpg");}

.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.lnb-wrap {border-bottom:1px solid #ddd;}
.lnb {max-width:1200px; margin:0 auto;}
.lnb ul {display:flex;}
.lnb ul li {flex:1; border-left:1px solid #ddd;}
.lnb ul li:last-child {border-right:1px solid #ddd;}
.lnb ul li a {position:relative; display:flex; align-items:center; justify-content:center; width:100%; height:60px; padding:0 13px; color:#454545; line-height:1.2em; letter-spacing:-.03em; font-size:19px; color:#454545; font-weight:500;}
.lnb ul li.active a {background-color:var(--color-primary); color:#fff;}

#contArea {max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}
#contArea.wide {max-width:100%; padding-left:0; padding-right:0;}
#contArea.wide .sub-title {padding-left:10px; padding-right:10px;}
.contain {width:100%; max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}

.sub-title {padding:73px 0; text-align:center;}
.sub-title h1 {font-size:35px; letter-spacing:-.03em; line-height:1.3em; color:#242424}

.real-cont {min-height:300px; padding-bottom:105px;}

/* footer */
#footer {padding:40px 0; background:#2c2c2c; color:#9e9e9e; font-size:15px; line-height:1.5em; letter-spacing:0;}
#footer .contain {max-width:1460px; display:flex; justify-content:space-between;}
#footer address {font-style:normal;}
#footer span {display:inline-block;}
#footer a:hover {text-decoration:underline;}

.foot-logo {margin-bottom:27px;}

.foot-info {max-width:730px;}
.foot-info address {margin-bottom:10px;}
.foot-info address span {margin:0 15px 5px 0;}

.copyright {font-size:14px; color:#707070;}

.foot-links ul {display:flex;}
.foot-links ul li:not(:first-child) {margin-left:30px;}
.foot-links a {display:inline-flex; align-items:center; color:#ababab;}
.foot-links a:before {content:''; width:15px; height:15px; margin-right:7px; background:url('../images/common/icon-doc.png') no-repeat 50% 50% / contain;}

.scroll-top {position:fixed; bottom:30px; right:30px; width:51px; height:51px; background:url('../images/common/top.png') no-repeat 50% 50% / contain; transition:.2s; opacity:0; font-size:0; line-height:0; z-index:90;}
.scroll-top.active {opacity:1;}
