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

.event_container .screen_out {
    display: none;
}

.event_container img {
    display: block;
}

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

.event_container li {
    float: none;
}

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

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

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

.event_container .event_cont {
    position: relative;
    width: 100%;
}

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

.event_container .main_title {
    text-align: center;
}

.event_container .main_title .point {
    position: relative;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 16px 45px;
    border: 1px solid #000;
    border-radius: 50px;
    background: linear-gradient(to right, #f4d52b, #ffcb2e);
    font-family: 'noto6';
    font-size: 23px;
    letter-spacing: -0.015em;
    line-height: 1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 1);
    color: #000;
}

.event_container .main_title .point::before {
    content: '';
    display: block;
    position: absolute;
    top: -66px;
    left: -32px;
    width: 114px;
    height: 107px;
    background: url('/img/event/9330/pc/title_icon.png') center no-repeat;
}

.event_container .main_title p {
    letter-spacing: -0.06em;
    color: #000;
    font-size: 40px;
    font-family: 'noto2';
    text-align: center;
}

.event_container .main_title h3 {
    margin-top: 22px;
    line-height: 1.3;
    letter-spacing: -0.045em;
    font-size: 55px;
    color: #000;
    font-family: 'noto7';
    text-align: center;
}

.event_container .main_title p.white_txt,
.event_container .main_title h3.white_txt {
    color: #fff;
}

