@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

.top_navi_new {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 63px;
    background: #fff;
}

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

.event_container img {
    display: block;
}

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

.event_container li {
    float: none;
}

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

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

.event_container .event_cont {
    position: relative;
}

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

.event_container .main_title {
    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.2;
    margin: 2px 0 0;
    letter-spacing: -0.045em;
    color: #0030ff;
    font-size: 60px;
    font-family: 'noto7';
}

@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 shakeHand {
    0%,
    100% {
        transform: rotate(3deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

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

    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* 플로팅배너 */
.event_container .event_floating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: fixed;
    top: 233px;
    right: 50px;
    width: 200px;
    height: 296px;
    padding-top: 80px;
    box-sizing: border-box;
    background: url('/img/event/9169/pc/float_bn.png') no-repeat 0 0;
    z-index: var(--z-index-floating, 10);
    transition: 0.5s;
}

.event_container .event_floating.is_fixed {
    top: 83px;
}

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

/* 타이머 */
.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;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    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;
    color: #83ebfb;
    font-size: 28px;
    font-family: 'noto6';
}

.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: 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;
    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: #83ebfb;
}

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

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

.event_cont_1 .main_inner {
    padding-top: 165px;
    box-sizing: border-box;
}

.event_cont_1 .main_title {
    font-family: 'market-m';
    font-size: 52px;
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
    color: #00126c;
}

.event_cont_1 .main_title em {
    font-family: 'market-b';
}

.event_cont_1 .sub_title {
    width: 453px;
    height: 109px;
    margin: 25px auto 10px;
    background: url('/img/event/9169/pc/top_bullet.png') center no-repeat;
}

.event_cont_1 .sub_title p {
    font-family: 'market-m';
    font-size: 34px;
    letter-spacing: -0.025em;
    line-height: 104px;
    text-align: center;
    color: #fff;
}

.event_cont_1 .sub_title p span {
    position: relative;
    display: inline-block;
    font-family: 'market-b';
    font-size: 44px;
    margin-left: 20px;
}

.event_cont_1 .sub_title p span::after {
    clear: both;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 1px;
    background: #fff;
}

.event_cont_1 .event_visual {
    animation: scale 1.2s ease-in infinite;
}

.event_cont_2 {
    height: 1476px;
    margin-top: -156px;
    background: url('/img/event/9169/pc/event_1_bg.png') no-repeat top 0 center;
}

.event_cont_2 .main_inner {
    padding-top: 419px;
    box-sizing: border-box;
}

.event_cont_2 .event_visual {
    transform: translateX(50px);
}

.event_cont_2 .btn_apply {
    position: absolute;
    bottom: 244px;
    left: 50%;
    transform: translateX(-50%);
    width: 527px;
    height: 86px;
}

.event_cont_2 .event_noti {
    position: absolute;
    bottom: 146px;
    left: 50%;
    transform: translateX(-50%);
}

.event_cont_2 .event_noti li {
    font-family: 'market-l';
    font-size: 20px;
    letter-spacing: -0.08em;
    line-height: 1.2;
    text-align: center;
    color: #494949;
}

.event_cont_3 {
    height: 1924px;
    background: #8cdfff;
}

.event_cont_3 .main_inner {
    padding-top: 145px;
    box-sizing: border-box;
}

.event_cont_3 .event_visual {
    transform: translateX(4px);
}

.event_cont_3 .event_detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    width: 1012px;
    height: 232px;
    margin-top: -63px;
    padding: 46px 74px;
    border: 3px solid #3875fe;
    border-radius: 30px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.6);
}

.event_cont_3 .event_detail .detail_item {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    font-size: 27px;
}

.event_cont_3 .event_detail .detail_item dt {
    width: 139px;
    height: 40px;
    border-radius: 40px;
    background: #0030ff;
    line-height: 43px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    font-family: 'market-b';
}

.event_cont_3 .event_detail .detail_item dd {
    line-height: 1.4;
    letter-spacing: -0.03em;
    font-family: 'noto5';
}

.event_cont_3 .btn_apply {
    width: 832px;
    height: 80px;
    margin-top: 50px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
    border-radius: 60px;
    background: #000;
    font-family: 'market-b';
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 85px;
    color: #fff;
}

