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

.event_container * {
    word-break: keep-all;
}

.event_container img {
    display: block;
}

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

.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;
    color: #fff;
}

.event_container .main_title p {
    letter-spacing: -0.045em;
    line-height: 1.3;
    font-size: 38px;
}

.event_container .main_title h3 {
    letter-spacing: -0.045em;
    line-height: 1.3;
    font-size: 50px;
    font-family: 'noto7';
}

.event_container .main_title h3 em {
    color: #0013ff;
}

.event_container .main_title span {
    display: inline-flex;
    justify-content: center;
    width: 189px;
    height: 49px;
    padding: 8px 0 0;
    margin: 0 0 10px;
    text-align: center;
    letter-spacing: -0.045em;
    color: #000;
    font-size: 22px;
    font-family: 'noto6';
    background: url('/img/event/9260/pc/main_title_index.png') no-repeat 0 0 / contain;
}

.event_container .main_desc {
    width: 100%;
    line-height: 1.2;
    letter-spacing: -0.045em;
    text-align: center;
    color: #fff;
    font-size: 34px;
}

.event_container .event_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(150px);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.event_container .event_cont.is_active .event_box {
    opacity: 1;
    transform: translateY(0);
}

.event_container .event_box .main_title {
    color: #000;
}

.event_container .event_box .main_title span {
    width: 129px;
    color: #fff;
    background-image: url('/img/event/9269/pc/event_box_index.png');
}

.event_container .event_noti {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    text-align: center;
}

.event_container .event_noti li {
    line-height: 1.25;
    letter-spacing: -0.045em;
    color: #6f6f6f;
    font-size: 18px;
}

@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 bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

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

/* 탭 */
.main_tab {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main_tab .tab_list {
    display: flex;
    width: 100%;
}

.main_tab .tab_list li,
.main_tab .tab_list .btn_tab {
    width: 100%;
}

.main_tab .tab_content {
    display: none;
}

.main_tab .tab_content.is_active {
    display: flex;
    flex-direction: column;
}

/* 근거확인 */
.evidence_area {
    position: relative;
    display: flex;
    gap: 10px;
    width: 100%;
    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;
}

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

/* 상단 배너 */
.event_container .event_marquee {
    background: #92ff67;
    overflow: hidden;
}
.event_container .event_marquee .marquee_inner {
    display: inline-flex;
    align-items: center;
    animation: marquee 10s linear infinite;
}
.event_container .event_marquee .marquee_inner ul {
    display: flex;
    align-items: center;
    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: #000;
}

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

.banner_bottom button {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* 플로팅배너 */
.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 10px;
    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: 95px;
}

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

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

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

.event_container .event_floating .floating_label {
    position: absolute;
    top: -25px;
    left: 7px;
    animation: floating 1.5s ease-in-out infinite;
}

/* 타이머 */
.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: #92ff67;
}

.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: #160330;
}

.event_cont_1 .event_title {
    position: absolute;
    top: 301px;
    left: 52px;
}

.event_cont_1 .event_title .title_text_1 {
    opacity: 0;
}

.event_cont_1.is_active .event_title .title_text_1 {
    animation: bounceIn 0.75s forwards;
}

.event_cont_1 .event_title::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: -52px;
    left: -46px;
    width: 104px;
    height: 119px;
    background: url('/img/event/9269/pc/light.png') center no-repeat;
}

.event_cont_1 .btn_open_modal {
    position: absolute;
    bottom: 161px;
    left: 50%;
    transform: translateX(-50%);
}

.event_cont_2 {
    min-height: 1116px;
    border-radius: 110px 110px 0 0;
    background: #fff url('/img/event/9260/pc/benefit_bg_01.jpg') repeat-x center top;
}

.event_cont_2 .main_inner {
    padding: 131px 0 100px;
}

.event_cont_2 .main_title {
    margin: 0 0 10px;
}

.event_cont_2 .box_visual {
    margin: -30px 0 0 29px;
}

.event_cont_2 .event_noti:nth-of-type(2) {
    margin: -22px 0 0;
}

.event_cont_3 {
    min-height: 1109px;
    background: #fff url('/img/event/9260/pc/benefit_bg_02.jpg') repeat-x center bottom;
}

.event_cont_3 .main_inner {
    padding: 0 0 100px;
}

.event_cont_3 .main_title {
    transform: translateX(-7px);
}

.event_cont_3 .box_visual {
    margin: 52px 0 0 -56px;
}

.event_cont_3 .event_noti {
    margin: -3px 0 0;
}

