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

.event_container .cont_tit{
    font-size: 36px;
    text-align:center;
    line-height:120%;
    font-family: "noto5";
}
.event_container .cont_tit p{
    font-size: 42px;
    font-family: 'noto7';
    margin-top: 10px;
    overflow: hidden;
    line-height: 130%;
}
.txt_blue{
    color:#0252cb;
}
.txt_skyblue{
    color:#6ee5ff;
}
.highlight{
    background:#0252cb;
    color:#ffffff;
    padding: 0 3px;
}
.d-flex{
    display:flex;
    justify-content:left;
    align-items:center;
}
@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);
    }
}

/* 근거확인 */
.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_marquee {
    background: #92ff66;
    overflow: hidden;
}
.event_container .event_marquee .marquee_inner {
    display: inline-flex;
    align-items: center;
    height: 70px;
    animation: marquee 10s linear infinite;
}
.event_container .event_marquee .marquee_inner ul {
    display: flex;
    align-items: center;
}
.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;
}

/* 하단 배너 */
.event_container .banner_bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: var(--z-index-floating, 10);
}

/* 컨텐츠 */

.event_cont_1 .btn_scroll {
    position: absolute;
    top: 637px;
    left: 0;
    width: 513px;
    height: 74px;
}

.event_cont_1 .btn_scroll::after {
    content: '';
    position: absolute;
    bottom: -43px;
    right: -11px;
    width: 57px;
    height: 63px;
    background: url('/img/event/8960/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_2 {
    background: #fff;
}

.event_cont_2 .list_item {
    position: absolute;
    transform: translate(0, -30px);
    transition: all 0.5s ease;
    opacity: 0;
}

.event_cont_2 .list_item_1 {
    top: 516px;
    left: 196px;
    transition-delay: 0.2s;
}

.event_cont_2 .list_item_2 {
    top: 664px;
    left: 260px;
    transition-delay: 0.5s;
}

.event_cont_2 .list_item_3 {
    top: 815px;
    left: 198px;
    transition-delay: 0.8s;
}

.event_cont_2.is_active .list_item {
    transform: translate(0, 0);
    opacity: 1;
}

.event_cont_3 {
    background: #f1f0e9;
}

.event_cont_4 {
    background:url('/img/event/9207/pc/cont_04_bg.png')center no-repeat;
}

.event_cont_4 .book_slide {
    position: absolute;
    top: 319px;
    left: 0;
    width: 100%;
    height: 474px;
    border-radius: 27px;
    overflow: hidden;
}

.event_cont_4 .book_slide .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 35px;
    left: 0;
    gap: 8px;
    width: 100%;
    height: 28px;
    padding: 0 40px;
}
.event_cont_4 .book_slide .swiper-slide{
    padding:60px 0 0 30px;
}
.event_cont_4 .book_slide .swiper-pagination-bullet {
    width: 27px;
    height: 27px;
    margin: 0;
    border: none;
    border-radius: 50%;
    opacity: 1;
    background: #cbcbcb;
}

.event_cont_4 .book_slide .swiper-pagination-bullet-active {
    background: #0252cb;
}

.event_cont_5 {
    background: #1d519f;
}

.event_cont_7 {
    padding: 0 0 120px;
    background: #fff;
}

.event_cont_7 .btn_apply {
    position: absolute;
    top: 327px;
    right: 76px;
    width: 555px;
    height: 75px;
}

.event_cont_7 .btn_apply::after {
    content: '';
    position: absolute;
    bottom: -43px;
    right: 59px;
    width: 57px;
    height: 63px;
    background: url('/img/event/8960/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_7 .event_term {
    width: 100%;
    margin: 14px 0 0;
    border-radius: 30px;
}

.event_cont_7 .agree_header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    height: 94px;
    border: 1px solid #cecece;
    padding: 0 53px 0 60px;
    border-radius: 30px;
    background: #fff7de;
}

.event_cont_7 .event_term.is_active .agree_header {
    border-radius: 30px 30px 0 0;
}

.event_cont_7 .agree_ipt + .agree_ipt {
    margin: 0 0 0 46px;
}

.event_cont_7 .agree_ipt label {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #172951;
    font-size: 26px;
    font-family: 'noto6';
}

.event_cont_7 .agree_ipt label::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    border: 3px solid #172951;
    border-radius: 50%;
    background: #fff;
    vertical-align: middle;
}

.event_cont_7 .agree_ipt input:checked + label::before {
    background: #172951;
}

.event_cont_7 .agree_title {
    margin: 0 0 0 auto;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #172951;
    font-size: 18px;
    font-family: 'noto6';
}

.event_cont_7 .agree_title span {
    color: #cb1331;
    font: inherit;
}

.event_cont_7 .btn_open {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99px;
    height: 32px;
    line-height: 1.2;
    border-radius: 8px;
    letter-spacing: -0.05em;
    color: #fff;
    font-size: 15px;
    font-family: 'noto4';
    background: #172951;
}

.event_cont_7 .btn_open::after {
    content: '▼';
    margin: 0 0 0 2px;
}

.event_cont_7 .event_term.is_active .btn_open::after {
    content: '▲';
}

.event_cont_7 .agree_content {
    display: none;
    margin: -8px 0 0;
    padding: 40px 60px 46px;
    line-height: 2.19;
    border: 1px solid #cecece;
    border-top: none;
    border-radius: 0 0 30px 30px;
    word-break: keep-all;
    letter-spacing: -0.05em;
    color: #172951;
    font-size: 16px;
    background: #fff;
}

.event_cont_7 .event_term.is_active .agree_content {
    display: block;
}

.event_cont_7 .agree_content strong {
    font-family: 'noto6';
}

.event_cont_7 .agree_content ul {
    margin: -6px 0 6px;
    padding-left: 14px;
    counter-reset: item;
}

.event_cont_7 .agree_content li {
    display: flex;
    line-height: 1.5;
    counter-increment: item;
}

.event_cont_7 .agree_content li::before {
    content: counter(item) ') ';
    margin-right: 3px;
}

/* 시작 영역 */
.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: 48px 0 80px;
    background: #fff;
}

.event_notice .main_inner {
    width: 983px;
}

.event_notice .notice_title {
    width: 100%;
    letter-spacing: -0.05em;
    color: #254da4;
    font-family: 'noto6';
    font-size: 27px;
}

.event_notice .notice_list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
    margin: 24px 0 0;
}

.event_notice .notice_list li {
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #172951;
    font-size: 20px;
    font-family: 'noto4';
}
