@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;}

#container {overflow: hidden;}
.contain {max-width:1260px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;}

/* header */
#header {position:fixed; top: 0; width:100%; z-index:100;}
#header .contain {position:relative; display:flex; align-items:center; justify-content:space-between; max-width: 1780px; height:var(--header-height); z-index:10;}

.sitelogo a {display: flex;}
#header .sitelogo {display: flex;}
#gnb {text-align:center; flex:1 1 auto; min-width:0; width:1%;}
#gnb>ul {display:flex; justify-content:center;}
#gnb>ul>li {position:relative; padding: 0 clamp(17px, calc(35 / var(--inner) * 100vw), 35px);}
#gnb>ul>li>a {position:relative; display:flex; align-items:center; flex-direction: column; justify-content:center; height:var(--header-height); color:#fff; font-size:var(--font-size-20); font-weight:600; letter-spacing:-.03em; line-height:1.3em;}
#gnb>ul>li>a:after {content:""; position:absolute; bottom:-1px; left:50%; width:0; height:4px; background:var(--primary-color); transition:.2s;}
#gnb>ul>li.active>a:after {width:100%; left:0;}
#gnb .submenu {position:absolute; left:0; width:100%; height:0; overflow:hidden; text-align:center;}
#gnb .submenu>ul {padding:var(--space-35) 5px;}
#gnb .submenu>ul>li>a {display:block; padding:6px 0; color:var(--gray-color); line-height:1.5em; font-weight: 500;}
#gnb .submenu>ul>li>a:hover {font-weight: 700; color: var(--primary-color);}
.submenu-bg {display:none; position:absolute; width:100%; left:0; background:#fff; border-top:1px solid #ddd; border-radius: 0 0 clamp(20px, calc(100 / var(--inner) * 100vw), 100px) 0;}
#header .submenu-bg .contain {display: flex; align-items: center; height: 100%; pointer-events: none;;}
.submenu-cnt {display: flex; align-items:center; font-size: 14px; line-height: 1.4286em;}
.submenu-cnt .img {border-radius: var(--radius-16);overflow: hidden; margin-right: 20px;}

.sns-shortcuts ul {display: flex; gap: 20px;}
.sns-shortcuts a {display: flex; align-items: center; gap: 8px; font-weight: 600; color: #fff;}

#header.active {background: #fff; box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);}
#header.active .sitelogo img {opacity: 0;}
#header.active .sitelogo {background: url('/images/common/logo-b.png') no-repeat center left; background-size: contain;}
#header.active #gnb>ul>li>a {color: var(--dark-color);}
#header.active .sns-shortcuts a {color: var(--dark-color);}
#header.active .sns-shortcuts a:hover {color: var(--primary-color);}
#header.active .btn-m-menu span,
#header.active .btn-m-menu span:before,
#header.active .btn-m-menu span:after {background: var(--dark-color);}

/* 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:#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: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; height: 100vh; background:#000; overflow:hidden;}
.main-visual .bg {position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; transition:5s linear;}
.main-visual .bg video {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 .caption {position:absolute; top: 50%; left:0; transform: translateY(-50%); width: 100%; max-width: 100%; padding:0 var(--container-space); color:#fff; z-index:40; text-align: center;}
.main-visual .caption .txt1 {font-size:clamp(30px, calc(58 / var(--inner) * 100vw), 58px); line-height: 1.1em; font-weight: 700;}
.main-visual .caption .txt2 {font-size:var(--font-size-24); line-height:1.3333em; letter-spacing:-.03em; margin-top:var(--space-35);}
.main-visual .controls {position:absolute; top: 50%; left:50%; width: 100%; max-width: 1600px; padding:0 100px; transform: translate(-50%, -50%); display:flex; align-items:center; padding:0 50px; margin-left:-750px; color:#fff; z-index:40;}
.main-visual .scroll {display: flex; align-items: center; justify-content: center; position:absolute; bottom:clamp(30px, calc(50 / var(--inner) * 100vw), 50px); left: 50%;  width:clamp(40px, calc(80 / var(--inner) * 100vw), 80px); height: clamp(40px, calc(80 / var(--inner) * 100vw), 80px); margin-left: calc(clamp(40px, calc(80 / var(--inner) * 100vw), 80px) / -2); border-radius: 100%; border: 1px solid #fff; animation:scrollDown .9s linear infinite alternate; z-index:30;}

@keyframes scrollDown{
	0%{transform:translateY(0);}
	100%{transform:translateY(15px);}
}

.main-section {overflow: hidden;}
.main-section .contain {max-width: 1460px;}
.main-section.space-top {padding-top: var(--space-150);}
.main-section.space-bot {padding-bottom: var(--space-150);}
.main-tit .tag {margin-bottom: var(--space-25); font-size: var(--font-size-20); font-weight: 700; line-height: 1em; color: var(--primary-color);}
.main-tit h2 {font-size: var(--font-size-46); line-height: 1.2609em; color: var(--dark-color);}
.btn-arrow {display: flex; align-items: center; gap: var(--space-20); width: fit-content; font-size: 14px; }
.btn-arrow:before {content: ''; display: block;  width: clamp(40px, calc(47 / var(--inner) * 100vw), 47px); height: clamp(40px, calc(47 / var(--inner) * 100vw), 47px); border-radius: 100%; background: #FDF6F5 url('/images/main/btn-arrow.png') no-repeat center center; transition: .2s;}
.btn-arrow:hover:before {background-color: var(--primary-color); background-image: url('/images/main/btn-arrow-white.png');}

.main-business {background: url('/images/main/bg-business.jpg') no-repeat center center; background-size: cover;}
.main-business .main-tit, .main-notice h2 {margin-bottom: clamp(30px, calc(80 / var(--inner) * 100vw), 80px);}
.main-business .sec-cnt, .main-notice .contain {gap: 25px 35px;}
.main-business h3 {margin-bottom: var(--space-35);}

.main-business-shortcuts .contain {max-width: 1920px; padding: 0;}
.main-business-shortcut {display: block; position: relative; flex: 1; padding:clamp(50px, calc(200 / var(--inner) * 100vw), 295px)  0;}
.main-business-shortcut:before {content:''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: #000; opacity: .3; z-index: -1; transition: .2s;}
.main-business-shortcut:hover:before {opacity: 0;}
.main-business-shortcut .bg img {position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit:cover; z-index: -2;}
.main-business-shortcut .wrap {margin-bottom: clamp(25px, calc(75 / var(--inner) * 100vw), 75px);}
.main-business-shortcut h2 {margin-bottom: var(--space-25);}
.main-business-shortcut .btn-arrow {margin: 0 auto;}

.main-notice-list {width: 71.4286%; border-top: 2px solid #454545;}
.main-notice-list li {display: flex; align-items: center; gap: 7px 25px; border-bottom: 1px solid #ddd;}
.main-notice-list li:hover a {text-decoration: underline; text-underline-offset: 4px;}
.main-notice-list li a {padding: clamp(10px, calc(16 / var(--inner) * 100vw), 16px) 0; flex: 1; font-size: var(--font-size-20);}
.main-notice-list .date {color: #BCBCBC; font-size: var(--font-size-15); font-weight: 500;}

.main-news {background: url('/images/main/bg-news.jpg') no-repeat center bottom; background-size: cover;}
.main-news .main-tit {margin-bottom: var(--space-60);}
.main-news-list .items {padding:0 clamp(45px, calc(104 / var(--inner) * 100vw), 104px); margin: 0 calc(clamp(60px, calc(104 / var(--inner) * 100vw), 104px) * -1);}
.main-news-list .slick-list {overflow: visible;}
.main-news-list .slick-arrow {position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: clamp(44px, calc(54 / var(--inner) * 100vw), 54px); height: clamp(44px, calc(54 / var(--inner) * 100vw), 54px); border-radius: 100%; border: 1px solid #ddd; border-radius: 100%; background: url('/images/main/slick-arrow.png') no-repeat center center; transition: .2s; overflow: hidden; text-indent: -9999em; z-index: 1;}
.main-news-list .slick-arrow.slick-next {left: auto; right: 0; transform: translateY(-50%) rotate(180deg);}
.main-news-list .slick-arrow:hover {background-color: var(--primary-color); border-color: var(--primary-color); background-image: url('/images/main/slick-arrow-white.png');}
.main-news-list .item {display: flex !important;}
.main-news-list .img {width: 66.8575%;}
.main-news-list .img-wrap {position: relative; width: 100%; padding-bottom: 59.83%; overflow: hidden; border-radius: var(--radius-16);}
.main-news-list .img-wrap img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;}
.main-news-list .txt {position: relative; flex: 1; display: flex; align-items: center; margin-left: -93px;}
.main-news-list .txt-inner {padding: clamp(25px, calc(40 / var(--inner) * 100vw), 40px) clamp(20px, calc(60 / var(--inner) * 100vw), 60px); background: #fff; box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25); border-radius: var(--radius-16)}
.main-news-list h3 {margin-bottom: var(--space-35); font-size: var(--font-size-40); line-height: 1.25em; color: var(--dark-color);}
.main-news-list .description {height: 3.6666em; font-size: var(--font-size-18); line-height: 1.2222em; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.main-news-list .date {margin-top: var(--space-25); font-size: var(--font-size-15); color: #686868; line-height: 1em;}
.main-news-list .wrap {margin-bottom: var(--space-60);}

/* sub */
.sub-visual {position:relative; overflow:hidden; height:clamp(200px, calc(460 / var(--inner) * 100vw), 460px); background:#333; color:#fff; text-align:center;}
.sub-visual .bg {position:absolute; top:0; left:0; overflow:hidden; width:100%; height:100%; background-repeat:no-repeat; background-position:50% 0; background-size:cover; transition:2s; opacity:0; transform:scale(1.1);}
.sub-visual .inner {position:absolute; top:50%; left:0; width:100%; transform:translateY(-50%); padding-top: var(--header-height);}
.sub-visual h2 {font-size:clamp(35px, calc(56 / var(--inner) * 100vw), 56px); font-weight:700; line-height:1.3em; letter-spacing:-.03em;}
.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.none-lnb .inner {padding:0;}
.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.lnb-wrap {position:relative; border-bottom:1px solid #ddd;}
.lnb {margin:0 auto; max-width:1200px;}
.lnb.wide {max-width: 1400px;}
.lnb ul {display:flex;}
.lnb ul li {flex:1; text-align:center; border-right:1px solid #ddd;}
.lnb ul li:first-child {border-left:1px solid #ddd;}
.lnb ul li a {display:flex; justify-content:center; align-items:center; width:100%; height:var(--lnb-height); padding:0 15px; color:#888; font-size:var(--font-size-22); font-weight:600; line-height:1.2em; letter-spacing:-.03em;}
.lnb ul li.active {background:var(--primary-color); border:0;}
.lnb ul li.active a {color:#fff;}
.lnb span {display: inline-block;}

#container.page-product {display:flex; width:100%; max-width:1460px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;}

#product-menu {width:284px; margin-right:60px; margin-bottom:50px;}
.product-menu h2 {display:flex; flex-direction:column; justify-content:center; align-items:center; height:clamp(50px, calc(150 / var(--inner) * 100vw), 150px); padding:10px; text-align:center; color:#fff; font-size:clamp(24px, calc(34 / var(--inner) * 100vw), 34px); line-height:1.33em; background:url('/images/sub/bg-product-menu.jpg');}
.product-menu > ul {border: 1px solid #dfdfdf; border-bottom: 0;}
.product-menu > ul > li {position: relative; border-bottom:1px solid #dfdfdf;}
.product-menu > ul > li > a {display:flex; justify-content:space-between; align-items:center; min-height:55px; padding:clamp(10px, calc(22 / var(--inner) * 100vw), 22px) var(--space-20); background: #FAFAFA; font-size:var(--font-size-20); font-weight:400; line-height:1.5em;}
.product-menu > ul > li > a:after {content:""; width:21px; height:16px; margin-left:20px; background:url("/images/common/lnb_off.svg") 50% 50% no-repeat; background-size:contain; transition:.2s;}
.product-menu > ul > li > a:hover {background: var(--primary-color); color: #fff;}
.product-menu > ul > li > a:hover::after {transform:translateX(5px); background-image:url("/images/common/lnb_on.svg");}
.product-menu > ul > li.active > a {background: var(--primary-color); color: #fff;}
.product-menu > ul > li.active > a:after {background-image:url("/images/common/lnb_on.svg");}
.product-menu .submenu {display: none; position: absolute; top: 0; left: 100%; width: max-content; border: 1px solid #ddd; z-index: 20;}
.product-menu .submenu ul li:not(:last-child) {border-bottom: 1px solid #ddd;}
.product-menu .submenu ul li a {position:relative; display:block; padding:var(--space-15) 20px; background: #fff; font-size:var(--font-size-18); line-height:1.6667em;}
.product-menu .submenu ul li a:hover {text-decoration: underline; text-underline-offset: 4px;}
.product-menu .submenu ul li.active a {color:var(--primary-color); background: #FBF4F4;}

.product-menu-m {display:none;}
.product-menu-m .depth1 ul {display:flex;}
.product-menu-m .depth1 ul li {flex:1; text-align:center; border:1px solid #ddd; border-left:0; border-top: 0;}
.product-menu-m .depth1 ul li:last-child {border-right:0;}
.product-menu-m .depth1 ul li a {display:flex; flex-direction:column; justify-content:center; align-items:center; width:100%; height:var(--lnb-height); padding:0 15px; color:#888; font-size:16px; font-weight:500; line-height:1.2em; letter-spacing:-.03em;}
.product-menu-m .depth1 ul li.active a {color:var(--primary-color);}
.product-menu-m .depth2 {padding:15px 5px; background:#fafafa; border-bottom:1px solid #ddd;}
.product-menu-m .depth2 ul {display:flex;}
.product-menu-m .depth2 ul li {width:auto; padding:0 15px;}
.product-menu-m .depth2 ul li a {position:relative; display:block; padding:0 0 0 12px; color:#505050; font-size:14px; line-height:1.33em;}
.product-menu-m .depth2 ul li a:before {content:""; position:absolute; top:6px; left:0; width:4px; height:4px; background:#ccc;}
.product-menu-m .depth2 ul li.active a {color:var(--primary-color);}

.page-product #contArea {flex:1 1 auto; min-width:0; width:1%; padding: 0;}
@media (max-width: 640px) {
	.product-menu-m .depth1 ul li a {height:45px; font-size:15px;}
	.product-menu-m .depth2 {padding:13px 5px;}
	.product-menu-m .depth2 ul li {width:auto; padding:0 10px;}
	.product-menu-m .depth2 ul li a {position:relative; display:block; padding:0 0 0 12px; color:#505050; font-size:14px; line-height:1.33em;}

	.page-product #contArea {padding:0 16px;}
}

.sub-title {padding-bottom:var(--space-80); max-width:1260px; margin:0 auto;}
#contArea.wide .sub-title {padding-left:var(--container-space); padding-right:var(--container-space);}
.sub-title h1 {font-size:clamp(32px, calc(46 / var(--inner) * 100vw), 46px); line-height:1.3em; color:var(--dark-color); text-align: center;}

.page-product .sub-title {padding-bottom: clamp(40px, calc(60 / var(--inner) * 100vw), 60px);}
.page-product .sub-title h1 {padding-bottom: 10px; border-bottom: 3px solid var(--primary-color); text-align: left;}

#contArea {max-width:1260px; padding-left:var(--container-space); padding-right:var(--container-space); margin:0 auto;}
#contArea.wide {max-width:100%; padding-left:0; padding-right:0;}
#sub #container { padding-top: var(--space-150);}

.real-cont {padding-bottom:clamp(50px, calc( 200 / var(--inner) * 100vw ), 200px);}
.icon img {vertical-align: middle; margin-top: -.02em;}
.txt-center {text-align: center;}

.desc p:not(:last-child) {margin-bottom: 1.5em;}

.flex-wrap {display: flex;}
.flex-center {display: flex; justify-content: center;}
.flex-between {display: flex; justify-content: space-between;}
.flex-top {display: flex; align-items: flex-start;}
.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;}

.primary-color {color: var(--primary-color);}
.secondary-color {color: var(--secondary-color);}
.dark-color {color: var(--dark-color);}
.white-color {color: #fff;}

.fz18 {font-size: var(--font-size-18); line-height: 1.6667em;}
.fz20 {font-size: var(--font-size-20); line-height: 1.5em;}
.fz22 {font-size: var(--font-size-22); line-height: 1.3636em;}
.fz24 {font-size: var(--font-size-24); line-height: 1.5em;}
.fz34 {font-size: var(--font-size-34); line-height: 1.2941em;}
.fz46 {font-size: var(--font-size-46); line-height: 1.2em;}

/* footer */
#footer {padding:clamp(20px, calc(50 / var(--inner) * 100vw), 50px) 0;background: #1E1E21; font-size: var(--font-size-15); line-height: 1.3333em; color: #ddd;}
#footer .contain {max-width: 1460px; display: flex; justify-content: space-between; gap: 20px 35px;}
#footer address {display: flex; gap: 8px clamp(25px, calc(37 / var(--inner) * 100vw), 37px); font-style: normal; opacity: .5;}
#footer address:not(:last-child) {margin-bottom: 8px;}
.f-link {margin-bottom: var(--space-25);}
.f-link a {display: flex; align-items: center; color: #BABABA;}
.f-link a:not(:last-child):after {content: ''; display: block; width: 1px; height: 16px; margin: 0 12px; background: #ddd;}
.copyright {margin-top: clamp(20px, calc(40 / var(--inner) * 100vw), 40px); opacity: .2;}