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

.event_container .screen_out {
    display: none;
}

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

.event_container img {
    display: block;
}

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

.event_container li {
    float: none;
}

.event_container a:hover,
.event_container a:focus {
    text-decoration: none;
}

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

.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;
    width: 100%;
}

.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 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border: 1px solid #7a8b62;
    padding: 0 29px;
    margin: 0 0 19px;
    border-radius: 38px;
    letter-spacing: -0.06em;
    color: #7a8b62;
    font-size: 24px;
    font-family: 'noto6';
}

.event_container .main_title p {
    line-height: 1.2;
    letter-spacing: -0.06em;
    font-size: 48px;
    font-family: 'noto7';
}

.event_container .main_title h3 {
    line-height: 1.3;
    margin: 5px 0 0;
    letter-spacing: -0.06em;
    font-size: 48px;
    font-family: 'noto7';
    background: linear-gradient(to right, #50c100, #00a16b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event_container .main_title h3 em {
    font: inherit;
}

.event_container .btn_default {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    min-width: 480px;
    height: 79px;
    line-height: 79px;
    border-radius: 16px;
    letter-spacing: -0.025em;
    color: #fff;
    font-size: 28px;
    font-family: 'noto6';
    background: #111;
}

.event_container .btn_default em {
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: inherit;
    font: inherit;
    background: linear-gradient(to right, #61ea00, #00ef9f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

@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 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;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 우측 퀵메뉴 */
.event_container .event_floating_wrap {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    bottom: 105px;
    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 {
    bottom: 105px;
}

.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_share_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 19px;
}

.event_container .event_floating .btn_share {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

/* 상단 배너 */
.event_container .event_marquee {
    background: #ffbdff;
    overflow: hidden;
}

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

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

.event_container .event_marquee ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    line-height: 1.3;
    margin: 0 52px;
    font-family: 'noto7';
    font-size: 27px;
    letter-spacing: -0.085em;
    white-space: nowrap;
    color: #000;
}

.event_container .event_marquee ul li::before {
    content: '';
    display: block;
    width: 30px;
    height: 31px;
    background: url('/img/event/9212/pc/icon_fireworks.png') no-repeat 0 0;
}

/* 타이머 */
.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_container .banner_bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 115px;
    z-index: var(--z-index-floating, 10);
}

.event_container .banner_bottom .main_inner {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.event_container .banner_bottom .btn_scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.event_container .banner_bottom .btn_scroll:last-child {
    left: auto;
    right: 0;
}

/* 근거확인 */
.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_quick_menu {
    position: relative;
    background: #e334ed;
}

.event_quick_menu.is_active {
    position: fixed;
    top: 73px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: var(--z-index-floating, 10);
    background: #e334ed;
}

.event_quick_menu > div.main_inner {
    flex-direction: row;
    align-items: stretch;
    width: 1120px;
    height: 99px;
    padding: 0;
}

.event_quick_menu .btn_quick {
    flex: 1 1 auto;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.065em;
    padding: 0 0 0 107px;
    text-align: left;
    color: #fff;
    font-size: 26px;
    font-family: 'noto7';
    background: no-repeat left center;
}

.event_quick_menu .btn_quick.is_active {
    color: #fff43c;
}

.event_quick_menu .btn_quick_1 {
    padding-left: 95px;
    background-image: url('/img/event/9212/pc/quick_img_01.png');
}

.event_quick_menu .btn_quick_2 {
    background-image: url('/img/event/9212/pc/quick_img_02.png');
}

.event_quick_menu .btn_quick_3 {
    background-image: url('/img/event/9212/pc/quick_img_03.png');
}

.event_quick_menu .btn_quick + .btn_quick::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 1px;
    height: 59px;
    background: #fff;
    opacity: 0.5;
}

.event_quick_menu .btn_quick_kakao {
    flex: 0 0 auto;
    width: 98px;
    background: #f8e049;
}

/* 컨텐츠 */
.event_cont_1 {
    min-height: 1024px;
    background: #f7fcd6 url('/img/event/9212/pc/visual_bg.jpg') no-repeat center top;
}

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

.event_cont_1 .main_inner::before {
    content: '';
    position: absolute;
    top: 413px;
    left: -294px;
    width: 182px;
    height: 440px;
    z-index: 2;
    background: url('/img/event/9212/pc/visual_slide_bg.png') no-repeat 0 0 / contain;
}

.event_cont_1 .event_slide {
    position: relative;
    margin: 24px 0 0 23px;
    width: calc((268px * 5) + 47px);
    overflow: hidden;
    z-index: 1;
}

.event_cont_1 .event_slide .swiper-slide {
    display: flex;
    justify-content: flex-start;
    position: relative;
    width: 268px;
    padding: 0 0 0 20px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.event_cont_1 .event_slide .swiper-slide-next,
.event_cont_1 .event_slide .swiper-slide-next + .swiper-slide,
.event_cont_1 .event_slide .swiper-slide-next + .swiper-slide + .swiper-slide,
.event_cont_1 .event_slide .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide,
.event_cont_1 .event_slide .swiper-slide-active,
.event_cont_1 .event_slide .swiper-slide-duplicate-active,
.event_cont_1 .event_slide .swiper-slide-duplicate-next,
.event_cont_1 .event_slide .swiper-slide-duplicate-next + .swiper-slide,
.event_cont_1 .event_slide .swiper-slide-duplicate-next + .swiper-slide + .swiper-slide,
.event_cont_1 .event_slide .swiper-slide-duplicate-next + .swiper-slide + .swiper-slide + .swiper-slide {
    opacity: 1;
}

.event_cont_1 .btn_default {
    margin: 18px 0 0;
}

.event_cont_1 .btn_default::after {
    content: '▶';
    margin: 0 0 0 0.5em;
    font: inherit;
    font-size: 10px;
}

.event_cont_2 {
    min-height: 1116px;
    background: #fff url('/img/event/9212/pc/worry_bg.jpg') no-repeat center top;
}

.event_cont_2 .main_inner {
    padding: 120px 0 0;
}

.event_cont_2 .event_bubble {
    position: relative;
    width: 100%;
    height: 625px;
}

.event_cont_2 .event_bubble .bubble_item {
    position: absolute;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.event_cont_2.is_active .event_bubble .bubble_item {
    transform: translateY(0);
    opacity: 1;
}

.event_cont_2 .event_bubble .bubble_item_1 {
    top: 0px;
    left: 689px;
    transition-delay: 0s;
}

.event_cont_2 .event_bubble .bubble_item_2 {
    top: 129px;
    left: -223px;
    transition-delay: 0s;
}

.event_cont_2 .event_bubble .bubble_item_3 {
    top: 229px;
    left: 858px;
    transition-delay: 0s;
}

.event_cont_2 .event_bubble .bubble_item_4 {
    top: 61px;
    left: -27px;
    transition-delay: 0.3s;
}

.event_cont_2 .event_bubble .bubble_item_5 {
    top: 135px;
    left: 679px;
    transition-delay: 0.6s;
}

.event_cont_2 .event_bubble .bubble_item_6 {
    top: 304px;
    left: 62px;
    transition-delay: 0.9s;
}

.event_cont_3 {
    background: #f9f9f9;
}

.event_cont_3 .main_inner {
    padding: 87px 0 161px;
}

.event_cont_3 .main_inner::before {
    content: '';
    position: absolute;
    top: -81px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 108px;
    background: linear-gradient(to bottom, #ededed, #bbb);
}

.event_cont_3 .event_list {
    display: flex;
    gap: 13px;
    width: 100%;
    margin: 65px 0 0;
}

.event_cont_3 .event_list .list_item {
    width: 100%;
    min-height: 430px;
    transform: translateY(30px);
    border-radius: 24px;
    background: #fff;
    opacity: 0;
    box-shadow: 0px 12px 12px 0px rgba(53, 34, 34, 0.04);
    transition: 0.3s ease-in-out;
}

.event_cont_3.is_active .event_list .list_item {
    transform: translateY(0);
    opacity: 1;
}

.event_cont_3 .event_list .list_item_1 {
    transition-delay: 0.1s;
}

.event_cont_3 .event_list .list_item_2 {
    transition-delay: 0.3s;
}

.event_cont_3 .event_list .list_item_3 {
    transition-delay: 0.5s;
}

.event_cont_3 .event_list .item_body {
    padding: 26px 34px;
}

.event_cont_3 .event_list .item_title {
    line-height: 1.4;
    letter-spacing: -0.04em;
    font-size: 28px;
    font-family: 'noto6';
}

.event_cont_3 .event_list .item_text {
    line-height: 1.4;
    margin: 11px 0 0;
    letter-spacing: -0.04em;
    color: #666;
    font-size: 20px;
}

.event_cont_3 .event_list .item_noti {
    text-align: right;
    line-height: 1.2;
    margin: -2px 0 0;
    letter-spacing: -0.04em;
    color: #bbb;
    font-size: 16px;
}

.event_cont_4 {
    min-height: 1121px;
    background: #d3f0be url('/img/event/9212/pc/professor_bg.jpg') no-repeat center top;
}

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

.event_cont_4 .event_slide_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1308px;
    height: 667px;
    margin: 66px 0 0;
}

.event_cont_4 .event_slide {
    position: relative;
    width: 1100px;
    height: 667px;
    border-radius: 32px;
    overflow: hidden;
}

.event_cont_4 .event_slide .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 48px 0 0;
}

.event_cont_4 .swiper-button-prev,
.event_cont_4 .swiper-button-next {
    position: static;
    margin: 0;
    width: 72px;
    height: 72px;
    background: url('/img/event/9212/pc/btn_next.png') no-repeat 0 0 / contain;
}

.event_cont_4 .swiper-button-prev {
    transform: rotate(180deg);
}

.event_cont_4 .swiper-pagination {
    justify-content: flex-end;
    gap: 4px;
    position: absolute;
    top: 40px;
    left: 0;
    padding: 0 60px 0 0;
    z-index: 1;
}

.event_cont_4 .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #e1e1e1;
}

.event_cont_4 .swiper-pagination .swiper-pagination-bullet-active {
    background: #54ca00;
}

.event_cont_5 {
    background: #fff;
}

.event_cont_5 .main_inner {
    padding: 120px 0 159px;
}

.event_cont_5 .event_slide {
    position: relative;
    width: 100%;
    margin: 65px 0 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event_cont_5 .swiper-pagination {
}

.event_cont_5 .swiper-pagination .swiper-pagination-bullet {
    height: 82px;
    letter-spacing: -0.06em;
    color: #bbb;
    font-size: 28px;
    font-family: 'noto6';
    background: #eee;
}

.event_cont_5 .swiper-pagination-bullet + .swiper-pagination-bullet {
    border-left: 1px solid #fff;
}

.event_cont_5 .swiper-pagination-bullet:nth-child(1),
.event_cont_5 .swiper-pagination-bullet:nth-child(2),
.event_cont_5 .swiper-pagination-bullet:nth-child(3) {
    width: 33.333%;
}

.event_cont_5 .swiper-pagination-bullet:nth-child(4) {
    border-left: none;
}

.event_cont_5 .swiper-pagination-bullet:nth-child(n + 4) {
    width: 25%;
    border-top: 1px solid #fff;
}

.event_cont_5 .swiper-pagination .swiper-pagination-bullet-active {
    color: #fff;
    background: #111;
}

.event_cont_5 .swiper-wrapper {
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event_cont_5 .swiper-slide {
    width: 100%;
    padding: 33px 0 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event_cont_5 .event_table {
    position: relative;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
}

.event_cont_5 .event_table::after,
.event_cont_5 .event_table::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 60px);
    height: 1px;
    background: #111;
    z-index: 1;
}

.event_cont_5 .event_table::after {
    top: auto;
    bottom: 0;
}

.event_cont_5 .event_table + .event_table {
    margin: 21px 0 0;
}

.event_cont_5 .event_table tr:nth-child(3n) {
    border-top: 1px solid #111;
}

.event_cont_5 .event_table th {
    padding: 16px 0 19px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    font-size: 20px;
    font-family: 'noto6';
}

.event_cont_5 .event_table th:not(.th_cate):not(.th_wide) {
    border-right: 1px solid #c8c8c8;
}

.event_cont_5 .event_table th:not(.th_cate):not(.th_wide):nth-child(6) {
    border-right: none;
}

.event_cont_5 .event_table tr:nth-child(1) th:nth-child(3) {
    background: #fafcec;
}

.event_cont_5 .event_table tr:nth-child(1) th:nth-child(4) {
    background: #f6f9de;
}

.event_cont_5 .event_table tr:nth-child(1) th:nth-child(5) {
    background: #f0f4ce;
}

.event_cont_5 .event_table tr:nth-child(1) th:nth-child(6) {
    background: #e9eebd;
}

.event_cont_5 .event_table tr:nth-child(3) th:nth-child(1) {
    background: #e4eba9;
}

.event_cont_5 .event_table tr:nth-child(3) th:nth-child(2) {
    background: #d8e190;
}

.event_cont_5 .event_table_2 tr:nth-child(1) th:nth-child(2) {
    background: #edfcf7;
}

.event_cont_5 .event_table_2 tr:nth-child(1) th:nth-child(3) {
    background: #defaf1;
}

.event_cont_5 .event_table_2 tr:nth-child(1) th:nth-child(4) {
    background: #cef5e8;
}

.event_cont_5 .event_table_2 tr:nth-child(1) th:nth-child(5) {
    background: #beeddd;
}

.event_cont_5 .event_table_2 tr:nth-child(1) th:nth-child(6) {
    background: #a9ebd5;
}

.event_cont_5 .event_table td {
    text-align: center;
    line-height: 1.5;
    height: 102px;
    border-right: 1px solid #c8c8c8;
    padding: 15px 0 15px;
    letter-spacing: -0.06em;
    color: #666;
    font-size: 16px;
}

.event_cont_5 .event_table_1 tr:nth-child(2) td:nth-of-type(4),
.event_cont_5 .event_table_2 tr:nth-child(2) td:nth-of-type(5) {
    border-right: none;
}

.event_cont_5 .event_table .th_cate {
    letter-spacing: -0.025em;
    border: 1px solid #89914c;
    color: #6c781b;
    background: #dde3ba;
}

.event_cont_5 .event_table_2 .th_cate {
    border-color: #4c917a;
    color: #1a7859;
    background: #bbe3d6;
}

.event_cont_5 .event_table .th_wide {
    color: #fff;
    background: #92a800;
}

.event_cont_6 {
    background: linear-gradient(to bottom, #f9f9f9, #f1f1f1);
}

.event_cont_6 .main_inner {
    padding: 120px 0 160px;
}

.event_cont_6 .event_benefit {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 0;
    margin: 71px 0 0;
}

.event_cont_6 .benefit_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 544px;
    height: 220px;
    padding: 0 48px 2px;
    border-radius: 20px;
    background: #fff no-repeat 0 0 / contain;
    box-shadow: 0px 6px 16px 0px rgba(207, 207, 207, 0.48);
}

.event_cont_6 .benefit_item_1 {
    background-image: url('/img/event/9212/pc/benefit_item_01.png');
}

.event_cont_6 .benefit_item_2 {
    background-image: url('/img/event/9212/pc/benefit_item_02.png');
}

.event_cont_6 .benefit_item_3 {
    background-image: url('/img/event/9212/pc/benefit_item_03.png');
}

.event_cont_6 .benefit_item_4 {
    background-image: url('/img/event/9212/pc/benefit_item_04.png');
}

.event_cont_6 .benefit_item_5 {
    background-image: url('/img/event/9212/pc/benefit_item_05.png');
}

.event_cont_6 .benefit_item_6 {
    background-image: url('/img/event/9212/pc/benefit_item_06.png');
}

.event_cont_6 .benefit_item p {
    line-height: 1.2;
    letter-spacing: -0.06em;
    color: #666;
    font-size: 20px;
}

.event_cont_6 .benefit_item strong {
    line-height: 1.45;
    letter-spacing: -0.06em;
    color: #181818;
    font-size: 28px;
    font-family: 'noto6';
}

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

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

.event_cont_7 .event_visual {
    margin: 37px 0 0;
}

.event_cont_7 .event_apply {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 55px 0 0;
}

.event_cont_7 .apply_title {
}

.event_cont_7 .apply_list {
    display: flex;
    gap: 10px;
    width: 100%;
    margin: 24px 0 0;
}

.event_cont_7 .apply_list .list_item {
    width: 100%;
}

.event_cont_7 .apply_list .btn_select {
    width: 100%;
    height: 74px;
    border-radius: 16px;
    letter-spacing: -0.06em;
    color: #aaa;
    font-size: 24px;
    font-family: 'noto6';
    background: #eee;
}

.event_cont_7 .apply_list .btn_select.is_active {
    color: #fff;
    background: linear-gradient(to right, #59d600, #00ad73);
}

.event_cont_7 .btn_default {
    min-width: 432px;
    height: 82px;
    margin: 60px 0 0;
    letter-spacing: -0.06em;
}

.event_cont_7 .btn_default em::after {
    content: '▶';
    margin: 0 0 0 0.5em;
    font: inherit;
    font-size: 10px;
}

.event_cont_8 {
    background: #fff url('/img/event/9212/pc/comment_bg.jpg') no-repeat center top;
}

.event_cont_8 .main_inner {
    padding: 128px 0 162px;
}

.event_cont_8 .main_title span {
    border-color: #5c926d;
    color: #5c926d;
}

.event_cont_8 .event_visual {
    margin: -7px 0 0;
}

.event_cont_8 .event_noti {
    line-height: 1.2;
    margin: 21px 0 0;
    text-align: center;
}

.event_cont_8 .event_noti li {
    letter-spacing: -0.04em;
    color: #888;
    font-size: 16px;
}

.event_cont_8 .comment_form {
    margin: 72px 0 0;
}

.event_cont_9 {
    background: #f9f9f9;
}

.event_cont_9 .main_inner {
    padding: 119px 0 150px;
}

.event_cont_9 .event_product {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 65px 0 0;
}

.event_cont_9 .product_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 39px 47px 34px 57px;
    border: 1px solid #bbb;
    border-radius: 24px;
    background: #fff;
}

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

.event_cont_9 .details_tags {
    display: flex;
    gap: 3px;
    margin: 0 0 0 2px;
}

.event_cont_9 .details_tags li {
    display: flex;
    align-items: center;
    height: 30px;
    padding: 0 9px;
    border-radius: 6px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    font-size: 18px;
}

.event_cont_9 .details_tags .green_1 {
    color: #4c5800;
    background-color: #d9ea6a;
}

.event_cont_9 .details_tags .green_2 {
    color: #265a00;
    background-color: #68ed9d;
}

.event_cont_9 .details_tags .green_3 {
    color: #00544f;
    background-color: #84f3ce;
}

.event_cont_9 .details_tags .green_4 {
    color: #005924;
    background-color: #85f2eb;
}

.event_cont_9 .details_name {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 36px;
    font-family: 'noto6';
}

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

.event_cont_9 .btn_go::after {
    content: '▶';
    margin: 0 0 0 0.7em;
    font-size: 8px;
}

/* 댓글 게시판 영역 */
.comment_form {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    color: #000;
}

.comment_form .comment_input_wrap {
    display: flex;
    position: relative;
    width: 100%;
    height: 80px;
}

.comment_form .wr_content {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    padding: 11px 20px 0 30px;
    border: 1px solid #000;
    letter-spacing: -0.06em;
    font-size: 18px;
    font-family: 'noto4';
    background: #fff;
    resize: none;
}

.comment_form .wr_content::placeholder {
    color: #888;
}

.comment_form .ipt_placeholder {
    position: absolute;
    top: 14px;
    left: 30px;
    line-height: 1.4;
    color: #888;
    letter-spacing: -0.06em;
    font-size: 18px;
    font-family: 'noto4';
    pointer-events: none;
}

.comment_form .btn_submit {
    flex: 0 0 auto;
    width: 191px;
    height: 100%;
    letter-spacing: -0.06em;
    color: #fff;
    font-size: 24px;
    font-family: 'noto6';
    background: #000;
}

.comment_list_wrap {
    margin-top: 16px;
    width: 100%;
}

.comment_list_wrap .comment_list {
    width: 100%;
}

.comment_list_wrap .comment_item {
    display: flex;
    align-items: center;
    padding: 21px 50px 23px 0;
    border-bottom: 1px solid #c8c8c8;
}

.comment_list_wrap .comment_author {
    flex: 0 0 auto;
    width: 156px;
    letter-spacing: -0.06em;
    text-align: center;
    font-size: 18px;
    color: #888;
}

.comment_list_wrap .comment_content {
    flex: 1 1 auto;
}

.comment_list_wrap .comment_text {
    width: 100%;
    line-height: 1.6;
    letter-spacing: -0.07em;
    color: #111;
    font-size: 18px;
    font-family: 'noto4';
}

/* 댓글 게시판 페이지네이션 */
.comment_list_wrap .pagination_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 39px;
    font-size: 14px;
    font-family: tahoma;
    font-weight: 100;
}

.comment_list_wrap .pagination_wrap a {
    position: relative;
    margin: 0 10px;
    padding: 0 5px;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    font-family: 'noto6';
}

.comment_list_wrap .pagination_wrap a,
.comment_list_wrap .pagination_wrap a:hover {
    color: #909195;
}

.comment_list_wrap .pagination_wrap a.selected {
    color: #333;
}

.comment_list_wrap .pagination_wrap a.selected:after {
    content: '';
    position: absolute;
    bottom: -0.1em;
    left: 0;
    right: 0;
    width: 105%;
    height: 2px;
    background: #333;
}

.comment_list_wrap .pagination_wrap a.prev,
.comment_list_wrap .pagination_wrap a.next {
    border: 1px solid #ccc;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

.comment_list_wrap .pagination_wrap .del-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    color: #666;
    font-weight: 100;
    font-family: tahoma;
    font-size: 16px;
    background-color: #ccc;
}

.comment_list_wrap .pagination_wrap a.del-btn:hover {
    color: #666;
}

/* 시작 영역 */
.start_cont {
    height: 797px;
    background: url('/_skin/tpl_skin/basic_tax_accountant/images/apply/refund/sidea_bg.png') no-repeat center top / cover;
}
.start_cont .main_inner {
    position: relative;
    padding: 144px 0 0;
}
.start_cont .main_title img {
    margin: 0 auto 30px;
}
.start_cont .main_title p {
    color: #fff;
    letter-spacing: -0.025em;
    font-size: 50px;
    line-height: 1.1;
    font-family: 'noto4';
}
.start_cont .main_title h3 {
    line-height: 1.29;
    margin: 5px 0 0;
    letter-spacing: -0.025em;
    font-size: 46px;
    font-family: 'noto7';
    color: #40f37e;
    -webkit-text-fill-color: inherit;
}
.start_cont .start_list {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 15px;
    width: 100%;
    margin: 86px 0 0 10px;
}
.start_cont .start_list .list_item {
    position: relative;
    width: 215px;
    height: 129px;
    padding: 18px 0 0;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.03em;
    color: #fff;
    font-size: 21px;
    background: url('/_skin/tpl_skin/basic_tax_accountant/images/apply/refund/sidea_box.png') no-repeat 0 0;
}
.start_cont .start_list .list_item:nth-child(n + 5) {
    left: 90px;
}
.start_cont .start_list .list_item em {
    font-family: 'noto6';
}
.start_cont .evidence_area {
    position: absolute;
    top: 228px;
    right: 97px;
    display: inline-block;
    z-index: 2;
}
.start_cont .evidence_btn {
    display: block;
    width: 82px;
    height: 28px;
    letter-spacing: -0.03em;
    font-size: 15px;
    font-family: 'noto4';
    background-color: #243c3c;
    line-height: 1.1;
    padding: 6px 6px 1px;
    border: 1px solid #1e8c84;
    border-radius: 3px;
    letter-spacing: -0.025em;
    color: #1e8c84;
    cursor: pointer;
}

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

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

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

.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 dd + dt {
    margin-top: 30px;
}

.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;
    word-break: keep-all;
    font-family: 'noto2';
}
