@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */ 

:root {
    /* color */
    --color-primary: #239aff;
    --color-secondary: #ffd738;

	--header-height: 100px;
}

.c1 {color:var(--color-primary) !important;}
.c2 {color:var(--color-secondary) !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;}

.contain {max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}

#wrapper {position:relative; overflow:hidden;}

/* header */
#header {position:fixed; top:0; left:0; width:100%; z-index:100; transition:.3s;}
#header .contain {max-width:1780px; position:relative; display:flex; align-items:center; justify-content:space-between; height:var(--header-height);}

.sitelogo a {display:block; background:url("../images/common/logo-w.png") no-repeat 0 center / contain; width:160px; height:50px; font-size:0; line-height:0;}

#gnb>ul {display:flex; text-align:center;} 
#gnb>ul>li {position:relative; padding:0 65px;}
#gnb>ul>li>a {position:relative; display:flex; align-items:center; height:var(--header-height); color:#fff; font-size:20px; font-weight:600; letter-spacing:-.03em; line-height:1.3em;}
#gnb>ul>li:hover>a {color:var(--color-primary) !important;}
#gnb .submenu {display:none; position:absolute; left:50%; width:180px; transform:translateX(-50%); background:#fff; border-top:1px solid #ddd; text-align:center; border-radius:0 0 20px 20px;}
#gnb .submenu>ul {padding:27px 5px;}
#gnb .submenu>ul>li>a {display:block; padding:11px 0; color:#242424; font-size:16px; line-height:1.33em;}
#gnb .submenu>ul>li>a:hover {color:var(--color-primary); text-decoration:underline;}

#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-m-menu span {background:#242424;}
#header:hover .btn-m-menu span:before,
#header:hover .btn-m-menu span:after {background:#242424;}

#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-m-menu span {background:#242424;}
#header.header-fixed .btn-m-menu span:before,
#header.header-fixed .btn-m-menu span:after {background:#242424;}

/* for mobile */
.btn-m-menu {display:block; position:relative; width:30px; height:24px;}
.btn-m-menu span {position:absolute; left:8px; 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:-8px; right:0; height:2px; background:#fff;}
.btn-m-menu span:before {top:-11px;}
.btn-m-menu span:after {bottom:-11px;}

.mobile-navigation {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:48px;}
.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;}

/* main */
#main #container .contain {max-width:1460px;}

