@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;outline-color:#f37736;}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}

.contain {max-width:1460px; padding-left:30px; padding-right:30px; margin:0 auto;}

#wrapper {padding-top:var(--header-height); position:relative; overflow:hidden;}

/* header */
#header {position:fixed; top:0; left:0; width:100%; z-index:100; transition:.3s; background:#fff;}
#header .contain {max-width:1780px; position:relative; display:flex; align-items:center; justify-content:space-between; height:var(--header-height); z-index:10;}

.sitelogo img {height:clamp(40px, calc(53 / var(--inner) * 100vw), 53px);}

#gnb>ul {display:flex; text-align:center;} 
#gnb>ul>li {position:relative; padding:0 var(--space-40);}
#gnb>ul>li>a {position:relative; display:flex; align-items:center; justify-content:center; height:var(--header-height); font-size:var(--font-size-18); font-weight:500; letter-spacing:-.03em; line-height:1.3em;}
#gnb>ul>li>a:after {content:""; position:absolute; bottom:-1px; left:50%; transform:translateX(-50%); width:0; height:2px; background:var(--color-secondary); transition:.2s;}
#gnb>ul>li.active>a:after {width:100%;;}
#gnb .submenu {position:absolute; left:0; width:100%; height:0; overflow:hidden; text-align:center;}
#gnb .submenu>ul {padding:var(--space-30) 5px var(--space-60);}
#gnb .submenu>ul>li>a {display:block; padding:var(--space-10) 0; color:#454545; line-height:1.33em; letter-spacing:-.03em;}
#gnb .submenu>ul>li>a:hover {color:var(--color-secondary); text-decoration:underline;}
.submenu-bg {display:none; position:absolute; width:100%; left:0; background:#fff; border-top:1px solid #ddd;}

.pull-right {display:flex; align-items:center; gap:0 20px;}

.language {position:relative; display:inline-block;}
.language .toggle-button {display:flex; align-items:center; gap:var(--space-5); background:none; border:0; font-size:var(--font-size-14); font-weight:600; text-align:left;}
.language .toggle-button .ico {width:15px;}
.language .toggle-button .chevron {width:7px;}
.language .toggle-button svg {display:block; width:100%; height:auto;}
.language .toggle-layer {display:none; position:absolute; left:0; top:calc(100% + var(--space-8)); width:100%; text-align:center;}
.language .toggle-layer ul {display:grid; gap:var(--space-8) 0;}
.language .toggle-layer a {display:block; background:var(--color-primary); font-size:var(--font-size-14); font-weight:600; line-height:1.5em; color:#fff; border-radius:12px;}
.language.active .toggle-button .chevron {transform:scaleY(-1);}

#header.header-fixed {box-shadow:0px 3px 5px rgba(0,0,0,0.1);}

/* for mobile */
.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:#242424;}
.btn-m-menu span:before,
.btn-m-menu span:after {content:" "; position:absolute; left:0; right:0; height:2px; background:#242424;}
.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: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-visual {position:relative; overflow:hidden; color:#fff;}
.main-visual .item {height:calc(100vh - var(--header-height));}
.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 var(--space-60); position:absolute; top:50%; transform:translateY(-50%); left:0; width:100%; z-index:2;}
.main-visual .caption .txt-1 {margin-bottom:var(--space-30); font-size:var(--font-size-56); font-weight:700; letter-spacing:-.03em; line-height:1.4em;}
.main-visual .caption .txt-2 {font-size:var(--font-size-26); font-weight:400; letter-spacing:-.03em; line-height:1.4em;}
.main-visual .slick-dots {position:absolute; bottom:var(--space-30); left:0; width:100%; text-align:center; line-height:0;}
.main-visual .slick-dots li {display:inline-block; margin:0 var(--space-5);}
.main-visual .slick-dots li button {display:block; border:0; width:9px; height:9px; font-size:0; border-radius:9px; background-color:rgba(255, 255, 255, .5); transition:.2s;}
.main-visual .slick-dots li.slick-active button {background-color:#fff; width:32px;}

.m-heading {margin-bottom:var(--space-50); text-align:center;}

.m-head {margin-bottom:var(--space-20); font-size:var(--font-size-40); font-weight:700; letter-spacing:-.03em; line-height:1.4em;}

.m-txt {font-size:var(--font-size-18); font-weight:400; letter-spacing:-.03em; line-height:1.4em;}

.m-more {display:inline-block; line-height:clamp(40px, calc(56 / var(--inner) * 100vw), 56px); border-radius:32px; border:1px solid #ddd; padding:0 var(--space-40);}
.m-more:hover {border-color:var(--color-primary); background:var(--color-primary); color:#fff;}

.main-product {padding:var(--space-150) 0;}
.main-product .items {display:grid; grid-template-columns:repeat(4, 1fr); gap:var(--space-20); text-align:center;}
.main-product .items .item {position:relative; height:550px; display:flex; align-items:center; justify-content:center;}
.main-product .items .item:after {transition:.2s; opacity:0; content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(8, 84, 158, .7);}
.main-product .items .text {padding:0 10px; color:#fff; position:relative; z-index:1;}
.main-product .items .text h3 {font-size:var(--font-size-30); font-weight:600; letter-spacing:-.03em; line-height:1.4em;}
.main-product .items .text p {margin:var(--space-15) 0 var(--space-25); font-size:var(--font-size-18); font-weight:400; letter-spacing:-.03em; line-height:1.45em;}
.main-product .items .text .btn {display:flex; justify-content:center; align-items:center; gap:0 var(--space-10); font-weight:400; letter-spacing:-.03em; line-height:1.4em;}
.main-product .items .text .btn:after {content:''; width:26px; height:8px; background:url('/images/main/product-arrow.png') no-repeat center center / contain;}
.main-product .items .item:hover:after {opacity:1;}

.main-solution {padding:var(--space-150) 0; background:url('/images/main/solution-bg.jpg') no-repeat center center / cover; color:#fff;}
.main-solution .items {display:flex; justify-content:space-between; text-align:center;}
[lang='en'] .main-solution .items {display:grid; grid-template-columns:repeat(4, 1fr);}
.main-solution .items .tit {margin:var(--space-35) 0 var(--space-15); font-size:var(--font-size-30); font-weight:600; letter-spacing:-.03em; line-height:1.4em;}
.main-solution .items .txt {font-weight:400; letter-spacing:-.03em; line-height:1.6em;}

.main-news {padding:var(--space-150) 0;}
.main-news h3 {margin-bottom:var(--space-30); font-size:var(--font-size-28); font-weight:600; letter-spacing:-.03em; line-height:1.4em;}
.main-news .more-wrap {text-align:center; margin-top:var(--space-30);}
.main-news .wrap {display:flex; justify-content:space-between; gap:0 var(--space-70);}
.main-news .notice {width:47.4%; max-width:633px;}
.main-news .notice .list {border-top:2px solid #686868;}
.main-news .notice .list ul li {position:relative; padding:0 120px 0 var(--space-20); display:flex; align-items:center; border-bottom:1px solid #d1d1d1; height:clamp(50px, calc(80 / var(--inner) * 100vw), 80px);}
.main-news .notice .list .tit {display:block; font-weight:600; letter-spacing:-.03em; line-height:1.4em;  max-height:1.4em; overflow:hidden; text-overflow:ellipsis; word-break:break-all; white-space:nowrap;}
.main-news .notice .list span {position:absolute; right:var(--space-10); display:inline-block; color:#bcbcbc; font-size:var(--font-size-15); line-height:1.4em;}
.main-news .news {flex:1 1 auto; min-width:0; width:1%;}
.main-news .news .slider {position:relative;}
.main-news .news .slider .items {margin:0 calc(var(--space-15) * -1);}
.main-news .news .slider .item {padding:0 var(--space-15);}
.main-news .news .slider .link {display:block; border-radius:20px; overflow:hidden; position:relative;}
.main-news .news .slider .link .img {aspect-ratio:1/1; overflow:hidden;}
.main-news .news .slider .link .img img {width:100%; height:100%; object-fit:cover;}
.main-news .news .slider .link p {position:absolute; left:0; bottom:var(--space-20); width:100%; padding:0 var(--space-15); color:#fff; font-weight:600; letter-spacing:-.03em; line-height:1.6em; max-height:3.2em; overflow:hidden; text-overflow:ellipsis; word-break:break-all; white-space:normal; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
.main-news .news .slider .arrows {display:flex; gap:0 var(--space-30); position:absolute; right:0; top:-58px;}
.main-news .news .slider .slick-arrow {width:9px; height:16px; border:0; font-size:0; background-color:transparent; background-repeat:no-repeat; background-position:50% 50%;}
.main-news .news .slider .slick-prev {background-image:url('/images/main/news-prev.png');}
.main-news .news .slider .slick-next {background-image:url('/images/main/news-next.png');}

/* sub */
.sub-visual {position:relative; height:clamp(200px, calc(480 / var(--inner) * 100vw), 480px); 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%; transform:translateY(-50%);}
.sub-visual .inner .en {margin-bottom:var(--space-20); font-weight:600; line-height:1.4em; letter-spacing:.3em;}
.sub-visual .inner .tit {font-size:var(--font-size-72); font-weight:800; 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-1 {background-image:url("/images/common/sv3-1.jpg");}
.sub-visual .bg3-2 {background-image:url("/images/common/sv3-2.jpg");}
.sub-visual .bg3-3 {background-image:url("/images/common/sv3-3.jpg");}
.sub-visual .bg3-4 {background-image:url("/images/common/sv3-4.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");}
.sub-visual .bg7 {background-image:url("/images/common/sv7.jpg");}
.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.lnb-wrap {position:absolute; bottom:var(--space-40); left:0; width:100%;}
.lnb ul li {width:auto;}
.lnb ul li a {display:flex; align-items:center; justify-content:center; padding:0 var(--space-20); height:36px; color:#fff; font-weight:700; letter-spacing:-.03em; border-radius:48px; text-align:center;}
.lnb ul li.active a {background:#111;}

.product-logo {pointer-events:none; position:absolute; bottom:var(--space-50); left:0; width:100%; text-align:center;}

#contArea {max-width:1460px; 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;}

.sub-title {padding:var(--space-100) 0; text-align:center;}
.sub-title h1 {font-size:var(--font-size-40); font-weight:700; letter-spacing:-.03em; line-height:1.4em;}

.real-cont {min-height:300px; padding-bottom:var(--space-150);}

/* footer */
#footer {color:#8D8D8D; background:#111; line-height:1.5em; letter-spacing:-.03em;}
#footer span {display:inline-block;}

.foot-top {padding:var(--space-30) 0; border-bottom:1px solid #4c4c4c;}
.foot-top .f-links {color:#fff;}

.foot-info {padding:var(--space-50) 0;}
.foot-info .contain {display:flex; gap:0 var(--space-40); position:relative;}
.foot-info .f-logo {margin-bottom:10px;}
.foot-info .f-logo img {height:clamp(35px, calc(45 / var(--inner) * 100vw), 45px);}
.foot-info .comp-name {margin-bottom:var(--space-30); color:#fff; font-weight:600;}
.foot-info .f-info address {font-style:normal; display:flex; flex-wrap:wrap; gap:2px var(--space-40); max-width:455px;}
.foot-info .f-etc {position:absolute; right:30px; bottom:0; text-align:right; color:#636363;} 
.foot-info .f-etc .designed {margin-bottom:var(--space-8);}