@charset "UTF-8";

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

.event_container img {
    display: block;
}

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

.event_container li {
    float: none;
}

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

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

.event_container .event_cont {
    position: relative;
}

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

.event_container .main_title {
    position: relative;
    width: 1100px;
    text-align: center;
}

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

.event_container .main_title h3 {
    line-height: 1.3;
    letter-spacing: -0.04em;
    font-size: 60px;
    font-family: 'noto7';
    color: #0f31ce;
}

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

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

@keyframes marquee-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-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 scaleIn {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

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

.event_container .event_floating .btn_share_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 19px;
}

.event_container .event_floating .btn_scroll + .btn_scroll {
    margin-top: 31px;
}

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

/* 하단 플로팅 배너 */
.event_bottom_banner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 110px;
    transform: translateX(-50%);
    z-index: var(--z-index-floating, 10);
    background: #3f7eff;
}

.event_bottom_banner .btn_scroll {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    height: 110px;
}

.event_bottom_banner .btn_scroll::after {
    content: '';
    position: absolute;
    top: 64px;
    right: 96px;
    width: 80px;
    height: 78px;
    background: url('/img/event/8963/pc/finger.png') no-repeat center / 100% auto;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

/* 근거확인 */
.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_cont_1 .evidence_area {
    position: absolute;
    top: 92px;
    right: 118px;
}

.event_cont_1 .evidence_btn {
    width: 92px;
    height: 33px;
    opacity: 0;
}

.event_cont_1 .event_title {
    position: absolute;
    top: 351px;
    left: -97px;
    opacity: 0;
}

.event_cont_1.is_active .event_title {
    animation: scaleIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.event_cont_2 .event_list {
    display: flex;
    gap: 77px;
    position: absolute;
    top: 751px;
    left: 0;
    width: 100%;
}

.event_cont_2 .list_item {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
    width: 100%;
    height: 248px;
    padding: 36px 0 0 52px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.event_cont_2 .list_item_1 {
    background-image: url('/img/event/9178/pc/con_02_benefit_01.png');
}

.event_cont_2 .list_item_2 {
    background-image: url('/img/event/9178/pc/con_02_benefit_02.png');
}

.event_cont_2 .item_category {
    line-height: 1.2;
    letter-spacing: -0.045em;
    color: #fff;
    font-size: 28px;
}

.event_cont_2 .item_data {
    line-height: 1.2;
    letter-spacing: -0.045em;
    font-size: 75px;
    font-family: 'noto7';
    background: linear-gradient(to bottom, #feeccb 0%, #d8b98d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event_cont_2 .item_data .count {
    font: inherit;
}

.event_cont_2 .item_noti {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    text-align: right;
    letter-spacing: -0.045em;
    color: #fff;
    font-size: 13px;
    opacity: 0.3;
}

.event_cont_2 .event_marquee {
    display: inline-flex;
    gap: 33px;
    position: absolute;
    top: 1099px;
    left: 0;
    width: 100vw;
    min-width: 1200px;
}

.event_cont_2 .event_marquee ul {
    display: flex;
    gap: 33px;
    animation: marquee 20s linear infinite;
}

.event_cont_3 .event_marquee {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 635px;
    left: -15px;
    width: 1200px;
    height: 400px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

.event_cont_3 .marquee_inner {
    display: flex;
    animation: marquee-vertical 50s linear infinite;
}

.event_cont_3 .event_marquee ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.event_cont_3 .event_marquee li {
    line-height: 1.2;
    letter-spacing: -0.04em;
    white-space: nowrap;
    color: #c1c1c1;
    font-size: 25px;
}

.event_cont_3 .event_review_slide {
    position: absolute;
    top: 1012px;
    left: 0;
    width: 100%;
}

.event_cont_3 .event_review_slide img {
    height: 603px;
}

.event_cont_4 .event_text {
    position: absolute;
    top: 274px;
    left: 0;
    width: 100%;
    padding: 0 20px 0 0;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.04em;
    font-size: 46px;
    font-family: 'noto7';
}

.event_cont_5 .event_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 537px;
    left: 646px;
}

.event_cont_5 .event_list .list_item {
    width: 454px;
    padding: 25px 0 26px 39px;
    border-radius: 10px;
    background: #006be8;
    opacity: 0;
    transform: translateY(-40px);
    transition: 0.3s ease-in-out;
}

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

.event_cont_5 .event_list .list_item_1 {
    transition-delay: 0.3s;
}

.event_cont_5 .event_list .list_item_2 {
    transition-delay: 0.6s;
}

.event_cont_5 .event_list .list_item_3 {
    transition-delay: 0.9s;
}

.event_cont_5 .event_list .item_title {
    line-height: 1.2;
    padding: 0 0 0 38px;
    letter-spacing: -0.04em;
    color: #f9fc48;
    font-size: 28px;
    font-family: 'noto6';
    background: url('/img/event/9178/pc/icon_check.png') no-repeat center left;
}

.event_cont_5 .event_list .item_text {
    line-height: 1.3;
    margin: 10px 0 0 8px;
    letter-spacing: -0.04em;
    word-break: keep-all;
    color: #fff;
    font-size: 20px;
}

.event_cont_6 {
    background: #eef5ff;
}

.event_cont_6 .event_list {
    display: flex;
    gap: 31px;
    position: absolute;
    top: 543px;
    left: 0;
    width: 100%;
}

.event_cont_6 .event_list .list_item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 242px;
    padding: 33px 0 0 40px;
    color: #fff;
    background: no-repeat 0 0;
}

.event_cont_6 .event_list .list_item_1 {
    background-image: url('/img/event/9178/pc/con_06_benefit_01.png');
}

.event_cont_6 .event_list .list_item_2 {
    background-image: url('/img/event/9178/pc/con_06_benefit_02.png');
}

.event_cont_6 .event_list .list_item_3 {
    background-image: url('/img/event/9178/pc/con_06_benefit_03.png');
}

.event_cont_6 .event_list .item_text {
    line-height: 1.2;
    letter-spacing: -0.065em;
    font-size: 24px;
}

.event_cont_6 .event_list .item_data {
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-family: 'market-b';
    font-size: 60px;
}

.event_cont_6 .event_list .item_data .count {
    font: inherit;
}

.event_cont_7 .event_marquee {
    display: flex;
    gap: 136px;
    position: absolute;
    top: 556px;
    left: 0;
    width: 100%;
}

.event_cont_7 .event_marquee::after {
    content: '';
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 887px;
    height: 559px;
    background: url('/img/event/9178/pc/con_07_visual.png') no-repeat 0 0;
}

.event_cont_7 .event_marquee ul {
    display: flex;
    gap: 136px;
    animation: marquee 30s linear infinite;
}

.event_cont_7 .event_marquee li {
    display: flex;
    box-shadow: 0px 12px 27px 0px rgba(51, 51, 51, 0.39);
}

.event_cont_7 .event_marquee img {
    display: block;
    width: 216px;
}

.event_cont_7 .event_list {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    position: absolute;
    top: 1092px;
    left: 0;
    width: 100%;
}

.event_cont_7 .event_list .list_item {
    display: flex;
    flex-direction: column;
    gap: 19px;
    position: relative;
    width: 533px;
    height: 205px;
    padding: 38px 0 0 44px;
    border-radius: 20px;
    color: #fff;
    transform: translateY(10px);
    background: #4c7aff no-repeat 0 0;
    transition: 0.3s ease-in-out;
}

.event_cont_7 .event_list .list_item_1 {
    background-image: url('/img/event/9178/pc/con_07_benefit_01.png');
}

.event_cont_7 .event_list .list_item_2 {
    background-image: url('/img/event/9178/pc/con_07_benefit_02.png');
}

.event_cont_7 .event_list .list_item_3 {
    background-image: url('/img/event/9178/pc/con_07_benefit_03.png');
}

.event_cont_7 .event_list .list_item_4 {
    background-image: url('/img/event/9178/pc/con_07_benefit_04.png');
}

.event_cont_7 .event_list .list_item.is_active {
    transform: translateY(0);
    box-shadow: 0px 20px 23px 0px rgba(4, 16, 28, 0.26);
}

.event_cont_7 .event_list .list_item_1.is_active {
    background-image: url('/img/event/9178/pc/con_07_benefit_01.png'), linear-gradient(to bottom, #000c2d, #003dec);
}

.event_cont_7 .event_list .list_item_2.is_active {
    background-image: url('/img/event/9178/pc/con_07_benefit_02.png'), linear-gradient(to bottom, #000c2d, #003dec);
}

.event_cont_7 .event_list .list_item_3.is_active {
    background-image: url('/img/event/9178/pc/con_07_benefit_03.png'), linear-gradient(to bottom, #000c2d, #003dec);
}

.event_cont_7 .event_list .list_item_4.is_active {
    background-image: url('/img/event/9178/pc/con_07_benefit_04.png'), linear-gradient(to bottom, #000c2d, #003dec);
}

.event_cont_7 .event_list .item_title {
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #fff;
    font-size: 35px;
    font-family: 'noto7';
}

.event_cont_7 .event_list .list_item.is_active .item_title {
    color: #f9fc48;
}

.event_cont_7 .event_list .item_text {
    line-height: 1.35;
    letter-spacing: -0.04em;
    font-size: 19px;
}

.event_cont_8 {
    background: #eff5ff;
}

.event_cont_8 .main_inner {
    padding: 0 0 180px;
}

.event_cont_8 .event_slide {
    width: 100%;
    height: 700px;
    margin: 67px 0 0;
    overflow: hidden;
}

.event_cont_8 .event_slide .swiper-pagination {
    display: flex;
    position: static;
    width: 100%;
}

.event_cont_8 .event_slide .btn_pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    padding: 0 0 80px;
    border-radius: 30px 30px 0 0;
    border: 1px solid #c0c0c0;
    background: #fff;
}

.event_cont_8 .event_slide .btn_pagination.is_active {
    color: #fff;
    background: #0042ff;
}

.event_cont_8 .event_slide .pagination_text {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 22px;
}

.event_cont_8 .event_slide .pagination_title {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 27px;
    font-family: 'noto6';
}

.event_cont_8 .event_slide .swiper-wrapper {
    margin: -82px 0 0;
    z-index: 1;
}

.event_cont_8 .event_slide .slide_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 27px;
    width: 100%;
    height: 578px;
    border: 1px solid #cdcbcc;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}

.event_cont_8 .event_slide .slide_list {
    display: flex;
    width: 100%;
    margin: 49px 0 0;
    padding: 0 30px;
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step_bg.png') no-repeat center top -6px;
}

.event_cont_8 .event_slide .list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 261px 0 0;
    text-align: center;
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step_arrow_out.png') no-repeat center 200px;
    transition: 0.3s ease-in;
}

.event_cont_8 .event_slide .list_item.is_active {
    background-image: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step_arrow_over.png');
}

.event_cont_8 .event_slide .list_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 188px;
    height: 188px;
    transform: translate(-50%, 0);
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step_one_out.png') no-repeat center top;
    transition: 0.3s ease-in;
}

.event_cont_8 .event_slide .list_item.is_active::before {
    background-image: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step_one_over.png');
}

.event_cont_8 .event_slide .list_item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 188px;
    height: 188px;
    transition: 0.3s ease-in;
}

.event_cont_8 .event_slide .list_item_1::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step1_img_out.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item_1.is_active::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step1_img_over.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item_2::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step2_img_out.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item_2.is_active::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step2_img_over.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item_3::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step3_img_out.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item_3.is_active::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step3_img_over.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item_4::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step4_img_out.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item_4.is_active::after {
    background: url('/_skin/tpl_skin/include/section_quarantee_pass/tab2_step4_img_over.png') no-repeat center top;
}

.event_cont_8 .event_slide .list_item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 45px;
    letter-spacing: -0.035em;
    border-radius: 45px;
    color: #fff;
    font-size: 20px;
    font-family: 'noto6';
    background: #cac9cb;
    transition: 0.3s ease-in;
}

.event_cont_8 .event_slide .list_item.is_active strong {
    background: #3a6dd0;
}

.event_cont_8 .event_slide .list_item p {
    line-height: 1.42;
    margin: 10px 0 0;
    letter-spacing: -0.035em;
    color: #cac9cb;
    font-size: 17px;
    font-family: 'noto4';
    transition: 0.3s ease-in;
}

.event_cont_8 .event_slide .list_item.is_active p {
    color: #000;
}

.event_cont_8 .event_slide .slide_noti {
    width: 100%;
    letter-spacing: -0.045em;
    padding: 0 51px 0 0;
    text-align: right;
    color: #606060;
    font-size: 16px;
}

.event_cont_9 .event_title {
    position: absolute;
    top: 347px;
    left: -50px;
    opacity: 0;
}

.event_cont_9.is_active .event_title {
    animation: bounceIn 0.5s forwards;
}

.event_cont_9 .event_apply {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 1251px;
    left: 0;
    width: 100%;
    padding: 49px 80px 60px 80px;
    border-radius: 20px;
    background: #fff;
}

.event_cont_9 .event_apply .apply_title {
    width: 100%;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 25px;
    font-family: 'noto7';
}

.event_cont_9 .event_apply .apply_title span {
    color: #ff5f4c;
    font: inherit;
}

.event_cont_9 .event_apply .apply_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 28px 0 55px;
}

.event_cont_9 .event_apply .list_item {
}

.event_cont_9 .event_apply .list_item button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 221px;
    height: 49px;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    letter-spacing: -0.04em;
    color: #7b7b7b;
    font-size: 17px;
}

