/* 공통적용 */
body {background: #252728;}

img {max-width: 100%;}

input, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; -webkit-border-radius: 0; } 
select {-webkit-appearance: none; -moz-appearance: none; appearance: none;
    padding: 15px 30px 15px 15px; border: 1px solid #CBCBCA; color: #CBCBCA;
    background: transparent url('../img/icon_select_arrow.svg') no-repeat right 1em bottom 50%;} 

input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="tel"],
textarea {border: 0; border: 1px solid #CBCBCA; padding: 15px; background: none; color: #CBCBCA;}
select option {
    color: #111;
    background: #CBCBCA;
    /* 웹 폰트 로딩 지연으로 인한 높이 계산 버그 방지용 시스템 폰트 강제 적용 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Malgun Gothic", "맑은 고딕", sans-serif !important;
    /* rem 단위 계산 오차를 막기 위해 고정 px 사용 */
    font-size: 16px !important;
}
select:focus {
    background-color: #CBCBCA !important;
    color: #111 !important;
}

input::placeholder,
textarea::placeholder {color: #CBCBCA;}

input[type="radio"] {border-radius: 10px;margin-top: -1px;}
input[type="checkbox"] {margin-top: 0px;}
input[type="checkbox"],
input[type="radio"] {
    margin-right: 7px;border: 1px solid #CBCBCA;background: #fff;vertical-align: middle;width: 20px;height: 20px;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {border: 5px solid #4390FF;}

label {margin-right: 20px;}
label:last-child {margin-right: 0;}

.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background-color: #000; } 
.video-container iframe,
.video-container object,
.video-container embed,
.video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 
.video-container .play_icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;
    width: 70px; height: 70px; background: url(../img/icon_play.png) no-repeat center center/70px 70px; display: none;
}


.lock_scroll {overflow: hidden;}
.inner {margin: 0 20px;}

.padding_tb {padding: 60px 0;}
.padding_t {padding-top: 60px;}
.padding_b {padding-bottom: 60px;}

.btn_st01,
.btn_st02,
.btn_st03,
.btn_st04,
.btn_st05,
.btn_st05_f {display: block; padding: 15px; text-align: center; font-weight: 500; font-size: 1.6rem; line-height: 2.2rem;}
.btn_st01 {color: #fff; background: #bb0a0a; }
.btn_st01 .small {font-size: 1.4rem;}
.btn_st02 {color: #CBCBCA; border: 1px solid #CBCBCA;}
.btn_st03 {color: #fff; background: #202020;}
.btn_st04 {color: #181818; background: #CBCBCA;}
.btn_st05 {color: #fff; background: #4390FF; }
.btn_st05_f {color: #fff; background: #4390FF; }
.btn_st01.disabled,
.btn_st02.disabled,
.btn_st03.disabled,
.btn_st04.disabled,
.btn_st05.disabled {background-color: #CBCBCA; color: #777; pointer-events: none;}
.btn_label {font-size: 1.4rem; line-height: 2rem; margin-top: 15px; text-align: center; color: #CBCBCA;}
.btn_view_w, .btn_view_b {display: inline-block; margin-top: 30px; padding-bottom: 3px; font-size: 1.4rem;}
.btn_view_w {color: #CBCBCA; border-bottom: 1px solid #CBCBCA;}
.btn_view_b {color: #202020; border-bottom: 1px solid #202020;}
.btn_view_w:after,
.btn_view_b:after {display: inline-block; content: ""; width: 12px; height: 12px; margin-left: 5px;}
.btn_view_w:after {
    background: url(../img/icon_view_arrow_w.svg) no-repeat center center/12px 12px;
}
.btn_view_b:after {
    background: url(../img/icon_view_arrow_b.svg) no-repeat center center/12px 12px;
}
.btn_stamp {
    width: 90px; height: 100px; display: flex; align-items: center; justify-content: center; text-align: center;
    background: url(../img/btn_stamp.svg) no-repeat center center / contain;
    font-size: 1.6rem; line-height: 2.2rem; font-weight: 500; color: #202020;
}
.btn_stamp_white {
    width: 90px; height: 100px; display: flex; align-items: center; justify-content: center; text-align: center;
    background: url(../img/btn_stamp_white.svg) no-repeat center center / contain;
    font-size: 1.6rem; line-height: 2.2rem; font-weight: 500; color:#fff;
}
.btn_stamp_white.completed,
.btn_stamp.completed {
    background: url(../img/btn_stamp_complete.svg) no-repeat center center / contain;
    color: #777; pointer-events: none;
}

/* popup */
.popup {
    overflow: hidden;  position: fixed; width: 100%; height: 100%; display: none;
    z-index: 9999; top: 0; left: 0; bottom: 0; right: 0; background: rgba(0, 0, 0, .9); } 
.popup.on { display: block; } 
.popup .popup_inner { width: 100%; height: 100%; padding: 15px; margin: 0 auto; box-sizing: border-box; position: relative; } 
.popup .popup_wrap { position: absolute; width: calc(100% - 40px); top: 50%; left: 50%; transform: translate(-50%, -50%); background: #fff; }  
.popup .close { width: 18px; position: absolute; right: 15px; top: 53%; transform: translateY(-50%)}
.popup .pop_box {padding: 20px; word-break: break-all; max-height: 70vh; overflow-x: hidden; overflow-y: auto; font-size: 1.6rem; font-weight: 500; } 
.popup .input_box {padding-top: 20px;}
.popup .input_box .txt {font-size: 1.6rem; line-height: 2.2rem; text-align: center;}
.popup .input_box input {width: 100%; color: #181818; margin:15px 0 20px;}
.popup.noCookie {display: block;}
.popup.noCookie .popup_wrap {max-width: 400px;}

.swiper_box {position: relative;}
.swiper-button-next,
.swiper-button-prev {color: #181818;}
.swiper-button-next:after, .swiper-button-prev:after {font-size: 18px;}

.top_tit .tit {font-weight: 700; text-align: center;}
.top_tit .tit .big {font-size: 2.9rem; line-height: 3.5rem;}
.top_tit .tit .small {font-size: 2rem; line-height: 2.6rem;}
.top_tit .tit .small .th {font-size: 1.4rem; display: inline-block; vertical-align: top;}
.top_tit .tit img{max-width: 120px;}
.top_tit .txt {margin-top: 30px;}
.top_tit .txt .kor {font-size: 1.6rem; line-height: 2.2rem;}
.top_tit .txt .eng {font-size: 1.6rem; line-height: 2.2rem; margin-top: 20px; color: #CBCBCA}

.bd_tit {font-weight: 700; font-size: 2.9rem; line-height: 3.5rem; margin-bottom: 15px; letter-spacing: -1px;}
.bd_tit .small {font-size:2rem; line-height: 2.6rem;}
.bd_txt_w {color: #fff; text-align: center; font-size: 1.6rem; line-height: 2.2rem;}
.bd_txt_w .big {color: #383838; font-size: 2rem; line-height: 2.6rem; text-align: center; margin-bottom: 20px; }
.bd_txt_b {font-size: 1.6rem; line-height: 2.2rem;}
.bd_txt_w .eng {color: #CBCBCA;}
.bd_txt_b .eng {margin-top: 10px;}
.bd_txt_w .eng.viewEng,
.bd_txt_b .eng.viewEng {margin-top: 30px; display: none;}

.form_box li {margin-top: 20px; color: #fff;}
.form_box li .row{display: flex;width: 100%; gap: 10px; align-items: center;}
.form_box li .row.email input{width: 50%;}
.form_box li .row .input{width: 50%;}
.form_box .gubun {margin-bottom: 5px; font-size: 1.6rem; line-height: 2.2rem;}
.form_box .input input[type="text"],
.form_box .input input[type="tel"],
.form_box .input select {width: 100%;}
.form_box .cmnt {font-size: 1.4rem; line-height: 2rem; margin-top: 10px; padding-left: 13px; position: relative; color: #CBCBCA;}
.form_box .cmnt::before {
    display: block; content: "*"; position: absolute; left: 0; top: 2px;
}
.form_box .input.mt-10{margin-top: 10px;}
.form_box .input label{position: relative;}
.form_box .input .search-btn{cursor: pointer; font-size: 0;background: 0; border: 0; position: absolute; top: 50%; transform: translateY(-50%); right: 10px; width: 100%; text-align: right;}
.form_box .input .search-btn img{width:32px; height: 32px;}

#header {
    max-width: 1000px; width: 101%; height: 60px; margin:0 auto; background:#202020;
    position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 3; 
}
#header .inner {height: 100%; display: flex; align-items: center; justify-content: space-between;}
#header .logo {width: 80px; display: block; position: relative; z-index: 998;}

#header .nav_inner {margin: 20vh 20px 0;}
#header .nav li {margin: 10px 0;}
#header .nav li a {color: #fff; display: block; font-weight: 500;}
#header .nav .dept1 > li > a {font-size: 2.2rem; line-height: 2.8rem;}
#header .nav .dept2 {margin:10px 0 40px 20px; }
#header .nav .dept2 > li > a {font-size: 1.8rem; line-height: 2.4rem; position: relative; padding-right: 20px;}
#header .nav .dept2 > li > a:after {
    display: block; content: ""; position: absolute; right: 0; top:50%; transform: translateY(-50%);
    width: 15px; height: 15px; background: url(../img/icon_menu_arrow.svg) no-repeat center center/15px 15px;
}

.m_menu {display: block; position: relative; width: 25px; height: 25px; z-index: 998;} 
.m_menu span {
    display: block; width: 100%; height: 1px; background: #fff; opacity: .8;
    color: transparent; position: absolute; top: 50%; transform: translate(0, -50%); transition: all 0.5s;
} 
.m_menu span:before,
.m_menu span:after {
    content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 1px; background: #fff;
    opacity: .8; transition: all 0.5s;
} 
.m_menu span:before { top: -7px; } 
.m_menu span:after { top: 7px; } 
.m_menu.on span { background: rgba(225, 245, 136, 0); } 
.m_menu.on span:before { top: 0px; transform: rotate(45deg); } 
.m_menu.on span:after { top: 0px; transform: rotate(-45deg); } 
.m_menu.on span:before,
.m_menu.on span:after { background: #fff; } 
.aside {
    width: 100% !important; max-width: 1000px; height: 100vh; position: fixed; top: -100vh; background: #202020;
    left: 50%; transform: translateX(-50%); transition: all 0.5s; z-index: 997; overflow-y: auto;} 
.aside.on { top: 0; } 

#container {max-width: 1000px; margin: 0 auto 0; }

.ck-in .top_tit {padding-top: 50px;padding-bottom: 10px;}
.ck-in .info_box {color: #fff;}
.ck-in .info_box .tit {font-size: 2rem; font-weight: 700; text-align: center;}
.ck-in .info_box .btn_box {margin-top: 25px;}
.ck-in .info_box textarea {width: 100%;}
.ck-in .info_box .tel{display: flex; gap: 10px;}
.ck-in .info_box .tel .phone-cert{background: #fff; border: 0;border-radius: 10px; padding: 0 15px;}
.ck-in.center{display: flex; flex-direction: column; justify-content: center; height: 100vh;}
.ck-in .inner{margin: 0;}

.ck-in{background: url(/img/quiz_bg.png) no-repeat;background-color: #000;background-position: center 70%; padding: 20px;}
.ck-in .info_box{margin-top: 40px; padding: 20px;border: 1px solid #1B222C;border-radius: 10px;position: relative; overflow: auto;}
.ck-in .info_box::before{content: '';background: rgba(255,255,255,0.06); position: absolute; inset: 0;backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px); z-index: 0;}
.ck-in .info_box > *{position: relative; z-index: 1;}
.ck-in input::placeholder{color: #fff;}
.ck-in input:focus{outline: #4390FF;}
.ck-in textarea:focus{outline: #4390FF;}

.ck-in input[type="text"],
.ck-in input[type="password"],
.ck-in input[type="date"],
.ck-in input[type="email"],
.ck-in input[type="tel"],
.ck-in textarea{background: #000; border:1px solid #2A466C;border-radius: 10px; color: #fff;}

.ck-in .form_box .input select{background: #000 url(../img/icon_select_arrow.svg) no-repeat right 1em bottom 50%; border:1px solid #2A466C;border-radius: 10px; color: #fff;}

.main {background:#000;}
.main .main_tit .tit {font-size: 2rem; line-height: 2.6rem; font-weight: 700; text-align: center; margin-bottom: 30px; color: #fff;}
.main .btn_box a:last-child {margin-top: 15px;}

.course {background: #fff;}
.course .ft_map {position: fixed; bottom: 20px; right: 20px; z-index: 2; width: 90px;}
.course .cont_top {
    position: relative; overflow: hidden; height: 0; padding-bottom: 70%;
}
.course .cont_top .tit_box {position: relative; z-index: 1; padding: 25px 20px; color: #fff;}
.course .cont_top .tit_box .small {font-size: 1.8rem; line-height: 2.4rem; margin-bottom: 10px;}
.course .cont_top .tit_box .big {font-size: 3.5rem; line-height: 4rem; font-weight: 700; letter-spacing: -1px;}
.course .cont_top .img_box {position: absolute; top: 0; left: 0;}
.course .cont_top .img_box:before {
    display: block; content: ""; background: linear-gradient(180deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 0%));
    position: absolute; top: 0; left: 0; width: 100%; height: 70%;
}
.course .slide_box {border-top: 1px solid #ededed; text-align: center;}
.course .swiper_gallery {margin: 0 20px;}
.course .swiper_gallery li {position: relative; overflow: hidden; height: 0; padding-bottom: 66.7%;}
.course .swiper_gallery_prev {left: -10px;}
.course .swiper_gallery_next {right: -10px;}
.course .video_box {background: #f8f8f8}
.course .video_box .bd_txt_b {margin-bottom: 50px;}
.course .btn_box {display: flex; justify-content: center;}


.course_off {background: #000;}
.course_off .off_txt .eng {margin-top: 20px;}
.course_off .off_img img {width: 270px;}
.course_off .btn_box {display: flex; justify-content: center;}

#viewVideo {
    overflow: hidden;  position: fixed; width: 100%; height: 100%; display: none;
    z-index: 9999; top: 0; left: 0; right: 0; bottom:0; background: rgba(0, 0, 0, 1); } 
#viewVideo.on { display: block; } 
#viewVideo .viewVideo_inner {position: relative; overflow: hidden; height: 100%; }
#viewVideo .close {position: absolute; right: 20px; top: 20px; z-index: 1;}
#viewVideo .video_box {position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%;}
#viewVideo .video_box video {width:100%; height: 100vh;}

.map {background: #000;}
.map .map_wrap {padding: 40px; text-align: center}
.map_box {position: relative; max-width: 310px; margin:0 auto;}
.map_box .link a {display: block; position: absolute; width: 23%; height: 11%;}
.map_box .link a.link01 {left: 3.7%; bottom: 26%;} /* art piece 14~15일 */
.map_box .link a.link02 {left: 15.5%; bottom:13.5%;} /* countach */
.map_box .link a.link03 {right: 15.5%; bottom:13.5%;} /* diablo */
.map_box .link a.link04 {left: 25.2%; bottom:41%} /* urus */
.map_box .link a.link05 {left: 8.5%; top:20%} /* huracan */
.map_box .link a.link06 {right: 14%; top:14%} /* ad personam */
.map_box .link a.link07 {right: 16%; bottom:38%} /* art piece 16~19일 */

#viewMap {
    overflow: hidden;  position: fixed; width: 100%; height: 100%; display: none; 
    z-index: 9999; top: 0; left: 0; right: 0; bottom:0; background: rgba(0, 0, 0, .9); } 
#viewMap.on { display: block; } 
#viewMap .viewMap_inner {position: relative; overflow: hidden;  }
#viewMap .close {position: absolute; right: 20px; top: 20px;}
#viewMap .map_wrap {padding:80px 40px; height: 100vh; overflow: auto; text-align: center}
#viewMap .map_wrap img {max-width: 400px; width: 100%;}

.success {background:#000;}
.success .top_tit img {width: 270px;}
.success .nt_box {margin-top: 60px; color: #CBCBCA; font-size: 1.4rem; line-height: 2rem;}
.success .nt_box .eng {margin-top: 30px; display: none;}
.success .nt_box .txt p {margin: 5px 0; padding-left: 12px; position: relative;}
.success .nt_box .txt p:before {display: block; content:"-"; position: absolute; left: 0;}
.enterCode .btn {display: flex; justify-content: space-between}
.enterCode .btn a {width: calc(50% - 10px);}

.terms-check {margin-top: 20px;}
.terms-check input{margin-left: 0;}
.terms-check p{margin-top: 5px; font-size: 13px; color: #CBCBCA;line-height: 18px;}
.terms-check textarea{text-align: left; padding: 10px;min-height: 100px; font-size: 14px;margin-top: 10px;}

.qr_box{margin-top: 100px; text-align: center;}
.qr_code{margin-top: 50px;}
.qr_code .time{margin-top:20px}
.qr_code .qr{background: #fff; width: auto; display: inline-block; padding: 10px;}

.timer_wrap{aspect-ratio: 16 / 9; font-family: 'LABDigital-Regular';}
.timer_wrap .inner{margin: 0 auto; height: 90vh; display: flex; gap: 100px; flex-direction: column; align-items: center;justify-content: center;}
.timer_wrap .inner .timer{color: #4390FF; font-size: 20vw;}
.timer_wrap .inner img{position: absolute; bottom: 80px}

.btn_st01{width: 100%; background: linear-gradient(90deg, rgba(16, 58, 187, 1) 0%, rgba(61, 102, 228, 1) 100%); border: none; cursor: pointer;border-radius: 10px;}
.btn_st05{width: 100%;padding: 17px 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: #4390FF; border: none; cursor: pointer; border-radius: 15px;background: linear-gradient(90deg,rgba(16, 58, 187, 1) 0%, rgba(61, 102, 228, 1) 100%);}
.btn_st05::after{content: ''; background: url(/img/right_arrow.svg) no-repeat; background-size: contain; width: 9px; height: 12px; display: block;}

.btn_st05_f{width: 100%;padding: 17px 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: #4390FF; border: none; cursor: pointer; border-radius: 15px;background: linear-gradient(90deg,rgba(16, 58, 187, 1) 0%, rgba(61, 102, 228, 1) 100%);}
.btn_st05_f::after{content: ''; background: url(/img/right_arrow.svg) no-repeat; background-size: contain; width: 9px; height: 12px; display: block;}


.notice-box{background: #f8f9fa;padding: 15px;border-radius: 8px;margin-bottom: 20px;margin-top: 10px;font-size: 14px;color: #e50000;font-weight: bold;text-align: center;line-height: 1.4;border: 1px solid #ffcccc;}

.quiz{background-color: #000;}
.quiz .ck-in{background: url(/img/quiz_bg.png) no-repeat;background-position: center 70%; padding: 20px;}
.quiz .info_box{margin-top: 40px; padding: 20px;border: 1px solid #1B222C;border-radius: 10px;position: relative; overflow: hidden;;}
.quiz .info_box::before{content: '';background: rgba(255,255,255,0.06); position: absolute; inset: 0;backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px); z-index: 0;}
.quiz .info_box > *{position: relative; z-index: 1;}
.quiz .info_box .inner{margin: 0;}
.quiz .info_box .tit span{font-size: 16px;font-weight: 400; color: #4390FF;}
.quiz .info_box .tit div{font-size: 32px; margin-top: 10px;}
.quiz input[type="checkbox"]:checked, input[type="radio"]:checked{border: 5px solid #4390FF;}
.quiz .info_box textarea{overflow: auto;}
.quiz input::placeholder{color: #fff;}
.quiz input:focus{outline: #4390FF;}
.quiz textarea:focus{outline: #4390FF;}
.quiz .btn_box{margin-top: 20px;}

.quiz input[type="text"],
.quiz input[type="password"],
.quiz input[type="date"],
.quiz input[type="email"],
.quiz input[type="tel"],
.quiz textarea{background: #000; border:1px solid #2A466C;border-radius: 10px; color: #fff;}

.quiz .form_box .input select{background: #000 url(../img/icon_select_arrow.svg) no-repeat right 1em bottom 50%; border:1px solid #2A466C;border-radius: 10px; color: #fff;}

.quiz .top_tit{position: fixed;width: 100%; padding-top:0px; top: 20px; left: 50%; transform: translateX(-50%);}
.quiz .top_tit .inner{display: flex; margin: 0; align-items: center; justify-content: center;}
.quiz .top_tit .inner .back{position: absolute; left: 20px;}

.quiz .bar{margin-top: 20px; margin-bottom: 50px;}
.quiz .bar .tit{color: #fff; font-weight: 600; font-size: 28px; text-align: center;}
.quiz .bar .tit span{color: #4390FF;}

/* quiz */
.quiz_wrap {gap: 20px; padding: 20px 0;border: 1px solid #1B222C; backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.06); justify-content: center; position: relative; border-radius: 10px;}
.quiz_a {
    font-weight: 700; width: 100%; padding: 0 20px; line-height: 1.3; min-height: 75px;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; color: #fff;
}
.quiz_a .numb {
    font-weight: 600; font-size: 18px; width:60px; height: 60px;
    line-height: 56px; border: 3px solid transparent;
    border-radius: 50%;text-align: center;
    background-image: linear-gradient(#000, #000), 
    linear-gradient(to right, #2376EB 0%,  #032288 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.quiz_a .ask {font-size: 18px;line-height: 24px;font-weight: 500; min-height: 80px; display: flex; align-items: center; text-align: center;}
.quiz_q {min-height: 80px; display: flex; align-items: center; color: #fff;padding: 0 20px;}
.quiz_q .multi {display: flex; flex-direction: column; gap: 10px; width: 100%;}
.quiz_q .btn_multi input{ display:none;}
.quiz_q .btn_multi label{display:flex;align-items:center;justify-content:center;font-weight: 500; min-width:100px;height:100%;min-height: 52px; line-height: 1.25; padding:10px 20px;border:1px solid #2A466C;border-radius:8px;background:inherit;color:#fff;cursor:pointer;transition:.2s;box-sizing:border-box;text-align: center;}
/* .quiz_q .btn_multi label:hover{border-color:#2376EB;} */
.quiz_q .btn_multi input:checked + label{background:inherit;border:2px solid #4390FF;color:#4390FF; font-weight: 600;}

.quiz_progress {display: flex;margin-top: 12px;border-radius: 10px;overflow: hidden;}
.quiz_progress .progress_item {flex: 1;height: 6px;background: #23374F;overflow: hidden;}
.quiz_progress .progress_item.on {background: #2376EB;}

.end_progress {display: flex;margin-top: 12px;border-radius: 10px;overflow: hidden;}
.end_progress .progress_item {flex: 1;height: 6px;background: #23374F;overflow: hidden;}
.end_progress .progress_item.on {background: #2376EB;}

.end_wrap{color: #fff;text-align: center;}
.end_wrap .tit{font-size: 32px; font-weight: 600;margin: 20px 0 10px;}
.end_wrap .txt_box{margin-top: 50px;margin-bottom: 150px; padding: 20px; background: rgba(255, 255, 255, 0.06);border: 1px solid #1B222C;border-radius: 20px; backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px);}
.end_wrap .txt_box .txt{margin: 15px 0 30px; font-size: 20px; color: #4390FF;font-weight: 500;}
.end_wrap .desc{line-height: 22px;margin-bottom: 80px;}

/* popup */
.popup {position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,.5);}
.nextQuiz {display: none;}
.nextQuiz .inner {margin: 56px 20px 20px; height: 250px; display: flex; align-items: center; justify-content: center; }
.nextQuiz .box {
    background: #121212; color: #fff; padding: 30px 20px; border-radius: 10px; width: 100%; max-width: 300px;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 15px;
}
.nextQuiz .message {font-size: 1.125rem; font-weight: 700; text-align: center;}
.nextBtn {background: var(--mainColor); color: #fff; border: 0; border-radius: 5px; height: 50px; width: 100%; max-width: 200px; font-size: 0.94rem; font-weight: 900;}

.hostQuiz {display: none;}
.hostQuiz .inner {width: 100%; height: 100svh; margin: 0 auto; position: relative; background: #000;}
.hostQuiz .box {padding: 20px; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;}
.hostQuiz .img {max-width: 400px; width: 50%;}

.host #container{max-width: 100%;}
.host .top_tit{position: absolute; top: 0;left: 50%; transform: translateX(-50%);}
.host .ck-in{ background: url(/img/pc_quiz_bg.png) no-repeat; background-color: #000; background-position: center 85%;}
.host .ck-in .info_box{border: none;margin-top: 0;}
.host .ck-in .info_box::before{display: none;}
.host .ck-in .info_box .tit span{font-size: 48px; font-weight: 400; color: #4390FF;}
.host .ck-in .info_box .tit div{font-size: 80px;margin-top: 15px;margin-bottom: 30px;}
.host .btn_box_pc{min-width: 600px; margin: 0 auto;}
.host .btn_box_pc .btn_st05{padding: 35px 0;font-size: 28px; gap: 10px;}
.host .btn_box_pc .btn_st05::after {content: '';background: url(/img/right_arrow.svg) no-repeat;background-size: contain;width: 12px;height: 21px;display: block;}
.host .ck-in .back{position: absolute;left: 20px;top: 40px;}
.host .ck-in .back img{width: 36px;}
.host .quiz_wrap{background: inherit;border: none; backdrop-filter:inherit;padding:0 360px}
.host .bar{margin-top: 20px; margin-bottom: 100px;    position: fixed;width: 100%;top: 140px;}
.host .bar .tit{color: #fff; font-weight: 600; font-size: 40px; text-align: center;}
.host .bar .tit span{color: #4390FF;}
.host .quiz_q{min-height: inherit;margin-top: 40px; margin-bottom: 140px;}
.host .quiz_q .multi{flex-direction: row;}
.host .quiz_q .multi .btn_multi{width: 100%;}
.host .quiz_q .btn_multi label{background: #242424;user-select:none; font-size: 24px; border: 3px solid #2A466C;height: 100%; line-height: 1.25;padding: 10px 20px; text-align: center;}
.host .quiz_a .ask{font-size: 36px;min-height: inherit;user-select:none;line-height: 1.25;}
.host .quiz_progress{margin-top: 20px;}
.host .quiz_a .numb{width: 100px; height: 100px;line-height: 100px;font-size: 36px;user-select:none;}
.host .quiz_q .btn_multi input:checked + label{background: #242424;font-weight: 500; border: 3px solid #2A466C; color: #fff;}

.host .ck-in .info_box.mt-100{margin-top: 100px;}
.host .end_success{text-align: center;border: 1px solid #1B222C;border-radius: 20px; backdrop-filter: blur(10px);background: rgba(255, 255, 255, 0.06);max-width: 1600px;margin: 0 auto;padding: 20px;margin-bottom: 70px;}
.host .end_success .txt_box .txt{font-size: 40px; color: #4390FF;margin-top: 20px;margin-bottom: 30px;}
.host .end_success .txt_box .desc{font-size: 32px; line-height: 42px; max-width: 1200px; margin: 0 auto;}
.end_wrap .end_success .txt_box{margin-bottom: 0;}
.end_wrap .end_success .desc{margin-bottom: 20px;}

body.host .btn_multi label.correct {background: linear-gradient(90deg, rgba(16, 58, 187, 1) 0%, rgba(61, 102, 228, 1) 100%);border-color: #4390FF;color: #fff;}
body.host .btn_multi input:disabled + label {pointer-events: none;}

.main .header{position: absolute;left: 0;width: 100%;padding: 40px 0;}
.main .header .inner{width: 90%; max-width: 1600px; margin: 0 auto;}
.main .header .tit{text-align: left;}
.main .header .tit img{max-width: 120px;}
.main .main_banner{background: url(/img/main_bg.png) no-repeat;height: 100vh;display: flex;flex-direction: column; justify-content: center; background-size: cover; background-position: center;}
.main .main_banner .txt_img{margin: 0 auto; text-align: center;}
.main .main_banner .txt{color: #fff; text-align: center;position: relative;padding-top: 40px;font-size: 3.5rem;}
.main .main_banner .txt::before{content: ''; background: #fff;width: 100px; height: 1px;position: absolute; top: 0;left: 50%; transform: translateX(-50%);}
.main .date_box{margin-top: 60px;}
.main .date_box ul{display: flex; align-items: center; color: #fff; justify-content: center;}
.main .date_box ul li{display: flex; align-items: center;font-size: 2.8rem; gap: 10px;position: relative;margin-right: 50px;padding-right: 50px;}
.main .date_box ul li:after{content: '';background: #fff; width: 1px; height: 26px; position: absolute; right: 0;}
.main .date_box ul li:last-child{margin-right: 0; padding-right: 0;}
.main .date_box ul li:last-child:after{display: none;}
.main .scroll{color: #fff;text-align: center;position: absolute;bottom: 50px;left: 50%; transform: translateX(-50%);}
.main .scroll::after{content: ''; background: url(/img/main_arrow.png) no-repeat; width: 24px; height: 24px;display: block;position: absolute;left: 50%; transform: translateX(-50%);}
.main .scroll div{left: 50%;}

.main_video .bg_video {width: 100%; height: 100%;}
.main_video .bg_video video,
.main_video .bg_video .video_container {width: 100%; height: 100%; padding-bottom: 0;}
.video_content {position: relative; overflow: hidden; aspect-ratio: 16/9; max-width: 100%;}
.video_content iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.main_car{ background: url(/img/car_list_bg.png) no-repeat;background-position: center; background-size: cover; height: 100vh;}
.main_car .inner{display: flex; flex-direction: column;height: 100%; justify-content: center;}
.main_car .car_top{display: flex; align-items: center; justify-content: space-between;width: 100%; max-width: 1360px; margin: 0 auto; position: relative; color: #fff; font-size: 60px; font-weight: 600; padding: 280px 0;}
.main_car .car_top a{position: absolute; left:50%; transform: translateX(-52%);width: 100%; max-width: 900px;} 
.main_car .car_list ul{display: flex; justify-content: center; align-items: center;gap: 60px;}
.main_car .car_list div{color: #fff; text-align: center;font-size: 24px;font-weight: 600;}

.car_list li {cursor: pointer;transition: opacity .3s ease;}
.car_list li img {transition:transform .45s cubic-bezier(.22,.61,.36,1),filter .35s ease;transform-origin: 50% 70%; max-width: 240px;}
.car_list:hover li {opacity: .45;}
.car_list li:hover {opacity: 1;}
.car_list li:hover img {transform: scale(1.03) rotate(-1deg);filter: drop-shadow(0 10px 15px rgba(0,0,0,.12));}

.main_map {display: flex;align-items: center;}
.main_map .location {width: 45%;color: #fff;padding: 0 100px;}
.main_map .location .tit{font-size: 60px; font-weight: 600;}
.main_map .location .info{font-size: 24px; font-weight: 400;margin-top: 30px;line-height: 36px;}
.main_map .map_img{width: 55%;}
.main_map .map_img img{width: 100%;}

.footer{color: #fff;padding: 70px 0; border-top: 1px solid #24B8EF;}
.footer .f_info{width: 90%; max-width: 1600px; margin: 0 auto; }
.footer .logo{display: flex; align-items: center; gap: 40px;font-size: 22px;}
.footer .logo img{max-width: 120px;}
.footer .copy{margin-top: 20px; font-size: 16px;}

.time_box{position: absolute; right:170px; top: 10px;user-select: none;}
.time_box #timer{font-size: 160px;text-align: center; aspect-ratio: 16 / 9; font-family: 'LABDigital-Regular';}

.scroll {animation: scrollMove 1.8s ease-in-out infinite}

@keyframes scrollMove {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
    100% {
        transform: translate(-50%, 0);
    }
}
.car_list li {cursor: pointer;opacity: .5;transition: opacity .3s ease, transform .3s ease;}
.car_list li.on {opacity: 1;}
.car_list li:hover {opacity: 1;transform: translateY(-4px);}
.main_car_img {transition: opacity .3s ease;}

.prize{width: 100%; max-width: 100% !important;overflow: auto;}
.prize_list{ max-height: 210px; max-width: 800px; margin: 0 auto; display:flex; flex-wrap: wrap; justify-content: center;} 
.prize_list li{width: 50%;}
.prize_tit{margin-bottom: 40px !important;}
.mb-50{margin-bottom: 50px !important;}
.prize::-webkit-scrollbar {width: 6px;}
.prize::-webkit-scrollbar-track {background: rgba(255, 255, 255, 0.08);border-radius: 999px;}
.prize::-webkit-scrollbar-thumb {background: rgba(255, 255, 255, 0.35);border-radius: 999px;}
.prize::-webkit-scrollbar-thumb:hover {background: rgba(255, 255, 255, 0.5);}
.prize {scrollbar-width: thin;scrollbar-color: rgba(255, 255, 255, 0.35) rgba(255, 255, 255, 0.08);}

.testdrive_popup{position:fixed;inset:0;z-index:999;display:none;}
.testdrive_popup.open{display:flex;align-items:center;justify-content:center;}
.testdrive_dim{position:absolute;inset:0;background:rgba(0,0,0,.6);}
.testdrive_box{position:relative;width:90%;max-width:420px;background:#fff;border-radius:16px;padding:35px 30px 30px;z-index:2;box-shadow:0 20px 60px rgba(0,0,0,.2);}
.testdrive_box h3{font-size:2.4rem;font-weight:700;text-align:center;margin-bottom:25px;}
.popup_notice{margin:0;padding:0;list-style:none;}
.popup_notice li{position:relative;padding-left:10px;margin-bottom:6px;line-height:1.7;color:#000;font-size:16px;}
.popup_notice li::before{content:"•";position:absolute;left:0;top:0;color:#000;font-weight:bold;}
.popup_btn{width:100%;height:50px;margin-top:25px;border:0;border-radius:8px;background:linear-gradient(90deg, rgba(16, 58, 187, 1) 0%, rgba(61, 102, 228, 1) 100%);color:#fff;font-size:16px;font-weight:700;cursor:pointer;}
.popup_close{position:absolute;top:15px;right:15px;width:36px;height:36px;border:0;background:none;font-size:28px;line-height:1;cursor:pointer;}


/* 화이트 */
.quiz_w{background-color: #FFFFFF;background: linear-gradient(to bottom,#fff 85%,rgb(128, 128, 128) 100%);}
.quiz_w .form_box li{color: #383838; font-weight: 500;}
.quiz_w .info_box .tit span{color: #383838;}
.quiz_w .info_box .tit div{color: #383838;}
.quiz_w input[type="text"],
.quiz_w input[type="password"],
.quiz_w input[type="date"],
.quiz_w input[type="email"],
.quiz_w input[type="tel"],
.quiz_w textarea{background: #CCCCCC; border:1px solid #686D71;border-radius: 10px; color: #000; font-weight: 500;}
.quiz_w .ck-in{background: none;}
.quiz_w .form_box .input select{background: #CCCCCC url(../img/icon_select_arrow.svg) no-repeat right 1em bottom 50%; border:1px solid #686D71;border-radius: 10px; color: #000;}
.quiz_w .terms-check_label{color: #383838; font-weight: 500;}
.quiz_w .terms-check input{margin-bottom: 0;}
.quiz_w input[type="checkbox"]:checked, input[type="radio"]:checked{border: 5px solid #383838; border-radius: 3px;}
.quiz_w input:focus{outline: #383838;}
.quiz_w textarea:focus{outline: #383838;}
.quiz_w .btn_st05{width: 100%;padding: 17px 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: #383838; border: none; cursor: pointer; border-radius: 15px;}
.quiz_w .btn_st05::after{content: ''; background: url(/img/right_arrow.svg) no-repeat; background-size: contain; width: 9px; height: 12px; display: block;}

.quiz_w .btn_st05_f{width: 100%;padding: 17px 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: #383838; border: none; cursor: pointer; border-radius: 15px;}
.quiz_w .btn_st05_f::after{content: ''; background: url(/img/right_arrow.svg) no-repeat; background-size: contain; width: 9px; height: 12px; display: block;}
.quiz_w .form_box .input select{background: #CCCCCC url(../img/icon_select_arrow_b.svg) no-repeat right 1em bottom 50%; background-size: 12px;border: 1px solid #383838;border-radius: 10px;color: #fff;}
.quiz_w .quiz_a{color: #383838;}
.quiz_w .bar .tit{color: #383838;}
.quiz_w .quiz_q .btn_multi.correct label{color: #03ff18 !important; border:2px solid #23eb3e !important}
.quiz_w .quiz_q .btn_multi.fail label{color: #ff0303 !important; border:2px solid #eb2323 !important}
.quiz_w .quiz_q .btn_multi label{color: #383838; background: #ccc; border:1px solid #686D71}
.quiz_w .quiz_q .btn_multi input:checked + label{background: #383838; color: #fff; border: 1px solid #383838;}
.quiz_w .end_wrap{color: #383838;}
.quiz_w .end_wrap .end_success .desc{font-weight: 500;}
.quiz_w .end_wrap .txt_box .txt{color: #383838;}

.host_w .ck-in{background-color: #FFFFFF;background: linear-gradient(to bottom,#fff 85%,rgb(128, 128, 128) 100%);}
.host_w .ck-in .info_box{color: #383838;}
.host_w .ck-in .info_box .tit span{color: #383838;}
.host_w .btn_st05 {color: #fff; background: #383838; }
.host_w .btn_st05_f {color: #fff; background: #383838; }
.host_w .quiz_a{color: #383838;}
.host_w .time_box{color: #383838;}
.host_w .quiz_q .btn_multi label{background: #ccc; color: #383838; border: 1px solid #686D71;}
body.host_w .btn_multi label.correct {background: #383838;border-color: #383838;color: #fff;}
.host_w .prize {scrollbar-width: thin;scrollbar-color: rgb(161, 161, 161) rgba(255, 255, 255, 18);}
.host_w .end_success .txt_box .txt{color: #383838;}

.host_w .quiz_a .ask{padding-bottom: 15px;}
.quiz_w .quiz_a .ask{padding-bottom: 15px;}
.host_w .time_box #timer{color: #383838 !important;}

.apply_w{background-color: #FFFFFF;background: linear-gradient(to bottom,#fff 85%,rgb(128, 128, 128) 100%);}
.apply_w .ck-in{background-color: #FFFFFF;background: linear-gradient(to bottom,#fff 85%,rgb(128, 128, 128) 100%);padding-bottom: 50px;}
.apply_w .ck-in .info_box{color: #383838;}
.apply_w .form_box li{color: #383838;}
.apply_w .ck-in input[type="text"],
.apply_w .ck-in input[type="password"],
.apply_w .ck-in input[type="date"],
.apply_w .ck-in input[type="email"],
.apply_w .ck-in input[type="tel"],
.apply_w .ck-in textarea{background: #CCCCCC; border:1px solid #686D71;border-radius: 10px; color: #000;}
.apply_w .ck-in .form_box .input select{background: #CCCCCC url(../img/icon_select_arrow_b.svg) no-repeat right 1em bottom 50%;background-size: 12px; border:1px solid #2A466C;border-radius: 10px; color: #fff;}
.apply_w input[type="checkbox"]:checked, input[type="radio"]:checked{border: 5px solid #383838; border-radius: 3px;}
.apply_w input:focus{outline: #383838;}
.apply_w textarea:focus{outline: #383838;}
.apply_w .btn_st05{width: 100%;padding: 17px 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: #383838; border: none; cursor: pointer; border-radius: 15px;}
.apply_w .btn_st05::after{content: ''; background: url(/img/right_arrow.svg) no-repeat; background-size: contain; width: 9px; height: 12px; display: block;}
.apply_w .btn_st01{width: 100%;padding: 17px 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: #383838; border: none; cursor: pointer; border-radius: 15px;}
.apply_w .popup_btn{width:100%;height:50px;margin-top:25px;border:0;border-radius:8px;background:#383838;color:#fff;font-size:16px;font-weight:700;cursor:pointer;}
.apply_w .form_box .gubun{font-weight: 500;}
.apply_w .ck-in .info_box .tel .phone-cert{background: #383838;color: #fff; border: 0;border-radius: 10px; padding: 0 15px;}
.apply_w .terms-check p{color: #383838;}

.info_box.h-100{height: 100vh;}

@media screen and (max-width:1400px) {
    .main_car .car_top{width: 90%;font-size: 48px;padding: 240px 0;}
    .main_car .car_top a{width: 60%;}
    .main_car .car_list{width: 90%;margin: 0 auto;}
    .main_car .car_list ul{gap: 20px;}
    .main_car .car_list ul li{margin: 0 auto; text-align: center;}
    .main_car .car_list ul li img{width: 80%; }
    .main_car .car_list div{font-size: 20px;}

    .main_map .location{padding: 0 60px;}
    .main_map .location .tit{font-size: 46px;}
    .main_map .location .info{font-size: 20px;}
}

@media screen and (max-width:1199px) {
    .main_map{flex-direction: column-reverse;}
    .main_map .map_img{width: 100%;}
    .main_map .location{width: 100%;padding: 60px;}
}

@media screen and (max-width:899px) {
    .main .header .tit img{max-width: 100px;}
    .main .main_banner .txt{font-size: 2.8rem;padding-top: 30px;}
    .main .main_banner .txt_img{width: 90%;}
    .main .date_box ul li{font-size: 2rem;margin-right: 30px; padding-right: 30px;}
    .main .date_box ul li img{width: 28px;}
    .main .date_box ul li:after{height: 20px;}
    .main_car .car_top{font-size: 36px;padding: 150px 0;}
    .main_car .car_list ul{flex-wrap: wrap;}
    .main_car .car_list ul li{width: 45%; font-size: 18px;}
    .main_car .car_list ul li img{width: 90%;}

    .footer .logo{font-size: 18px;justify-content: center;}    
    .footer .copy{text-align: center;}
}

@media screen and (max-width:599px) {
    .main .header{padding: 30px 0;}
    .main .header .tit img{max-width: 80px;}
    .main .main_banner .txt{font-size: 2rem;padding-top: 25px;margin-top: 10px;}
    .main .main_banner .txt_img{width: 100%;}
    .main .date_box ul{flex-direction: column;align-items: center;gap: 10px;}
    .main .date_box ul li{padding: 0; margin: 0;font-size: 1.6rem;}
    .main .date_box ul li img{width: 22px;}
    .main .date_box ul li:after{display: none;}
    
    .main_car .car_top{padding: 200px 0 100px;font-size: 28px;}
    .main_car .car_top a{top: 0; width: 90%;}
    .main_car .car_list{width: 100%;}
    .main_car .car_list ul {gap: 30px 20px;}
    .main_car .car_list ul li img{width: 100%; max-width: 130px;}
    .main_car .car_list div{font-size: 16px;}

    .main_map .location{padding: 30px;}
    .main_map .location .tit{font-size: 24px;}
    .main_map .location .info{font-size: 16px;line-height: 26px;margin-top: 20px;}

    .footer .logo{flex-direction: column;gap: 20px;font-size: 16px;}
    .footer .copy{font-size: 14px;}

    .testdrive_box{width:calc(100% - 32px);padding:30px 20px 20px;}
    .testdrive_box h3{font-size:20px;}
    .popup_notice li{font-size:15px;}
    .popup_btn{height:46px;}
    
    .time_box{right: 20px}
    .time_box #timer{font-size: 54px;}
}

.ck-in.mobile{height: 100%; margin-top: 70px;}

