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

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

/* 우측 퀵메뉴 */
.event_container .event_floating_wrap {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    bottom: 105px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1400px;
    padding: 0 50px;
    z-index: var(--z-index-floating, 10);
    transition: top 0.3s ease-in-out;
    pointer-events: none;
}

.event_container.is_active .event_floating_wrap {
    bottom: 105px;
}

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

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

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

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

/* 타이머 */
.event_container .event_timer_area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 85px;
    border-top: 2px solid #ff9323;
    box-sizing: border-box;
    background: #000;
    z-index: 10;
}

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

.event_container .event_timer_area .main_inner .txt_wrap {
    margin-top: -10px;
}

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

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

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

.event_container .event_timer_area .dday_count .sdDateTimer li span {
    background: linear-gradient(to bottom, #fff 50%, #dddddd 50%);
    color: #000;
    font-size: 33px;
}

.event_container .event_timer_area .dday_count .sdDateTimer li.day:after {
    display: none;
}

.event_container .event_timer_area .banner_txt {
    font-family: 'noto5';
    font-size: 17px;
    letter-spacing: -0.065em;
    line-height: 1;
    color: #fe8100;
}

.event_container .event_timer_area .banner_title {
    display: flex;
    align-items: center;
    line-height: 1;
    padding-top: 5px;
    color: #fff;
    font-size: 32px;
    letter-spacing: -0.02em;
    font-family: 'noto7';
    font-weight: normal;
}

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

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

.event_container .event_timer_area .time_table .sdDateTimer {
    display: flex;
    align-items: center;
    height: 100%;
    margin-top: -10px;
}

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

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

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

.event_container .event_timer_area .time_table .sdDateTimer span:nth-child(2):after {
    clear: both;
    content: ':';
    display: block;
    position: absolute;
    right: -16px;
    top: 55%;
    transform: translateY(-50%);
    font-family: 'market-b';
    font-size: 32px;
    font-weight: bold;
    color: #bbbbbb;
}

.event_container .event_timer_area .time_table .sdDateTimer li:last-child span:nth-child(2):after {
    display: none;
}

.time_table .sdDateTimer .hour::after,
.time_table .sdDateTimer .min::after,
.time_table .sdDateTimer .sec::after {
    content: '';
}

.event_container .event_timer_area .btn_go {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 158px;
    height: 42px;
    line-height: 1;
    margin-left: 37px;
    margin-right: 21px;
    padding: 10px 30px;
    border-radius: 8px;
    letter-spacing: -0.08em;
    background: #ff9323;
    color: #000;
    font-size: 19px;
    font-family: 'noto6';
}

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

/* 근거확인 */
.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: 1228px;
    background: url('/img/event/9190/pc/top.png') center top no-repeat;
}

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

.event_cont_1 .top_title {
    margin-left: -5px;
    opacity: 0;
}

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

.event_cont_1 .top_clock {
    position: absolute;
    top: 26px;
    right: -101px;
}

.event_cont_2 {
    height: 1395px;
    background: url('/img/event/9190/pc/con_1.png') center top no-repeat;
}

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

.event_cont_2 .event_2_img {
    animation: floating 1s ease-in infinite;
}

.event_cont_2 .event_2_img_1 {
    position: absolute;
    top: 300px;
    left: 135px;
}

.event_cont_2 .event_2_img_1_1 {
    position: absolute;
    top: 381px;
    left: 192px;
    z-index: 1;
}

.event_cont_2 .event_2_img_2 {
    position: absolute;
    top: 485px;
    right: 36px;
}

.event_cont_2 .coupon {
    opacity: 0;
}

.event_cont_2.is_active .coupon {
    animation: up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.event_cont_2 .coupon_1 {
    margin-left: -5px;
    z-index: 1;
}

.event_cont_2 .coupon_2 {
    margin: -35px 0 0 103px;
}

.event_cont_2.is_active .coupon_2 {
    animation-delay: 0.5s;
}

.event_cont_2 #btn_event_coupon {
    position: absolute;
    bottom: 121px;
    left: 50%;
    transform: translateX(-50%);
    width: 622px;
    height: 83px;
}

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

