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

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

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

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

.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 blink {
    0%,
    49% {
        opacity: 0;
    }
    50%,
    100% {
        opacity: 1;
    }
}

@keyframes puffIn {
    0% {
        opacity: 0;
        transform: scale(2, 2);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1, 1);
        filter: blur(0px);
    }
}

/* 탭 */
.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: 318px;
    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: 37px 0 0;
}

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

/* 타이머 */
.event_container .event_timer_area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 77px;
    background: url('/img/event/8955/pc/time_bg.png') center no-repeat;
    z-index: var(--z-index-floating, 10);
}

.event_container .event_timer_area .main_inner {
    flex-direction: row;
    justify-content: space-between;
    white-space: nowrap;
}

.event_container .event_timer_area p {
    line-height: 1.2;
    letter-spacing: -0.075em;
    color: #fff;
    font-size: 20px;
    font-family: 'noto4';
}

.event_container .event_timer_area p span {
    color: #6cbad7;
}

.event_container .event_timer_area .img_item {
    margin-top: 11px;
}

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

.event_container .event_timer_area .event_timer {
    display: flex;
    align-items: center;
    gap: 56px;
    height: 100%;
    padding-right: 50px;
}

.event_container .event_timer_area .event_timer > div {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.event_container .event_timer_area .event_timer span {
    width: 40px;
    height: 50px;
    line-height: 58px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-family: 'market-b';
    background: #050509;
}

.event_container .event_timer_area .event_timer > div::after {
    position: absolute;
    top: 50%;
    right: -32px;
    transform: translateY(-50%);
    letter-spacing: -0.08em;
    color: #fff;
    font-size: 22px;
    font-family: 'noto4';
}

.event_container .event_timer_area .event_timer .timer_day::after {
    content: '일';
}

.event_container .event_timer_area .event_timer .timer_hour::after {
    content: '시';
}

.event_container .event_timer_area .event_timer .timer_minute::after {
    content: '분';
}

.event_container .event_timer_area .event_timer .timer_seconds::after {
    content: '초';
}

.event_container .event_timer_area .btn_go {
    display: flex;
    align-items: center;
    position: relative;
    height: 48px;
    padding: 0 31px 0 32px;
    border-radius: 48px;
    letter-spacing: -0.035em;
    color: #000;
    font-size: 21px;
    font-family: 'noto5';
    background: #92ff67;
}

.event_container .event_timer_area .btn_go::after {
    content: '>';
    margin-left: 6px;
}

.event_container .event_timer_area .btn_go::before {
    content: '';
    position: absolute;
    top: 24px;
    right: -21px;
    width: 37px;
    height: 48px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

/* 컨텐츠 */
.event_cont_1 {
    height: 1155px;
    background: #01020a url('/img/event/9264/pc/visual_bg.jpg') no-repeat center top;
}

.event_cont_1 .main_inner {
    padding: 30px 0 100px;
}

.event_cont_1 .evidence_list {
    display: flex;
    justify-content: center;
    gap: 127px;
    width: 100%;
    padding: 0 17px 0 0;
}

.event_cont_1 .evidence_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 83px;
    padding: 0 0 13px;
    background: url('/img/event/9264/pc/visual_evidence_bg.png') no-repeat 0 0;
}

.event_cont_1 .evidence_list p {
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.055em;
    color: #c5e8ed;
    font-size: 19px;
}

.event_cont_1 .evidence_list em {
    letter-spacing: -0.06em;
    font-size: 24px;
    font-family: 'noto6';
}

.event_cont_1 .evidence_area {
    position: absolute;
    top: 83px;
    left: 0;
    padding: 0 63px 0 0;
}

.event_cont_1 .evidence_btn {
    width: 75px;
    height: 25px;
    border: 1px solid #7c90b0;
    border-radius: 0;
    text-align: center;
    letter-spacing: -0.025em;
    color: #7c90b0;
    font-size: 13px;
    font-family: 'market-l';
    background: transparent;
}

.event_cont_1 .event_title_1 {
    margin: 522px 0 0;
}

.event_cont_1 .event_title_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    position: relative;
    margin: 18px 0 0;
    padding: 0 17px 0 0;
}

.event_cont_1 .event_title_2 img {
    transform-origin: center;
    opacity: 0;
}

