@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.045em;
    font-size: 58px;
    font-family: 'noto7';
    font-weight: normal;
}

.event_container .main_title h3 em {
    font: inherit;
}

.event_container .btn_apply {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 679px;
    height: 99px;
    padding: 0 30px;
    border-radius: 99px;
    letter-spacing: -0.035em;
    color: #fff;
    font-size: 41px;
    font-family: 'noto7';
    background: #000;
}

.event_container .btn_apply::after {
    content: '>';
    margin: 0 0 0 23px;
}

.event_container .event_noti {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 30px 0 0;
}

.event_container .event_noti li {
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.035em;
    font-size: 20px;
}

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

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

@keyframes fireworkBurst {
    0%,
    100% {
        transform: scale(0);
        opacity: 0;
    }
    5% {
        transform: scale(0.3);
        opacity: 1;
    }
    25% {
        transform: scale(1.2);
        opacity: 1;
    }
    40% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes spark {
    to {
        opacity: 0;
        transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--travel) * 1px));
    }
}

/* 우측 퀵메뉴 */
.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_marquee {
    background: #ffbdff;
    overflow: hidden;
}

.event_container .event_marquee .marquee_inner {
    display: inline-flex;
    align-items: center;
    animation: marquee 10s linear infinite;
}

.event_container .event_marquee ul {
    display: flex;
    align-items: center;
    height: 70px;
}

.event_container .event_marquee ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    line-height: 1.3;
    margin: 0 52px;
    font-family: 'noto7';
    font-size: 27px;
    letter-spacing: -0.085em;
    white-space: nowrap;
    color: #000;
}

.event_container .event_marquee ul li::before {
    content: '';
    display: block;
    width: 30px;
    height: 31px;
    background: url('/img/event/9210/pc/icon_fireworks.png') no-repeat 0 0;
}

/* 타이머 */
.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_quick_menu {
    position: relative;
    background: #e334ed;
}

.event_quick_menu.is_active {
    position: fixed;
    top: 73px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: var(--z-index-floating, 10);
    background: #e334ed;
}

.event_quick_menu > div.main_inner {
    flex-direction: row;
    align-items: stretch;
    width: 1120px;
    height: 99px;
    padding: 0;
}

.event_quick_menu .btn_quick {
    flex: 1 1 auto;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.065em;
    padding: 0 0 0 107px;
    text-align: left;
    color: #fff;
    font-size: 26px;
    font-family: 'noto7';
    background: no-repeat left center;
}

.event_quick_menu .btn_quick.is_active {
    color: #fff43c;
}

.event_quick_menu .btn_quick_1 {
    padding-left: 95px;
    background-image: url('/img/event/9210/pc/quick_img_01.png');
}

.event_quick_menu .btn_quick_2 {
    background-image: url('/img/event/9210/pc/quick_img_02.png');
}

.event_quick_menu .btn_quick_3 {
    background-image: url('/img/event/9210/pc/quick_img_03.png');
}

.event_quick_menu .btn_quick + .btn_quick::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 1px;
    height: 59px;
    background: #fff;
    opacity: 0.5;
}

.event_quick_menu .btn_quick_kakao {
    flex: 0 0 auto;
    width: 98px;
    background: #f8e049;
}

/* 컨텐츠 */
.event_cont_1 {
    background: #261e5e;
}

.event_cont_1 .visual_wrap {
    position: absolute;
    bottom: 31px;
    left: 163px;
}

.event_cont_1 .visual_wrap .visual_cake {
    position: relative;
    z-index: 2;
}

.event_cont_1 .visual_wrap .visual_candle {
    position: absolute;
    bottom: 621px;
}

.event_cont_1 .visual_wrap .visual_candle_1 {
    left: 246px;
}

.event_cont_1 .visual_wrap .visual_candle_2 {
    left: 503px;
}

.event_cont_1 .visual_wrap .candle_glow {
    position: absolute;
    top: -114px;
    left: -87px;
}

.event_cont_1 .visual_wrap .candle_wick {
    position: relative;
    z-index: 1;
}

.event_cont_1 .visual_firework {
    position: absolute;
    opacity: 0;
    animation: fireworkBurst 3.5s ease-out infinite;
    transform-origin: center;
}

.event_cont_1 .visual_firework_1 {
    top: -606px;
    right: -143px;
    width: 323px;
    animation-delay: 0.5s;
}