.main-visual {height:100vh; position:relative; overflow:hidden; color:#fff; background:url('../images/main/mv-bg.png') no-repeat 50% 50% / 100% 100%;}
.main-visual .inner {position:absolute; left:0; top:50%; transform:translateY(-50%); width:100%;}
.main-visual .contain {position:relative;}
.main-visual .slick-list {overflow:visible;}
.main-visual .item .wrap {height:100%; position:relative; display:flex; align-items:center; justify-content:flex-end;}
.main-visual .item .img img {box-shadow:0 3px 20px rgba(0,0,0,0.15); border-radius:350px 20px 350px 350px;}
.main-visual .caption {position:absolute; left:158px;}
.main-visual .caption h2 {margin-bottom:45px; font-size:90px; font-weight:800; letter-spacing:-.03em; line-height:1.33em;}
/* .main-visual .slick-active .caption h2 {animation:1s fadeOutRightBig linear;}
.main-visual .slick-active .caption p {animation:1s .3s fadeOutRightBig linear;} */
.main-visual .controls {display:flex; align-items:center; position:absolute; top:50%; transform:rotate(90deg) translateY(-50%); left:-330px;}
.main-visual .paging-wrap {position:relative; padding:0 22px; min-width:320px; display:flex; align-items:center;}
.main-visual .slick-arrow {position:absolute; border:0; width:10px;height:16px;background-repeat:no-repeat; background-size:contain; background-position:50% 50%; font-size:0; line-height:0; background-color:transparent;}
.main-visual .slick-prev {left:0;background-image:url('../images/main/mv-prev.png');}
.main-visual .slick-next {right:0;background-image:url('../images/main/mv-next.png');}
.main-visual .paging {font-size:18px; font-weight:600; letter-spacing:-.03em; color:#fff; line-height:1.3em; display:flex; align-items:center;}
.main-visual .paging .current {min-width:22px;}
.main-visual .progress {margin:0 15px; display:block; position:relative; width:209px; height:3px; background:rgba(255,255,255,0.3);}
.main-visual .progress:after {content:""; position:absolute; top:0; left:0; width:0; height:100%; background:#fff; transition: 0.1s width linear;}
.main-visual .progress.animate:after {transition:width linear; width:100%; transition-delay:unset; transition-duration:4s;}
.main-visual .controls>button {margin-left:30px; transform:rotate(-90deg); line-height:0; border:0; background-color:transparent; display:inline-block; width:44px; height:44px; background-position:50% 50%; background-repeat:no-repeat; background-size:contain;}
.main-visual .controls>button.play {display:none; background-image:url("../images/main/play.png");}
.main-visual .controls>button.stop {background-image:url("../images/main/pause.png");}

.m-tit {margin-bottom:20px; font-size:70px; font-weight:700; letter-spacing:-.04em; line-height:1.3em; color:#242424;}

.m-txt {font-size:20px; font-weight:500; letter-spacing:-.03em; color:#fff; line-height:1.8em;}
.m-txt2 {font-size:18px; font-weight:400; letter-spacing:-.03em; color:#454545; line-height:1.78em;}

.main-links {margin-top:-45px; margin-bottom:140px;}
.main-links .contain {display:flex; align-items:flex-end;}
.main-links .img {width:540px; margin-right:140px; position:relative; z-index:-1;}
.main-links .img:before {content:''; position:absolute; left:-160px; top:-90px; width:361px; height:363px; background:url('../images/main/baby-acc.png') no-repeat 50% 50% / contain; z-index:-1;}
.main-links .cnt {position:relative; padding-bottom:17px; flex:1 1 auto; min-width:0; width:1%;}
.main-links .cnt:after {content:''; position:absolute; right:-251px; top:-200px; width:391px; height:194px; background:url('../images/main/cloud.png') no-repeat 50% 50% / contain; z-index:-1;}
.main-links .links {margin-top:72px;}
.main-links .links ul {display:flex; margin:0 -50px;}
.main-links .links ul li {padding:0 50px; border-right:1px solid #ddd; text-align:center;}
.main-links .links .tit {margin-top:15px; font-size:18px; font-weight:500; letter-spacing:-.03em;}

.main-company {margin-bottom:130px;}
.main-company .m-tit {font-size:50px;}
.main-company .m-txt2 {margin-bottom:55px;}
.main-company .row {display:flex; margin:0 -15px;}
.main-company .col {width:50%; padding:0 15px; text-align:center;}
.main-company a {padding:0 40px 35px; display:block; position:relative; height:100%;}
.main-company a:before {content:''; position: absolute; left:0; top:50px; width:100%; bottom:0; border-radius:20px; z-index:-1;}
.main-company a.st1:before {background:var(--color-primary);}
.main-company a.st2:before {background:var(--color-secondary);}
.main-company .img {margin-bottom:35px;}
.main-company .img img {border-radius:20px;}
.main-company .txt {font-size:24px; font-weight:600; letter-spacing:-.03em; line-height:1.4em; color:#fff;}
.main-company a.st2 {pointer-events:none;}
.main-company a.st2 .txt {font-size:20px;color:#242424;}
.main-company a.st2 .txt strong {font-size:30px;display:inline-block; margin:0 14px 0 10px;}
.main-company a.st2 .txt + .txt {margin-top:10px;}


/* sub */
.sub-visual {position:relative; height:400px; 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:35px; padding:0 20px; transform:translateY(-50%);}
.sv-title {font-size:44px; font-weight:700; letter-spacing:-.03em; line-height:1.4em;}
.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");}
.sub-visual .bg4 {background-image:url("../images/common/sv4.jpg");}
.sub-visual .bg5 {background-image:url("../images/common/sv5.jpg");}
.sub-visual .bg6 {background-image:url("../images/common/sv6.jpg");}

.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.lnb-wrap {position:relative; overflow:hidden; color:#fff; margin-top:-35px;}
.lnb-wrap:before {content:""; position:absolute; top:0; left:50%; right:0; height:100%; background:var(--color-primary);}
.lnb-wrap .contain {position:relative; display:flex; align-items:center; justify-content:space-between; background:var(--color-primary); z-index:2;}
.lnb-wrap .contain:before {content:""; position:absolute; top:0; left:-50px; width:80px; height:100%; background:var(--color-primary); border-radius:35px 0 0 35px;}

.lnb ul li {width:auto; margin-right:60px;}
.lnb ul li a {position:relative; display:flex; align-items:center; justify-content:center; width:100%; height:70px; font-size:20px; font-weight:600; line-height:1.2em; letter-spacing:-.03em; opacity:.5;}
.lnb ul li.active a {opacity:1; font-weight:700;}

.path {display:flex; align-items:center; flex-wrap:wrap; font-size:15px; line-height:1.5em;}
.path .home {display:flex; align-items:center;}
.path .arrow {margin:0 10px; width:6px; height:11px; overflow:hidden; background:url("../images/common/path-arrow.png") 50% 50% no-repeat;}

#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:60px 0; text-align:center;}
.sub-title h1 {font-size:36px; line-height:1.3em; letter-spacing:-.03em; color:#242424;}

.real-cont {min-height:300px; padding-bottom:100px;}

/* quick */
.quick {padding:27px 14px; border-radius:10px; box-shadow:0 3px 10px rgba(0,0,0,0.15); position:fixed; right:50px; top:485px; width:260px; background:var(--color-secondary); z-index:90;}
.quick .tel {margin-bottom:25px; padding-left:65px; position:relative; display:block; font-size:18px; font-weight:600; letter-spacing:-.03em;}
.quick .tel strong {display:inline-block; margin-top:5px; font-size:20px; color:#242424;}
.quick .tel:before {content:''; position: absolute; left:0; top:5px; width:50px; height:50px; background:url('../images/common/ico-tel.png') no-repeat 50% 50% / contain;}
.quick p {margin-bottom:8px;background:#fff; text-align:center; font-size:15px; line-height:1.4em; border-radius:5px; line-height:30px;}
.quick p:last-child {margin-bottom:0;}
.quick p small {font-size:12px; color:#898989;}

#main .quick {display:none;}

/* footer */
#footer {padding:30px 0 35px; color:#666; font-size:15px; line-height:1.5em; letter-spacing:-.03em; border-top:1px solid #ddd;}
#footer .contain {max-width:1460px; position:relative;}
#footer span {display:inline-block;}
#footer a:hover {text-decoration:underline;}

.foot-logo {margin-bottom:23px;}

#footer address {margin-bottom:5px; font-style:normal;}
#footer address span {margin-right:25px;}
.designed {margin-left:30px; font-size:14px;}
.foot-links {display:flex; position:absolute; right:30px; top:15px; color:#999;}
.foot-links li:not(:last-child) {margin-right:30px;}