.event_cont_1.is_active .event_title_2 .title_img_1 {
    animation: puffIn 0.4s linear forwards 0.2s;
}

.event_cont_1.is_active .event_title_2 .title_img_2 {
    animation: puffIn 0.4s linear forwards 0.4s;
}

.event_cont_1 .event_list {
    display: flex;
    gap: 28px;
    width: 100%;
    margin: 42px 0 0;
}

.event_cont_1 .event_list .list_item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 154px;
    padding: 0 0 0 123px;
    border-radius: 20px;
    color: #4e5a90;
    background: url('/img/event/9264/pc/visual_item.png') no-repeat 0 0 / auto 174px;
    transition: 0.3s ease-in-out;
}

.event_cont_1 .event_list .list_item_1 {
    background-position: -10px -10px;
}

.event_cont_1 .event_list .list_item_2 {
    background-position: -378px -10px;
}

.event_cont_1 .event_list .list_item_3 {
    background-position: -746px -10px;
}

.event_cont_1 .event_list .list_item.is_active {
    color: #fff;
    background-image: url('/img/event/9264/pc/visual_item_active.png');
}

.event_cont_1 .event_list .item_text {
    line-height: 1.55;
    letter-spacing: -0.025em;
    font-size: 22px;
}

.event_cont_1 .event_list .item_text em {
    font-family: 'noto7';
}

.event_cont_2 {
    background: #10000e url('/img/event/9264/pc/benefit_bg.jpg') no-repeat center top;
}

.event_cont_2 .main_inner {
    padding: 133px 0 143px;
}

.event_cont_2 .event_list_1 {
    display: flex;
    gap: 25px;
    width: 100%;
    margin: 72px 0 0;
}

.event_cont_2 .event_list_1 .list_item {
    width: 100%;
    height: 209px;
    padding: 39px 0 0 40px;
    border-radius: 20px;
    background: #d905be no-repeat 4px 1px;
    box-shadow: 6px 10px 13.5px 1.5px rgba(0, 0, 0, 0.5);
}

.event_cont_2 .event_list_1 .list_item_1 {
    background-image: url('/img/event/9264/pc/benefit_item_01.png');
}

.event_cont_2 .event_list_1 .list_item_2 {
    background-image: url('/img/event/9264/pc/benefit_item_02.png');
}

.event_cont_2 .event_list_1 .item_text {
    line-height: 1.3;
    letter-spacing: -0.045em;
    color: #fff;
    font-size: 29px;
}

.event_cont_2 .event_list_1 .item_text em {
    font-family: 'noto7';
}

.event_cont_2 .event_list_2 {
    display: flex;
    gap: 24px;
    width: 100%;
    margin: 21px 0 0;
}

.event_cont_2 .event_list_2 .list_item {
    width: 100%;
    height: 270px;
    padding: 34px 0 0;
    text-align: center;
    border-radius: 20px;
    background: #fff no-repeat 0 0;
}

.event_cont_2 .event_list_2 .list_item_1 {
    background-image: url('/img/event/9264/pc/benefit_item_03.png');
}

.event_cont_2 .event_list_2 .list_item_2 {
    background-image: url('/img/event/9264/pc/benefit_item_04.png');
}

.event_cont_2 .event_list_2 .list_item_3 {
    background-image: url('/img/event/9264/pc/benefit_item_05.png');
}

.event_cont_2 .event_list_2 .item_text {
    line-height: 1.2;
    letter-spacing: -0.045em;
    color: #000;
    font-size: 26px;
}

.event_cont_2 .event_list_2 .item_text em {
    font-family: 'noto6';
}

.event_cont_3 {
    background: #77b5e4 url('/img/event/9264/pc/worry_bg.jpg') repeat-x center top;
}

.event_cont_3 .main_inner {
    padding: 131px 0 115px;
}

.event_cont_3 .event_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    margin: 38px 0 0;
}

.event_cont_3 .event_list .list_item {
    display: flex;
    justify-content: center;
    width: 526px;
    height: 267px;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

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

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

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

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

.event_cont_3 .event_list .list_item_4 {
    transition-delay: 1.1s;
}

.event_cont_3 .event_list .list_item img {
    width: 544px;
    height: 270px;
}

.event_cont_4 {
    background: #150013 url('/img/event/9264/pc/strategy_bg.jpg') repeat-x center top;
}

.event_cont_4 .main_inner {
    padding: 132px 0 141px;
}

.event_cont_4 .event_list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 79px 0 0;
    opacity: 0;
    transition: 0.4s ease-in-out 0.2s;
}

