@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 {display:block;}
.only-desktop-tablet {display:block;}
.only-tablet-mobile {display:none;}
.only-tablet {display:none;}
.only-mobile {display:none;}

.contain {max-width:1460px; margin:0 auto; padding-right:var(--space-container); padding-left:var(--space-container);}

#wrapper {position:relative;}

/* header */
#header {position:fixed; top:0; left:0; z-index:100; width:100%; height:var(--header-height); transition:.2s; background:#fff; box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.16);}
#header .contain {position:relative; display:flex; align-items:center; justify-content:space-between; width:100%; height:100%; z-index:2;}

.sitelogo a {display:block; aspect-ratio: 198/38; height:clamp(28px, calc(38 / var(--inner) * 100vw), 38px); background:url('/images/common/logo.svg') 0 50%/contain no-repeat;}

#gnb {text-align:center; padding:0 var(--space-30);}
#gnb>ul {display:flex; justify-content:flex-end; gap:var(--space-95);} 
#gnb>ul>li {position:relative;} 
#gnb>ul>li>a {position:relative; display:flex; align-items:center; flex-direction:column; justify-content:center; height:var(--header-height); color:#2c2c2c; font-size:var(--font-size-22); font-weight:700; letter-spacing:-.03em; line-height:1.3em; position: relative;}
#gnb>ul>li>a::before {content:""; position:absolute; top: 35%; left: 50%; transform:translate(-50%,0); width: 5px; height:5px; border-radius:50%; background:var(--color-primary); transition:.2s; pointer-events: none; user-select: none; opacity: 0;}
#gnb>ul>li.active > a {color:var(--color-primary);}
#gnb>ul>li.active > a::before {top: 30%; opacity: 1;}
#gnb .submenu {position:absolute; left:-40px; right:-40px; height:0; overflow:hidden; text-align:center;}
#gnb .submenu>ul {padding:22px 0;}
#gnb .submenu>ul>li>a {display:block; padding:8px 0; color:#676767; font-size:var(--font-size-18); font-weight: 500; line-height:1.77;}
#gnb .submenu>ul>li>a:hover {color:#1c1c1c;}
.submenu-bg {display:none; position:absolute; width:100%; left:0; background:rgba(255, 255, 255, 0.88); backdrop-filter:blur(8px);}

