@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}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}

.contain {max-width:1260px; padding-left:30px; padding-right:30px; 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: 1860px; height:var(--header-height); z-index:10;}
#header.intro {display: none;}

#header .sitelogo {position: relative;}
#header .sitelogo:before {position: absolute; content: ''; top: 0; right: 0; bottom: 0; left: 0; background: url('/images/common/logo-twink.png') no-repeat center center; background-size:contain; animation:twink 1.5s linear infinite; transition: .2s; pointer-events: none;}

#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 60px;}
#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:20px; font-weight:600; letter-spacing:-.03em; line-height:1.3em;}
#gnb .submenu {position:absolute; left:0; width:100%; height:0; overflow:hidden; text-align:left;}
#gnb .submenu>ul {padding:32px 0 32px 60px;}
#gnb .submenu>ul>li>a {display:block; padding:5px 0; color:rgba(255,255,255,.6); font-size:17px; line-height:2em;}
#gnb .active .submenu>ul>li>a {color: #fff;}
#gnb .submenu>ul>li>a:hover {text-decoration:underline; color: var(--primary-color); text-underline-offset: 4px;}
.submenu-bg {display:none; position:absolute; width:100%; left:0; background:rgba(0,0,0,.7);}

#sub .one-page-nav {display: none;}
#main .main-nav {display: none;}