.event_cont_4 .event_list.is_active {
    opacity: 1;
}

.event_cont_4 .event_list .list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 352px;
    height: 469px;
    padding: 85px 0 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: -4px 2px 15px 0px rgba(0, 0, 0, 0.35);
    background: no-repeat 0 0;
}

.event_cont_4 .event_list .list_item_1 {
    background-image: url('/img/event/9264/pc/strategy_card_01.png');
}

.event_cont_4 .event_list .list_item_2 {
    background-image: url('/img/event/9264/pc/strategy_card_02.png');
}

.event_cont_4 .event_list .list_item_3 {
    background-image: url('/img/event/9264/pc/strategy_card_03.png');
}

.event_cont_4 .event_list .item_title {
    line-height: 1.35;
    letter-spacing: -0.045em;
    font-size: 28px;
    font-family: 'noto7';
}

.event_cont_4 .event_list .item_text {
    line-height: 1.5;
    margin: auto 0 0;
    letter-spacing: -0.045em;
    color: #535353;
    font-size: 17px;
    font-family: 'noto5';
}

.event_cont_4 .event_text {
    margin: -44px 0 0;
    text-align: center;
}

.event_cont_4 .event_text::before {
    content: '';
    display: block;
    width: 100%;
    height: 164px;
    margin: 0 0 33px;
    background: url('/img/event/9264/pc/strategy_arrow.png') no-repeat center top -164px;
    transition: background 0.6s ease-in-out 0.2s;
}

.event_cont_4 .event_text.is_active::before {
    background-position: 0 0;
}

.event_cont_4 .event_text img {
    opacity: 0;
    transition: 0.4s ease-in-out 0.6s;
}

.event_cont_4 .event_text.is_active img {
    opacity: 1;
}

.event_cont_5 {
    min-height: 963px;
    background: #a7cde9 url('/img/event/9264/pc/suggestion_bg.jpg') no-repeat center top;
}

.event_cont_5 .main_inner {
    padding: 127px 0 100px;
}

.event_cont_5 .event_list {
    position: relative;
    margin: 35px 0 0;
    width: 100%;
}

.event_cont_5 .event_list .list_item {
    position: absolute;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.4s ease;
}

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

.event_cont_5 .event_list .list_item_1 {
    top: 53px;
    left: 89px;
    transition-delay: 0.2s;
}

.event_cont_5 .event_list .list_item_2 {
    top: 0;
    left: 385px;
    transition-delay: 0.5s;
}

.event_cont_5 .event_list .list_item_3 {
    top: 48px;
    left: 748px;
    transition-delay: 0.8s;
}

.event_cont_6 {
    background: #cde0ef;
}

.event_cont_6 .main_inner {
    padding: 0 0 91px;
}

.event_cont_6 .event_noti {
    position: absolute;
    top: 175px;
    left: 0;
    width: 100%;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.025em;
    color: #fff;
    font-size: 13px;
    opacity: 0.6;
}

.event_cont_6 .main_title {
    margin: 131px 0 0;
}

.event_cont_6 .event_list {
    display: flex;
    gap: 23px;
    width: 100%;
    margin: 62px 0 0;
}

.event_cont_6 .event_list .list_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 206px;
    padding: 39px 0 0 41px;
    border: 2px solid #5d5d5d;
    border-radius: 20px;
    box-shadow: 5px 6px 5px 0px rgba(0, 0, 0, 0.18);
    background: #fff no-repeat 0 -20px;
}

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

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

.event_cont_6 .event_list .item_text {
    line-height: 1.25;
    letter-spacing: -0.045em;
    font-size: 29px;
}

.event_cont_6 .event_list .item_text em {
    font-family: 'noto7';
}

.event_cont_6 .event_tab_slide {
    position: relative;
    width: 100%;
    margin: 61px 0 0;
}

.event_cont_6 .event_tab_slide .swiper-pagination {
    gap: 20px;
    margin: 0 0 10px;
}

