@charset "UTF-8";

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

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

.event_container li {
    float: none;
}

.event_container img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.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 {
    position: relative;
    max-width: 750px;
    height: 100%;
    margin: 0 auto;
}

.event_container .content_wrap {
    position: relative;
    width: 100%;
    border-radius: 30px;
}

.event_container .button_wrap {
    display: flex;
    gap: 10px;
}

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

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

@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 shakeHand {
    0%,
    100% {
        transform: rotate(3deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

/* 헤더 */
.event_header {
    background: #fb1258;
}

.event_header .header_title img {
    margin: 0 auto;
}

/* 컨텐츠 */
.event_intro {
    height: 1280px;
    padding: 43px 0 0;
    background: #e3ffdb;
}

.event_intro .main_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(1px);
}

.event_intro .intro_tit {
    max-width: 741px;
    width: 100%;
}

.event_intro .event_img_wrap {
    width: 100%;
    height: 480px;
    padding-top: 33px;
}

.event_intro .event_img {
    display: none;
}

.event_intro .event_img.is_active {
    display: block;
}

.event_intro .event_img_1 img {
    margin-left: 43px;
}

.event_intro .event_img_2 img {
    margin: -13px 0 0 26px;
}

.event_intro .event_img_3 img {
    margin: -6px 0 0 35px;
}

.event_intro .event_img_4 img {
    margin: 13px 0 0 18px;
}

.event_intro .btn_quiz_next {
    position: relative;
    width: 607px;
    height: 109px;
}

.event_intro .btn_quiz_next::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: -19px;
    width: 57px;
    height: 65px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 1s infinite;
}

.event_question {
    /* max-height: 100vh; */
    padding: 0 0 100px;
}

.event_question .content_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event_question .question_index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 27px;
    left: 0px;
    width: 100%;
}

.event_question .question_index span {
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #4a4a4a;
    font-size: 22px;
    font-family: 'noto4';
}

.event_question .question_index span.progress_bar {
    display: block;
    width: 700px;
    height: 20px;
    background: #ebebeb;
}

.event_question .question_index span.progress_bar .progress {
    display: block;
    height: 100%;
    background: #000000;
    transition: 0.3s;
}

.event_question .question_index .index_wrap {
    display: flex;
    align-items: center;
}

.event_question .q_item {
    display: none;
    padding-top: 89px;
    line-height: 50px;
    letter-spacing: -0.05em;
    text-align: center;
    font-size: 36px;
    font-family: 'noto6';
}

.event_question .q_item.is_active {
    display: block;
}

.event_question .q_item img {
    margin: 0 auto;
}

.event_question .q_item .num {
    display: block;
    margin: 0 auto 10px;
}

.event_question .q_item .q_txt {
    display: none;
}

.event_question .button_wrap {
    flex-direction: column;
    gap: 17px;
    margin: 40px auto 0;
    width: 621px;
}

.event_question .button_wrap button {
    width: 100%;
    height: 70px;
    border: 2px solid #888888;
    border-radius: 60px;
    font-family: 'Nanum Square';
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -0.035em;
    line-height: 1;
    text-align: center;
    color: #606060;
}

.event_question .button_wrap button.is_active {
    border-color: #ff3270;
    background-color: #ff3270;
    color: #fff;
}

.event_question .btn_next {
    display: block;
    margin: 58px auto 0;
}

.event_question .btn_next_2 {
    display: none;
}

.event_question .text_remain {
    margin-top: 20px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #998ea8;
    font-size: 28px;
    font-family: 'noto4';
}

.event_result .result_wrap_1 {
    padding: 64px 0 100px;
    background: #fff;
}

.event_result .result_wrap_2 {
    padding: 106px 0 223px;
    background: #e3ffdb;
}

.event_result .calc_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px 0 30px;
    border-radius: 30px;
    background: #2e0468;
}

.event_result .calc_wrap p {
    line-height: 50px;
    letter-spacing: -0.05em;
    color: #fff;
    font-size: 32px;
    font-family: 'noto4';
}

.event_result .calc_wrap .result_percent {
    line-height: 1;
    letter-spacing: -0.05em;
    color: #ffdd41;
    font-size: 46px;
    font-family: 'noto6';
}

.event_result .result_item {
    display: none;
    max-width: 749px;
    width: 100%;
}

.event_result .result_item.is_active {
    display: block;
}

.event_result .content_wrap {
    display: flex;
    flex-direction: column;
    height: 874px;
    padding: 43px 47px 80px;
    text-align: center;
    background: url('/img/event/9240/pc/result_box.png') center / contain no-repeat;
}

.event_result .content_wrap .item_title {
    width: 364px;
    margin: 0 auto;
}

.event_result .content_wrap .item_note {
    position: relative;
    margin-top: 24px;
}

