@charset "UTF-8";
/* 공통 */
.event_container {
    position: relative;
    min-width: 1200px;
    width: 100%;
    color: #000;
    font-family: 'noto4';
    background: #fff;
    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: #000;
    font-family: 'noto8';
}

.event_container .main_title.type_light {
    color: #fff;
}

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

.event_container .main_title h3 {
    margin: 4px 0 0;
    line-height: 1.3;
    letter-spacing: -0.04em;
    font-size: 48px;
    background: linear-gradient(to right, #0e65ff, #5a4cff, #7c19ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.event_container .main_title .title_index {
    margin: 0 auto 25px;
}

.event_container .main_desc {
    width: 100%;
    line-height: 1.2;
    margin: 9px 0 0;
    letter-spacing: -0.025em;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

.event_container .main_desc.type_light {
    color: #fff;
}

@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 {
    display: flex;
    justify-content: flex-end;
    position: relative;
    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_tab_slide {
    position: relative;
    width: 100%;
}

.event_container .event_tab_slide .swiper-pagination {
    display: flex;
    position: static;
    width: 100%;
}

.event_container .event_tab_slide .swiper-pagination-bullet {
    margin: 0;
}

.event_container .event_tab_slide_wrap {
    overflow: hidden;
}

/* 마퀴 슬라이드 */
.event_container .main_marquee {
    width: 100vw;
    overflow: hidden;
}

.event_container .main_marquee .marquee_inner {
    display: inline-flex;
    align-items: center;
    animation: marquee 10s linear infinite;
}

.event_container .main_marquee .marquee_inner > * {
    flex: 0 0 auto;
}

/* 상단 배너 */
.event_container .event_marquee {
    background: #58ff7f;
}

.event_container .event_marquee .marquee_inner ul {
    display: flex;
    align-items: center;
    height: 70px;
}

.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: 402px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1400px;
    padding: 0 50px;
    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: 8px 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: 85px;
    border-top: 2px solid #ff9323;
    box-sizing: border-box;
    background: #000;
    z-index: 10;
}

.event_container .event_timer_area .main_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 1100px;
    height: 100%;
    border-radius: 16px;
    box-sizing: border-box;
    white-space: nowrap;
}

.event_container .event_timer_area .main_inner .txt_wrap {
    margin-top: -10px;
}

.event_container .event_timer_area .banner_txt em {
    font-family: 'noto6';
}

.event_container .event_timer_area .dayTxt {
    font-size: 43px;
    color: #ffffff;
    font-family: 'noto6';
    line-height: 40px;
    margin-bottom: 5px;
    margin-right: 10px;
    margin-left: 6px;
}

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

.event_container .event_timer_area .dday_count .sdDateTimer li span {
    background: linear-gradient(to bottom, #fff 50%, #dddddd 50%);
    color: #000;
    font-size: 33px;
}

.event_container .event_timer_area .dday_count .sdDateTimer li.day:after {
    display: none;
}

.event_container .event_timer_area .banner_txt {
    font-family: 'noto5';
    font-size: 17px;
    letter-spacing: -0.065em;
    line-height: 1;
    color: #fe8100;
}

.event_container .event_timer_area .banner_title {
    display: flex;
    align-items: center;
    line-height: 1;
    padding-top: 5px;
    color: #fff;
    font-size: 32px;
    letter-spacing: -0.02em;
    font-family: 'noto7';
    font-weight: normal;
}

.event_container .event_timer_area .banner_title span {
    font-family: 'noto7';
    color: #fff;
}

.event_container .event_timer_area .time_table .clock_img {
    display: block;
    margin: -10px 20px 0 0;
}

.event_container .event_timer_area .time_table .sdDateTimer {
    display: flex;
    align-items: center;
    height: 100%;
    margin-top: -10px;
}

.event_container .event_timer_area .time_table .sdDateTimer ul,
.event_container .event_timer_area .time_table .sdDateTimer ul li {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.event_container .event_timer_area .time_table .sdDateTimer ul li {
    gap: 6px;
    padding-right: 0;
    margin-right: 0;
}

.event_container .event_timer_area .time_table .sdDateTimer span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 60px;
    padding-top: 8px;
    border-radius: 5px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #ffffff 50%, #dddddd 50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 68px;
    border-radius: 4px;
    text-align: center;
    color: #000;
    font-size: 40px;
    font-family: 'market-b';
}

.event_container .event_timer_area .time_table .sdDateTimer span:nth-child(2):after {
    clear: both;
    content: ':';
    display: block;
    position: absolute;
    right: -16px;
    top: 55%;
    transform: translateY(-50%);
    font-family: 'market-b';
    font-size: 32px;
    font-weight: bold;
    color: #bbbbbb;
}

.event_container .event_timer_area .time_table .sdDateTimer li:last-child span:nth-child(2):after {
    display: none;
}

.time_table .sdDateTimer .hour::after,
.time_table .sdDateTimer .min::after,
.time_table .sdDateTimer .sec::after {
    content: '';
}

.event_container .event_timer_area .btn_go {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 158px;
    height: 42px;
    line-height: 1;
    margin-left: 37px;
    margin-right: 21px;
    padding: 10px 30px;
    border-radius: 8px;
    letter-spacing: -0.08em;
    background: #ff9323;
    color: #000;
    font-size: 19px;
    font-family: 'noto6';
}

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

.event_cont_1 .main_inner {
    padding: 0 0 0;
}

.event_cont_1 .evidence_area {
    position: absolute;
    top: 120px;
    left: -72px;
}

.event_cont_1 .evidence_area .evidence_btn {
    opacity: 0;
}

.event_cont_1 .visual_title {
    position: absolute;
    top: 194px;
    left: 0;
    opacity: 0;
}

.event_cont_1.is_active .visual_title {
    animation: bounceIn 0.75s forwards;
    opacity: 1;
}

.event_cont_1 .event_list {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 123px;
    left: 0;
}

.event_cont_1 .event_list .list_item {
    display: flex;
    align-items: center;
    width: 360px;
    height: 144px;
    padding: 0 0 0 35px;
    border-radius: 16px;
    border: 3px solid transparent;
    box-sizing: border-box;
    background: #18130c no-repeat 0 0;
}

.event_cont_1 .event_list .list_item_1 {
    background-image: url('/img/event/9274/pc/visual_item_01_off.png');
}

.event_cont_1 .event_list .list_item_2 {
    background-image: url('/img/event/9274/pc/visual_item_02_off.png');
}

.event_cont_1 .event_list .list_item_3 {
    background-image: url('/img/event/9274/pc/visual_item_03_off.png');
}

.event_cont_1 .event_list .list_item.is_active {
    border: 3px solid #ff8e00;
    background-color: #000;
}

.event_cont_1 .event_list .list_item_1.is_active {
    background-image: url('/img/event/9274/pc/visual_item_01_on.png');
}

.event_cont_1 .event_list .list_item_2.is_active {
    background-image: url('/img/event/9274/pc/visual_item_02_on.png');
}

.event_cont_1 .event_list .list_item_3.is_active {
    background-image: url('/img/event/9274/pc/visual_item_03_on.png');
}

.event_cont_1 .event_list .item_text {
    line-height: 1.4;
    letter-spacing: -0.04em;
    font-size: 23px;
    font-family: 'noto6';
    color: #484848;
}

.event_cont_1 .event_list .list_item.is_active .item_text {
    color: #fff;
}

.event_cont_2 {
    background: #f9f9f9;
}

.event_cont_2 .main_inner {
    padding: 148px 0 190px;
}

.event_cont_2 .event_list {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.event_cont_2 .event_list .list_item {
    position: relative;
}

.event_cont_2 .event_list .item_label {
    position: absolute;
    top: -26px;
    left: 50%;
    translate: -50% 0;
    height: 42px;
    padding: 0 26px;
    line-height: 42px;
    border-radius: 42px;
    letter-spacing: -0.04em;
    font-size: 20px;
    font-family: 'noto8';
    background: #b6e300;
    animation: floating 1.5s ease-in-out infinite;
}

.event_cont_2 .event_list .item_label::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 18px solid #b6e300;
}

.event_cont_2 .event_list .item_label::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 18px;
    margin: 0 0 0 2px;
    background: url('/img/event/9268/pc/icon_fire.png') no-repeat center / contain;
}

.event_cont_2 .event_list .btn_scroll {
    position: absolute;
    top: 747px;
    left: 0;
    width: 100%;
    height: 72px;
}

.event_cont_3 {
    background: #000b1c;
}

.event_cont_3 .review_slide_wrap {
    position: absolute;
    right: 0;
    top: 310px;
    width: 680px;
    height: 652px;
}

.event_cont_3 .review_slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event_cont_3 .review_slide .swiper-slide {
    width: 100%;
}

.event_cont_4 {
    background: #d8eaff url('/img/event/9268/pc/reason_bg.jpg') no-repeat center top;
}

.event_cont_4 .main_inner {
    padding: 117px 0 160px;
}

.event_cont_4 .event_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 64px 0 0;
}