.event_cont_6 .event_tab_slide .swiper-pagination-bullet {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 73px;
    border-radius: 10px;
    line-height: 1.2;
    letter-spacing: -0.065em;
    color: #a3aab2;
    font-size: 24px;
    font-family: 'noto6';
    background: #c5d4df;
}

.event_cont_6 .event_tab_slide .swiper-pagination-bullet-active {
    color: #fff;
    background: #000;
}

.event_cont_6 .event_tab_slide_wrap {
    border-radius: 10px;
    background: #fff;
    box-shadow: 5px 6px 5px 0px rgba(0, 0, 0, 0.18);
}

.event_cont_6 .event_tab_slide .swiper-slide {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 35px 19px 36px;
}

.event_cont_6 .event_tab_slide .swiper-slide.type_row_4 {
    gap: 10px;
    padding: 35px 16px 36px;
}

.event_cont_6 .event_tab_slide .swiper-slide.type_row_5 {
    gap: 5px;
}

.event_cont_6 .curriculum_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.event_cont_6 .curriculum_item .item_title {
    width: 100%;
    height: 46px;
    line-height: 46px;
    border-radius: 46px;
    text-align: center;
    letter-spacing: -0.035em;
    color: #fff;
    font-size: 22px;
    font-family: 'noto6';
    background: #0f51a2;
}

.event_cont_6 .curriculum_item .item_list {
    display: flex;
    flex-direction: column;
    width: calc(100% - 25px);
    height: 235px;
}

.event_cont_6 .type_row_4 .curriculum_item .item_list {
    width: calc(100% - 13px);
}

.event_cont_6 .type_row_5 .curriculum_item .item_list {
    width: calc(100% - 13px);
}

.event_cont_6 .curriculum_item .item_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    line-height: 1.2;
    letter-spacing: -0.035em;
    text-align: center;
    border: 1px solid #b8d2e6;
    color: #2b2b2b;
    font-size: 19px;
    font-family: 'noto6';
}

.event_cont_6 .curriculum_item .item_list li:nth-child(1) {
    background: #e6f1ff;
}

.event_cont_6 .curriculum_item .item_list li:nth-child(2) {
    background: #d3e7ff;
}

.event_cont_6 .curriculum_item .item_list li:last-child {
    background: #bad9ff;
}

.event_cont_6 .curriculum_item .item_list li + li {
    border-top: none;
}

.event_cont_6 .curriculum_item .item_list li + li::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 27px;
    background: url('/img/event/9264/pc/curriculum_arrow.png') no-repeat center;
    opacity: 0.3;
}

.event_cont_6 .curriculum_item .item_list li:last-child::before {
    opacity: 0.5;
}

.event_cont_7 {
    background: #fff;
}

.event_cont_7 .main_inner {
    padding: 132px 0 138px;
}

.event_cont_7 .main_desc {
    margin: 17px 0 0;
}

.event_cont_7 .event_visual {
    position: relative;
    margin: 77px 0 0;
}

.event_cont_7 .event_visual .visual_price {
    position: absolute;
    height: 45px;
    padding: 0 27px;
    border: 2px solid #fff;
    border-radius: 43px;
    letter-spacing: -0.045em;
    color: #fff;
    font-size: 27px;
    font-family: 'noto7';
    background: #0c010b;
    box-shadow: 4px 5px 11.4px 0.6px rgba(0, 0, 0, 0.52);
}

.event_cont_7 .event_visual .visual_price_1 {
    top: 277px;
    left: 368px;
    color: rgba(255, 255, 255, 0.6);
    border-color: #afafaf;
    background: #383838;
}

.event_cont_7 .event_visual .visual_price_2 {
    top: 388px;
    left: 751px;
}

.event_cont_7 .event_visual .visual_percent {
    position: absolute;
    top: 209px;
    left: 586px;
    width: 200px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.025em;
    font-size: 38px;
    font-family: 'market-b';
}

.event_cont_8 {
    background: #0d010c url('/img/event/9264/pc/professor_bg.jpg') no-repeat center top;
}

.event_cont_8 .main_inner {
    padding: 132px 0 141px;
}

.event_cont_8 .event_visual {
    margin: 61px 0 0;
}

.event_cont_8 .event_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 11px;
    width: 100%;
    margin: -101px 0 0;
}

.event_cont_8 .main_marquee {
    margin: 99px 0 0;
}

.event_cont_8 .main_marquee .marquee_inner {
    gap: 14px;
    animation-duration: 20s;
}