.header-util {display:flex; align-items:center; gap:var(--space-20);}
.header-util .search {position:relative; width:40px; height:40px; border: 0; background: transparent; color:#2c2c2c;}
.header-util .search .icon svg {width:100%; height:100%; object-fit: contain; transition:.2s;}
.header-util .search .input {position:absolute; top:0; left:0; width:100%; height:100%; padding:0 10px; border:0; background:transparent; color:#fff;}
.header-util .search .search-btn {position:absolute; top:0; right:0; width:40px; height:40px; border:0; background:transparent; color:#fff;}
.header-util .search .search-btn svg {width:100%; height:100%; object-fit: contain;}

.btn-m-menu {position:relative; width:32px; height:32px;}
.btn-m-menu div {display:flex; flex-direction:column; justify-content:center; align-items:flex-end; gap: 9px; width:100%; height:100%;}
.btn-m-menu span {display:block; width:19px; height:2px; background:#2c2c2c; border-radius: 2px; transition:.2s;}
.btn-m-menu span:nth-child(2) {width:100%;}
.btn-m-menu:hover span {width:100%;}
.btn-m-menu:hover span:nth-child(2) {width:19px;}

/* for mobile */ 

.mobile-navigation {position:fixed; top:0; right:0; width:100%; height:100%; overflow:auto; transition:.2s linear; visibility: hidden; background:url('/images/common/header-util-bg.jpg') no-repeat center / cover; z-index:102; display: flex; align-items: center; justify-content: center; padding-bottom: 30px; opacity: 0;}
.mobile-navigation .contain {position: relative; margin: 0 auto; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center;}
.mobile-navigation .home {display:flex; align-items:center; height: var(--header-height); width: 100%; position: relative; margin-bottom: var(--space-20);}
.mobile-navigation .home img {height:clamp(28px, calc(38 / var(--inner) * 100vw), 38px);}
.mobile-navigation .nav-menu {width: 100%; margin: auto 0;}
.mobile-navigation .nav-menu>ul>li {border-bottom:1px solid rgba(221, 221, 221, 0.3); padding: var(--space-60) 0; display: flex; align-items: center; gap: var(--space-120);}
.mobile-navigation .nav-menu>ul>li:first-child {border-top:1px solid rgba(221, 221, 221, 0.3);}
.mobile-navigation .nav-menu>ul>li>a {position:relative; display:block; color:rgba(255, 255, 255, 0.6); font-size:var(--font-size-24); font-weight:600; line-height:1.5; letter-spacing:-.03em;}

.mobile-navigation .nav-menu .submenu {color:#fff; font-size:15px; font-weight:400; line-height:1.5em;}
.mobile-navigation .nav-menu .submenu ul {display: flex; align-items: center; gap: var(--space-24);}
.mobile-navigation .nav-menu .submenu ul li {width: clamp(100px, calc(200 / var(--inner) * 100vw), 200px); text-align: center;}
.mobile-navigation .nav-menu .submenu ul li a {display:block; font-size: var(--font-size-24); font-weight: 500; line-height: 1.58;}
/* .mobile-navigation .nav-menu .submenu ul li a:hover {color:var(--color-primary);} */
.mobile-navigation .close {position:absolute; top: 50%; transform: translateY(-50%); right: 0; width:34px; height:34px; text-indent:-9999em; overflow:hidden;}
.mobile-navigation .close:before,
.mobile-navigation .close:after {content:" "; position:absolute; top: 50%; transform: translateY(-50%); left:0; width:100%; height:2px; background:#fff; border-radius:2px;}
.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 {visibility: visible; opacity: 1;}
html.menu-opened .mobile-overlay {display:block;}

html.search-opened {overflow: hidden;}
html.search-opened .search-wrap {visibility: visible; opacity: 1;}
html.search-opened .mobile-overlay {display: block;}

.search-wrap {position: fixed; top: 0; left:0; width:100%; background: url('/images/common/header-util-bg.jpg') no-repeat center / cover; z-index:103; padding-bottom: 30px; visibility: hidden; opacity: 0; transition: .2s;}
.search-wrap .contain {position: relative; margin: 0 auto; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center;}
.search-wrap .search-home {display:flex; align-items:center; height: var(--header-height); width: 100%; position: relative; margin-bottom: var(--space-80);}
.search-wrap .search-home img {height:clamp(28px, calc(38 / var(--inner) * 100vw), 38px);}
.search-wrap form {width: 100%;}
.search-wrap .search {width: 100%; max-width: 730px; margin: 0 auto; position: relative; margin-bottom: var(--space-30);}
.search-wrap .search::after {content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: linear-gradient(90deg, #ffce80 0%, #54db6b 100%);}
.search-wrap .search .input {width: 100%; height: 56px; background: transparent; border: 0; color: #fff; padding-left: var(--space-16); padding-right: 56px; font-size: var(--font-size-18);}
.search-wrap .search .input::placeholder {color: rgba(255, 255, 255, 0.7);}
.search-wrap .search-btn {position: absolute; right: 6px; bottom: 6px; width: 44px; height: 44px; border: 0; background: transparent;}
.search-wrap .search-btn img {width: 100%; height: 100%; object-fit: contain;}
.search-wrap .close {position:absolute; top: 50%; transform: translateY(-50%); right: 0; width:34px; height:34px; text-indent:-9999em; overflow:hidden;}
.search-wrap .close:before,
.search-wrap .close:after {content:" "; position:absolute; top: 50%; transform: translateY(-50%); left:0; width:100%; height:2px; background:#fff; border-radius:2px;}
.search-wrap .close:before {transform:rotate(45deg);}
.search-wrap .close:after {transform:rotate(-45deg);}

/* main */
.vjs-has-started .vjs-control-bar {display: none !important;}
.vjs-big-play-button {display: none !important;}
.vjs-control {display: none !important;}
.main-visual {position:relative; overflow:hidden; height:100vh; background:#121212;}
.main-visual .slick-slider {height:100%;}
.main-visual .slick-list {height:100%;}
.main-visual .slick-track {height:100%;}
.main-visual .slick-slide {position:relative; height:100%; overflow:hidden;}
.main-visual .item {position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden;}
.main-visual .item .video-js,
.main-visual .item video {position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover;}
.main-visual .item iframe {position:absolute; top:50%; left:50%; width:100vw; height:100vh; -webkit-transform:translate(-50%,-50%); transform:translate(-50%,-50%);}
.main-visual .item img {position:absolute; top:50%; left:0; transform:translateY(-50%) scale(1.1); -ms-transform:translateY(-50%) scale(1.1); -webkit-transform:translateY(-50%) scale(1.1); width:100%; height:auto !important; max-width:100%; min-height:100%; object-fit:cover; transition: 5s linear;}
.main-visual .caption {position:absolute; top:50%; left: 50%; width:100%; max-width: 1460px; padding:0 var(--space-container); display:flex; flex-direction:column; gap:var(--space-40); -webkit-transform:translate(-50%, -50%); transform:translate(-50%, -50%); text-shadow: 0 2px 10px rgba(0,0,0,0.1); pointer-events: none;}
.main-visual .caption .ani {transition:1.2s; transform:translate(0,30px); opacity:0; color:#fff;}
.main-visual .caption .t1 {font-size:clamp(24px, calc(56 / var(--inner) * 100vw), 56px); font-weight:700; line-height:1.35; letter-spacing:-.03em;}
.main-visual .caption .t2 {font-size:clamp(14px, calc(24 / var(--inner) * 100vw), 24px); line-height:1.5; letter-spacing:-.03em;}
.main-visual .slick-active img {transform:translateY(-50%) scale(1); -ms-transform:translateY(-50%) scale(1); -webkit-transform:translateY(-50%) scale(1);}
.main-visual .slick-active .caption .ani {opacity:1; transform:translate(0,0);}
.main-visual .slick-active .caption .t1 {transition-delay:.2s;}
.main-visual .slick-active .caption .t2 {transition-delay:.4s;}
.main-visual .slick-slide.first-slide .item img {transition:none; animation:first-slide-img 5s linear forwards; -webkit-animation:first-slide-img 5s linear forwards;}
.main-visual .slick-slide.first-slide .caption .ani {opacity:0; transform:translate(0, 30px); transition:none; animation:first-slide-cap 1.2s ease forwards; -webkit-animation:first-slide-cap 1.2s ease forwards; animation-delay:0.15s;}
.main-visual .controls {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 1800px; width: 100%; padding: 0 var(--space-container); pointer-events: none;}
.main-visual .controls .slide-btn {width: clamp(30px, calc(56 / var(--inner) * 100vw), 56px); height: clamp(30px, calc(56 / var(--inner) * 100vw), 56px); display: flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.2); position: absolute; pointer-events: visible; transition: .2s;}
.main-visual .controls .slide-btn img {width: clamp(18px, calc(28 / var(--inner) * 100vw), 28px); height: clamp(18px, calc(28 / var(--inner) * 100vw), 28px);}
.main-visual .controls .slide-prev {left: var(--space-container); padding-right: 2px;}
.main-visual .controls .slide-next {right: var(--space-container); padding-left: 2px;}
.main-visual .controls .slide-btn:hover {background: var(--color-primary);}

@media (min-aspect-ratio: 16/9) {
	.main-visual .item iframe {height:56.25vw;}
}
@media (max-aspect-ratio: 16/9) {
	.main-visual .item iframe {width:177.78vh;}
}
@keyframes first-slide-img {
	0% {transform:translateY(-50%) scale(1.1); -ms-transform:translateY(-50%) scale(1.1); -webkit-transform:translateY(-50%) scale(1.1);}
	100% {transform:translateY(-50%) scale(1); -ms-transform:translateY(-50%) scale(1); -webkit-transform:translateY(-50%) scale(1);}
}
@keyframes first-slide-cap {
	0% {opacity:0; transform:translate(0, 30px); -webkit-transform:translate(0, 30px);}
	100% {opacity:1; transform:translate(0, 0); -webkit-transform:translate(0, 0);}
}

.main-sec {padding: var(--space-120) 0; overflow: hidden;}
.main-sec .head {text-align: center; margin-bottom: var(--space-70);}
.main-sec .head .sub-tit {display:inline-block; color: var(--color-primary); font-size: var(--font-size-20); font-weight: 600; line-height: 1.7; margin-bottom: var(--space-8);}
.main-sec .head .tit {color: #2c2c2c; font-size: var(--font-size-40); font-weight: 700; line-height: 1.4; margin-bottom:var(--space-24);}
.main-sec .head .desc {color: #676767; font-size: var(--font-size-20); line-height: 1.7;}
.main-sec .cont {position: relative;}
.main-sec .slider {margin: 0 calc(var(--space-8) * -1);}
.main-sec .slider .item {padding: 0 var(--space-8);}
.main-sec .slider .item a {display: flex; align-items: center; justify-content: center; flex-direction: column; width: 100%; height: 100%; position: relative; background: #fff; border-radius: var(--radius-16);}
.main-sec .slider .item a::before {content: ''; position: absolute; inset: 0; border: 1px solid #eee; z-index: 1; border-radius: var(--radius-16); pointer-events: none; transition: all .2s;}
.main-sec .slider .item .img {width: 100%; height: 0; padding-bottom: 88.76%; overflow: hidden; border-radius: var(--radius-16) var(--radius-16) 0 0; position: relative;}
.main-sec .slider .item .img img {width: 100%; height: 100%; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all .2s;}
.main-sec .slider .item .txt-wrap {display: flex; flex-direction: column; border-radius: 0 0 var(--radius-16) var(--radius-16); padding: var(--space-24); padding-top: var(--space-20); width: 100%; text-align: center;}
.main-sec .slider .item .category {color: var(--color-primary); font-size: var(--font-size-18); font-weight: 600; line-height: 1.87; margin-bottom: var(--space-8);}
.main-sec .slider .item .tit {color: #2c2c2c; font-size: var(--font-size-26); font-weight: 600; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; height: calc(1.45em * 2); margin-bottom: var(--space-16);}
.main-sec .slider .item .desc {color: #999; font-size: var(--font-size-20); line-height: 1.66; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; height: calc(1.66em * 2);}
.main-sec .slider .item a:hover::before {opacity: 1;}
.main-sec .slider .item a:hover .img img {transform: translate(-50%, -50%) scale(1.05); -ms-transform: translate(-50%, -50%) scale(1.05); -webkit-transform: translate(-50%, -50%) scale(1.05);}
.main-sec .slide-btn {width: clamp(30px, calc(48 / var(--inner) * 100vw), 48px); height: clamp(30px, calc(48 / var(--inner) * 100vw), 48px); display: flex; align-items: center; justify-content: center; border: 1px solid #eee; border-radius: 50%; background: #fff; position: absolute; pointer-events: visible; transition: .2s; color: #ccc; top: 50%; transform: translateY(-50%);}
.main-sec .slide-btn svg {transition: .2s;}
.main-sec .slick-arrow.slick-hidden {display: block !important; opacity: 0.5; cursor: default;}
.main-sec .slide-btn.prev {left: calc((clamp(30px, calc(48 / var(--inner) * 100vw), 48px) + var(--space-40)) * -1); padding-right: 2px;}
.main-sec .slide-btn.next {right: calc((clamp(30px, calc(48 / var(--inner) * 100vw), 48px) + var(--space-40)) * -1); padding-left: 2px;}
.main-sec .slide-btn:hover {background: #2c2c2c; border-color: #2c2c2c; color: #fff;}

.main-global {background: linear-gradient(96deg, #F6FBF7 14.95%, #FFF 93.16%); overflow: hidden;}
.main-global .head {margin-bottom: var(--space-100);}
.main-global .map-wrap {position: relative; background: url('/images/main/global-map.svg') no-repeat center / contain; aspect-ratio: 1400 / 603;}
.main-global .map-wrap .area {position: absolute;}
.main-global .area .local {position: absolute; width: clamp(28px, calc(40 / var(--inner) * 100vw), 40px); height: clamp(28px, calc(40 / var(--inner) * 100vw), 40px); border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; color: #999; cursor: pointer; transition: .2s;}
.main-global .area .local svg {width: clamp(12px, calc(18 / var(--inner) * 100vw), 18px); transition: .2s;}
.main-global .area .country {position: absolute; padding: 6px; padding-right: var(--space-20); border-radius: 40px; border: 1px solid #ddd; background: rgba(0, 0, 0, 0.1); display: flex; align-items: center; gap: var(--space-10); color: #2c2c2c; font-size: var(--font-size-18); font-weight: 500; line-height: 1.5; letter-spacing:-.03em; transition: .2s; cursor: pointer; z-index: 1;}
.main-global .area .country .flag {width: clamp(20px, calc(40 / var(--inner) * 100vw), 40px); height: clamp(20px, calc(40 / var(--inner) * 100vw), 40px); border-radius: 50%; overflow: hidden; flex: 1 0 auto;}
.main-global .area .country .flag img {width: 100%; height: 100%; object-fit: cover;}
.main-global .desc-wrap {position: absolute; padding: var(--space-24); border-radius: var(--radius-16); background: #fff; border: 1px solid #dfdfdf; transition: .2s; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(5%); max-width: 466px; width: max-content;}
.main-global .desc-wrap .tit {display: flex; align-items: center; gap: var(--space-10); color: #2c2c2c; font-size: var(--font-size-22); font-weight: 600; line-height: 1.45; margin-bottom: var(--space-24); white-space: nowrap;}
.main-global .desc-wrap .tit .flag {width: clamp(20px, calc(40 / var(--inner) * 100vw), 40px); height: clamp(20px, calc(40 / var(--inner) * 100vw), 40px); border-radius: 50%; overflow: hidden;}
.main-global .desc-wrap .tit .flag img {width: 100%; height: 100%; object-fit: cover;}
.main-global .desc-wrap .items {display: flex; flex-wrap: wrap; gap: var(--space-25) var(--space-16); width: 100%;}
.main-global .desc-wrap .item {text-align: center; width: clamp(100px, calc(200 / var(--inner) * 100vw), 200px); margin: 0 auto;}
.main-global .desc-wrap .item .img {width: 100%; height: 0; padding-bottom: 72%; border-radius: var(--radius-8); overflow: hidden; position: relative;}
.main-global .desc-wrap .item .img img {width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;}
.main-global .desc-wrap .item p {margin-top: var(--space-12); color: #505050; font-size: var(--font-size-18); line-height: 1.66; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;}

.main-global .desc-area .desc-wrap {position: relative; height: 0; padding: 0 var(--space-24); transition: padding 0s, opacity .2s, transform .2s;}
.main-global .area:hover,
.main-global .area:focus-within {z-index: 2;}
.main-global .area:hover .local,
.main-global .area:focus-within .local {background: var(--color-primary); border-color: var(--color-primary); color: #fff;}
.main-global .area:hover .country,
.main-global .area:focus-within .country {background: #fff;}
.main-global .area:hover .desc-wrap,
.main-global .area:focus-within .desc-wrap {opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);}

.main-global .area[data-direction="left"] .country {transform: translate(-113%, -12%);}
.main-global .area[data-direction="left"] .desc-wrap {left: var(--space-65); top: calc(var(--space-6) * -1);}
.main-global .area[data-direction="right"] .country {transform: translate(47%, -12%);}
.main-global .area[data-direction="right"] .desc-wrap {left: 0; top: var(--space-60);}
.main-global .area[data-direction="top"] .country {transform: translate(-30%, -120%);}
.main-global .area[data-direction="top"] .desc-wrap {transform: translate(-40%, 5%); top: var(--space-65);}
.main-global .area[data-direction="top"]:hover .desc-wrap {transform: translate(-40%, 0);}
.main-global .area[data-direction="top-left"] .country {transform: translate(-85%, -100%);}
.main-global .area[data-direction="top-left"] .desc-wrap {left: var(--space-65);}
.main-global .area[data-direction="top-right"] .country {transform: translate(22%, -100%);}
.main-global .area[data-direction="top-right"] .desc-wrap {right: var(--space-25);}
.main-global .area[data-direction="bottom-left"] .country {transform: translate(-85%, 72%);}
.main-global .area[data-direction="bottom-left"] .desc-wrap {left: var(--space-40); top: var(--space-60);}
.main-global .area[data-direction="bottom-right"] .country {transform: translate(20%, 74%);}
.main-global .area[data-direction="bottom-right"] .desc-wrap {right: 0; top: var(--space-60);}

.main-global .area.canada {left: 8.6%; top: 15.3%;}
.main-global .area.usa {left: 11.7%; top: 25.1%;}
.main-global .area.spain {left: 43.3%; top: 38.3%;}
.main-global .area.swiss {left: 50.3%; top: 28.5%;}
.main-global .area.france {left: 47.3%; top: 24.8%;}
.main-global .area.netherlands {left: 51.3%; top: 19.6%;}
.main-global .area.china {right: 24.3%; top: 30.5%;}
.main-global .area.taiwan {left: 77.1%; top: 45.4%;}
.main-global .area.japan {right: 18%; top: 38.1%;}

.main-links .head {text-align: left;}
.main-links .items {display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-16);}
.main-links .item a {display: flex; border-radius: var(--radius-16); overflow: hidden; position: relative;}
.main-links .item .img {width: 100%; height: 100%; position: relative; z-index: -1;}
.main-links .item .img::before {content: ''; width: 100%; height: 100%; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%) rgba(0, 0, 0, 0.32); transition: .2s;}
.main-links .item .img img {width: 100%; height: 100%; object-fit: cover;}
.main-links .item .txt-wrap {padding: var(--space-30); position: absolute; bottom: 0; left: 0; z-index: 1; width: 100%; color: #fff;}
.main-links .item .txt-wrap .tit {font-size: var(--font-size-32); font-weight: 600; line-height: 1.43; margin-bottom: var(--space-12);}
.main-links .item .txt-wrap .desc {font-size: var(--font-size-18); font-weight: 500; line-height: 1.66;}
.main-links .item .txt-wrap .more {display: inline-block; font-size: var(--font-size-16); font-weight: 600; line-height: 1.87; padding: var(--space-6) var(--space-18); border-radius: 40px; background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(4px); transition: .2s; margin-top: var(--space-30);}

.main-links .item:hover .img::before {background: rgba(34, 172, 57, 0.24); backdrop-filter: blur(20px);}
.main-links .item:hover .txt-wrap .more {color: var(--color-primary); background: rgba(0, 0, 0, 0.48); backdrop-filter: initial;}

.main-support {background: url('/images/main/support-bg.jpg') no-repeat center / cover;}
.main-support .contain {display: flex; justify-content: space-between; gap: var(--space-50);}
.main-support .head {text-align: left;}
.main-support .head .tit {color: #fff;}
.main-support .head .desc {color: #dfdfdf;}
.main-support .cont {width: 50%;}
.main-support ul {display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-16);}
.main-support li {width: 100%; height: clamp(170px, calc(272 / var(--inner) * 100vw), 272px);}
.main-support li a {width: 100%; height: 100%; display: flex; flex-direction: column; padding: var(--space-40); border-radius: var(--radius-16); border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(12px); color: #fff;}
.main-support li .icon {width: clamp(30px, calc(40 / var(--inner) * 100vw), 40px); height: clamp(30px, calc(40 / var(--inner) * 100vw), 40px); margin-bottom: var(--space-20);}
.main-support li .icon img {width: 100%; height: 100%; object-fit: contain;}
.main-support li .tit {font-size: var(--font-size-28); font-weight: 600; line-height: 1.5;}
.main-support li .more {display: inline-flex; align-items: center; justify-content: center; width: clamp(30px, calc(40 / var(--inner) * 100vw), 40px); height: clamp(30px, calc(40 / var(--inner) * 100vw), 40px); border-radius: 50%; background: rgba(255, 255, 255, 0.16); margin-top: auto;}
.main-support li .more img {width: clamp(8px, calc(12 / var(--inner) * 100vw), 12px);}
.main-support li:hover a {background: rgba(34, 172, 57, 0.48);}

/* sub */
.sub-visual {position:relative; display:flex; flex-direction:column; background:#eee; height:clamp(250px, calc(480 / var(--inner) * 100vw), 480px); overflow:hidden;}
.sub-visual .bg {position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:1s; transform:scale(1.1); opacity:0;}
.sub-visual .title {position:relative; flex:1 1 auto; min-height:0; height:1%; display:flex; align-items:center; text-align:center;}
.sub-visual .title .contain {width:100%;}
.sub-visual .title h2 {font-size:clamp(28px, calc(56 / var(--inner) * 100vw), 56px); line-height:1.3em; color:#fff;}
.sub-visual .title p {margin-top:var(--space-24); font-size:clamp(14px, calc(18 / var(--inner) * 100vw), 18px); line-height:1.5em; color:#fff;}
.sub-visual.loaded .bg {transform:scale(1); opacity:1;}

.lnb-wrap {position:relative; -webkit-transform:translateY(-50%); transform:translateY(-50%); padding:0 var(--space-container); text-align:center;}
.lnb {position:relative; overflow:hidden; background:#fff; border-radius:var(--radius-8); max-width:1400px; margin:0 auto; box-shadow:0 0 16px 0 rgba(0, 0, 0, 0.08);}
.lnb ul {display:flex;}
.lnb ul li {flex:1;}
.lnb ul li a {display:flex; flex-direction:column; justify-content:center; align-items:center; width:100%; height:var(--lnb-height); padding:0 15px; color:#999; font-weight:600; font-size: var(--font-size-20); line-height:1.2em; letter-spacing:-.03em;}
.lnb ul li.active a {color:#fff; background:var(--color-primary);}

#contArea {max-width:1460px; padding:0 var(--space-container); margin:0 auto; overflow: hidden;}
#contArea.wide {max-width:100%; padding-left:0; padding-right:0;}

.sub-title {padding:var(--space-80) 0 var(--space-100); text-align:center;}
.sub-title h2 {font-size:var(--font-size-40); line-height:1.5em; color:#2c2c2c;}

.real-cont {min-height:300px; padding-bottom:var(--space-140);}

/* footer */
#footer {position:relative; padding:var(--space-40) 0 0; background:#1c1c1c; color:#fff; font-size:var(--font-size-16); line-height:1.33; letter-spacing:-.02em;}
#footer .contain {display: flex; align-items: center;}

.foot-logo {flex-shrink: 0;}
.foot-logo img {height:clamp(28px, calc(38 / var(--inner) * 100vw), 38px);}

.foot-txt-wrap {margin-bottom: var(--space-30);}
.foot-info-wrap {display: flex; flex-direction: column; gap: var(--space-45); font-size: var(--font-size-18);}
.foot-info {display: flex; flex-direction: column; gap: var(--space-16);}
.foot-info .unit-wrap {width: 100%; display: flex; flex-wrap: wrap;}
.foot-info .unit {display: inline-flex; align-items: center; justify-content: center; padding-right: var(--space-30); position: relative;}
.foot-info .unit:last-of-type {padding-right: 0;}
.foot-info .unit .lbl {font-weight: 600;}
.foot-info .unit .val {color: #878787; font-weight: 500; margin-left: var(--space-20);}
.foot-tel {margin: auto 0 0 auto; display: flex; flex-direction: column; text-align: right;}
.foot-tel .lbl {font-size: var(--font-size-18); font-weight: 600;}
.foot-tel strong {color: var(--color-primary); font-size: var(--font-size-40); font-weight: 700; line-height: 1.4;}
.foot-tel.only-mobile {display: none;}

.foot-copy-wrap {border-top: 1px solid rgba(255, 255, 255, 0.1); padding: var(--space-30) 0;}
.foot-copy {display: flex; color: #878787; font-size: var(--font-size-16);}
.foot-copy span {display: inline-flex; align-items: center; justify-content: center; position: relative;}
.foot-copy .designed {margin-left: 8px; color: #2c2c2c;}
.foot-copy .designed a {margin-left: 3px;}

.foot-links {margin-left: auto; display: flex; gap: var(--space-24);}
.foot-links a {color: #8d8d8d; font-weight: 600; line-height: 1.87;}

.quick {position: fixed; right: 0; top: 50%; transform: translateY(-50%) translateX(81%); z-index: 10; background: #f5f5f5; border: 1px solid #f5fbf6; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25); border-radius: var(--radius-16) 0 0 var(--radius-16); display: flex; align-items: center; transition: .2s;}
.quick .btn-close {word-break: break-all; width: 30px; align-self: stretch; border-radius: var(--radius-16) 0 0 var(--radius-16); display: flex; align-items: center; justify-content: center; flex-direction: column; flex-shrink: 0; gap: 10px; line-height: 1.2; border: 0; background: transparent; cursor: pointer; padding: 0 8px; border-right: 1px dashed #bbb;}
.quick .btn-close .icon {width: clamp(12px, calc(14 / var(--inner) * 100vw), 14px); height: clamp(12px, calc(14 / var(--inner) * 100vw), 14px); background: url('/images/common/quick-btn.svg') no-repeat center / contain;}
.quick .btn-close .icon img {width: 100%; height: 100%; object-fit: contain;}
.quick .items {display: flex; flex-direction: column; padding: 2px var(--space-8);}
.quick .item {display: flex; align-items: center; justify-content: center; padding: var(--space-16) 0; text-align: center; border-bottom: 1px dashed #bbb;}
.quick .item:last-of-type {border-bottom: 0;}
.quick .item .icon {width: clamp(24px, calc(48 / var(--inner) * 100vw), 48px); height: clamp(24px, calc(48 / var(--inner) * 100vw), 48px); margin: 0 auto; margin-bottom: var(--space-18); display: inline-flex; align-items: center; justify-content: center;}
.quick .item .tit {font-size: var(--font-size-14); font-weight: 600; line-height: 1.42;}
.quick.active {transform: translateY(-50%) translateX(0);}
.quick.active .btn-close .icon {transform: rotate(180deg);}