@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 a:hover,
.event_container a:focus {
    text-decoration: 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;
    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 p {
    line-height: 1.2;
    letter-spacing: -0.045em;
    font-size: 51px;
    font-family: 'noto5';
}

.event_container .main_title h3 {
    line-height: 1.3;
    letter-spacing: -0.035em;
    font-size: 56px;
    font-family: 'noto7';
    font-weight: normal;
}

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

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

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

.event_container .event_timer_area p {
    line-height: 1.2;
    letter-spacing: -0.035em;
    text-align: right;
    color: #fff;
    font-size: 18px;
    font-family: 'noto6';
}

.event_container .event_timer_area p span {
    font-family: 'noto6';
    margin-left: 6px;
    color: #fffe0f;
}

.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: 24px;
    height: 100%;
    padding: 0 33px;
    box-sizing: border-box;
}

.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 {
    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 .event_timer > div::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 .event_timer .timer_seconds::after {
    display: none;
}

.event_container .event_timer_area .btn_go {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 207px;
    height: 43px;
    padding: 0 31px 0 32px;
    border-radius: 8px;
    letter-spacing: -0.035em;
    color: #000;
    font-size: 20px;
    font-family: 'noto7';
    background: #fffe0f;
}

.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_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: 85px;
}

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

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

.event_container .event_floating .btn_scroll + .btn_scroll {
    margin: 25px 0 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_cont_1 {
    height: 1199px;
    background: url('/img/event/9201/pc/top_bg.jpg') center top no-repeat;
}

.event_cont_1 .top_title {
    margin: 123px 0 -22px;
}

.event_cont_1 .sub_txt {
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(2px);
}

.event_cont_1 .sub_txt::before {
    clear: both;
    content: '';
    display: block;
    width: 128px;
    height: 81px;
    background: url('/img/event/9179/pc/top_live_icon.png') no-repeat center / contain;
    transform: translateY(-5px);
}

.event_cont_1 .sub_txt p {
    font-family: 'noto7';
    font-size: 43px;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #fffe0f;
}

.event_cont_1 .sub_txt span {
    position: relative;
    font-family: 'noto7';
    transform: translateX(-5px);
}

.event_cont_1 .sub_txt span::before,
.event_cont_1 .sub_txt span::after {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fffe0f;
}

.event_cont_1 .sub_txt span::after {
    left: auto;
    right: 17px;
}

.event_cont_1 .top_item_wrap {
    position: relative;
    width: 100%;
    height: 431px;
    margin-top: 38px;
    background: url('/img/event/9201/pc/top_benefit.png') center no-repeat;
}

.event_cont_1 .top_item_wrap li {
    position: absolute;
    bottom: 32px;
    left: 70px;
    width: 402px;
    height: 64px;
}

.event_cont_1 .top_item_wrap li:last-child {
    left: auto;
    right: 66px;
}

.event_cont_1 .top_item_wrap li button,
.event_cont_1 .top_item_wrap li a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.event_cont_1 .top_item_wrap li button::before,
.event_cont_1 .top_item_wrap li a::before {
    content: '';
    position: absolute;
    top: 31px;
    right: 10px;
    width: 56px;
    height: 65px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_1 .evidence_area_wrap {
    position: absolute;
    top: 112px;
    right: 52px;
}

.event_cont_1 .evidence_area_wrap .evidence_btn {
    width: 82px;
    opacity: 0;
}

.event_cont_2 {
}

.event_cont_2 .main_inner {
    padding-bottom: 202px;
}

.event_cont_2 .middle_banner {
    margin-bottom: 80px;
}

.event_cont_2 .event_1_img {
    margin-top: 24px;
}

.event_cont_2 .event_video {
    position: absolute;
    left: 0;
}

.event_cont_2 .event_video_1 {
    top: 246px;
}

.event_cont_2 .youtube_link_btn_2 {
    display: block;
    position: relative;
    width: 1100px;
    height: 528px;
}

.event_cont_2 .youtube_link_btn {
    display: block;
    position: absolute;
    bottom: 202px;
    left: 0;
    width: 100%;
    height: 86px;
}

.event_cont_3 {
    background: #34000d;
}

.event_cont_3 .main_inner {
    padding: 117px 0 177px;
}

.event_cont_3 .item_wrap {
    width: 100%;
}

.event_cont_3 .item_wrap + .item_wrap {
    margin-top: 169px;
}

.event_cont_3 .main_title > img {
    margin: 0 auto 27px;
}

.event_cont_3 .main_title h3 {
    font-family: 'noto6';
    color: #fff;
}

.event_cont_3 .main_title h3 em {
    font-family: 'noto6';
    color: #ffdf2c;
}

.event_cont_3 .item_list_wrap {
    display: flex;
    gap: 25px;
    width: 100%;
    margin: 84px auto 93px;
}

.event_cont_3 .item_wrap_2 .item_list_wrap {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 39px 20px;
    margin: 69px auto 66px;
}

.event_cont_3 .item_list_wrap .item_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 452px;
    padding: 24px 28px 27px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #880000 no-repeat 0 0;
}

.event_cont_3 .item_wrap_2 .item_list_wrap .item_list {
    width: 534px;
    height: 329px;
    background: #d6b389 no-repeat 0 0;
}

.event_cont_3 .item_list_wrap .item_list.item_list_1 {
    background-image: url('/img/event/9201/pc/benefit_1.png');
}

.event_cont_3 .item_wrap_2 .item_list_wrap .item_list.item_list_1 {
    background-image: url('/img/event/9201/pc/benefit_4.png');
}

.event_cont_3 .item_list_wrap .item_list.item_list_2 {
    background-image: url('/img/event/9201/pc/benefit_2.png');
}

.event_cont_3 .item_wrap_2 .item_list_wrap .item_list.item_list_2 {
    background-image: url('/img/event/9201/pc/benefit_5.png');
}

.event_cont_3 .item_list_wrap .item_list.item_list_3 {
    background-image: url('/img/event/9201/pc/benefit_3.png');
}

.event_cont_3 .item_wrap_2 .item_list_wrap .item_list.item_list_3 {
    background-image: url('/img/event/9201/pc/benefit_6.png');
}

.event_cont_3 .item_wrap_2 .item_list_wrap .item_list.item_list_4 {
    background-image: url('/img/event/9201/pc/benefit_7.png');
}

.event_cont_3 .item_list_wrap .item_list .sub_txt {
    font-family: 'noto3';
    font-size: 20px;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #e8c79c;
}

.event_cont_3 .item_list_wrap .item_list .list_tit {
    margin-top: 15px;
    font-family: 'noto4';
    font-size: 33px;
    letter-spacing: -0.045em;
    line-height: 1.25;
    color: #fff;
}

.event_cont_3 .item_wrap_2 .item_list_wrap .item_list .list_tit {
    margin-top: auto;
    font-family: 'noto7';
    font-size: 30px;
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-align: center;
    color: #000;
}

.event_cont_3 .item_list_wrap .item_list .list_tit em {
    font-family: 'noto6';
    letter-spacing: -0.045em;
    color: #e8c79c;
}

.event_cont_3 .item_list_wrap .item_list .list_noti {
    min-height: 58px;
    margin-top: auto;
    font-family: 'noto3';
    font-size: 14px;
    letter-spacing: -0.045em;
    line-height: 1.43;
    color: #d14242;
}

.event_cont_3 .item_wrap_2 .item_list_wrap .item_list .list_noti {
    min-height: 0;
    margin-top: 12px;
    font-family: 'noto3';
    font-size: 18px;
    text-align: center;
    color: #000;
}

.event_cont_3 .btn_apply_wrap {
    width: 828px;
    height: 80px;
    margin: 0 auto;
}

.event_cont_3 .btn_apply_wrap button {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 80px;
    background: #ffdf2c;
    font-family: 'noto7';
    font-size: 35px;
    letter-spacing: -0.045em;
    line-height: 80px;
    text-align: center;
    color: #000;
}

.event_cont_3 .btn_apply_wrap .btn_apply_ing::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: -52px;
    left: 52px;
    width: 238px;
    height: 62px;
    background: url('/img/event/9179/pc/btn_bulllet.png') center no-repeat;
}