.event_cont_8 .main_marquee .marquee_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 720px;
    height: 191px;
    padding: 0 0 0 56px;
    border: 1px solid #c8c8c8;
    border-radius: 20px;
    background: #fff;
}

.event_cont_8 .main_marquee .marquee_item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 191px;
    background: url('/img/event/9248/pc/review_icons.png') no-repeat 0 0;
}

.event_cont_8 .main_marquee .marquee_item_1::after {
    background-position: -0 -0;
}

.event_cont_8 .main_marquee .marquee_item_2::after {
    background-position: -220px -0;
}

.event_cont_8 .main_marquee .marquee_item_3::after {
    background-position: -440px -0;
}

.event_cont_8 .main_marquee .marquee_item_4::after {
    background-position: -660px -0;
}

.event_cont_8 .main_marquee .marquee_item_5::after {
    background-position: -880px -0;
}

.event_cont_8 .main_marquee .marquee_item_6::after {
    background-position: -1100px -0;
}

.event_cont_8 .main_marquee .marquee_item_7::after {
    background-position: -1320px -0;
}

.event_cont_8 .main_marquee .marquee_item_8::after {
    background-position: -1540px -0;
}

.event_cont_8 .main_marquee .item_title {
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: 20px;
    font-family: 'noto6';
}

.event_cont_8 .main_marquee .item_text {
    line-height: 1.5;
    margin: 8px 0 0;
    letter-spacing: -0.04em;
    word-break: keep-all;
    width: 60%;
    font-size: 16px;
}

.event_cont_8 .main_marquee .item_author {
    line-height: 1.2;
    margin: 16px 0 0;
    letter-spacing: -0.04em;
    color: #999;
    font-size: 16px;
}

.event_cont_9 {
    background: #eaf6ff;
}

.event_cont_9 .main_inner {
    padding: 146px 0 152px;
}

.event_cont_9 .event_tab_slide {
    position: relative;
    width: 100%;
    margin: 70px 0 0;
}

.event_cont_9 .event_tab_slide .swiper-pagination {
    justify-content: center;
    gap: 20px;
    margin: 0 0 33px;
}

.event_cont_9 .event_tab_slide .swiper-pagination-bullet {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 402px;
    height: 73px;
    border-radius: 10px;
    line-height: 1.2;
    letter-spacing: -0.065em;
    color: #a0a0a0;
    font-size: 24px;
    font-family: 'noto6';
    background: #d8d8d8;
}

.event_cont_9 .event_tab_slide .swiper-pagination-bullet-active {
    color: #fff;
    background: #000;
}

.event_cont_9 .event_tab_slide_wrap {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.event_cont_10 {
    background: #e4e4e4;
}

.event_cont_10 .main_inner {
    padding: 145px 0 156px;
}

.event_cont_10 .event_list {
    display: flex;
    justify-content: center;
    gap: 59px;
    width: 100%;
    margin: 66px 0 0;
}

.event_cont_10 .event_list .list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 502px;
    height: 527px;
    padding: 63px 0 51px;
    border: 2px solid rgba(210, 210, 210, 0.72);
    border-radius: 20px;
    text-align: center;
    background: #fff no-repeat 0 0;
    box-shadow: 5px 8px 15px 0px rgba(0, 0, 0, 0.12);
}

.event_cont_10 .event_list .list_item_1 {
    background-image: url('/img/event/9264/pc/service_item_01.png');
}

.event_cont_10 .event_list .list_item_2 {
    background-image: url('/img/event/9264/pc/service_item_02.png');
}

.event_cont_10 .event_list .item_title {
    line-height: 1.5;
    letter-spacing: -0.065em;
    font-size: 24px;
    font-family: 'noto5';
}

.event_cont_10 .event_list .item_title em {
    font-size: 30px;
    font-family: 'noto6';
}

.event_cont_10 .event_list .item_text {
    line-height: 1.6;
    margin: auto 0 0;
    letter-spacing: -0.06em;
    font-size: 19px;
}

.event_cont_11 {
    background: #1d011a url('/img/event/9264/pc/review_bg.jpg') no-repeat center top;
}

.event_cont_11 .main_inner {
    padding: 129px 0 140px;
}

.event_cont_11 .main_marquee {
    margin: 81px 0 0;
}