.event_result .content_wrap .note_list {
    position: absolute;
    top: 572px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    line-height: 1.6;
    letter-spacing: -0.065em;
    color: #303030;
    font-size: 19px;
    font-family: 'noto4';
}

.event_result .button_wrap {
    display: flex;
    align-items: center;
    max-width: 745px;
    width: 100%;
    height: 140px;
    margin-top: 38px;
    padding-top: 27px;
    box-sizing: border-box;
    background: url('/img/event/9240/pc/event_btn.png') center / contain no-repeat;
}

.event_result .button_wrap button,
.event_result .button_wrap a {
    position: relative;
    width: 100%;
}

.event_result .button_wrap button p,
.event_result .button_wrap a p {
    font-family: 'noto7';
    font-size: 32px;
    letter-spacing: -0.05em;
    line-height: 1;
    text-align: center;
    color: #000;
}

.event_result .event_title {
    line-height: 1.3;
    letter-spacing: -0.045em;
    text-align: center;
    color: #000;
    font-size: 53px;
    font-family: 'noto7';
}

.event_result .event_title em {
    color: #fb1258;
    font: inherit;
    letter-spacing: -0.085em;
}

.event_result .product_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 35px;
}

.event_result .product_list .list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 370px;
    height: 296px;
    padding: 32px 0;
    border: 5px solid #3ec000;
    border-radius: 20px;
    background: #fff;
}

.event_result .product_list .item_title {
    line-height: 1.3;
    letter-spacing: -0.025em;
    text-align: center;
    font-size: 34px;
    font-family: 'noto7';
    color: #222222;
}

.event_result .product_list .item_desc {
    line-height: 1.2;
    margin: 20px 0 0;
    letter-spacing: -0.045em;
    font-size: 21px;
    font-family: 'noto5';
    color: #454545;
}

.event_result .product_list .btn_go {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 320px;
    height: 60px;
    margin: 28px 0 0;
    border-radius: 10px;
    letter-spacing: -0.045em;
    color: #fff;
    font-size: 22px;
    font-family: 'noto7';
    background: #3ec000;
}

.event_result .product_list .btn_go::before {
    content: '';
    position: absolute;
    right: 9px;
    bottom: -15px;
    width: 40px;
    height: 50px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 1s infinite;
}

.event_result .product_noti {
    margin-top: 28px;
    padding: 28px 0 30px 20px;
    border-radius: 20px;
    background: #d5e7cf;
}

.event_result .product_noti .noti_title {
    padding: 0 0 0 40px;
    line-height: 1.2;
    letter-spacing: -0.045em;
    color: #222222;
    font-size: 24px;
    background: url('/_skin/sidae/images/board_new/professional_quiz/icon_notice.png') no-repeat 0 50% / 30px auto;
}

.event_result .product_noti .noti_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0 0 38px;
}

.event_result .product_noti .noti_list li {
    line-height: 1.2;
    letter-spacing: 0.045em;
    color: #222222;
    font-size: 17px;
    font-family: 'noto3';
}

.event_answer {
    padding: 130px 0 120px;
}

.event_answer .main_inner {
    max-width: none;
}

.event_answer .event_table {
    width: 1100px;
    margin: 0 auto;
    border: 1px solid #2e0468;
    border-top: 5px solid #2e0468;
    border-collapse: collapse;
}

.event_answer .event_table thead {
    background: #7d32e6;
}

.event_answer .event_table tr {
    border-top: 1px solid #ad9ec2;
}

.event_answer .event_table td + td,
.event_answer .event_table th + td,
.event_answer .event_table th + th {
    border-left: 1px solid #ad9ec2;
}

.event_answer .event_table thead th {
    padding: 6px 0 11px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-family: 'noto5';
    font-weight: normal;
}

.event_answer .event_table tbody th {
    letter-spacing: -0.03em;
    text-align: center;
    font-size: 24px;
    font-family: 'noto6';
    background: #f8f8f8;
}

.event_answer .event_table tbody td {
    padding: 22px 28px 21px;
    letter-spacing: -0.04em;
    font-size: 24px;
    font-family: 'noto4';
    background: #fff;
}

.event_answer .event_table tbody td:last-of-type {
    text-align: center;
}

.event_answer .event_table tbody td p {
    line-height: 34px;
    letter-spacing: -0.07em;
    word-break: keep-all;
    font-size: 24px;
    font-family: 'noto4';
}

.event_answer .event_table tbody td em {
    color: #7d32e6;
    font: inherit;
}

.event_answer .event_table tbody td span {
    font-family: 'noto6';
}

.event_answer .btn_retry {
    display: block;
    width: 750px;
    margin: 70px auto 0;
}