.event_cont_3 .btn_apply_wrap .btn_apply_end {
    /* display: none; */
    background: gray;
    color: #fff;
    pointer-events: none;
}

.event_cont_3 .btn_apply_wrap button em {
    font-family: 'noto7';
    color: #ff3a2a;
}

.event_cont_3 .event_3_noti {
    font-family: 'noto3';
    font-size: 18px;
    letter-spacing: 0.025em;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    opacity: 0.3;
}

.event_cont_4 .main_inner {
    padding: 96px 0 163px;
}

.event_cont_4 .lec_list_wrap_1 {
    width: 100%;
    min-height: 527px;
    margin: 53px 0 44px;
    padding: 65px 30px 24px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #ff3a2a;
}

.event_cont_4 .lec_list_wrap_2 {
    width: 100%;
    padding: 42px 30px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #ededed;
}

.event_cont_4 .lec_list_wrap_2 + .lec_list_wrap_2 {
    margin-top: 29px;
}

.event_cont_4 .lec_list_wrap_2_2 {
    padding-bottom: 60px;
}

.event_cont_4 .lec_list_wrap .lec_list_title {
    font-family: 'noto6';
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
}

.event_cont_4 .lec_list_wrap_1 .lec_list_title {
    color: #ffdf2c;
}

.event_cont_4 .lec_list_wrap .lec_list_title em {
    font-family: 'noto6';
    color: #ff3a2a;
}

