@charset "UTF-8";

/* 공통 */
.event_container {
    position: relative;
    min-width: 1200px;
    width: 100%;
    color: #000;
    font-family: 'noto4';
    overflow: hidden;
}

.event_container img {
    display: block;
}

.event_container button {
    border: none;
    background: none;
    cursor: pointer;
}

.event_container li {
    float: none;
}

.event_container p,
.event_container h3,
.event_container strong {
    font-weight: normal;
}

.event_container .screen_out {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
}

.event_container .event_cont {
    position: relative;
}

.event_container .main_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 1100px;
    height: 100%;
    margin: 0 auto;
}

.event_container .main_title {
    text-align: center;
}

.event_container .main_title p {
    line-height: 1.2;
    letter-spacing: -0.045em;
    font-size: 51px;
    font-family: 'noto5';
}

.event_container .main_title h3 {
    line-height: 1.2;
    margin: 2px 0 0;
    letter-spacing: -0.045em;
    color: #000;
    font-size: 60px;
    font-family: 'noto7';
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pointerBounceDiagonal {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, -10px);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes blink3 {
    0%,
    49% {
        opacity: 0;
    }
    50%,
    100% {
        opacity: 1;
    }
}

/* 근거확인 */
.evidence_area_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.evidence_area_wrap.align_center {
    justify-content: center;
}

.evidence_area {
    position: relative;
    z-index: 2;
}

.evidence_btn {
    display: block;
    height: 25px;
    line-height: 1.1;
    padding: 6px 6px 1px;
    border: 1px solid #000000;
    border-radius: 3px;
    background: #ffffff;
    letter-spacing: -0.025em;
    font-size: 15px;
    font-family: 'market-l';
    color: #000000;
    cursor: pointer;
}

.evidence_btn span {
    display: inline-block;
    font-size: 12px;
}

.evidence_popup_area {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 450px;
    border: 1px solid #000000;
    background: #ffffff;
    letter-spacing: -0.045em;
}

.evidence_popup_wrap {
    position: relative;
    padding: 36px 24px;
}
.evidence_popup_area .x_btn {
    position: absolute;
    top: 14px;
    right: 20px;
    letter-spacing: -0.045em;
    line-height: 1.1;
    color: #000;
    font-size: 20px;
    font-family: 'market-m';
    cursor: pointer;
}

.evidence_popup_area li {
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    word-break: keep-all;
    letter-spacing: -0.045em;
    color: #000;
    font-size: 14px;
    font-family: 'noto4';
}

.evidence_popup_area li:not(.type_point) {
    text-indent: 10px;
}

.evidence_popup_area li.type_red::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: red;
}

.evidence_popup_area li.type_point {
    margin: 10px 0 0;
    font-size: 17px;
    font-weight: bold;
    color: #000000;
}

.evidence_popup_area li.type_red {
    color: red;
}

/* 상단 배너 */
.event_container .event_marquee {
    background: #0219ff;
    overflow: hidden;
}
.event_container .event_marquee .marquee_inner {
    display: inline-flex;
    align-items: center;
    animation: marquee 10s linear infinite;
    animation-duration: 50s !important;

}
.event_container .event_marquee .marquee_inner ul {
    display: flex;
    align-items: center;
    width: max-content;
    height: 80px;
}
.event_container .event_marquee .marquee_inner ul li {
    margin: 0 40px;
    font-family: 'noto7';
    font-size: 28px;
    letter-spacing: -0.08em;
    white-space: nowrap;
    color: #fff;
}

/* 하단 배너 */
.event_container .banner_bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: var(--z-index-floating, 10);
}

/* 플로팅배너 */
.event_container .event_floating_wrap {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 318px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1400px;
    padding: 0 5px;
    z-index: var(--z-index-floating, 10);
    transition: top 0.3s ease-in-out;
    pointer-events: none;
}

.event_container.is_active .event_floating_wrap {
    top: 85px;
}

.event_container .event_floating {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

.event_container .event_floating button {
    display: block;
    width: 100%;
}

.event_container .event_floating .btn_scroll + .btn_scroll {
    margin: 25px 0 0;
}

/* 타이머 */
.event_container .event_timer_area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 77px;
    background: url('/img/event/8955/pc/time_bg.png') center no-repeat;
    z-index: var(--z-index-floating, 10);
}

.event_container .event_timer_area .main_inner {
    flex-direction: row;
    justify-content: space-between;
    white-space: nowrap;
}