.event_cont_9 .event_apply .list_item button:hover,
.event_cont_9 .event_apply .list_item button.is_active {
    color: #fff;
    background: #000;
}

.event_cont_9 .event_apply .apply_noti {
    margin: 26px 0 0;
    text-align: center;
    color: #7b7b7b;
    font-size: 14px;
}

.event_cont_9 .btn_apply_wrap {
    position: relative;
}

.event_cont_9 .btn_apply_wrap button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 642px;
    height: 89px;
    padding: 0 0 10px;
    border-radius: 89px;
    letter-spacing: -0.025em;
    color: #fff;
    font-size: 35px;
    font-family: 'noto7';
    background: #437bff;
    box-shadow: 0px 8px 21px 0px rgba(0, 0, 0, 0.33);
}

.event_cont_9 .btn_apply_wrap .btn_apply_end {
    background: gray;
    pointer-events: none;
}

.event_cont_9 .btn_apply_wrap .btn_apply_ing {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.event_cont_9 .btn_apply_wrap .btn_apply_ing::after {
    content: '';
    position: absolute;
    top: 64px;
    right: -5px;
    width: 80px;
    height: 78px;
    background: url('/img/event/8963/pc/finger.png') no-repeat center / 100% auto;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_10 {
    background: #81a6ff;
}

.event_cont_12 {
    background: #f5f2e5;
}

.event_cont_12 .main_inner {
    padding: 163px 0 155px;
}

.event_cont_12 .main_title {
    margin-left: -55px;
}

.event_cont_12 .main_title p {
    font-family: 'noto7';
    font-size: 60px;
}

.event_cont_12 .main_title h3 {
    color: #f23535;
}

.event_cont_12 .link_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 30px;
    width: 100%;
    margin-top: 68px;
}

.event_cont_12 .link_wrap li {
    position: relative;
    width: calc((100% - 60px) / 3);
    height: 164px;
    border-radius: 20px;
    border: 1px solid #e3e0d2;
    box-sizing: border-box;
    background: #fff;
}

.event_cont_12 .link_wrap li::after {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffbe1f url('/img/event/9140/pc/arrow.png') center no-repeat;
}

.event_cont_12 .link_wrap li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 28px 0 0 26px;
    box-sizing: border-box;
}