.event_cont_4 .lec_list_wrap .lec_list_sub_txt {
    margin: 10px 0 45px;
    font-family: 'noto4';
    font-size: 34px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.event_cont_4 .lec_list_wrap_1 .event_lec_list_form {
    width: 100%;
    margin-top: 28px;
}

.event_cont_4 .lec_list_wrap_1 .event_lec_list_form:first-of-type {
    margin-top: 43px;
}

.event_cont_4 .lec_list_wrap_1 .lec_list_box {
    width: 100%;
}

.event_cont_4 .lec_list_wrap_1 .lec_list_box + .lec_list_box {
    margin-top: 28px;
}

.event_cont_4 .lec_list_wrap_2 .lec_list_box {
    width: 100%;
}

.event_cont_4 .lec_list_wrap_2 .lec_list_box:first-of-type {
    margin-top: 39px;
}

.event_cont_4 .lec_list_wrap .lec_list {
    display: flex;
    position: relative;
    width: 100%;
    height: 123px;
    border: 3px solid #000;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #000;
}

.event_cont_4 .lec_list_wrap_1 .lec_list {
    border: 0;
    background: #000;
    color: #fff;
}

.event_cont_4 .lec_list_wrap_2 .lec_list + .lec_list {
    margin-top: 28px;
}

.event_cont_4 .lec_list_wrap .lec_list .lec_title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 263px;
    height: 100%;
    padding: 20px 0 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #ffec80;
    font-family: 'market-b';
    font-size: 35px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.event_cont_4 .lec_list_wrap_1 .lec_list .lec_title {
    background: #292929;
}

.event_cont_4 .lec_list_wrap .lec_list .lec_title::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 157px;
    height: 45px;
    background: url('/img/event/9179/pc/item_bullet_2.png') center no-repeat;
}

.event_cont_4 .lec_list_wrap_1 .lec_list .lec_title::before {
    background: url('/img/event/9179/pc/item_bullet_1.png') center no-repeat;
}

.event_cont_4 .lec_list_wrap .lec_list .lec_price_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 263px);
    padding: 24px 35px;
    box-sizing: border-box;
}

.event_cont_4 .lec_list_wrap .lec_list .price_box {
    position: relative;
    margin-top: 20px;
    font-family: 'noto4';
    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #666666;
}

.event_cont_4 .lec_list_wrap_1 .lec_list .price_box {
    color: #b1b1b1;
}

.event_cont_4 .lec_list_wrap .lec_list .price_box::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: #666666;
}

.event_cont_4 .lec_list_wrap_1 .lec_list .price_box::before {
    background: #b1b1b1;
}