.event_cont_4 .event_list .list_item {
    opacity: 0;
    transform: scale(0.1, 0.1);
    transition: 0.5s ease-out;
}

.event_cont_4.is_active .event_list .list_item {
    opacity: 1;
    transform: scale(1, 1);
}

.event_cont_4 .event_list .list_item:nth-child(1) {
    transition-delay: 0.2s;
}

.event_cont_4 .event_list .list_item:nth-child(2) {
    transition-delay: 0.4s;
}

.event_cont_4 .event_list .list_item:nth-child(3) {
    transition-delay: 0.6s;
}

.event_cont_4 .event_list .list_item:nth-child(4) {
    transition-delay: 0.8s;
}

.event_cont_5 {
    height: 1454px;
    background: #161616 url('/img/event/9274/pc/benefit.png') top center no-repeat;
}

.event_cont_5 .main_inner {
    padding: 85px 0 158px;
}

.event_cont_5 .event_list {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 12px;
    position: relative;
    width: 100%;
    margin: auto 0 0;
}

.event_cont_5 .event_list::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 159px;
    height: 140px;
    background: url('/img/event/9274/pc/benefit_item_bullet.png') center no-repeat;
    z-index: 1;
}

.event_cont_5 .event_list .list_item {
    opacity: 0;
    transform: scale(0.1, 0.1);
    transition: 0.5s ease-out;
}