.event_cont_12 .link_wrap li a span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 0 20px;
    border: 2px solid #ffbd1f;
    border-radius: 50px;
    box-sizing: border-box;
    font-family: 'noto6';
    font-size: 20px;
    letter-spacing: -0.025em;
    line-height: 35px;
    color: #ffbd1f;
}

.event_cont_12 .link_wrap li a p {
    font-family: 'noto6';
    font-size: 35px;
    letter-spacing: -0.065em;
    line-height: 1;
}

/* 소문내기 : s */
.event_cont_11 {
    padding: 100px 0;
}

.event_cont_11 .main_inner {
    display: block;
}

.event_cont_11 .bottom_line {
    padding-bottom: 32px;
    margin-bottom: 64px;
    border-bottom: 1px solid #2504ba;
}

.event_cont_11 .step_tit {
    width: 130px;
    height: 49px;
    margin-bottom: 20px;
    background: url('/img/event/8965/pc/st_bg.png') no-repeat;
    color: #ffffff;
    text-align: center;
    line-height: 44px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: 'market-b';
    letter-spacing: -0.7px;
}

.event_cont_11 .main_inner > p {
    margin-bottom: 20px;
    font-size: 22px;
    font-family: 'noto4';
    letter-spacing: -0.7px;
}

.event_cont_11 .share_btn {
    display: inline-block;
    width: auto;
    height: 53px;
    padding: 0 42px 0 22px;
    margin-right: 15px;
    border: 1px solid #2504ba;
    border-radius: 5px;
    vertical-align: top;
    box-sizing: border-box;
    color: #2504ba;
    font-size: 20px;
    font-family: 'noto5';
    line-height: 53px;
    letter-spacing: -2px;
}