.event_container .main_title h3.gradient_txt {
    margin-top: 0;
    background: linear-gradient(45deg, #ffe440, #ffb11e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

@keyframes up {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes down {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes colorChange {
    0%,
    49% {
        background: #ff4343;
        color: #fff;
    }
    50%,
    100% {
        background: #ffc10b;
        color: #000;
    }
}

/* 근거확인 */
.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_container .event_timer_area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 84px;
    border: 1px solid #282828;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-sizing: border-box;
    background: #ff7daf;
    z-index: 10;
}

.event_container .event_timer_area .main_inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 1100px;
    height: 100%;
    padding: 0 47px 0 44px;
    border-radius: 16px;
    box-sizing: border-box;
    white-space: nowrap;
}

.event_container .event_timer_area .dayTxt {
    font-size: 43px;
    color: #ffffff;
    font-family: 'noto6';
    line-height: 40px;
    margin-bottom: 5px;
    margin-right: 10px;
    margin-left: 6px;
}

.event_container .event_timer_area .dday_count {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.event_container .event_timer_area .banner_txt {
    padding: 3px 7px 4px 13px;
    border-radius: 30px;
    background: #fcff00;
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-size: 21px;
    font-family: 'noto6';
    color: #d10050;
}

.event_container .event_timer_area .banner_txt em {
    font-family: 'noto6';
}

.event_container .event_timer_area .banner_title {
    display: flex;
    align-items: center;
    line-height: 1;
    padding-top: 5px;
    font-size: 21px;
    letter-spacing: -0.025em;
    font-family: 'noto6';
    font-weight: normal;
    text-indent: 16px;
    color: #fff;
}

.event_container .event_timer_area .banner_title span {
    font-family: 'noto7';
    color: #fff;
}

.event_container .event_timer_area .time_table .clock_img {
    display: block;
    margin: -10px 20px 0 0;
}

.event_container .event_timer_area .time_table .sdDateTimer {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    /* margin: 0 0 0 55px; */
    padding: 0 0 0 27px;
}

.event_container .event_timer_area .time_table .sdDateTimer ul,
.event_container .event_timer_area .time_table .sdDateTimer li {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.event_container .event_timer_area .time_table .sdDateTimer li {
    gap: 6px;
    padding-right: 0;
    margin-right: 0;
}

.event_container .event_timer_area .time_table .sdDateTimer li::after {
    right: -12px;
    top: 47%;
    line-height: 1.2;
    color: #000;
    font-size: 32px;
    font-family: 'noto7';
}

/* .event_container .event_timer_area .time_table .sdDateTimer li.day {
    margin: 0 20px 0 0;
} */

.event_container .event_timer_area .time_table .sdDateTimer li.day::after {
    content: ':';
    /* right: -32px; */
}

.event_container .event_timer_area .time_table .sdDateTimer li.hour::after,
.event_container .event_timer_area .time_table .sdDateTimer li.min::after {
    content: ':';
}

.event_container .event_timer_area .time_table .sdDateTimer li.sec::after {
    content: '';
}

.event_container .event_timer_area .time_table .sdDateTimer span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 62px;
    padding-top: 8px;
    border-radius: 10px;
    box-sizing: border-box;
    /* background: linear-gradient(to bottom, #ffffff 50%, #dddddd 50%); */
    background: #fff;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
    line-height: 68px;
    text-align: center;
    color: #000;
    font-size: 35px;
    font-family: 'market-b';
}

.event_container .event_timer_area .btn_go {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 237px;
    height: 49px;
    line-height: 1;
    margin-left: auto;
    padding: 10px 30px;
    border-radius: 18px;
    letter-spacing: -0.05em;
    background: #000;
    color: #fff;
    font-size: 21px;
    font-family: 'noto6';
    text-indent: 8px;
}

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

/* 컨텐츠 */
.wing_menu {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-30%);
    z-index: 2;
    width: 193px;
    height: 524px;
    background: url('/img/event/9330/pc/wing.png') center / contain no-repeat;
}

.wing_menu a {
    display: block;
    width: 100%;
    height: 162px;
    margin-bottom: 10px;
    font-size: 0;
}

.event_cont_1 {
    height: 1170px;
    background: url('/img/event/9330/pc/top_bg.png') center top no-repeat;
}

.event_cont_1 .main_inner {
}

.event_cont_1 .top_title_img {
    margin-left: 211px;
}

.event_cont_1 .event_bullet {
    position: absolute;
    top: 0;
    left: -188px;
    animation: down 0.8s ease;
}

.event_cont_1 .evidence_area {
    position: absolute;
    top: 83px;
    right: 118px;
}

.event_cont_1 .evidence_btn {
    height: 27px;
    padding: 6px 12px 1px;
    opacity: 0;
}

.event_cont_2 {
    height: 1000px;
    background: url('/img/event/9321/pc/con4_bg.png') center / cover no-repeat;
}

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

.event_cont_2 .main_title .sub_ment {
    margin: 0 auto;
    font-size: 40px;
    font-family: 'noto2';
    font-weight: 100;
    letter-spacing: -2px;
}

.event_cont_2 .main_title h3 {
    font-size: 73px;
}

.event_cont_2 .main_title h3.white_txt {
    margin: 82px auto 2px;
    font-family: 'noto4';
    text-indent: -6px;
}

.event_cont_3 {
    height: 1045px;
    padding: 108px 0 0;
    background: #333441;
}

.event_cont_3 .main_title h3 {
    font-size: 50px;
}

.event_cont_3 .img_area {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1100px;
    margin: 58px 0 0 -5px;
}

.event_cont_3 .con1_txt3 {
    position: absolute;
    left: 378px;
    top: 238px;
    z-index: 1;
}

.event_cont_3 .con1_txt2 {
    margin-left: -20px;
}

.event_cont_4 {
    height: 1611px;
    background: linear-gradient(to bottom, #061d55, #2432b4);
}

.event_cont_4 .main_inner {
    padding: 146px 0 161px;
}

.event_cont_4 .main_title p {
    letter-spacing: -0.045em;
}

.event_cont_4 .main_title h3.gradient_txt {
    margin-top: -5px;
}

.event_cont_4 .event_list_wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 24px;
    width: 100%;
    margin-top: 106px;
}

.event_cont_4 .event_list_wrap .event_list {
    position: relative;
    width: 100%;
    height: 477px;
    padding-top: 49px;
    border: 4px solid #fff;
    border-radius: 30px;
    box-sizing: border-box;
    background: #fff url('/img/event/9330/pc/event_03_img_1.png') center no-repeat;
    transition: 0.5s;
}

.event_cont_4 .event_list_wrap .event_list.is_active {
    border: 4px solid #ffc10b;
}

.event_cont_4 .event_list_wrap .event_list_1 {
    background-image: url('/img/event/9330/pc/event_03_img_1.png');
}

.event_cont_4 .event_list_wrap .event_list_2 {
    background-image: url('/img/event/9330/pc/event_03_img_2.png');
}

.event_cont_4 .event_list_wrap .event_list_3 {
    background-image: url('/img/event/9330/pc/event_03_img_3.png');
}

.event_cont_4 .event_list_wrap .event_list_4 {
    background-image: url('/img/event/9330/pc/event_03_img_4.png');
}

.event_cont_4 .event_list_wrap .event_list .point {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    padding: 12px 24px;
    border-radius: 50px;
    background: #0f55ff;
    font-family: 'noto6';
    font-size: 20px;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #fff;
    transition: 0.5s;
}

.event_cont_4 .event_list_wrap .event_list.is_active .point {
    background: #ffc10b;
    color: #000;
}

.event_cont_4 .event_list_wrap .event_list h3 {
    font-family: 'noto7';
    font-size: 30px;
    letter-spacing: -0.045em;
    line-height: 1.2;
    text-align: center;
    color: #000;
}

.event_cont_4 .event_list_wrap .event_list h3 em {
    font: inherit;
    color: #0f55ff;
}

.event_cont_5 {
    height: 1461px;
    background: url('/img/event/9330/pc/event_04_bg.png') bottom center no-repeat;
}

.event_cont_5 .main_title {
    margin: 138px 0 0;
}

.event_cont_5 .main_title p {
    letter-spacing: -0.045em;
}

.event_cont_5 .coupon_wrap {
    margin: -6px 0 0 30px;
}

.event_cont_5 .btn_coupon {
    position: relative;
    width: 605px;
    height: 84px;
    margin: 22px 0 0 23px;
    border: 3px solid #000;
    border-radius: 16px;
    box-sizing: border-box;
    background: #ffec49;
    font-family: 'noto7';
    font-size: 30px;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #000;
}

.event_cont_5 .btn_coupon::after {
    content: '';
    position: absolute;
    top: 54px;
    right: 0;
    width: 71px;
    height: 64px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_5 .event_noti {
    margin-top: 33px;
    font-family: 'noto4';
    font-size: 18px;
    letter-spacing: -0.025em;
    line-height: 1.3;
    text-align: center;
    color: #ffffff;
    opacity: 0.3;
}

.event_cont_6 .main_inner {
    padding: 142px 0 162px;
}

.event_cont_6 .main_title p {
    font-family: 'noto4';
    font-size: 45px;
    letter-spacing: -0.045em;
}

.event_cont_6 .main_title h3 {
    margin-top: 8px;
    font-size: 50px;
    letter-spacing: -0.045em;
}

.event_cont_6 .product_content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 15px;
    width: 100%;
    margin: 64px auto 0;
}

.event_cont_6 .product_content .product_item {
    display: grid;
    gap: 16px;
    justify-content: center;
    align-items: center;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    padding: 15px;
}

.event_cont_6 .product_item b {
    font-family: 'noto7';
    font-size: 23px;
    letter-spacing: -0.045em;
    line-height: 1.2;
    text-align: center;
}

.event_cont_6 .product_item b em {
    font: inherit;
    color: #ff4343;
}

.event_cont_6 .product_item .item_price {
    display: flex;
    align-items: center;
}

.event_cont_6 .product_item .item_price .price_badge {
    width: fit-content;
    margin-right: auto;
    padding: 5px 8px;
    border-radius: 4px;
    background: #ff4343;
    font-family: 'noto4';
    font-size: 16px;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #fff;
    animation: colorChange 1.2s ease infinite;
}

.event_cont_6 .product_item .item_price .price_origin {
    position: relative;
    font-family: 'noto4';
    font-size: 18px;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #747474;
}

.event_cont_6 .product_item .item_price .price_origin::before,
.event_cont_6 .product_item .item_price .price_origin::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.event_cont_6 .product_item .item_price .price_origin::before {
    left: 55%;
    transform: translateX(-50%);
    width: 110%;
    height: 2px;
    background: #8f98a2;
}

.event_cont_6 .product_item .item_price .price_origin::after {
    top: 52%;
    right: -12%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #8f98a2;
    border-right: 2px solid #8f98a2;
    transform: translateY(-50%) rotate(45deg);
    box-sizing: border-box;
}

.event_cont_6 .product_item .item_price .price_total {
    margin: 0 8px 0 13px;
    font-family: 'noto7';
    font-size: 28px;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #ff4343;
}

.event_cont_6 .product_item .link_btn {
    width: 100%;
    height: 48px;
    background: #337cfd;
    border-radius: 6px;
    font-size: 20px;
    color: #ffffff;
    font-family: 'noto6';
    line-height: 48px;
    letter-spacing: -1px;
    text-align: center;
}

.event_cont_7 {
    height: 1068px;
    background: #000 url('/img/event/9330/pc/event_06_bg.png') center top no-repeat;
}

.event_cont_7 .main_inner {
    padding: 161px 0 0;
}

.event_cont_7 .event_06_img {
    margin: -156px 0 0 -74px;
}

.event_cont_7 .event_noti {
    position: absolute;
    bottom: 47px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'noto4';
    font-size: 18px;
    letter-spacing: -0.045em;
    line-height: 1.3;
    text-align: center;
    color: #000;
    opacity: 0.6;
}

.event_brandcont {
    height: 1082px;
    background: #000 url('/img/event/9254/pc/cont_03.png') center top no-repeat;
}

.event_brandcont .evidence_area {
    position: absolute;
    top: 221px;
    right: 96px;
}

.event_brandcont .evidence_area .evidence_btn {
    width: 84px;
    height: 29px;
    opacity: 0;
}

/* 시작 영역 */
.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 {
    position: relative;
    transform: translateX(25px);
    z-index: 1;
}
.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.065em;
    font-size: 52px;
    font-family: 'noto7';
    color: #ff8200;
}
.start_cont .start_list {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 15px;
    width: 100%;
    margin: 86px 0 0 56px;
}
.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: 90px;
    right: -9px;
    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: #3c3424;
    line-height: 1.1;
    padding: 6px 6px 1px;
    border: 1px solid #ff8200;
    border-radius: 3px;
    letter-spacing: -0.025em;
    color: #ff8200;
    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';
    line-height: 1.5;
}

.event_notice .notice_list {
    width: 100%;
    margin-top: 46px;
}

.event_notice .notice_list .list_item + .list_item {
    margin-top: 37px;
}

.event_notice .notice_list .list_item dt {
    line-height: 1.2;
    letter-spacing: -0.08em;
    font-size: 30px;
    font-family: 'noto6';
}

.event_notice .notice_list .list_item dd {
    display: block;
    width: 100%;
    line-height: 34px;
    margin-top: 9px;
    letter-spacing: -0.08em;
    font-size: 18px;
    font-family: 'noto2';
}

.event_notice .notice_list .list_item dd + dt {
    margin-top: 30px;
}

.event_notice .notice_list .list_item p {
    font-family: 'noto2';
}

.event_notice .notice_list .list_item ul {
    padding-left: 10px;
}

.event_notice .notice_list .list_item li {
    float: none;
    font-family: 'noto2';
}

@media (min-width: 2560px) {
    .event_cont_1,
    .event_cont_2,
    .event_cont_21,
    .event_cont_3,
    .event_cont_4,
    .category_url_list,
    .event_cont_6 {
        background-size: cover;
    }
}