.event_cont_5.is_active .event_list .list_item {
    opacity: 1;
    transform: scale(1, 1);
}

.event_cont_5 .event_list .list_item:nth-child(1) {
    transition-delay: 0.2s;
}

.event_cont_5 .event_list .list_item:nth-child(2) {
    transition-delay: 0.4s;
}

.event_cont_5 .event_list .list_item:nth-child(3) {
    transition-delay: 0.6s;
}

.event_cont_5 .event_list .list_item:nth-child(4) {
    transition-delay: 0.8s;
}

.event_cont_6 {
    background: #fff url('/img/event/9268/pc/detail_bg.jpg') no-repeat center top;
}

.event_cont_6 .main_inner {
    padding: 128px 0 161px;
}

.event_cont_6 .main_tab {
    margin: 72px 0 0;
}

.event_cont_6 .tab_list li {
    width: 100%;
    height: 104px;
}

.event_cont_6 .tab_list p {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 20px;
}

.event_cont_6 .tab_list strong {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 28px;
    font-family: 'noto8';
}

.event_cont_6 .tab_list .btn_tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 10px 0 0;
    color: #9e96bc;
    background: #d3cced;
}

.event_cont_6 .tab_list .btn_tab.is_active {
    color: #fff;
    background: #000;
}

.event_cont_6 .tab_list .tab_tag {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 159px;
    height: 38px;
    background: url('/img/event/9274/pc/intro_tag.png') no-repeat 0 0 / contain;
}

/* .event_cont_6 .tab_list .is_active .tab_tag {
    background-image: url('/img/event/9268/pc/intro_tag_active.png');
    animation: floating 1.5s ease-in-out infinite;
} */

.event_cont_6 .detail_visual {
    position: relative;
    margin: 4px 0 0;
}

.event_cont_6 .detail_visual .btn_get_free {
    position: absolute;
    top: 250px;
    left: 72px;
    width: 432px;
    height: 72px;
}

.event_cont_6 .detail_table {
    margin: 40px 0 0;
    width: 100%;
    border-top: 1px solid #080808;
    border-bottom: 1px solid #080808;
}

.event_cont_6 .detail_table .table_item {
    display: flex;
    align-items: center;
    gap: 29px;
    min-height: 69px;
    padding: 18px 0 19px;
}