.event_cont_11 .share_btn.hash {
    background: url('/img/event/8965/pc/ic_1.png') 90% 58% no-repeat;
}

.event_cont_11 .share_btn.url {
    background: url('/img/event/8965/pc/ic_2.png') 90% 58% no-repeat;
}

.event_cont_11 .share_btn.img {
    background: url('/img/event/8965/pc/ic_3.png') 90% 58% no-repeat;
}

.event_cont_11 .sns_link_btn {
    position: relative;
    display: inline-block;
    width: 265px;
    height: 50px;
    padding: 0 0 0 21px;
    margin-right: 10px;
    margin-bottom: 13px;
    border: 1px solid #9b95e8;
    box-sizing: border-box;
    border-radius: 5px;
    line-height: 50px;
    font-size: 15px;
    color: #524ca9;
    letter-spacing: -0.7px;
    font-family: 'noto4';
}

.event_cont_11 .sns_link_btn:nth-of-type(4n) {
    margin-right: 0;
}

.event_cont_11 .sns_link_btn::after {
    position: absolute;
    display: block;
    content: '>';
    right: 15px;
    top: 0;
    font-size: 15px;
    color: #9b95e8;
}

.event_cont_11 ul.event_noti {
    font-size: 17px;
    letter-spacing: -0.065em;
    line-height: 1.6;
    color: #575558;
}
/* 소문내기 : e */