.event_cont_4 .lec_list_wrap .lec_list .discount_price_box,
.event_cont_4 .lec_list_wrap .lec_list .discount_price {
    position: relative;
    font-family: 'noto7';
    font-size: 45px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.event_cont_4 .lec_list_wrap_1 .lec_list .discount_price_box,
.event_cont_4 .lec_list_wrap_1 .lec_list .discount_price {
    color: #fff;
}

.event_cont_4 .lec_list_wrap .lec_list .discount_price_box {
    margin: 16px 0 0 -27px;
}

.event_cont_4 .lec_list_wrap .lec_list .discount_price_box::after {
    clear: both;
    content: '40% 할인';
    display: block;
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 113px;
    height: 31px;
    border-radius: 30px;
    background: #ff3a2a;
    font-family: 'noto4';
    font-size: 18px;
    letter-spacing: -0.04em;
    line-height: 31px;
    text-align: center;
    color: #ffffff;
}

.event_cont_4 .lec_list_wrap .lec_list .btn-apply,
.event_cont_4 .lec_list_wrap .lec_list .link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 252px;
    height: 67px;
    border-radius: 12px;
    font-family: 'noto7';
    background: #000;
    font-size: 25px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffdf2c;
}

.event_cont_4 .lec_list_wrap_1 .lec_list .btn-apply {
    background: #ffdf2c;
    color: #000;
}

.event_cont_4 .lec_list_wrap .lec_list .btn-apply::before,
.event_cont_4 .lec_list_wrap .lec_list .link_btn::before {
    content: '';
    position: absolute;
    top: 59px;
    right: -16px;
    width: 42px;
    height: 48px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_4 .lec_list_wrap .lec_bulllet {
    position: absolute;
    top: -40px;
    right: -4px;
    width: 90px;
    height: 94px;
}

.event_cont_4 .lec_list_wrap .lec_bulllet > img {
    position: absolute;
    top: 0;
    left: 0;
}

.event_cont_4 .lec_list_wrap .lec_bulllet > img:last-child {
    animation: blink3 1s infinite;
}

.event_cont_4 .lec_list_wrap .lec_list_noti {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 0 0 10px;
    margin-top: 28px;
    font-family: 'noto3';
    font-size: 16px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    text-align: left;
    color: #fff;
    opacity: 0.5;
}

.event_cont_5 {
    background: #ff3a2a;
}

.event_cont_5 .list_item {
    position: absolute;
    opacity: 0;
    transform: translateY(60px);
    transition: 0.3s ease-in-out;
}

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

.event_cont_5 .list_item_1 {
    top: 489px;
    left: 97px;
}

.event_cont_5 .list_item_2 {
    top: 447px;
    right: 40px;
    transition-delay: 0.2s;
}

.event_cont_5 .list_item_3 {
    top: 672px;
    left: 45px;
    transition-delay: 0.4s;
}

.event_cont_5 .list_item_4 {
    top: 634px;
    right: -89px;
    transition-delay: 0.6s;
}

.event_cont_6 {
    background: #000;
}
/* 시작 영역 */
.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;
    border-bottom: 2px solid #000;
    text-indent: -2px;
    letter-spacing: -0.08em;
    font-size: 50px;
    font-family: 'noto5';
}

.event_notice .notice_list {
    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;
    font-family: 'noto2';
}

@media (min-width: 2560px) {
    .event_cont_1 {
        background: url('/img/event/9201/pc/top_bg.jpg') center top / cover no-repeat;
    }
}

/* 상담 팝업 :: s */
.event_fmb_popup_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    z-index: 999;
}

.event_fmb_popup_cont .event_fmb_popup_bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.event_fmb_popup_cont .event_fmb_popup_wrap {
    position: relative;
    width: 582px;
    height: 80%;
    background: #fff;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.event_fmb_popup_cont .event_fmb_popup_wrap::-webkit-scrollbar {
    display: none;
}

.event_fmb_popup_wrap .popup_header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 57px;
    background: #ff3a2a;
}

.event_fmb_popup_wrap .popup_header .header_title {
    font-family: 'noto6';
    font-size: 27px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.event_fmb_popup_wrap .popup_header .popup_close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 27px;
    color: #fff;
    cursor: pointer;
}