.event_cont_6 .detail_table .table_item + .table_item {
    border-top: 1px solid #c8c8c8;
}

.event_cont_6 .detail_table dt {
    flex: 0 0 auto;
    width: 252px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 20px;
    font-family: 'noto6';
}

.event_cont_6 .detail_table dd {
    flex: 1 1 auto;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 20px;
}

.event_cont_6 .detail_table p,
.event_cont_6 .detail_table span {
    line-height: 1.6;
    letter-spacing: -0.04em;
    font-size: 20px;
}

.event_cont_6 .detail_table .btn_go {
    display: inline-block;
    margin: 0 0 -8px 10px;
}

.event_cont_6 .detail_table .table_noti {
    line-height: 1.2;
    margin: 4px 0 0 0;
    letter-spacing: -0.04em;
    color: #888;
    font-size: 16px;
    font-family: 'noto5';
}

.event_cont_6 .detail_list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 41px 0 23px;
}

.event_cont_6 .detail_list .list_item {
    display: flex;
    align-items: center;
    position: relative;
    gap: 38px;
    width: 100%;
    height: 192px;
    padding: 0 47px 0 250px;
    border: 1px solid #c8c8c8;
    border-radius: 20px;
    background: #fff no-repeat 0 0;
}

.event_cont_6 .detail_list .list_item_1 {
    background-image: url('/img/event/9274/pc/detail_item_01.png');
}

.event_cont_6 .detail_list .list_item_2 {
    background-image: url('/img/event/9274/pc/detail_item_02.png');
}

.event_cont_6 .detail_list .list_item_3 {
    background-image: url('/img/event/9274/pc/detail_item_03.png');
}

.event_cont_6 .detail_list .item_badge_wrap {
    position: absolute;
    top: -18px;
    left: 16px;
}

.event_cont_6 .detail_list .item_badge {
    opacity: 0;
}

.event_cont_6 .detail_list .item_badge:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
}

.event_cont_6 .detail_list .item_badge.is_active {
    opacity: 1;
}

.event_cont_6 .detail_list .item_text_wrap {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.event_cont_6 .detail_list .item_text {
    display: flex;
    flex-direction: column;
}

.event_cont_6 .detail_list .text_title {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 28px;
    font-family: 'noto6';
}

.event_cont_6 .detail_list .text_desc {
    line-height: 1.6;
    margin: 7px 0 0;
    letter-spacing: -0.04em;
    font-size: 20px;
}

.event_cont_6 .detail_list .item_price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}

.event_cont_6 .detail_list .price_origin {
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-decoration: line-through;
    color: #b8b8b8;
    font-size: 20px;
}

.event_cont_6 .detail_list .price_total {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 40px;
    font-family: 'noto8';
}

.event_cont_6 .detail_list .btn_cart {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 198px;
    height: 87px;
    border-radius: 12px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 28px;
    font-family: 'noto7';
    background: #b8e500;
}

.event_cont_6 .detail_list .text_checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 9px 0 0;
}

.event_cont_6 .detail_list .text_checkbox label {
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 20px;
}

.event_cont_6 .detail_list .text_checkbox label::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
}

.event_cont_6 .detail_list .text_checkbox input:checked + label::before {
    background: #b8e500 url('/img/event/9268/pc/icon_check.png') no-repeat center / cover;
}

.event_cont_7 {
    background: #020202 url('/img/event/9268/pc/apply_bg.jpg') center top no-repeat;
}

.event_cont_7 .main_inner {
    padding: 128px 0 158px;
}

.event_cont_7 .event_visual {
    position: relative;
    width: 682px;
    margin: 137px 0 0;
}

.event_cont_7 .event_visual .visual_tag {
    position: absolute;
    top: -79px;
    right: -106px;
    z-index: 1;
}

.event_cont_7 .event_visual .visual_img_1 {
    position: relative;
    z-index: 1;
    animation: floating 1.5s ease-in-out infinite;
}

.event_cont_7 .event_visual .visual_img_2 {
    position: absolute;
    top: -80px;
    right: 0;
    animation: floating 1.5s ease-in-out 0.4s infinite;
}

.event_cont_7 .event_apply {
    display: flex;
    flex-direction: column;
    gap: 42px;
    width: 100%;
    margin: -6px 0 0;
    padding: 48px 47px;
    border-radius: 24px;
    color: #fff;
    background: #25252b;
}