/* 푸터 */
.event_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background: #2d332c;
    z-index: 100;
}

.event_footer .share_wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 0;
    opacity: 0;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.event_footer .share_wrap.is_active {
    width: 100%;
    opacity: 1;
}

.event_footer .share_wrap li {
    padding-bottom: 20px;
}

.event_footer .btn_wrap {
    display: flex;
}

.event_footer .btn_wrap button {
    width: 100%;
}

.event_footer .btn_wrap .btn_retry {
    display: none;
}

/* 모달 */
.event_modal {
    display: none;
    align-items: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
}

.event_modal.is_active {
    display: flex;
}

.event_modal .modal_content {
    width: 100%;
    padding: 71px 0 76px;
    background: #fff;
}

.event_modal .modal_content p {
    line-height: 50px;
    text-align: center;
    letter-spacing: -0.05em;
    font-size: 36px;
    font-family: 'noto6';
}

.event_modal .modal_content p em {
    color: #ff0048;
    font: inherit;
}

.event_modal .modal_content .btn_close {
    display: block;
    margin-top: 49px;
}

.event_modal .modal_content .btn_close::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 57px;
    height: 65px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 1s infinite;
}

/* 영역 노출 */
.event_cont {
    display: none;
}

.is_active_intro .event_header {
    display: none;
}

.is_active_question .event_footer,
.is_active_answer .event_footer {
    display: none;
}

.is_active_intro .event_intro,
.is_active_question .event_question,
.is_active_result .event_result,
.is_active_answer .event_answer {
    display: block;
}

@media screen and (max-height: 1200px), screen and (max-width: 805px) {
    /* 헤더 */
    .event_header {
        height: min(152px, 15.7vh);
        overflow: hidden;
    }
    .event_header .header_title img {
        max-width: 89vw;
        height: 16.7vh;
        margin-top: -0.2vw;
    }

    /* 컨텐츠 */
    .event_intro .event_img img {
        width: 92%;
    }

    .event_question .main_inner {
        width: 100%;
        padding: 0 5vw;
        box-sizing: border-box;
    }

    .event_question .question_index {
        top: min(3vh, 4vw);
        right: min(2.5vh, 4vw);
    }

    .event_question .question_index span {
        font-size: clamp(12px, 2.333vh, 28px);
    }

    .event_question .q_item {
        line-height: 1.5;
        font-size: clamp(12px, min(3vh, 4.8vw), 36px);
    }

    .event_question .q_item .q_txt + img {
        max-width: 620px;
    }

    .event_question .button_wrap {
        margin-top: min(11.667vh, 2.1vw);
    }

    .event_question .button_wrap .btn_right,
    .event_question .button_wrap .btn_wrong {
        background-size: min(12.244vh, 16.667vw) auto;
    }

    .event_question .btn_next {
        max-width: 619px;
        margin-top: min(5.833vh, 9.333vw);
    }

    .event_question .text_remain {
        margin-top: 1.667vh;
        font-size: clamp(12px, 2.333vh, 28px);
    }

    .event_result .main_inner {
        width: 88vw;
    }

    .event_result .product_list .list_item {
        width: calc((100% - 10px) / 2);
    }
}