.event_cont_4 {
    min-height: 998px;
    background: #fff url('/img/event/9260/pc/benefit_bg_03.jpg') repeat-x center top;
}

.event_cont_4 .main_inner {
    padding: 0 0 100px;
}

.event_cont_4 .box_visual {
    margin: -10px 0 0;
}

.event_cont_4 .main_title {
    transform: translateX(-7px);
}

.event_cont_4 .event_noti {
    margin: -13px 0 0 -6px;
}

.event_cont_5 {
    height: 953px;
    background: #010000 url('/img/event/9269/pc/special.png') no-repeat center top;
}

.event_cont_5 .main_inner {
    padding: 157px 0 29px;
}

.event_cont_5 .main_title {
    transform: translateX(-7px);
}

.event_cont_5 .event_label {
    position: absolute;
    top: -57px;
    left: 50%;
    transform: translateX(-50%);
}

.event_cont_5 .event_noti {
    margin: auto 0 0;
}

.event_cont_5 .event_noti li {
    color: #000;
    opacity: 0.7;
}

.event_cont_6 {
    height: 1342px;
    background: #151655 url('/img/event/9269/pc/apply.png') no-repeat center top;
}

.event_cont_6 .main_inner {
    padding: 145px 0 150px;
}

.event_cont_6 .main_title {
    transform: translateX(-7px);
}

.event_cont_6 .btn_open_modal {
    margin: auto 0 0;
}

.event_cont_7 {
    background: #fff;
}

.event_cont_7 .main_inner {
    padding: 142px 0 100px;
}

.event_cont_7 .main_title {
    color: #000;
    transform: translateX(-7px);
}

.event_cont_7 .event_product {
    display: flex;
    flex-direction: column;
    gap: 38px;
    width: 100%;
    margin: 63px 0 0;
}

.event_cont_7 .product_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 31px 23px 41px 27px;
    border: 3px solid #000;
    border-radius: 20px;
    background: #fff;
}

.event_cont_7 .item_details {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.event_cont_7 .details_tags {
    display: flex;
    gap: 15px;
    margin: 0 0 0 2px;
}

.event_cont_7 .details_tags li {
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 23px;
    border-radius: 38px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-size: 21px;
    font-family: 'noto7';
    background: #ffc62e;
}

.event_cont_7 .details_name {
    display: block;
    line-height: 1.2;
    margin: 16px 0 0;
    letter-spacing: -0.02em;
    font-size: 50px;
    font-family: 'noto7';
}

.event_cont_7 .details_name span {
    color: #ff0000;
}

.event_cont_7 .btn_go {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 269px;
    height: 64px;
    margin: 60px 0 0;
    padding: 0 20px;
    border-radius: 10px;
    letter-spacing: -0.04em;
    color: #fff;
    font-size: 24px;
    font-family: 'noto6';
    background: #111;
}

.event_cont_7 .btn_go::after {
    content: '>';
    margin: 0 0 0 0.1em;
}

/* 시작 영역 */
.event_start {
    background: #030100;
}

.event_start .main_desc {
    position: absolute;
    top: 258px;
    left: 0;
}

.event_start .evidence_area {
    position: absolute;
    justify-content: flex-end;
    bottom: 42px;
    right: 0;
}

.event_start .evidence_btn {
    width: 90px;
    height: 32px;
    opacity: 0;
}

.event_start .evidence_popup_area {
    top: auto;
    bottom: calc(100% + 10px);
}

/* 유의사항 */
.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';
}

/* 모달 : s */
.event_apply_modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-index-dimmed);
}

.event_apply_modal.is_active {
    display: flex;
}

.event_apply_modal .modal_contents {
    position: relative;
    max-height: 90vh;
    word-break: keep-all;
    letter-spacing: -0.07em;
    font-size: 17px;
    background: #fff;
    overflow-y: auto;
}

.event_apply_modal .modal_contents::-webkit-scrollbar {
    display: none;
}

.event_apply_modal .modal_inner {
    max-width: 582px;
}

.event_apply_modal .modal_header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 17px 19px 8px 0;
    background: #ff3a2a;
}

.event_apply_modal .modal_title {
    line-height: 1.25;
    letter-spacing: -0.07em;
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-family: 'market-b';
}

.event_apply_modal .btn_modal_close {
    position: absolute;
    top: 13px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: url('/img/event/9194/pc/icon_close.png') no-repeat center;
}

.event_apply_modal .modal_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 39px 30px;
}

