@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-tablet {display:block;} 
.only-desktop {display:block;} 
.only-tablet {display:none;} 
.only-mobile {display:none;} 

#wrapper {overflow:hidden;}

/* header */
#header {position:fixed; top:0; left:0; width:100%; transition:.2s; background:transparent; z-index:100; border-bottom: 1px solid #ddd;} 
#header .contain {height:var(--header-height); display:flex; z-index:2; justify-content: space-between; align-items: center;} 
#header .contain .right {display:flex; align-items: center;} 

#sub #header {position:absolute; border-bottom: 1px solid rgba(221,221,221,0.3);} 

#header.header-white {background: #fff;} 
#header.header-white .sitelogo a {background-image: url("../images/common/logo.png");} 
#header.header-white #gnb>ul>li>a {color: #242424;} 
#header.header-white .btn-all-menu span, #header.header-white .btn-all-menu span:before, #header.header-white .btn-all-menu span:after {background: #242424;} 
#header.header-white .btn-m-menu span, #header.header-white .btn-m-menu span:before, #header.header-white .btn-m-menu span:after {background: #242424;} 

.sitelogo a {display:block; width: 200px; height: 54px; background:url("../images/common/logo-w.png") no-repeat center/contain; overflow:hidden; font-size:0; line-height:0; text-indent:-9999em;} 
#gnb > ul {display:flex; text-align:center;} 
#gnb > ul > li {position:relative; padding:0 10px;} 
#gnb>ul>li>a {position:relative; display:flex; align-items:center; flex-direction: column; justify-content:center; height:var(--header-height); padding:0 var(--padding-30-16); color:#fff; font-size:var(--font-size-21-18); font-weight:700; letter-spacing:-.03em; line-height:1.3em;} 
#gnb>ul>li>a:after {content:""; position:absolute; bottom:-1px; left:50%; width:0; height:3px; background:#255fac; transition:.2s;} 
#gnb>ul>li.active>a:after {width:100%; left:0;} 
#gnb .submenu {position:absolute; z-index:50; left:0; width:100%; height:0; overflow:hidden;} 
#gnb .submenu ul {padding:var(--padding-20-10) 0;} 
#gnb .submenu ul li {padding:10px;} 
#gnb .submenu ul li a {display:block; font-size:var(--font-size-18-16); font-weight:500; line-height:1.3em; color: #454545;} 
#gnb .submenu ul li a:hover {color: #255fac;} 

