@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */

#skipToContent a {z-index:100000;position:absolute;overflow:hidden;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;}
#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;}
a:focus {outline:#f37736;}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}

.contain {max-width:1260px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;}

/* header */
#header {position:sticky; top: 0; width:100%; background:#fff; border-bottom:1px solid #ddd; z-index:100;}
#header .contain {position:relative; display:flex; align-items:center; justify-content:space-between; max-width: 1680px; height:var(--header-height); z-index:10;}

#gnb {text-align:center; flex:1 1 auto; min-width:0; width:1%; margin-right: clamp(10px, calc(30 / var(--inner) * 100vw), 30px);}
#gnb>ul {display:flex; justify-content:flex-end;}
#gnb>ul>li {position:relative; padding:0 clamp(10px, calc(20 / var(--inner) * 100vw), 20px);}
#gnb>ul>li>a {z-index: 1; position:relative; display:flex; align-items:center; justify-content:center; gap: 8px; height:var(--header-height); padding: 0 var(--space-15); color:#000; font-size:var(--font-size-18); letter-spacing:-.03em; line-height:1.3em;}
#gnb>ul>li>a:after {content: ''; display: block; width: 10px; height: 8px; background: url('/images/common/gnb-arrow.png') no-repeat center center / contain;}
#gnb>ul>li:last-child>a:before {position: absolute; content: ''; top: 50%; right: 0; left: 0; height: 38px; background: var(--dark-color); border-radius: 100px; transform: translateY(-50%); z-index: -1;}
#gnb>ul>li.active>a {color: var(--primary-color);}
#gnb>ul>li:last-child>a {color: #fff;}
#gnb>ul>li:last-child.active>a {color: var(--dark-color)}
#gnb>ul>li:last-child.active>a:before {border: 2px solid var(--dark-color); background: #fff;}
#gnb>ul>li:last-child.active>a:after {filter: brightness(0);}
#gnb>ul>li:last-child>a:after {filter: brightness(0) invert(1);}
#gnb>ul>li:first-child .submenu {left:clamp(0px, calc(10 / var(--inner) * 100vw), 10px); transform:none;}
#gnb>ul>li:last-child .submenu {left:auto; right:clamp(0px, calc(10 / var(--inner) * 100vw), 10px); transform:none;}
#gnb .submenu {display:none; position:absolute; left:50%; text-align:center; transform:translateX(-50%);}
#gnb .submenu>ul {display:flex;}
#gnb .submenu>ul>li>a {display:block; padding:var(--space-30) clamp(10px, calc(25 / var(--inner) * 100vw), 25px); color:#454545; font-size:16px; font-weight: 600; line-height:1.875em; white-space:nowrap;}
#gnb .submenu>ul>li>a:hover {text-decoration:underline; text-underline-offset: 4px; color: var(--primary-color);}
.submenu-bg {display:none; position:absolute; width:100%; left:0; background:#FBFBFB;}

.language {position:relative; color: #888; line-height:1.9375em;}
.language > span {cursor: pointer;}
.language .submenu {display: none; position: absolute; left:50%; transform:translateX(-50%); padding-top: 8px;}
.language ul {padding: var(--space-10) var(--space-20); background: #fff; border-radius: var(--radius-16); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);}
.language li a {display: flex; justify-content: space-between; gap: var(--space-30); min-width: 101px;}
.language li:hover a {color: var(--primary-color); font-weight: 600;}

/* 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:var(--header-height); 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:var(--primary-color)}
.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(--primary-color);}
.mobile-navigation .close {position:absolute; top:0; right:15px; width:26px; height:var(--header-height); text-indent:-9999em; overflow:hidden;}
.mobile-navigation .close:before,
.mobile-navigation .close:after {content:" "; position:absolute; top:50%; 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; max-width: 1920px; margin-left: auto; margin-right: auto; background: #fff; overflow: hidden;}
.main-visual .item {position:relative; width: 100%; height: 0; padding-bottom: 23.95833%; overflow:hidden; transition:5s linear;}
.main-visual .item img,
.main-visual .item video,
.main-visual .item iframe {position:absolute; top:50%; left:0; transform:translateY(-50%); -ms-transform:translateY(-50%); -webkit-transform:translateY(-50%); width:100%; height:100% !important; max-width:100%; max-height:100%; object-fit:cover;}
.main-visual .caption {position:absolute; top: 50%; left:50%; width: 100%; max-width: 1680px; padding:0 var(--container-space); transform: translate(-50%, -50%); color:#fff; z-index:40; text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);}
.main-visual .caption p {max-width: 42%; transition:1.2s; transform:translate(50px,0); opacity:0;}
.main-visual .caption .txt1 {font-size:clamp(24px, calc( 42 / var(--inner) * 100vw ), 42px); font-weight:600; line-height:1.17em; letter-spacing:-.03em;}
.main-visual .active .caption p {transform:translate(0,0); opacity:1;}
.main-visual .active .caption .txt1 {transition-delay:.2s;}
.main-visual .scroll {position:absolute; right: var(--container-space); bottom: var(--container-space);  z-index:40;}
.main-visual .scroll:after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('/images/main/scroll-down.png') no-repeat center center; cursor: pointer;}
.main-visual .scroll img {max-height: clamp(100px, calc(164 / var(--inner) * 100vw), 164px); animation:scrollDown 5s linear infinite;}

@keyframes scrollDown{
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}

.main-section {max-width: 1920px; margin-left: auto; margin-right: auto;}
.main-section .contain {max-width: 1660px;}
.btn-more {display: flex; gap: 15px; width: fit-content; padding: var(--space-15) var(--space-25); border-radius: 100px; border: 1px solid #fff; color: #fff;}
.btn-more.type2 {background: #fff; color: #666; border-color: #ddd;}
.btn-more:after {content: '→';}
.btn-more:hover {border-color: #000; background: #000; color: #fff;}
.btn-download {display: flex; justify-content: space-between; width: fit-content; gap: 8px; align-items: center; padding: var(--space-15) var(--space-30); border: 1px solid #ddd; border-radius: 100px;}
.btn-download:after {content: ''; display: block; width: 18px; height: 18px; background: url('/images/sub/icon-download.png') no-repeat center center / contain;}
.btn-download:hover {border-color: var(--primary-color); color: #fff; background: var(--primary-color);}
.btn-download:hover:after {filter: brightness(0) invert(1);}

.main-product {max-width: calc(50% + 930px); margin-right: 0;}
.main-product .contain {gap: 25px clamp(35px, calc(42 / var(--inner) * 100vw), 42px); max-width: 100%; margin-right: 0; padding-right: 0;}
.main-product-img {width: 30.65%; max-width: 570px; padding: var(--space-50) 0;}
.main-product-img .img {position: relative; width: 100%; padding-bottom: 51.93%; overflow:hidden;}
.main-product-img .img img {position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); -ms-transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); width:auto !important; height:auto !important; max-width:100%; max-height:100%; object-fit:cover;}
.main-product-txt {padding: clamp(40px, calc(145 / var(--inner) * 100vw), 145px) 0; padding-left: clamp(40px, calc(150 / var(--inner) * 100vw), 300px); padding-right: var(--container-space); background: url('/images/main/bg-product.jpg') no-repeat left bottom / cover;}

.main-performance {padding:clamp(40px, calc(135 / var(--inner) * 100vw), 135px) 0; background: url('/images/main/bg-performance.jpg') no-repeat center center / cover; text-align: right;}
.main-performance .contain {max-width: 1580px;}
.main-performance h2 {margin-bottom: clamp(25px, calc(120 / var(--inner) * 100vw), 120px);}
.main-performance h3 {margin-bottom: 10px; line-height: 1.3em;}
.performance-items {gap: clamp(25px, calc(120 / var(--inner) * 100vw), 120px); margin-right: clamp(25px, calc(70 / var(--inner) * 100vw), 70px);}
.performance-item { font-size: clamp(30px, calc(60 / var(--inner) * 100vw), 60px); line-height: 1em;}
.performance-item .counter {display: inline-block; text-align: right;}

.main-brand {padding: var(--space-60) 0 var(--space-90); background: url('/images/main/bg-brand.jpg') no-repeat left center / cover;}
.main-brand h2 {padding: 14px 0; background: rgba(255, 255, 255, 0.60);}
.main-brands {position: relative; overflow: hidden; transition: .3s;}
.main-brands.type2 {background: #f6f6f6; transition: .5s;}
.main-brands:before {content: ''; z-index: 1; position: absolute; top: 0; bottom: 0; left: 0; width: 53.6%; background: #f6f6f6; clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%); transition: .5s;}
.main-brands.type2:before {background: #fff;}
/* .main-brands.type1.left-active:before {background: #f6f6f6 url('/images/main/bg-brand-item01.jpg') no-repeat left center;}
.main-brands.type1.right-active {background: url('/images/main/bg-brand-item02.jpg') no-repeat right center;}
.main-brands.type2.left-active:before {background: #fff url('/images/main/bg-brand-item03.jpg') no-repeat left center;}
.main-brands.type2.right-active {background:#f6f6f6 url('/images/main/bg-brand-item04.png') no-repeat right center;} */
.main-brand-item {position: relative; display: block;}
.main-brand-item:after {content: ''; z-index: 1; position: absolute; top: 0; width: 468px; height: 100%; opacity: 0; transition: .3s;}
.main-brand-item:hover:after {opacity: 1;}
.main-brand-item.item01:after {right: 0;background: url('/images/main/bg-brand-item01.png') no-repeat left bottom var(--space-60);}
.main-brand-item.item02:after {left: 0;background: url('/images/main/bg-brand-item02.png') no-repeat right bottom var(--space-60);}
.main-brand-item.item03:after {right: 0;background: url('/images/main/bg-brand-item03.png') no-repeat left bottom var(--space-60);}
.main-brand-item.item04:after {left: 0;background: url('/images/main/bg-brand-item04.png') no-repeat right bottom var(--space-60);}
.main-brand-item:hover .main-brand-logo:after {height: 0;}
.main-brand-item:hover p {opacity: 0;}
.main-brands .contain {display: flex;}
.main-brand-item { padding: clamp(40px, calc(150 / var(--inner) * 100vw), 150px) 0;}
.main-brand-item.left {position: relative; z-index:1; width: 48%;}
.main-brand-item.right {margin-top: var(--space-60); text-align: right; }
.main-brand-item p {font-size: var(--font-size-20); max-width: 690px; line-height: 1.5em; transition: .1s;}
.main-brand-item.right p {margin-left: auto;}
.main-brands .main-brand-logo {position: relative; z-index: 2; display: flex; align-items: center; gap: 30px;}
.main-brand-logo img {max-height: clamp(34px, calc(72 / var(--inner) * 100vw), 72px); object-fit: contain;}
.main-brands .right .main-brand-logo {flex-direction: row-reverse; margin-left: 2%;}
.main-brands .main-brand-logo:after {content: ''; display: block; flex: 1; height: 4px; background: #454545; transition: .1s;}
.main-brands.type2:after {content: ''; z-index: 1; position: absolute; top: -3%; left: 49.2%; width: 10px; height: 106%; background: var(--primary-color); transform: rotate(-16deg);}

.main-new {padding: clamp(40px, calc(140 / var(--inner) * 100vw), 140px) 0; background: url('/images/main/bg-new.jpg') no-repeat center center / cover;}
.main-secutech {overflow: hidden;}
.main-secutech, .main-secutech-txt, .main-secutech-txt h2 {position: relative;}
.main-secutech:before {content: ''; z-index: -1; position: absolute; left: 0; top: 0; width: 40%; height: 45%; background: #F4F4F4; clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);}
.main-secutech .contain {gap: 25px clamp(35px, calc(80 / var(--inner) * 100vw), 80px);}
.main-secutech-img {width: 49.76%; max-width: 826px; padding: clamp(40px, calc(120 / var(--inner) * 100vw), 120px) 0;}
.main-secutech-txt:after {content: ''; z-index: -1; position: absolute; bottom: 0; left: 0; width: 100%; height: 91px; background: url('/images/main/logo-daejin.png') no-repeat left center / contain;}
.main-secutech-txt h2:before {content: ''; position: absolute; bottom: 100%; right: 0; width: 100%; height: 182px; background: url('/images/main/logo-daejin2.png') no-repeat right bottom / contain;}

/* sub */
.lnb-wrap {position:relative; margin-bottom: var(--space-60);}
.lnb {margin:0 auto; max-width:1200px; width: fit-content;}
.lnb ul {display:flex; width: max-content;}
.lnb ul li {flex:1; text-align:center;}
.lnb ul li a {display:flex; flex-direction:column; justify-content:center; align-items:center; width:100%; min-width: max-content; padding:0 var(--space-30); color:#888; line-height:1.2em; letter-spacing:-.03em;}
.lnb ul li a img {filter: grayscale(1) brightness(0) opacity(0.2);}
.lnb ul li.active a {color:var(--primary-color); font-weight: 700;}
.lnb ul li.active a img {filter: none;}

.sub-title {padding-bottom:var(--space-50); max-width:1260px; margin:0 auto; text-align: center;}
.sub-title.blind {display: none;}
#contArea.wide .sub-title {padding-left:var(--container-space); padding-right:var(--container-space);}
.sub-title h2 {font-size:clamp(30px, calc(36 / var(--inner) * 100vw), 36px); line-height:1.3em; color:var(--dark-color);}

#contArea {max-width:1260px; padding-left:var(--container-space); padding-right:var(--container-space);  padding-top: clamp(40px, calc(60 / var(--inner) * 100vw), 60px); margin:0 auto;}
#contArea.wide {max-width:100%; padding-left: 0; padding-right: 0;}

.real-cont {padding-bottom:clamp(50px, calc( 150 / var(--inner) * 100vw ), 150px);}
.icon img {vertical-align: middle; margin-top: -.02em;}
.txt-center {text-align: center;}
.txt-left {text-align: left;}
.txt-right {text-align: right;}
.desc p:not(:last-child) {margin-bottom: 1.44em;}

.flex-wrap {display: flex;}
.flex-center {display: flex; justify-content: center;}
.flex-between {display: flex; justify-content: space-between;}
.flex-end {display: flex; justify-content: flex-end;}
.flex-mid {display: flex; align-items: center;}
.flex-bottom {display: flex; align-items: flex-end;}
.flex-column {display: flex; flex-direction: column;}
.flex1 {flex: 1;}

.fw400 {font-weight: 400;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}
.fw700 {font-weight: 700;}
.fw800 {font-weight: 800;}

.fz15 {font-size: var(--font-size-15); line-height: 1.33333em;}
.fz16 {font-size: var(--font-size-16); line-height: 1.625em;}
.fz18 {font-size: var(--font-size-18); line-height: 1.4444em;}
.fz20 {font-size: var(--font-size-20); line-height: 1.53846em;}
.fz26 {font-size: var(--font-size-26); line-height: 1.53846em;}
.fz28 {font-size: var(--font-size-28); line-height: 1.5357em;}
.fz30 {font-size: var(--font-size-30); line-height: 1.3em;}
.fz32 {font-size: var(--font-size-32); line-height: 1.3em;}
.fz36 {font-size: var(--font-size-36); line-height: 1.3em;}
.fz58 {font-size: var(--font-size-58); line-height: 1.3em;}

.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: var(--space-20);}
.mb25 {margin-bottom: var(--space-25);}
.mb30 {margin-bottom: var(--space-30);}
.mb40 {margin-bottom: var(--space-40);}
.mb50 {margin-bottom: var(--space-50);}
.mb60 {margin-bottom: var(--space-60);}
.mb80 {margin-bottom: var(--space-80);}

.primary-color {color: var(--primary-color);}
.secondary-color {color: var(--secondary-color);}
.dark-color {color: var(--dark-color);}
.white-color {color: #fff;}

/* footer */
#footer {padding: var(--space-60) 0; background:#F5F5F5; border-top: 2px solid #DFDFDF;}
#footer .contain {max-width: 1680px;}
address ul {gap: 5px var(--space-40);}
address li {display: flex; gap: 10px; font-style: normal;}
address li strong {color: #555;}
.f-cnt {color: #868686;}
.copyright span {color: #c9c9c9;}
.f-nav .submenu {display: none;}
.f-nav ul {display: flex;}
.f-nav li {display: flex; align-items: center;}
.f-nav li:not(:first-child):before {content: '｜'; color: #909090;}
.f-nav li:last-child:before {display: none;}
.f-nav a {display: block; padding: 5px var(--space-15); line-height: 1.2em; border-radius: 100px;}
.f-nav a:hover {color: var(--primary-color);}
.f-nav li:last-child a {background: #979797; color: #fff; margin-left: 10px;}
.f-nav li:last-child a:hover {background: var(--primary-color);}
.f-sns {gap: var(--space-15);}