.event_apply_modal .cont_login {
    width: 100%;
    text-align: center;
    line-height: 1.55;
    padding: 12px 0 12px;
    letter-spacing: -0.07em;
    font-size: 17px;
    background: #f1f1f1;
}

.event_apply_modal .cont_login strong {
    font-family: 'noto7';
}

.event_apply_modal .cont_login button {
    font: inherit;
    color: #ff3a2a;
    font-family: 'noto7';
    text-decoration: underline;
    text-underline-offset: 5px;
}

.event_apply_modal .cont_text {
    width: 504px;
    padding: 30px 0 0;
}

.event_apply_modal .cont_form {
    position: relative;
    width: 100%;
    margin: 34px 0 0;
}

.event_apply_modal .input_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event_apply_modal .input_group,
.event_apply_modal .input_group .input_test_number {
    display: flex;
    align-items: center;
}

.event_apply_modal .input_group .file_name,
.event_apply_modal .input_group input {
    height: 50px;
    padding: 0 14px;
    border: 1px solid #bebebe;
    font: inherit;
    line-height: 50px;
}

.event_apply_modal .input_group input#test_number_first {
    width: 80px;
}

.event_apply_modal .input_group input:read-only {
    background: #f5f5f5;
    cursor: default;
}

.event_apply_modal .input_group input:read-only:focus {
    outline: none;
}

.event_apply_modal .input_group input#test_number_first + p {
    padding: 0 10px;
}

.event_apply_modal .input_group textarea {
    width: 100%;
    height: 116px;
    border: 1px solid #bebebe;
    padding: 10px 20px;
    letter-spacing: -0.07em;
    color: #000;
    font-size: 17px;
    font-family: 'noto4';
    resize: none;
}

.event_apply_modal .input_group .btn_default {
    height: 50px;
    line-height: 50px;
    text-align: center;
    letter-spacing: -0.07em;
    color: #fff;
    font-size: 17px;
    font-family: 'noto5';
    background: #4b4b4b;
}

.event_apply_modal .input_group :first-child {
    flex: 0 0 100px;
}

.event_apply_modal .input_group :last-child {
    flex: 1 1 auto;
}

.event_apply_modal .input_files {
    display: flex;
    width: 100%;
}

.event_apply_modal .input_files .file_name {
    flex: 1 1 auto;
    width: 270px;
    max-width: calc(100% - 120px);
    letter-spacing: -0.07em;
    color: #000;
    font-size: 17px;
    font-family: 'noto4';
    background: #f5f5f5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event_apply_modal .input_files .file_label {
    flex: 0 0 120px;
    cursor: pointer;
}

.event_apply_modal .apply_detail {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.event_apply_modal .apply_detail .btn_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

.event_apply_modal .chkbox_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 26px 0 0;
}

.event_apply_modal .chk_input_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.event_apply_modal .chk_input_wrap:nth-child(3),
.event_apply_modal .chk_input_wrap:nth-child(5) {
    margin: 12px 0 0;
}

.event_apply_modal .chk_input_wrap label {
    display: flex;
    align-items: center;
}

.event_apply_modal .chk_input_wrap button,
.event_apply_modal .chk_input_wrap label {
    line-height: 1.2;
    text-align: left;
    letter-spacing: -0.07em;
    font-size: 17px;
    font-family: 'noto7';
}

.event_apply_modal .chk_input_wrap button em,
.event_apply_modal .chk_input_wrap label em {
    color: #ff3a2a;
}

.event_apply_modal .chk_input_wrap label::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 8px 0 0;
    border: 1px solid #000;
    background: #fff;
}

.event_apply_modal .chk_input_wrap input:checked + label::before {
    border: 1px solid #f14e4f;
    background: url('/img/event/9179/pc/input_check.png') no-repeat center center / 100% auto;
}

.event_apply_modal .accordion_toggle_content {
    height: 0;
    overflow: hidden;
}

.event_apply_modal .chk_input_wrap .check_info {
    width: 100%;
    margin: 10px 0 0;
    border: 1px solid #bebebe;
    padding: 10px 20px;
}

.event_apply_modal .chk_input_wrap input[type='checkbox']:checked ~ .check_info {
    display: block;
}

.event_apply_modal .btn_event_apply {
    width: 100%;
    height: 69px;
    /* margin: 40px 0 0; */
    margin: 20px 0 0;
    border-radius: 69px;
    line-height: 1.2;
    letter-spacing: -0.07em;
    color: #fff;
    font-size: 30px;
    font-family: 'noto7';
    background: #ff3a2a;
}
/* 모달 : e */