.event_container .event_timer_area p {
    line-height: 1.2;
    letter-spacing: -0.075em;
    color: #fff;
    font-size: 20px;
    font-family: 'noto4';
}

.event_container .event_timer_area p span {
    color: #6cbad7;
}

.event_container .event_timer_area .img_item {
    margin-top: 11px;
}

.event_container .event_timer_area .timer_visual {
    display: flex;
    align-items: center;
}

.event_container .event_timer_area .event_timer {
    display: flex;
    align-items: center;
    gap: 56px;
    height: 100%;
    padding-right: 50px;
}

.event_container .event_timer_area .event_timer > div {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.event_container .event_timer_area .event_timer span {
    width: 40px;
    height: 50px;
    line-height: 58px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-family: 'market-b';
    background: #050509;
}

.event_container .event_timer_area .event_timer > div::after {
    position: absolute;
    top: 50%;
    right: -32px;
    transform: translateY(-50%);
    letter-spacing: -0.08em;
    color: #fff;
    font-size: 22px;
    font-family: 'noto4';
}

.event_container .event_timer_area .event_timer .timer_day::after {
    content: '일';
}

.event_container .event_timer_area .event_timer .timer_hour::after {
    content: '시';
}

.event_container .event_timer_area .event_timer .timer_minute::after {
    content: '분';
}

.event_container .event_timer_area .event_timer .timer_seconds::after {
    content: '초';
}

.event_container .event_timer_area .btn_go {
    display: flex;
    align-items: center;
    position: relative;
    height: 48px;
    padding: 0 31px 0 32px;
    border-radius: 48px;
    letter-spacing: -0.035em;
    color: #000;
    font-size: 21px;
    font-family: 'noto5';
    background: #3ef5fc;
}

.event_container .event_timer_area .btn_go::after {
    content: '>';
    margin-left: 6px;
}

.event_container .event_timer_area .btn_go::before {
    content: '';
    position: absolute;
    top: 24px;
    right: -21px;
    width: 37px;
    height: 48px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

/* 컨텐츠 */
.event_cont_1 {
    background: #031098;
}

.event_cont_1 .btn_scroll {
    position: absolute;
    bottom: 145px;
    left: 50%;
    transform: translateX(-50%);
    width: 691px;
    height: 92px;
}

.event_cont_1 .btn_scroll::after {
    content: '';
    position: absolute;
    top: 71px;
    right: 24px;
    width: 77px;
    height: 78px;
    background: url('/img/event/9306/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_2 {
    background: #fff;
}

.event_cont_2 img {
    margin-left: 63px;
}

.event_cont_3 {
    background: linear-gradient(to top, #ffec5a 70px, #f0f4ff 70px);
}

.event_cont_3 .main_inner {
    padding-top: 129px;
}

.event_cont_3 img {
    margin-left: 61px;
}

.event_cont_4 {
    background: linear-gradient(to bottom, #ffec5a 110px, #364baf 110px 14%, #000 42%);
}

.event_cont_4 .event_banner {
    position: relative;
    margin: -143px 0 0;
    z-index: 1;
}

.event_cont_4 .event_banner + img {
    margin-top: -32px;
}

.event_cont_5 {
    background: #4a03db;
}

.event_cont_5 .event_video {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 502px;
}

.event_cont_5 .event_video_1 {
    top: 680px;
}

.event_cont_5 .event_video_2 {
    top: 1724px;
}

.event_cont_5 .video_tag {
    position: absolute;
    top: -142px;
    right: -24px;
    animation: floating 0.8s ease-in infinite;
    z-index: 1;
}

.event_cont_5 .video_box_wrap {
    position: absolute;
    top: 0;
    left: 0;
}

.event_cont_5 .video_box_wrap .btn_video,
.event_cont_5 .video_box_wrap iframe {
    display: block;
    width: 1100px;
    height: 504px;
}

.event_cont_6 {
    height: 1110px;
}

.event_cont_6 .main_inner {
    padding-top: 128px;
}

.event_cont_7 {
    background: #2c0281;
}

.event_cont_7 .main_title {
    position: absolute;
    top: 139px;
    left: 0;
    width: 100%;
}

.event_cont_7 .main_title h3 {
    color: #fff;
}

.event_cont_7 .main_title em {
    color: #d0fa50;
    font: inherit;
}

.event_cont_7 .event_coupon {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 692px;
    left: 50%;
    transform: translateX(-50%);
    width: 645px;
}

.event_cont_7 .event_coupon .coupon_title {
    text-align: center;
}

.event_cont_7 .event_coupon .coupon_title strong {
    display: block;
    line-height: 1.08;
    background: linear-gradient(to right, #7925c1, #1b3fa9);
    -webkit-background-clip: text;
    letter-spacing: -0.035em;
    color: transparent;
    font-size: 90px;
    font-family: 'market-b';
}

.event_cont_7 .event_coupon .coupon_noti {
    margin: 36px 0 0;
    width: 549px;
    height: 113px;
    padding: 17px 0 0 62px;
    border-radius: 10px;
    color: #949494;
    background: #f0f0f0;
}

.event_cont_7 .event_coupon .coupon_noti p {
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-size: 19px;
}

.event_cont_7 .event_coupon .coupon_noti p::after {
    content: '';
    position: absolute;
    top: 3px;
    left: -33px;
    width: 24px;
    height: 24px;
    background: url('/img/event/common/pc/common_info_bullet.png') no-repeat 0 0;
}

.event_cont_7 .event_coupon .coupon_noti ul {
    margin: 4px 0 0;
}

.event_cont_7 .event_coupon .coupon_noti li {
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-size: 19px;
}

.event_cont_7 .event_coupon .coupon_noti li::before {
    content: '-';
    margin: 0 10px 0 0;
}

.event_cont_7 .event_coupon .btn_coupon {
    position: relative;
    width: 700px;
    height: 93px;
    margin: 110px 0 0;
    color: #fff;
    font-size: 40px;
    font-family: 'noto6';
}

.event_cont_7 .event_coupon .btn_coupon::after {
    content: '';
    position: absolute;
    top: 63px;
    right: 59px;
    width: 50px;
    height: 44px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.price_cont {
    background: linear-gradient(to bottom, #ffec5a 180px, #fff 180px);
}

.price_cont .main_inner {
    padding: 0 0 163px;
}

.price_cont .main_title {
    margin-top: 53px;
}

.price_cont .lec_list_wrap_1 {
    width: 100%;
    margin: 53px 0 44px;
    padding: 65px 30px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #ff3a2a;
}

.price_cont .lec_list_wrap_2 {
    width: 100%;
    padding: 42px 30px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #ededed;
}

.price_cont .lec_list_wrap_2 + .lec_list_wrap_2 {
    margin-top: 29px;
}

.price_cont .lec_list_wrap_2_2 {
    padding-bottom: 60px;
}

.price_cont .lec_list_wrap .lec_list_title {
    font-family: 'noto6';
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
}

.price_cont .lec_list_wrap_1 .lec_list_title {
    color: #ffdf2c;
}

.price_cont .lec_list_wrap .lec_list_title em {
    font-family: 'noto6';
    color: #ff3a2a;
}

.price_cont .lec_list_wrap .lec_list_sub_txt {
    margin: 10px 0 45px;
    font-family: 'noto4';
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.price_cont .lec_list_wrap_1 .event_lec_list_form {
    width: 100%;
    margin-top: 28px;
}

.price_cont .lec_list_wrap_1 .event_lec_list_form:first-of-type {
    margin-top: 43px;
}

.price_cont .lec_list_wrap_1 .lec_list_box {
    width: 100%;
}

.price_cont .lec_list_wrap_1 .lec_list_box + .lec_list_box {
    margin-top: 28px;
}

.price_cont .lec_list_wrap_2 .lec_list_box {
    width: 100%;
}

.price_cont .lec_list_wrap_2 .lec_list_box:first-of-type {
    margin-top: 39px;
}

.price_cont .lec_list_wrap .lec_list {
    display: flex;
    position: relative;
    width: 100%;
    height: 123px;
    border: 3px solid #000;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #000;
}

.price_cont .lec_list_wrap_1 .lec_list {
    border: 0;
    background: #000;
    color: #fff;
}

.price_cont .lec_list_wrap_2 .lec_list + .lec_list {
    margin-top: 28px;
}

.price_cont .lec_list_wrap .lec_list .lec_title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 263px;
    height: 100%;
    padding: 20px 0 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #ffec80;
    font-family: 'market-b';
    font-size: 35px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
}

.price_cont .lec_list_wrap_1 .lec_list .lec_title {
    background: #292929;
}

.price_cont .lec_list_wrap .lec_list .lec_title::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 157px;
    height: 45px;
    background: url('/img/event/9179/pc/item_bullet_2.png') center no-repeat;
}

.price_cont .lec_list_wrap_1 .lec_list .lec_title::before {
    background: url('/img/event/9179/pc/item_bullet_1.png') center no-repeat;
}

.price_cont .lec_list_wrap .lec_list .lec_price_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 263px);
    padding: 24px 35px;
    box-sizing: border-box;
}

.price_cont .lec_list_wrap .lec_list .price_box {
    position: relative;
    margin-top: 20px;
    font-family: 'noto4';
    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #666666;
}

.price_cont .lec_list_wrap_1 .lec_list .price_box {
    color: #b1b1b1;
}

.price_cont .lec_list_wrap .lec_list .price_box::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: #666666;
}

.price_cont .lec_list_wrap_1 .lec_list .price_box::before {
    background: #b1b1b1;
}

.price_cont .lec_list_wrap .lec_list .discount_price_box,
.price_cont .lec_list_wrap .lec_list .discount_price {
    position: relative;
    font-family: 'noto7';
    font-size: 45px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.price_cont .lec_list_wrap_1 .lec_list .discount_price_box,
.price_cont .lec_list_wrap_1 .lec_list .discount_price {
    color: #fff;
}

.price_cont .lec_list_wrap .lec_list .discount_price_box {
    margin: 16px 0 0 -27px;
}

.price_cont .lec_list_wrap .lec_list .discount_price_box::after {
    clear: both;
    content: '30% 할인';
    display: block;
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 113px;
    height: 31px;
    border-radius: 30px;
    background: #ff3a2a;
    font-family: 'noto4';
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 31px;
    text-align: center;
    color: #ffffff;
}

.price_cont .lec_list_wrap .lec_list .btn-apply,
.price_cont .lec_list_wrap .lec_list .link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 252px;
    height: 67px;
    border-radius: 12px;
    font-family: 'noto7';
    background: #000;
    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffdf2c;
}

.price_cont .lec_list_wrap_1 .lec_list .btn-apply,
.price_cont .lec_list_wrap_1 .lec_list .link_btn {
    background: #ffdf2c;
    color: #000;
}

.price_cont .lec_list_wrap .lec_list .btn-apply::before,
.price_cont .lec_list_wrap .lec_list .link_btn::before {
    content: '';
    position: absolute;
    top: 59px;
    right: -16px;
    width: 42px;
    height: 48px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.price_cont .lec_list_wrap .lec_bulllet {
    position: absolute;
    top: -40px;
    right: -4px;
    width: 90px;
    height: 94px;
}

.price_cont .lec_list_wrap .lec_bulllet > img {
    position: absolute;
    top: 0;
    left: 0;
}

.price_cont .lec_list_wrap .lec_bulllet > img:last-child {
    animation: blink3 1s infinite;
}

.price_cont .lec_list_wrap .lec_list_noti {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 0 0 10px;
    margin-top: 28px;
    font-family: 'noto3';
    font-size: 16px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    text-align: left;
    color: #fff;
    opacity: 0.5;
}

.start_cont {
    background: #1b0708;
}

/* 유의사항 */
.event_notice {
    padding: 163px 0 100px;
    background: #f5f5f5;
}

.event_notice .main_inner {
    width: 1100px;
    margin: 0 auto;
}

.event_notice .notice_title {
    display: block;
    line-height: 1.1;
    width: 100%;
    border-bottom: 2px solid #000;
    text-indent: -2px;
    letter-spacing: -0.08em;
    font-size: 50px;
    font-family: 'noto5';
}

.event_notice .notice_list {
    width: 100%;
    margin-top: 46px;
}

.event_notice .notice_list .list_item + .list_item {
    margin-top: 37px;
}

.event_notice .notice_list .list_item dt {
    line-height: 1.2;
    letter-spacing: -0.08em;
    font-size: 30px;
    font-family: 'noto6';
}

.event_notice .notice_list .list_item dd {
    display: block;
    width: 100%;
    line-height: 34px;
    margin-top: 9px;
    letter-spacing: -0.08em;
    font-size: 18px;
    font-family: 'noto2';
}

.event_notice .notice_list .list_item p {
    font-family: 'noto2';
}

.event_notice .notice_list .list_item ul {
    padding-left: 10px;
}

.event_notice .notice_list .list_item li {
    float: none;
    font-family: 'noto2';
}

.event_notice .notice_list .list_item ul + p {
    margin: 30px 0 5px;
    font-size: 20px;
    font-family: 'noto5';
}