.event_cont_7 .event_apply a,
.event_cont_7 .event_apply button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    letter-spacing: -0.04em;
    font-size: 20px;
    font-family: 'noto6';
}

.event_cont_7 .event_apply a::after,
.event_cont_7 .event_apply button::after {
    content: '▶';
    color: inherit;
    font-size: 10px;
}

.event_cont_7 .event_apply .btn_image {
    color: #000;
    background: #fff;
}

.event_cont_7 .event_apply .btn_link {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.event_cont_7 .event_apply .btn_nblog {
    color: #fff;
    background: #2db400;
}

.event_cont_7 .event_apply .btn_kakao {
    color: #fff;
    background: #3f3831;
}

.event_cont_7 .event_apply .btn_ncafe {
    color: #228a00;
    background: #def7d5;
}

.event_cont_7 .event_apply .btn_cafe {
    color: #c7000d;
    background: #f7d5d7;
}

.event_cont_7 .event_apply .btn_nblog::before,
.event_cont_7 .event_apply .btn_kakao::before,
.event_cont_7 .event_apply .btn_ncafe::before,
.event_cont_7 .event_apply .btn_cafe::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 25px;
    background: no-repeat 0 0 / 100% auto;
}

.event_cont_7 .event_apply .btn_nblog::before {
    background-image: url('/img/event/9268/pc/icon_nblog.png');
}
.event_cont_7 .event_apply .btn_kakao::before {
    background-image: url('/img/event/9268/pc/icon_kakao.png');
}
.event_cont_7 .event_apply .btn_ncafe::before {
    background-image: url('/img/event/9268/pc/icon_ncafe.png');
}
.event_cont_7 .event_apply .btn_cafe::before {
    background-image: url('/img/event/9268/pc/icon_cafe.png');
}

.event_cont_7 .event_apply .item_title {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 28px;
    font-family: 'noto6';
}

.event_cont_7 .event_apply .item_text {
    line-height: 1.75;
    margin: 6px 0 0;
    letter-spacing: -0.04em;
    font-size: 20px;
}

.event_cont_7 .event_apply .item_btns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9px 0;
    margin: 27px 0 0;
}

.event_cont_7 .event_apply .item_btns li {
    width: 498px;
    height: 54px;
}

.event_cont_7 .event_apply .item_inputs {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 9px;
    width: 100%;
    margin: 24px 0 0;
}

.event_cont_7 .event_apply .item_inputs label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 54px;
    padding: 0 40px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    background: #fff;
}

.event_cont_7 .event_apply .item_inputs p {
    width: 100%;
    line-height: 1.5;
    letter-spacing: -0.04em;
    color: #888;
    font-size: 20px;
    font-family: 'noto4';
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.event_cont_7 .event_apply .item_inputs button::after {
    display: none;
}

.event_cont_7 .event_apply .item_inputs input {
    width: 100%;
    height: 100%;
    padding: 8px 0 0;
    color: #000;
    font-size: inherit;
    background: none;
}

.event_cont_7 .event_apply .item_inputs input::placeholder {
    color: #888;
    font-size: 20px;
}

.event_cont_7 .btn_apply {
    margin: 48px 0 0;
}

.event_cont_7 .apply_noti {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    margin: 45px 0 0;
    text-align: center;
}

.event_cont_7 .apply_noti li {
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #888;
    font-size: 16px;
}

/* 시작 영역 */
.start_cont {
    height: 1024px;
    background: #000 url('/img/event/9274/pc/cont_03.png') center top no-repeat;
}

.start_cont .evidence_popup_area {
    top: calc(100% - 315px);
}

.start_cont .evidence_area {
    position: absolute;
    bottom: 67px;
    right: -11px;
}

.start_cont .evidence_area .evidence_btn {
    width: 84px;
    height: 29px;
    opacity: 0;
}

/* 유의사항 */
.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; */
    padding: 0 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;
    word-break: keep-all;
    letter-spacing: -0.07em;
    font-size: 17px;
}

.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 {
    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:read-only {
    background: #f5f5f5;
    cursor: default;
}

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

.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;
    letter-spacing: -0.07em;
    color: #000;
    font-size: 17px;
    font-family: 'noto4';
    background: #f5f5f5;
}

.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 */