.language {position:relative; display:inline-block; margin-right:clamp(1.25rem, -0.9375rem + 5.4688vw, 5.625rem);}
.language .toggle-button {display:flex; align-items:center; gap:7px; padding:6px; background:none; border:0; color:#fff; text-align:left; font-weight: 600;}
.language .toggle-button .ico {width:16px; filter: brightness(10);}
.language .toggle-button .txt {width:32px;}
.language .toggle-button .chevron {width:12px; margin-top:-.1em;}
.language .toggle-button svg {display:block; width:100%; height:auto;}
.language .toggle-button path {fill:#fff;}
.language .toggle-layer {display:none; position:absolute; left:50%; transform: translateX(-50%); width: 60px; text-align:center;}
.language .toggle-layer ul {display:grid; gap:2px;}
.language .toggle-layer a {display:block; padding: 1px 0; border-radius: 12px; color:#fff; background: var(--primary-color); font-weight:600; line-height:1.5em; font-size: 14px;}
.language.active .toggle-button .chevron {transform:scaleY(-1);}

/* header active */
#header.active {background: #fff;}
#header.active #gnb>ul>li>a,
#header.active .language .toggle-button {color: var(--dark-color);}
#header.active .language .toggle-button .ico {filter: none;}
#header.active .language .toggle-button path {fill: var(--dark-color);}

/* for mobile */
.btn-m-menu {display:block; position:relative; width:50px; height:50px; background: var(--primary-color); border-radius: 100%;}
.btn-m-menu span {position:absolute; left:50%; top:50%; margin-top: -1px; margin-left: -10px; width: 20px; height:2px; 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:-7px;}
.btn-m-menu span:after {bottom:-7px; right: auto; width: 15px;}

.mobile-navigation {display:flex; align-items: center; position:fixed; top:0; right:0; width:100%; height:100%; overflow:auto; transition:.2s linear; opacity: 0; pointer-events: none; background:#fff; z-index:102;}
.mobile-navigation .nav-menu {max-width: 1460px; width: 100%; padding: 0 30px; margin: 0 auto;}
.mobile-navigation .nav-menu>ul>li {display: flex; align-items: center; border-bottom: 1px solid #ddd; padding: 60px 0;}
.mobile-navigation .nav-menu>ul>li>a {width: 30%; max-width: 410px; font-size: clamp(1.25rem, 0.75rem + 1.25vw, 2.25rem); font-weight: 700; color: var(--dark-color); line-height: 1.3em;}
.mobile-navigation .nav-menu>ul>li:hover>a {color: var(--primary-color);}
.mobile-navigation .nav-menu .submenu {flex: 1;}
.mobile-navigation .nav-menu .submenu ul {display: flex;}
.mobile-navigation .nav-menu .submenu ul li {min-width: 24%;}
.mobile-navigation .nav-menu .submenu ul li a {display:block; padding:0; color: var(--light-color); font-weight: 500; font-size: clamp(0.9375rem, 0.8438rem + 0.2344vw, 1.125rem);}
.mobile-navigation .nav-menu .submenu ul li a:hover {color: var(--primary-color); text-decoration: underline; text-underline-offset: 4px;}
.mobile-navigation .close {position:absolute; top:25px; right:15px; width:50px; height:50px; text-indent:-9999em; overflow:hidden; background: url('/images/common/btn-close.png') no-repeat center center; background-size: contain;}
.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 {opacity: 1; pointer-events: auto;}
html.menu-opened .mobile-overlay {display:block;}

/* intro */
.intro-container {cursor: url('/images/common/intro-cursor.png'), auto;}
.intro {position: relative;}
.intro .item {height: 100vh;}
.intro01 {position: relative;}
.intro01 .bg {position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; filter: brightness(2); animation:twink2 1s ease-out forwards; animation-delay: .5s;}
.intro01 .bg img {width: 100%; height: 100%; object-fit: cover;}
.intro01 .wrap {height: 100%; gap: clamp(1.25rem, 0rem + 3.125vw, 3.75rem); padding: 0 30px;}
.slick-current .intro01 .wrap > div {animation:gotoup .8s forwards;}
.intro .luce-logo {position: relative;}
.intro .twinkle {position: absolute; top: 0;left: 0; bottom: 0; right: 0; animation:twink 1s linear infinite; transition: .2s;}
.intro02 .info {display: flex; align-items: flex-end; height: 100vh; padding:clamp(1.25rem, 0rem + 3.125vw, 3.75rem) clamp(1.25rem, -0.5625rem + 4.5313vw, 4.875rem);}
html[lang="en"] .intro02 .info {padding: clamp(1.25rem, 0rem + 3.125vw, 3.75rem) 30px;}
.intro02 .txt>*, .intro04 .txt>* {transform: translateY(50px); opacity: 0; transition: .8s;}
.intro02 .txt .fw600 {height: calc(4.8em + 20px);}
html[lang="en"] .intro02 .txt .fw600 {height: calc(6.4em + 20px);}
.intro02 .txt li:not(:last-child) {margin-bottom: 10px;}
.slick-active .intro02 .txt>*, .slick-active .intro04 .txt>* {transform: translateY(0); opacity: 1; transition-delay:.2s;}
.slick-active .intro02 .txt .fw600, .slick-active .intro04 .txt .fz24-18 {transition-delay:.5s;}
.intro03 .wrap {display: flex; flex-direction: column; justify-content: center; gap:60px; max-width: 1860px; padding: clamp(1.25rem, 0rem + 3.125vw, 3.75rem) 30px; margin: 0 auto; height: 100vh;}
.intro03 .map-cnt {position: relative;}
.intro03 .map-cnt .txt {position: absolute; bottom: 30%; right: 0;}
.intro03 .partners-cnt {justify-content: center; gap: 50px;}
.intro04 .info {position: relative; height: 100vh; text-align: center;}
.intro04 .info .txt {position: absolute; width: 100%; left: 0; top: 43%; padding: 0 20px;}
.hyphen-list li {position: relative; padding-left: 13px;}
.hyphen-list li:before {position: absolute; content: '-'; left: 0;}
.gotomain {position: absolute; top: 0; right: 0; bottom: 0; left: 0;}

.intro03 .wave {position: absolute; width: 1em; height: 1em; transform: translate(-50%, -50%);}
.intro03 .wave:before {position: absolute; z-index: 1; content: ''; width: 2.6em; height: 2.6em; top: 50%; left: 50%; margin-top: -1.3em; margin-left: -1.3em; opacity: 0;}
.intro03 .wave.blue:before {background: url('/images/main/intro-mine.png') no-repeat center center; background-size: contain;}
.intro03 .wave.red:before {background: url('/images/main/intro-stock.png') no-repeat center center; background-size: contain; }
.intro03 .wave span {position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: 0; background: rgba(235,178,23,.7); border-radius: 100%;}
.slick-current .intro03 .wave span {animation:wave-circle 4s cubic-bezier(1, 2, 0.66, 3) infinite;}
.intro03 .wave.blue span {background: rgba(21,120,231,.7);}
.intro03 .wave.red span {background: rgba(223,19,19,.7);}
.intro03 .wave span:nth-child(1) {animation-delay: 0s;}
.intro03 .wave span:nth-child(2) {animation-delay: .7s;}
.intro03 .wave span:nth-child(3) {animation-delay: 1.4s;}
.intro03 .map-loca01 {top: 43%; left: 65%;}
.intro03 .map-loca02 {top: 22%; left: 65%;}
.intro03 .map-loca03 {top: 58%; left: 64%;}
.intro03 .map-loca04 {top: 73%; left: 23%;}
.intro03 .map-loca05 {top: 54%; left: 59.5%;}
.intro03 .map-loca06 {top: 27%; left: 9%;}
.intro03 .map-loca07 {top: 31%; left: 36.5%;}

html[lang="en"] .intro03 .txt {width: 24.4444%;}
.slick-current .intro03 .map-loca02:before {animation:pop-icon 1.5s forwards; animation-delay: 2s;}
.slick-current .intro03 .map-loca03:before {animation:pop-icon 1.5s forwards; animation-delay: 2.3s;}
.slick-current .intro03 .map-loca04:before {animation:pop-icon 1.5s forwards; animation-delay: 2.6s;}
.slick-current .intro03 .map-loca05:before {animation:pop-icon 1.5s forwards; animation-delay: 2.9s;}
.slick-current .intro03 .map-loca06:before {animation:pop-icon 1.5s forwards; animation-delay: 3.2s;}
.slick-current .intro03 .map-loca07:before {animation:pop-icon 1.5s forwards; animation-delay: 3.5s;}


@keyframes twink {
    0%, 100%{opacity: 1;}
    100% {opacity: 0.5;}
}
@keyframes twink2 {
    0% {filter: brightness(2);}
    100% {filter: brightness(1);}
}
@keyframes gotoup {
    0% {transform: translateY(30px); opacity: 0;}
    100% {transform: translateY(0px); opacity: 1;}
}
@keyframes pop-icon {
	0% {opacity:0}
	100% {opacity: 1;}
}

/* main */
.main-visual {position:relative; background:#000; overflow:hidden;}
.main-visual .item {position:relative; height:100vh; overflow:hidden;}
.main-visual .image {position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; transition:5s linear; transform:scale(1.15);}
.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; object-position: center bottom;}
.main-visual .caption {position:absolute; bottom:clamp(1.875rem, -1.25rem + 7.8125vw, 8.125rem); left:50%; width: 100%; max-width: 1500px; padding:0 50px; transform: translateX(-50%); color:#fff; z-index:40;}
html[lang="en"] .main-visual .caption {bottom:150px;}
html[lang="en"] .main-visual .controls {bottom: 350px;}
.main-visual .caption img {margin:0 auto;}
.main-visual .caption p {transition:1.2s; transform:translate(50px,0); opacity:0;}
.main-visual .caption .txt1 {font-weight:800; line-height:1.17em; letter-spacing:-.03em; color: rgba(255,255,255,.6);}
.main-visual .caption .txt2 {font-size: clamp(1.5rem, 0.5rem + 2.5vw, 3.5rem); line-height: 1.25em; font-weight:800; line-height:1.17em; letter-spacing:-.03em; margin-top:30px;}
.main-visual .controls {display:flex; align-items:center; position:absolute; bottom:calc(clamp(1.875rem, -1.25rem + 7.8125vw, 8.125rem) + clamp(3.125rem, -2.6563rem + 14.4531vw, 14.6875rem)); left:50%; width: 100%; max-width: 1500px; padding:0 50px; transform: translateX(-50%); color:#fff; z-index:40;}
.main-visual .slick-arrow, .swiper-button-prev, .swiper-button-next, .sec-field .slick-arrow {position: absolute; top: 50%; left: 60px; width: var(--mv-arrow); height: var(--mv-arrow); margin-top: calc(var(--mv-arrow) / -2); border-radius: 100%; overflow: hidden; text-indent: -9999em; background: url('/images/main/mv-arrow.png') no-repeat center center; background-size: contain; z-index: 10; border: 1px solid rgba(255,255,255,.3); transition:.2s;}
.main-visual .slick-next, .swiper-button-next,  .sec-field .slick-next {transform: rotate(180deg); left: auto; right: 60px;}
.main-visual .slick-arrow:hover, .swiper-button-prev:hover, .swiper-button-next:hover {background-color: rgba(255,255,255,.3);}
.main-visual .pager {display:inline-block; width:.6em; font-size: 14px;}
.main-visual .pager.total {margin-right: 20px;}
.main-visual .progress {position:relative; margin:0 10px; width:150px; height:2px; background:#fff;}
.main-visual .progress-bar {position:absolute; top:0; left:0; height:100%; background:var(--primary-color);}
.main-visual .slide-btn {width:14px; height:14px; background-color: unset; background-position:50% 50%; background-repeat:no-repeat; border:0; overflow:hidden;}
.main-visual .slide-stop {background-image:url("/images/main/mv-stop.png");}
.main-visual .slide-play {display:none; background-image:url("/images/main/mv-play.png");}
.main-visual .active .image {transform:scale(1);}
.main-visual .active .caption p {transform:translate(0,0); opacity:1;}
.main-visual .active .caption .txt1 {transition-delay:.2s;}
.main-visual .active .caption .txt2 {transition-delay:.5s;}
.main-visual .scroll {position:absolute; bottom:50px; left:50%; transform: translateX(-50%); animation:scrollDown .9s linear infinite alternate; z-index:40;}

.progress-bar.animated {animation:progressBar 1 linear;}
.progress-bar.paused {animation-play-state:paused !important;}
.progress-bar.play {animation-play-state:running !important;}

@keyframes progressBar {
	0%{width:0;}
	100%{width:100%;}
}
@keyframes scrollDown{
	0%{transform:translateY(0);}
	100%{transform:translateY(15px);}
}

/* sub */
.sub-visual {position:relative; overflow:hidden; height:465px; background:#333; color:#fff;}
.sub-visual .bg {position:absolute; top:0; left:0; overflow:hidden; width:100%; height:100%; background-repeat:no-repeat; background-size:cover; transition:2s; opacity:0; transform:scale(1.1);}
.sub-visual .inner {position:absolute; bottom:clamp(1.25rem, -0.625rem + 4.6875vw, 5rem);  left:0; width:100%;}
.sub-visual h2 {font-size: clamp(1.5625rem, 0.8438rem + 1.7969vw, 3rem); font-weight:700; line-height:1.45em; letter-spacing:-.03em;}
.sub-visual .bg1 {background-image:url("../images/common/sv1.jpg"); background-position: right center;}
.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-top:1px solid #ddd; border-bottom:1px solid #ddd;}
.lnb {margin:0 auto; max-width:1200px;}
.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; flex-direction:column; justify-content:center; align-items:center; width:100%; height:60px; padding:0 15px; color:#242424; font-size:18px; font-weight:500; line-height:1.2em; letter-spacing:-.03em;}
.lnb ul li.active {background:#42ade2; border:0;}
.lnb ul li.active a {color:#fff;}

.sub-title {max-width:1260px; margin:0 auto;}

#contArea {max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}
#contArea.wide {max-width:100%; padding:0;}

.real-cont {padding-bottom:120px;}
.icon img {vertical-align: middle; margin-top: -.02em;}
.txt-center {text-align: center;}
.flex-wrap {display: flex;}
.flex-center {display: flex; justify-content: center;}
.flex-between {display: flex; justify-content: space-between;}
.flex-mid {display: flex; align-items: center;}
.flex-column {display: flex; flex-direction: column;}
.flex1 {flex: 1;}

.font-n {font-family:'Noto Sans KR';}

.fz64-26 {font-size: clamp(1.625rem, 0.4375rem + 2.9688vw, 4rem); line-height: 1em;}
.fz56-24 {font-size: clamp(1.5rem, 0.5rem + 2.5vw, 3.5rem); line-height: 1.4285em;}
.fz48-24 {font-size: clamp(1.5rem, 0.75rem + 1.875vw, 3rem); line-height: 1.458em;}
.fz40-24 {font-size: clamp(1.5rem, 1rem + 1.25vw, 2.5rem); line-height: 1.3em;}
.fz32-24 {font-size: clamp(1.5rem, 1.25rem + 0.625vw, 2rem); line-height: 1.375em;}
.fz32-20 {clamp(1.25rem, 0.875rem + 0.9375vw, 2rem); line-height: 1.375em;}
.fz24-18 {font-size: clamp(1.125rem, 0.9375rem + 0.4688vw, 1.5rem); line-height: 1.5em;}
.fz22-17 {font-size: clamp(1.0625rem, 0.9063rem + 0.3906vw, 1.375rem);}
.fz20-16 {font-size: clamp(1rem, 0.875rem + 0.3125vw, 1.25rem); line-height: 1.6em;}
.fz18-15 {font-size: clamp(0.9375rem, 0.8438rem + 0.2344vw, 1.125rem);}
.fz16-14 {font-size: clamp(0.875rem, 0.8125rem + 0.1563vw, 1rem); line-height: 1.5em;}
.fz14-12 {font-size: clamp(0.75rem, 0.6875rem + 0.1563vw, 0.875rem); line-height: 1.57em;}
.fz12 {font-size: 12px; line-height: 1.16667em;}

.mb80-25 {margin-bottom:clamp(1.5625rem, -0.1563rem + 4.2969vw, 5rem);}
.mb60-25 {margin-bottom:clamp(1.5625rem, 0.4688rem + 2.7344vw, 3.75rem);}
.mb50-20 {margin-bottom:clamp(1.25rem, 0.3125rem + 2.3438vw, 3.125rem);}
.mb40-20 {margin-bottom:clamp(1.25rem, 0.625rem + 1.5625vw, 2.5rem);}
.mb35-25 {margin-bottom:clamp(1.5625rem, 1.25rem + 0.7813vw, 2.1875rem);}
.mb25-15 {margin-bottom:clamp(0.9375rem, 0.625rem + 0.7813vw, 1.5625rem);}
.mb20-10 {margin-bottom:clamp(0.625rem, 0.3125rem + 0.7813vw, 1.25rem);}
.mb15-7 {margin-bottom:clamp(0.4375rem, 0.1875rem + 0.625vw, 0.9375rem);}

.fw400 {font-weight: 400;}
.fw500 {font-weight: 500;}
.fw600 {font-weight: 600;}
.fw700 {font-weight: 700;}
.fw800 {font-weight: 800;}

.primary-color {color: var(--primary-color);}
.secondary-color {color: var(--secondary-color);}
.dark-color {color: var(--dark-color);}
.light-color {color: var(--light-color);}
.white-color {color: #fff;}

/* footer */
#footer {background:#121212; color: #fff; padding: clamp(1.25rem, 0.4688rem + 1.9531vw, 2.8125rem) 0;}
#footer .contain {max-width: 1860px;}
#footer address {font-size: 14px; line-height: 1.8em; flex-wrap: wrap; gap: 0 25px; font-style: normal; opacity: .6;}
#footer address span {display: block;}
.f-left {max-width: 1200px;}
.f-info {flex: 1; padding-right: 40px;}
.f-link a {display: block;position: relative; padding-left: 12px; margin-left: 12px;}
.f-link a:not(:first-child):before {position: absolute; content: '｜'; left: -8px;}
.f-logo {justify-content: flex-end;}

html[lang="en"] .f-info {flex: none; max-width: 490px; padding-right: clamp(20px, calc( 70 / 1920 * 100vw ), 70px);}

/* audio player */
.audio-player {position: fixed; top: calc(var(--header-height) + 10px); right: 30px; z-index: 100; transition: .5s;}
.audio-player.on {right: 0; transform: translateX(100%);}
.audio-player .btn-audio {position: absolute; top: 50%; left: 0; transform: translate(-100%, -50%); background: #fff; color: var(--primary-color); padding: 5px 20px; box-shadow: 2px 2px 6px rgba(0,0,0,.2); border-radius: 5px 0 0 5px; opacity: 0; transition: .5s; cursor: pointer; pointer-events: none;}
.audio-player.on .btn-audio {opacity: 1; pointer-events: auto;}