/* 시작 영역 */
.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;
}
.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: '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;
    letter-spacing: -0.08em;
    font-size: 18px;
    font-family: 'noto2';
}

/*댓글 영역 css*/
.list-con {
    width: 1100px;
    margin-top: 50px;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}
.list-con li {
    display: flex;
    vertical-align: middle;
    border-bottom: 1px solid #000000;
    padding: 24px 0;
    color: #797979;
}
.list-con li > * {
    display: flex;
    margin-bottom: 0;
    vertical-align: middle;
    font-size: 18px;
    color: #787878;
}
.list-con li .list_idx {
    display: inline-block;
    width: 10%;
    text-align: center;
    font-family: 'noto6';
    color: #000000;
}
.list-con li .list_name {
    display: inline-block;
    width: 15%;
    text-align: left;
}
.writeWrap {
    display: flex;
    margin-bottom: 20px;
}
.wr_content {
    width: 908px;
    height: 68px;
    margin: 0 8px 15px 0;
    padding: 25px 12px;
    border: 2px solid #2504ba;
    border-radius: 5px;
    font-size: 20px;
    line-height: 68px;
}
.writeWrap .submit-btn {
    width: 188px;
    height: 69px;
    background: #2504ba;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-family: 'market-b';
}

/*paging*/

.list-page {
    text-align: center;
    font-size: 19px;
    position: relative;
    padding: 50px 0 0;
}
.list-page a.selected,
.list-page a:hover {
    color: black;
}
.list-page a {
    display: inline-block;
    margin: 0 10px;
    height: 15px;
    font-family: 'noto6';
    text-decoration: none;
    color: #ccc;
    padding: 0 5px;
    font-size: 16px;
}
.del-btn {
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    font-size: 16px;
    line-height: 22px;
    right: 20px;
    top: 10px;
    color: #666;
    background-color: #ccc;
    font-weight: 100;
    font-family: tahoma;
    text-align: center;
}
a.del-btn:hover {
    color: #666;
}
.list-page {
    font-size: 14px;
    font-family: tahoma;
    font-weight: 100;
}
.list-page a,
.list-page a:hover {
    color: #909195;
}