.event_cont_1 .visual_firework_2 {
    top: -40px;
    left: -380px;
    width: 550px;
    animation-duration: 3.6s;
    animation-delay: 1s;
}

.event_cont_1 .visual_firework_3 {
    top: -78px;
    right: -192px;
    width: 381px;
    animation-duration: 3.7s;
    animation-delay: 2s;
}

.event_cont_1 .visual_firework img {
    width: 100%;
}

.event_cont_1 .candle_sparkler {
    position: absolute;
    border-radius: 100%;
    left: 18px;
    top: -2px;
    box-shadow: 0 0 25px 25px var(rgba(245, 224, 163, 0.5));
    filter: blur(1px);
}

.event_cont_1 .sparkler_spark {
    position: absolute;
    width: 5px;
    height: 5px;
    box-shadow: 0 0 20px 4px hsl(var(--h), calc(var(--s, 100) * 1%), calc(var(--l, 50) * 1%));
    border-radius: 100%;
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, 0);
    animation: spark calc(var(--speed) * 1s) calc(var(--delay) * -1s) infinite ease;
    background: #fff;
    z-index: 2;
}

.event_cont_2 {
    min-height: 1191px;
    background: url('/img/event/9210/pc/coupon.jpg') no-repeat center top 99px, linear-gradient(to bottom, #fff 14%, #fbb7ff 88%);
}

.event_cont_2 .main_inner {
    padding: 252px 0 120px;
}

.event_cont_2 .is_active + .main_inner {
    padding-top: 351px;
}

.event_cont_2 .btn_apply {
    margin: 554px 0 0;
}

.event_cont_3 {
    min-height: 1437px;
    background: url('/img/event/9210/pc/apply.jpg') no-repeat center top, linear-gradient(to bottom, #fff 30%, #99daff 80%);
}

.event_cont_3 .main_inner {
    padding: 263px 0 100px;
}

.event_cont_3 .event_period {
    display: flex;
    width: 1084px;
    padding: 0 0 33px;
    margin: 152px 0 0;
    background: url('/img/event/9210/pc/apply_process_04.png') no-repeat center bottom / 100% auto;
}

.event_cont_3.step_1 .event_period {
    background-image: url('/img/event/9210/pc/apply_process_01.png');
}

.event_cont_3.step_2 .event_period {
    background-image: url('/img/event/9210/pc/apply_process_02.png');
}

.event_cont_3.step_3 .event_period {
    background-image: url('/img/event/9210/pc/apply_process_03.png');
}

.event_cont_3.step_4 .event_period {
    background-image: url('/img/event/9210/pc/apply_process_04.png');
}

.event_cont_3 .period_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    text-align: center;
    color: #000;
}

.event_cont_3 .period_item p {
    line-height: 1.2;
    letter-spacing: -0.045em;
    font-size: 18px;
    font-family: 'noto5';
}

.event_cont_3 .period_item strong {
    line-height: 1.2;
    letter-spacing: -0.065em;
    font-size: 25px;
    font-family: 'market-b';
}

.event_cont_3 .period_item.is_active ~ .period_item {
    color: rgba(0, 0, 0, 0.5);
}

.event_cont_3 .period_item.is_active strong {
    color: #f100ff;
}

.event_cont_3 .event_gift {
    display: flex;
    gap: 15px;
    width: 1084px;
    margin: 52px 0 0;
}

.event_cont_3 .gift_item {
    width: 100%;
}

.event_cont_3 .gift_thumb {
    position: relative;
    width: 100%;
    height: 302px;
    padding: 225px 0 0;
    border: 1px solid #7d7d7d;
    border-radius: 11px;
    text-align: center;
    background: #fff no-repeat 0 0 / cover;
}

.event_cont_3 .gift_item_1 .gift_thumb {
    background-image: url('/img/event/9210/pc/apply_gift_01.png');
}

.event_cont_3 .gift_item_2 .gift_thumb {
    background-image: url('/img/event/9210/pc/apply_gift_02.png');
}

.event_cont_3 .gift_item_3 .gift_thumb {
    background-image: url('/img/event/9210/pc/apply_gift_03.png');
}

.event_cont_3 .gift_item_4 .gift_thumb {
    background-image: url('/img/event/9210/pc/apply_gift_04.png');
}

.event_cont_3 .gift_thumb .gift_name {
    line-height: 1.2;
    letter-spacing: -0.045em;
    font-size: 18px;
}

.event_cont_3 .gift_soon {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -1px;
    right: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 2px solid #fcc1ff;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-family: 'noto7';
    background: rgba(255, 255, 255, 0.9);
}

.event_cont_3 .gift_dimmed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1.3;
    border-radius: 10px;
    text-align: center;
    letter-spacing: -0.025em;
    color: #fff;
    font-size: 25px;
    font-family: 'noto7';
    background: rgba(0, 0, 0, 0.6);
}