.event_cont_3 {
    height: 1369px;
    background: url('/img/event/9190/pc/con_2.png') center top no-repeat;
}

.event_cont_3 .list_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 19px;
    position: absolute;
    top: 815px;
    left: 0;
    width: 1100px;
    height: 376px;
    padding: 71px 0 73px;
    box-sizing: border-box;
}

.event_cont_3 .list_wrap li {
    display: flex;
    align-items: center;
    gap: 19px;
    width: 653px;
    padding-left: 5px;
    box-sizing: border-box;
}

.event_cont_3 .list_wrap li:nth-child(3) {
    margin-top: 3px;
}

.event_cont_3 .list_wrap li:nth-child(4) {
    margin-top: 7px;
}

.event_cont_3 .list_wrap li .list_title {
    width: 141px;
    height: 41px;
    border-radius: 40px;
    background: #000;
    font-family: 'noto7';
    font-size: 23px;
    letter-spacing: -0.01em;
    line-height: 40px;
    text-align: center;
    color: #fff;
}

.event_cont_3 .list_wrap li .list_txt {
    margin-top: -10px;
    font-family: 'noto6';
    font-size: 24px;
    letter-spacing: -0.035em;
    line-height: 1;
}

.event_cont_3 .event_desc {
    position: absolute;
    bottom: 147px;
    left: 50.5%;
    transform: translateX(-50%);
    font-family: 'noto3';
    font-size: 14px;
    letter-spacing: -0.035em;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.event_cont_4 {
    height: 1260px;
    background: #dcdcdc;
}

.event_cont_4 .main_inner {
    padding: 127px 0 130px;
}

.event_cont_4 .main_title {
    margin-bottom: 48px;
}

.event_cont_4 .main_title p {
    font-family: 'noto4';
    font-size: 32px;
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 1;
    color: #000;
}

.event_cont_4 .main_title h3 {
    margin-top: 25px;
    font-family: 'market-b';
    font-size: 73px;
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 1;
    color: #4600a3;
}

.event_cont_4 .bene_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 32px;
    width: 100%;
}

.event_cont_4 .bene_wrap .bene {
    width: 532.5px;
    height: 260px;
    padding: 63px 0 0 34px;
    border: 2px solid #d1d1d1;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center right 55px;
}

.event_cont_4 .bene_wrap .bene_1 {
    background-image: url('/img/event/9190/pc/bene_1.png');
}

.event_cont_4 .bene_wrap .bene_2 {
    background-image: url('/img/event/9190/pc/bene_2.png');
    background-position: top 80px right 9px;
}

.event_cont_4 .bene_wrap .bene_3 {
    background-image: url('/img/event/9190/pc/bene_3.png');
    background-position: top 51px right 60px;
}

.event_cont_4 .bene_wrap .bene_4 {
    background-image: url('/img/event/9190/pc/bene_4.png');
    background-position: top 65px right 40px;
}

.event_cont_4 .bene_wrap .bene_5 {
    background-image: url('/img/event/9190/pc/bene_5.png');
    background-position: top 84px right 40px;
}

.event_cont_4 .bene_wrap .bene_6 {
    background-image: url('/img/event/9190/pc/bene_6.png');
    background-position: top 78px right 64px;
}

.event_cont_4 .bene_wrap .bene p {
    font-family: 'noto4';
    font-size: 23px;
    letter-spacing: -0.065em;
    line-height: 1;
    color: #616161;
}

.event_cont_4 .bene_wrap .bene h3 {
    margin-top: 11px;
    font-family: 'noto7';
    font-size: 36px;
    letter-spacing: -0.065em;
    line-height: 1.2;
    color: #222222;
}

.event_cont_5 {
    background: #f5f2e5;
}

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

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

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

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

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

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

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

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

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

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

/* 시작 영역 */
.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_4,
    .event_cont_5,
    .event_cont_6 {
        background-size: cover;
    }
}