@media screen and (max-width: 805px) and (orientation: portrait) {
    .event_container .content_wrap {
        border-width: 0.667vw;
        border-radius: 4vw;
    }

    .event_container .button_wrap {
        gap: 2.333vw;
        max-width: 86.25vw;
        width: 100%;
    }

    .event_container .main_inner {
        box-sizing: border-box;
    }

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

        50% {
            transform: translate(-1.333vw, -1.333vw);
        }
    }

    /* 컨텐츠 */
    .event_intro {
        height: 155.867vw;
        padding: 6.8vw 0 0;
    }

    .event_intro .main_inner {
        padding: 0 5vw;
    }

    .event_intro .event_img_wrap {
        height: 66.667vw;
    }

    .event_intro .event_img img {
        width: 100%;
        margin: -0.833vw 0 0 0;
    }

    .event_intro .btn_quiz_next {
        width: 84.306vw;
        height: 15.139vw;
    }

    .event_intro .btn_quiz_next::after {
        right: 1.333vw;
        bottom: -2.533vw;
        width: 7.6vw;
        height: 8.667vw;
    }

    .event_header {
        height: min(152px, 9.7vh);
    }

    .event_header .header_title img {
        height: 10.7vh;
    }

    .event_question .question_index {
        gap: 10px;
    }

    .event_question .question_index span.progress_bar {
        width: 97.222vw;
    }

    .event_question .button_wrap button {
        height: 11.722vw;
        border-width: 0.467vw;
        font-size: 3.333vw;
    }

    .event_result .result_wrap_1 {
        padding: 9.333vw 0 16vw;
    }

    .event_result .result_wrap_2 {
        padding: 11.751vw 0 26.739vw;
    }

    .event_result .calc_wrap {
        padding: 3.2vw 0 4vw;
        border-radius: 4vw;
    }

    .event_result .calc_wrap p {
        line-height: 6.667vw;
        font-size: 4.267vw;
    }

    .event_result .calc_wrap .result_percent {
        font-size: 6.133vw;
    }

    .event_result .result_item {
        margin-top: 2.667vw;
    }

    .event_result .content_wrap {
        height: 104.405vw;
        padding: 6vw 6.635vw 5.592vw;
    }

    .event_result .content_wrap .item_title {
        margin-left: 2.758vw;
    }

    .event_result .result_item_1 .content_wrap .item_title {
        width: 73.621vw;
    }

    .event_result .result_item_2 .content_wrap .item_title {
        width: 73.261vw;
    }

    .event_result .result_item_3 .content_wrap .item_title {
        width: 73.261vw;
    }

    .event_result .result_item_4 .content_wrap .item_title {
        width: 44.139vw;
        margin: 0 auto 0;
        transform: translateX(1vw);
    }

    .event_result .content_wrap .note_title {
        height: 2.998vw;
    }

    .event_result .content_wrap .note_list {
        top: 66vw;
        left: 49.5%;
        width: 91%;
        font-size: 2.439vw;
    }

    .event_result .content_wrap .note_list li {
        font-size: 2.398vw;
    }

    .event_result .content_wrap .item_note {
        margin-top: 2.8vw;
    }

    .event_result .content_wrap .item_title {
        font-size: clamp(12px, 4.267vw, 32px);
    }

    .event_result .button_wrap {
        width: 96%;
        height: 16.444vw;
        margin: 5.333vw auto 0;
        padding-top: 3.889vw;
    }

    .event_result .button_wrap button p,
    .event_result .button_wrap a p {
        font-size: 4.044vw;
    }

    .event_result .event_title {
        font-size: 6.355vw;
    }

    .event_result .product_list {
        justify-content: center;
        gap: 1.5vw;
        width: 100%;
        margin-top: 4.796vw;
    }

    .event_result .product_list .list_item {
        width: 42vw;
        height: fit-content;
        padding: 1.8vw 0;
        border-radius: 2.398vw;
        border-width: 0.694vw;
    }

    .event_result .product_list .item_title {
        font-size: 4.077vw;
    }

    .event_result .product_list .item_desc {
        margin: 2.398vw 0 0;
        font-size: 2.518vw;
    }

    .event_result .product_list .btn_go {
        width: 38.369vw;
        height: 7.194vw;
        margin: 4.556vw 0 0;
        border-radius: 1.199vw;
        font-size: 2.638vw;
    }

    .event_result .product_noti {
        width: 85vw;
        margin: 4.796vw auto;
        padding: 3.357vw 0 3.597vw 2.398vw;
        border-radius: 1.199vw;
    }

    .event_result .product_noti .noti_title {
        padding: 0 0 0 4.796vw;
        font-size: 2.878vw;
        background-size: 3.597vw auto;
    }

    .event_result .product_noti .noti_list {
        gap: 0.959vw;
        margin: 1.799vw 0 0 4.556vw;
    }

    .event_result .product_noti .noti_list li {
        font-size: 2.158vw;
    }

    .event_result .product_list .btn_go::before {
        right: 1.25vw;
        bottom: -2.083vw;
        width: 4.556vw;
        height: 5.944vw;
    }

    /* 푸터 */
    .event_footer {
        bottom: -3vw !important;
        height: fit-content;
        border-top: 0;
        padding: 0;
    }

    .event_footer .share_wrap {
        gap: 6.211vw;
    }

    .event_footer .share_wrap li {
        width: 12.422vw;
        padding-bottom: 2.484vw;
    }

    /* 모달 */
    .event_modal .modal_content {
        padding: 9.467vw 0 10.133vw;
    }

    .event_modal .modal_content p {
        line-height: 6.667vw;
        font-size: clamp(12px, 4.8vw, 36px);
    }

    .event_modal .modal_content .btn_close {
        margin-top: 6.533vw;
    }

    .event_modal .modal_content .btn_close::after {
        bottom: -0.8vw;
        right: 2.667vw;
        width: 7.6vw;
        height: 8.667vw;
    }
}

@media screen and (max-width: 756px) {
}

@media screen and (max-width: 650px) {
    .event_result .result_wrap_1 .main_inner .calc_wrap span.result_percent {
        font-size: clamp(12px, 5.714vw, 46px) !important;
    }

    .event_question .main_inner .content_wrap .question_index span {
        font-size: clamp(12px, 2.333vh, 28px) !important;
    }
}