.list-page a.selected {
    position: relative;
    color: #333333 !important;
}
.list-page a.selected:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 105%;
    height: 2px;
    background: #333333;
}
.list-page a.prev,
.list-page a.next {
    border: 1px solid #cccccc;
    /* padding: 5px; */
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    line-height: 22px;
}

/* 이벤트 팝업 : s */
.info_popup_area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 600;
}
.info_popup_area.is_active {
    display: block;
}
.info_popup_area > * {
    color: #000;
}
.info_popup_area .info_popup_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.info_popup_area .info_popup {
    position: relative;
    max-width: 666px;
    height: 90vh;
    max-height: 567px;
    padding: 45px;
    border: 3px solid #000;
    box-sizing: border-box;
    background: #fff;
}
.info_popup_area .info_popup_inner {
    height: 84%;
    overflow-y: auto;
}
.info_popup_area .close_btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-family: 'noto7';
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.065em;
    cursor: pointer;
}
.info_popup_area .info_popup h3 {
    margin-bottom: 16px;
    font-family: 'noto7';
    font-size: 26px;
    letter-spacing: -0.065em;
}
.info_popup_area .info_popup ul {
    width: 100%;
    height: fit-content;
    font-family: 'noto4';
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.065em;
}
.info_popup_area .info_popup ul li {
    float: none;
}
.info_popup_area .info_popup .extention-area {
    margin: 20px 0;
    font-family: 'noto3';
    font-size: 16px;
    letter-spacing: -0.065em;
}
.info_popup_area .info_popup .extention-area + .extention-area {
    margin-top: 10px;
}
.info_popup_area .info_popup .extention-area label {
    font-size: 18px;
    font-family: 'noto6';
}
.info_popup_area .info_popup .extention-area label::before {
    display: block;
    border: 1px solid #000;
    width: 12px;
    height: 12px;
    top: 50%;
    margin-top: -7px;
    right: 0;
}
.info_popup_area .info_popup .extention-area label::after {
    display: none;
    top: 50%;
    margin-top: -5px;
    right: 5px;
    width: 4px;
    height: 7px;
    border: solid black;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.info_popup_area .info_popup .extention-area input:checked + label::after {
    display: block;
}
.info_popup_area .info_popup .extention-area label em {
    color: red;
    font: inherit;
}
.info_popup_area .info_popup .btn-apply {
    display: block;
    padding: 10px 20px;
    margin: 0 auto;
    text-align: center;
    line-height: 100%;
    font-size: 14px;
    font-family: 'noto4';
    box-sizing: border-box;
    border-radius: 3px;
    background: #000;
    color: #fff;
}

.info_popup_area .info_popup form {
    font-size: 14px;
    word-break: keep-all;
}

.info_popup_area .info_popup .check_info strong {
    text-decoration: underline;
    font-family: 'noto5';
}

/* 이벤트 팝업 : e */