.event_cont_11 .main_marquee .marquee_inner {
    gap: 20px;
    animation-duration: 20s;
}

.event_cont_11 .main_marquee .marquee_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 670px;
    height: 290px;
    padding: 10px;
    border-radius: 20px;
    background: #444;
    box-shadow: 0 30px 40px 0 rgba(0, 0, 0, 0.2);
}

.event_cont_11 .main_marquee .item_detail_wrap {
    flex-grow: 1;
    height: 100%;
    padding: 23px 0 0 30px;
    color: #fff;
    letter-spacing: -0.08em;
    font-size: 18px;
    font-family: 'spoqa3';
}

.event_cont_11 .main_marquee .item_title {
    line-height: 36px;
    font-size: 26px;
    font-family: 'spoqa4';
}

.event_cont_11 .main_marquee .item_text {
    line-height: 28px;
    margin-top: 11px;
    color: #fff;
}

.event_cont_11 .main_marquee .item_author {
    display: inline-block;
    margin-top: 21px;
    color: #aaa;
}

.event_cont_11 .main_marquee .item_thumb {
    flex-shrink: 0;
    width: 270px;
    height: 270px;
    border-radius: 20px;
    overflow: hidden;
}

.event_cont_12 {
    background: #e4e4e4;
}

.event_cont_12 .main_inner {
    padding: 134px 0 138px;
}

.event_cont_12 .main_tab {
    display: flex;
    flex-direction: row;
    margin: 67px 0 0;
    padding: 7px 0;
    border-radius: 32px;
    background: #161616;
}

.event_cont_12 .tab_list {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 7px;
    width: 317px;
    padding: 41px 49px;
    background: url('/img/event/9248/pc/apply_dash.png') repeat-y center right;
}

.event_cont_12 .tab_list .btn_tab {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    letter-spacing: -0.06em;
    color: #fff;
    font-size: 20px;
    font-family: 'noto6';
    background: #222;
}

.event_cont_12 .tab_list .btn_tab.is_active {
    color: #080808;
    background: #fff;
}

.event_cont_12 .tab_content {
    flex: 1 1 auto;
}

.event_cont_12 .product_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.event_cont_12 .product_list .list_item {
    width: 100%;
    padding: 36px 25px 38px;
}

.event_cont_12 .product_list .item_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    padding: 0 22px;
}

.event_cont_12 .product_list .header_title {
    line-height: 1.2;
    letter-spacing: -0.06em;
    color: #fff;
    font-size: 32px;
    font-family: 'noto6';
}

.event_cont_12 .product_list .header_title em {
    font: inherit;
    color: #fd00ff;
}

.event_cont_12 .product_list .btn_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.event_cont_12 .product_list .btn_modal_book {
    width: 103px;
    height: 29px;
    background: #fff;
    font-size: 13px;
    font-family: 'noto6';
    color: #000;
}

.event_cont_12 .product_list .btn_noti {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    width: 87px;
    height: 29px;
    border: 1px solid #bbb;
    border-radius: 4px;
    letter-spacing: -0.025em;
    color: #bbb;
    font-size: 16px;
    opacity: 0.7;
}

.event_cont_12 .product_list .btn_noti::after {
    content: '▶';
    font-size: 8px;
    margin: 2px 0 0;
}

.event_cont_12 .product_list .item_contents {
    display: flex;
    flex-direction: column;
}

.event_cont_12 .product_detail {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 24px 0 47px 21px;
}

.event_cont_12 .product_detail .detail_wrap {
    display: flex;
    align-items: flex-start;
    position: relative;
    color: #fff;
}

.event_cont_12 .product_detail .detail_wrap dt {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 3px;
    width: 171px;
    line-height: 1.7;
    letter-spacing: -0.06em;
    white-space: nowrap;
    font-size: 20px;
    font-family: 'noto5';
}

.event_cont_12 .product_detail .detail_wrap dt::before {
    content: '';
    display: block;
    width: 26px;
    height: 22px;
    background: url('/img/event/9264/pc/apply_icons.png') no-repeat 0 0 / auto 41px;
}

.event_cont_12 .product_detail .detail_wrap:nth-child(1) dt::before {
    background-position: -10px -10px;
}

.event_cont_12 .product_detail .detail_wrap:nth-child(2) dt::before {
    background-position: -50px -10px;
}