.event_fmb_popup_wrap .popup_image {
    width: 100%;
    height: 352px;
    margin-bottom: 36px;
    background: url('/img/event/9201/pc/popup_img.png') center bottom / 100% auto no-repeat;
}

.event_fmb_popup_wrap .header_p {
    margin-bottom: 50px;
    font-family: 'noto6';
    font-size: 19px;
    text-align: center;
    line-height: 1.3;
}

.event_fmb_popup_wrap form .form_row_wrap {
    margin-bottom: 42px;
}

.event_fmb_popup_wrap form .form_row {
    display: flex;
    align-items: center;
    gap: 55px;
    padding: 0 35px 0 70px;
    box-sizing: border-box;
}

.event_fmb_popup_wrap form .form_row_radio {
    margin-bottom: 16px;
}

.event_fmb_popup_wrap form .form_row .form_row_txt {
    width: 60px;
    font-family: 'noto5';
    font-size: 17px;
    letter-spacing: -0.04em;
    text-align: center;
}

.event_fmb_popup_wrap form .form_row .form_row_txt.red {
    color: #ff3a2a;
}

.event_fmb_popup_wrap form .radio_group {
    display: flex;
    gap: 20px;
}

.event_fmb_popup_wrap form .radio_group .radio {
    display: flex;
    align-items: center;
}

.event_fmb_popup_wrap form .radio_group .radio input[type='radio'] {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    border: 1px solid #e2e2e2;
    box-sizing: border-box;
    accent-color: #ff3a2a;
}

.event_fmb_popup_wrap form .radio_group .radio span {
    padding: 5px 10px;
    box-sizing: border-box;
    background: #dfe7ff;
    font-family: 'noto6';
    font-size: 17px;
    letter-spacing: -0.04em;
    line-height: 1;
}

.event_fmb_popup_wrap form .form_row_input {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.event_fmb_popup_wrap form .form_row_input input {
    width: 358px;
    height: 45px;
    padding: 12px 14px;
    border: 1px solid #d1d1d1;
    font-family: 'noto4';
    font-size: 17px;
    letter-spacing: -0.04em;
    line-height: 1;
    box-sizing: border-box;
}

.event_fmb_popup_wrap form .form_row_input input:focus {
    border-color: #ff6f61;
    box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.2);
    outline: none;
}

.event_fmb_popup_wrap form .chkbox_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.event_fmb_popup_wrap form .chkbox_wrap .chk_input_wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 0 41px;
}

.event_fmb_popup_wrap form .chkbox_wrap .chk_input_wrap input[type='checkbox'] {
    display: none;
}

.event_fmb_popup_wrap form .chkbox_wrap .chk_input_wrap label {
    display: flex;
    position: relative;
    width: 480px;
    cursor: pointer;
    font-family: 'noto6';
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.event_fmb_popup_wrap form .chkbox_wrap .chk_input_wrap label::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    margin: 4px 14px 0 0;
    background: #fff;
}

.event_fmb_popup_wrap form .chkbox_wrap .chk_input_wrap input[type='checkbox']:checked + label::before {
    border: 1px solid #f14e4f;
    background: url('/img/event/9179/pc/input_check.png') no-repeat center center / 100% auto;
}

.event_fmb_popup_wrap form .chkbox_wrap .chk_input_wrap label em {
    margin-left: 7px;
    font-family: 'noto6';
}

.event_fmb_popup_wrap form .chkbox_wrap .chk_input_wrap label em.red {
    color: #ff3a2a;
}

.event_fmb_popup_wrap .evnet_chk_box .agree_chk_p {
    margin-bottom: 7px;
    font-size: 13px;
    letter-spacing: -0.04em;
    line-height: 1.4;
    color: #868686;
}

.event_fmb_popup_wrap .submit_btn {
    width: calc(100% - 56px);
    margin: 34px 28px 50px;
    padding: 14px;
    background-color: #ff3a2a;
    color: #fff;
    border: none;
    border-radius: 34px;
    font-family: 'noto6';
    font-size: 28px;
    letter-spacing: -0.04em;
    cursor: pointer;
}