.event_cont_3 .gift_badge {
    display: none;
    position: absolute;
    top: -2px;
    right: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 4px solid #000;
    border-radius: 10px;
    box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.35);
}

.event_cont_3 .gift_badge img {
    position: absolute;
    top: -34px;
    left: 37px;
    animation: floating 3s ease-in-out infinite;
}

.event_cont_3 .btn_gift {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    margin: 18px 0 0;
    border: 1px solid #7d7d7d;
    border-radius: 10px;
    letter-spacing: -0.025em;
    color: #000;
    font-size: 19px;
    font-family: 'noto6';
    background: #fff;
}

.event_cont_3 .btn_gift:disabled {
    cursor: auto;
}

.event_cont_3 .btn_gift.type_end {
    display: flex;
    border-color: #000;
    color: #fff;
    background: #000;
}

.event_cont_3 .btn_gift.type_ing {
    display: none;
    border-color: #f100ff;
    color: #fff;
    font-family: 'noto7';
    background: #f100ff;
    box-shadow: 3px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.event_cont_3 .gift_item.is_active ~ .gift_item .btn_gift.type_soon,
.event_cont_3 .gift_item.is_active ~ .gift_item .gift_soon {
    display: flex;
}

.event_cont_3 .gift_item.is_active .btn_gift.type_end,
.event_cont_3 .gift_item.is_active ~ .gift_item .btn_gift.type_end,
.event_cont_3 .gift_item.is_active .gift_dimmed,
.event_cont_3 .gift_item.is_active ~ .gift_item .gift_dimmed {
    display: none;
}

.event_cont_3 .gift_item.is_active .btn_gift.type_ing,
.event_cont_3 .gift_item.is_active .gift_badge {
    display: block;
}

.event_cont_3 .event_count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    min-width: 539px;
    height: 113px;
    line-height: 1.2;
    padding: 0 30px;
    letter-spacing: -0.045em;
    padding: 8px 30px 0;
    margin: 60px 0 0;
    outline: 1px solid #fff;
    outline-offset: -5px;
    vertical-align: middle;
    color: #fff;
    font-size: 32px;
    font-family: 'market-b';
    background: #000;
}

.event_cont_3 .event_count em {
    font: inherit;
    color: #fff000;
}

.event_cont_3 .event_noti {
    margin: 35px 0 0;
}

.event_cont_4 {
    min-height: 1221px;
    background: #fabffd url('/img/event/9210/pc/course.jpg') no-repeat center top;
}

.event_cont_4 .main_inner {
    padding: 264px 0 100px;
}

.event_cont_4 .event_text {
    width: 759px;
    line-height: 1.2;
    padding: 0 200px 0 0;
    margin: 355px 0 0;
    letter-spacing: -0.045em;
    text-align: center;
    color: #8e1eff;
    font-size: 47px;
    font-family: 'market-b';
}

.event_cont_4 .event_note {
    width: 671px;
    line-height: 1.2;
    margin: 89px 0 0;
    letter-spacing: -0.035em;
    text-align: right;
    font-size: 21px;
}

.event_cont_4 .btn_apply {
    margin: 71px 0 0;
}

.event_cont_4 .event_noti {
    margin: 25px 0 0;
}

.event_cont_5 {
    min-height: 1337px;
    background: #3920f2 url('/img/event/9210/pc/share.jpg') no-repeat center top;
}

.event_cont_5 .main_inner {
    padding: 977px 0 100px;
}

.event_cont_5 .btn_share {
    margin: 0 0 0 23px;
}

.event_cont_5 .event_noti {
    margin: 0;
}

.event_cont_5 .event_noti li {
    color: #a6f6ff;
}

/* 시작 영역 */
.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;
    width: 100%;
    border-bottom: 2px solid #000;
    text-indent: -2px;
    letter-spacing: -0.08em;
    font-size: 50px;
    font-family: 'noto6';
    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;
    word-break: keep-all;
    font-family: 'noto2';
}