.event_cont_12 .product_detail .detail_wrap:nth-child(3) dt::before {
    background-position: -90px -10px;
}

.event_cont_12 .product_detail .detail_wrap:nth-child(4) dt::before {
    background-position: -130px -10px;
}

.event_cont_12 .product_detail .detail_wrap dd {
    line-height: 1.6;
    letter-spacing: -0.06em;
    font-size: 20px;
}

.event_cont_12 .product_detail .detail_wrap em {
    display: block;
    line-height: 1;
    font-family: 'noto5';
    color: #fe0000;
}

.event_cont_12 .product_calc {
    display: flex;
    align-items: flex-end;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    position: relative;
    margin: 0 22px;
    padding: 26px 30px 40px;
    text-align: center;
    border-radius: 20px;
    background: #383838;
}

.event_cont_12 .product_calc .calc_title {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    position: absolute;
    top: -15px;
    right: 24px;
    height: 34px;
    padding: 0 20px;
    border-radius: 39px;
    letter-spacing: -0.06em;
    color: #000;
    font-size: 18px;
    font-family: 'noto6';
    background: #ffe00d;
}

.event_cont_12 .product_calc .calc_title::after {
    content: '';
    display: block;
    width: 14px;
    height: 18px;
    margin: 2px 0 0;
    background: url('/img/event/9248/pc/icon_light.png') no-repeat 0 0 / contain;
}

.event_cont_12 .product_calc .calc_title::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-top: 5px solid #ffe00d;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.event_cont_12 .product_calc .calc_price {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 0.4em;
}

.event_cont_12 .product_calc .price_item {
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #fd00ff;
    font-size: 54px;
    font-family: 'noto6';
}

.event_cont_12 .product_calc .price_item:first-child {
    line-height: 1.8;
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    font-family: 'noto5';
}

.event_cont_12 .product_calc .price_item dd {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.event_cont_12 .product_calc .price_item dt,
.event_cont_12 .product_calc .price_item dd {
    font: inherit;
}

.event_cont_12 .product_calc .price_item span {
    line-height: 1.2;
    letter-spacing: -0.065em;
    color: #000;
    font-size: 13px;
    font-family: 'noto7';
}

.event_cont_12 .product_calc .calc_noti {
    margin: auto auto 9px 6px;
}

.event_cont_12 .product_calc .calc_noti li {
    line-height: 1.2;
    letter-spacing: -0.06em;
    color: #fff;
    font-size: 16px;
}

.event_cont_12 .product_calc .calc_utils {
    display: flex;
    gap: 8px;
    width: 100%;
    margin: 18px 0 0;
}

.event_cont_12 .product_calc button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    width: 100%;
    height: 60px;
    border-radius: 8px;
    letter-spacing: -0.065em;
    font-size: 20px;
    font-family: 'noto6';
}

.event_cont_12 .product_calc .btn_apply {
    flex: 1 1 auto;
    color: #fff;
    background: #fd00ff;
}

.event_cont_12 .product_calc .btn_apply::after {
    content: '>';
}

.event_cont_12 .product_calc .btn_coupon {
    flex: 0 0 auto;
    width: 232px;
    border: 1px solid #fd00ff;
    color: #fd00ff;
}

.event_cont_12 .product_calc .btn_coupon:after {
    content: '';
    display: block;
    width: 19px;
    height: 17px;
    margin: 1px 0 0;
    background: url('/img/event/9264/pc/icon_download.png') no-repeat 0 0;
}

.event_cont_12 .product_calc .calc_checkbox {
    margin: 0 auto 8px 0;
}

.event_cont_12 .product_calc .calc_checkbox input {
    display: none;
}

.event_cont_12 .product_calc .calc_checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5em;
    line-height: 1.2;
    letter-spacing: -0.06em;
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.event_cont_12 .product_calc .calc_checkbox label::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #e5e5e5 no-repeat center;
}

.event_cont_12 .product_calc .calc_checkbox input:checked + label::before {
    background-color: #66ff00;
    background-image: url('/img/event/9248/pc/icon_check.png');
}

/* 시작 영역 */
.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 {
    justify-content: flex-end;
    position: absolute;
    top: 228px;
    right: 0;
    padding: 0 79px 0 0;
    z-index: 1;
}

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