.submenu-bg {display:none; position:absolute; left:0; width:100%; background-color: #f4fafc;} 

#header .sns-wrap {display:flex; align-items: center;} 
#header .sns-wrap a {display:block; margin-left:14px;} 

/* for mobile */
.only-mobile {display:none;} 
.btn-m-menu {display:none; position:relative; width:26px; height:26px;} 
.btn-m-menu span {position:absolute; left:0; 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:0; 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 .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:#255fac} 
.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:#255fac;} 
.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 */
[data-aos=fade-up] {transform: translate3d(0,100px,0);} 
.main-visual {position:relative; height:100vh; overflow:hidden; color:#fff;} 
.main-visual .item {position:relative; height:100vh; overflow:hidden;} 
.main-visual .image {position:relative; height:100vh; overflow:hidden; transition:5s; transform:scale(1.1);} 
.main-visual .image 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 .main-video {position:absolute; bottom:0; left:0; width:100%; height:100%; overflow:hidden; background-color: #000;} 
.main-video video {position: absolute; bottom: 0; left: 0; width: 100%; height: 116.6%; object-fit: cover;} 
.main-visual .caption {position:absolute; top:50%; transform:translateY(-50%); width:100%; z-index:40;} 
.main-visual .caption p {opacity:0; transform:translateY(50px); transition:1.4s; line-height:1.3em; letter-spacing:0; text-align: center; filter: drop-shadow(5.142px 6.128px 14.72px rgba(0, 0, 0, 0.18));text-transform: uppercase;} 
.main-visual .caption p.t1 {  margin-bottom:var(--margin-35-15);  font-family: 'NEXON Lv2 Gothic'; font-weight: 900; font-size: var(--font-size-70-30);    text-transform: uppercase;} 
.main-visual .caption p.t2 { font-size: var(--font-size-50-25); font-weight: 900; text-transform: uppercase;} 
.main-visual .caption p.t3 {margin-bottom:var(--margin-55-25); font-size: var(--font-size-24-20); font-family: 'NEXON Lv2 Gothic'; font-weight: 400;} 
.main-visual .active .image {transform:scale(1);} 
.main-visual .active .caption p {opacity:1; transform:translateY(0);} 
.main-visual .active .caption .t3 {transition-delay:.2s;} 
.main-visual .active .caption .t1 {transition-delay:.4s;} 
.main-visual .active .caption .t2 {transition-delay:.6s;} 

#main.fp-viewing-product #header {background:#fff; border-bottom: 1px solid #ddd;} 
#main.fp-viewing-product #header .sitelogo a {background-image: url(/images/common/logo.png);} 
#main.fp-viewing-product #header #gnb > ul > li > a {color: #242424;} 
#main.fp-viewing-product .btn-m-menu span ,
#main.fp-viewing-product .btn-m-menu span:before,
#main.fp-viewing-product .btn-m-menu span:after {background:#222;}

#main.fp-viewing-business #header {background:#fff; border-bottom: 1px solid #ddd;} 
#main.fp-viewing-business #header .sitelogo a {background-image: url(/images/common/logo.png);} 
#main.fp-viewing-business #header #gnb > ul > li > a {color: #242424;} 
#main.fp-viewing-business .btn-m-menu span ,
#main.fp-viewing-business .btn-m-menu span:before,
#main.fp-viewing-business .btn-m-menu span:after {background:#222;}

 /* section */
 .section {background-position:center; background-repeat:no-repeat; background-size:cover;} 
 .section .flex-wrap {display:flex; justify-content: space-between; /} 
 .section .flex-wrap.ai-center {align-items: center;} 
 
 .m-head {margin-bottom:var(--margin-60-30); text-align:center;} 
 .m-head .en {display:block; margin-bottom:var(--margin-40-20); font-size: var(--font-size-20-18); color: #888888; font-family: 'NEXON Lv2 Gothic'; font-weight:500; line-height: 1em;} 
 .m-head .m-tit {font-size: var(--font-size-50-25); color: var(--color-dark); font-family: 'NEXON Lv2 Gothic'; font-weight:700; line-height: 1em;} 
 .m-head p {font-size: var(--font-size-18-16); line-height: 1.222em; margin-top:var(--margin-20-10);} 

 .section-inner {padding:var( --padding-130-60) 0;} 
 
 .main-product {background-image: url(/images/main/bg-sec-02.jpg);} 
 .main-business {background-image: url(/images/main/bg-sec-03.jpg);} 
 .main-link {height:700px !important; background-image: url(/images/main/bg-sec-04.jpg);} 

 .fp-auto-height.fp-section.main-link, 
.fp-auto-height.main-link .fp-slide, 
.fp-auto-height.main-link .fp-tableCell {height: 700px !important;} 

 /* main-product */
 .product-link ul {display:flex; flex-wrap: wrap;} 
 .product-link ul li {width:33.3333%; height:280px; background-position:center; background-repeat:no-repeat; background-size:cover; transition: .3s;} 
 .product-link ul li:nth-child(1) {background-image: url(/images/main/bg-product-01.jpg);} 
 .product-link ul li:nth-child(2) {background-image: url(/images/main/bg-product-02.jpg);} 
 .product-link ul li:nth-child(3) {background-image: url(/images/main/bg-product-03.jpg);} 
 .product-link ul li:nth-child(4) {background-image: url(/images/main/bg-product-04.jpg);} 
 .product-link ul li:nth-child(5) {background-image: url(/images/main/bg-product-05.jpg);} 
 .product-link ul li:nth-child(6) {background-image: url(/images/main/bg-product-06.jpg);} 
 .product-link ul li:hover:nth-child(1) {background-image: url(/images/main/bg-product-01-on.jpg);} 
 .product-link ul li:hover:nth-child(2) {background-image: url(/images/main/bg-product-02-on.jpg);} 
 .product-link ul li:hover:nth-child(3) {background-image: url(/images/main/bg-product-03-on.jpg);} 
 .product-link ul li:hover:nth-child(4) {background-image: url(/images/main/bg-product-04-on.jpg);} 
 .product-link ul li:hover:nth-child(5) {background-image: url(/images/main/bg-product-05-on.jpg);} 
 .product-link ul li:hover:nth-child(6) {background-image: url(/images/main/bg-product-06-on.jpg);} 

 .product-link a .cnt {display:flex; justify-content: center; align-items: center; flex-direction: column; height: 100%;} 
 .product-link a .cnt .ico {margin-bottom:var(--margin-20-10);} 
 .product-link a .cnt p {margin-bottom:var(--margin-45-15); color: #fff; font-weight:700; font-family: 'NEXON Lv2 Gothic'; font-size: var(--font-size-21-18); line-height:1em;} 
 .product-link a i {display:block;}
 .product-link a:hover .ico {display:flex; justify-content: center; align-items: center; width:150px; height:150px; border-radius: 100%; background-color: #e61552; margin-bottom:var(--margin-30-16);} 
 .product-link a:hover i {display:none;} 
 .product-link a:hover .cnt p {font-size: var(--font-size-24-20); margin-bottom:0;} 

 /* main-business */
.lnb-wrap {position:relative;} 
.lnb-wrap .lnb {max-width: 1200px; margin:var(--margin-60-30) auto;} 
.lnb ul {display:flex; align-items: center; justify-content: center;} 
.lnb ul li {text-align: center; width: auto;padding: 0 5px;} 
.lnb ul li a {display:flex; flex-direction:column; justify-content:center; align-items:center; width:140px; height:44px; padding:0 15px; color:#888888; font-size:var(--font-size-18-14); font-family: 'NEXON Lv2 Gothic'; letter-spacing:-.03em; border:1px solid #ddd; border-radius: 50vh;} 
.lnb ul li.active a {color:var(--color-dark); border: 1px solid var(--color-dark); font-weight:500;} 

#main .lnb {margin: 0 0 var(--margin-40-20);} 
#main .lnb ul {justify-content: start;} 

.business-list {margin-bottom:var(--margin-80-40);} 
.business-list ul {display:flex; flex-wrap:wrap; margin:0 -15px;} 
.business-list ul li {width:25%; padding:0 15px; text-align:center;} 
.business-list ul li.none {width:100%; padding:70px 0; margin:0; text-align:center; color:#767676;} 
.business-list ul li a {display:block;} 
.business-list ul li .thumb {position:relative; padding-bottom:76.67%; margin-bottom:12px; overflow:hidden;} 
.business-list ul li .thumb img {position:absolute; top:50%; left:0; transition:.4s ease-in-out; 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;} 
.business-list ul li .tit {font-weight:600; color:#333; font-size:var(--font-size-18-16); line-height:1.555em;} 

.btn-more {display:flex; justify-content: center; align-items: center; width:140px; height:54px; margin:0 auto; border-radius: 50vh; background-color: var(--color-primary); color: #fff; font-weight:600;} 
.btn-more.type2 {margin:var(--margin-50-30) auto;} 
.btn-more.type3 {margin: var(--margin-50-30) auto 0;} 

/* .main-link */
.main-link .cnt {display:flex; justify-content: center; align-items: center; flex-direction: column;} 
.main-link .cnt .logo {margin-bottom:var(--margin-50-30);} 
.main-link .link-wrap {display:flex; align-items: center;} 
.main-link .link-wrap a {display:flex; justify-content: center; align-items: center; width:260px; height:80px; padding:0 var(--padding-30-16); border: 1px solid #ddd; border-radius: 12px;} 
 .main-link .link-wrap a:first-child {margin-right:var(--margin-20-10);} 
.main-link .link-wrap i {display:block; margin-right:var(--margin-20-10);} 
.main-link .link-wrap p {font-family: 'NEXON Lv2 Gothic'; font-weight:500; color: #fff; font-size: var(--font-size-18-16);} 

/* sub page */
.contain {max-width:1600px; margin:0 auto; padding-left:var(--container-space); padding-right:var(--container-space);} 
#contArea {max-width:1600px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;} 
#contArea.wide {max-width:100% !important; padding-left:0; padding-right:0;} 

.sub-title {margin-bottom:var(--margin-100-40); text-align:center; color: var(--color-dark);} 
.sub-title.type2 {margin-top:var(--margin-160-80); padding-bottom:var(--padding-50-20); margin-bottom:0;} 
.sub-title h2 {font-family: 'NEXON Lv2 Gothic'; font-size: var(--font-size-34-24); font-weight:700; line-height:1em;} 

.real-cont {padding:0 0 var(--padding-120-80);} 

.sub-visual {position:relative; height:500px; z-index:10; overflow:hidden;} 
.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-visual .tt-wrap {width: 100%; position: absolute; left: 0; top: 50%; transform: translateY(-50%); z-index: 1; padding-top: var(--padding-80-40); text-align: center;} 
.sub-visual .tt-wrap .tit {font-family: 'NEXON Lv2 Gothic'; font-size: var(--font-size-50-25); line-height: 1em; font-weight: 700; color: #fff;} 

/* quick */
.quick {position: fixed; top:50%; right: 45px; transform: translateY(-50%); z-index: 80;} 
.quick ul li {margin-bottom: 10px;} 
.quick ul li:last-child {margin-bottom: 0;} 

/* footer */
#footer {background-color: #efefef; padding: var(--padding-50-20) 0; font-size: var(--font-size-15-13);} 
#footer .contain {display: flex; justify-content: space-between; align-items: end;} 
#footer .foot-info {max-width: 880px;} 
#footer .foot-info .foot-logo {margin-bottom:var(--margin-50-20);} 
#footer .foot-info address {font-style: normal; display: flex; flex-wrap: wrap; margin: 0 -15px;} 
#footer .foot-info address p {padding: 0 15px; line-height: 1.666em; color: #686868;} 
#footer .foot-info .copy {color: #686868; line-height: 1.666em; margin-top: 10px;} 
#footer .foot-info .copy a {color: #9c9c9c;} 
#footer .foot-menu {display: flex; justify-content: flex-end; margin: 0 -10px;} 
#footer .foot-menu li {padding: 0 10px;} 
#footer .foot-menu li a {color: #686868;} 
#footer .copy a:hover {text-decoration: underline;} 