.event_cont_3 .btn_apply em {
    font-family: 'market-b';
    font-size: 34px;
    letter-spacing: -0.03em;
    color: #05f4f7;
}

.event_cont_3 .event_tab {
    width: 100%;
    height: 545px;
    margin-top: 102px;
    border: 1px solid hsl(0, 0%, 56%);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.event_cont_3 .event_tab .tab_list {
    display: flex;
    width: 100%;
    height: 92px;
}

.event_cont_3 .event_tab .tab_list .list_item {
    width: 25%;
    height: 100%;
}

.event_cont_3 .event_tab .tab_list .list_item button {
    width: 100%;
    height: 100%;
    background: #bfbfbf;
    color: #fff;
}

.event_cont_3 .event_tab .tab_list .list_item button.is_active {
    background: #2871fa;
}

.event_cont_3 .event_tab .tab_list .list_item:not(:last-child) button {
    border-right: 1px solid #8f8f8f;
}

.event_cont_3 .event_tab .tab_list .list_item button p {
    margin-bottom: 3px;
    font-family: 'noto3';
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.event_cont_3 .event_tab .tab_list .list_item button .strong {
    font-family: 'noto6';
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.event_cont_3 .event_tab .tab_content {
    display: none;
    width: 100%;
    height: calc(100% - 92px);
    background: #fff;
}

.event_cont_3 .event_tab .tab_content.is_active {
    display: block;
}

.event_cont_3 .event_tab .tab_content .item {
    height: fit-content;
}

.event_cont_3 .event_tab .tab_content .item_wrap {
    display: flex;
    gap: 36px;
    position: relative;
    width: 100%;
    padding: 32px 40px;
    box-sizing: border-box;
}

.event_cont_3 .event_tab .tab_content .item_wrap::after {
    clear: both;
    content: "";
    display: block;
    position: absolute;
    bottom: -31px;
    left: 52%;
    transform: translateX(-50%);
    width: 981px;
    height: 72px;
    background: url('/img/event/9169/pc/arrow.png') center no-repeat;
}

.event_cont_3 .event_tab .tab_content .item_wrap .item_title {
    margin-bottom: 10px;
    font-family: 'noto6';
    font-size: 19px;
    letter-spacing: -0.05em;
    line-height: 1;
    text-align: center;
}

.event_cont_3 .event_tab .tab_content .item_wrap .item_price {
    margin-top: 14px;
    font-family: 'noto4';
    font-size: 21px;
    letter-spacing: -0.05em;
    line-height: 1;
    text-align: center;
    color: #bebebe;
}

.event_cont_3 .event_tab .tab_content .item_txt {
    margin: -2px auto 0;
}

.event_cont_3 .event_tab_noti {
    margin-top: 20px;
    font-family: 'noto4';
    font-size: 14px;
    letter-spacing: -0.035em;
    line-height: 1;
    color: rgba(0, 0, 0, 0.4);
}

.event_cont_4 {
    height: 1387px;
    background: #fbe569;
}

.event_cont_4 .main_inner {
    padding-top: 98px;
    box-sizing: border-box;
}

.event_cont_4 .event_visual {
    transform: translateX(22px);
}

.event_cont_4 .btn_share {
    position: absolute;
    bottom: 271px;
    left: 50%;
    transform: translateX(-50%);
    width: 604px;
    height: 86px;
}

.event_cont_4 .event_noti {
    position: absolute;
    bottom: 146px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.event_cont_4 .event_noti li {
    font-family: 'market-l';
    font-size: 20px;
    letter-spacing: -0.08em;
    line-height: 1.2;
    text-align: center;
    color: #494949;
}

.event_cont_4 .event_bubble {
    position: absolute;
    top: 470px;
    left: 0;
    animation: floating 0.8s ease-in infinite;
}

.event_cont_5 {
    height: 1210px;
    background: url('/img/event/9169/pc/reason.png') top center no-repeat;
}

.event_cont_5 .evidence_area {
    position: absolute;
    top: 267px;
    left: calc(50% + 450px);
    transform: translateX(-50%);
}

.event_cont_5 .evidence_btn {
    width: 80px;
    height: 32px;
    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 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 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 em {
    font-family: 'noto5';
}
