@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;
    font-size: 50px;
}

.event_container .main_title span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 29px;
}

.event_container .main_title p {
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-family: 'noto3';
}

.event_container .main_title h3 {
    display: block;
    margin: 5px 0 0;
    letter-spacing: -0.035em;
    font: inherit;
    line-height: 1.2;
    font-family: 'noto7';
}

@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: #fd428f;
    overflow: hidden;
}
.event_container .event_marquee .marquee_inner {
    display: inline-flex;
    align-items: center;
    animation: marquee 10s linear infinite;
}
.event_container .event_marquee .marquee_inner ul {
    display: flex;
    align-items: center;
    height: 80px;
}
.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: -4px;
    width: 100%;
    z-index: var(--z-index-floating, 10);
}

.event_container .banner_bottom button::after {
    content: '';
    position: absolute;
    top: 58px;
    right: 5px;
    width: 33px;
    height: 39px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

/* 플로팅배너 */
.event_container .event_floating_wrap {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 318px;
    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 {
    top: 85px;
}

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

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

.event_container .event_floating .btn_scroll + .btn_scroll {
    margin: 25px 0 0;
}

/* 타이머 */
.event_container .event_timer_area {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 77px;
    background: url('/img/event/8955/pc/time_bg.png') center no-repeat;
    z-index: var(--z-index-floating, 10);
}

.event_container .event_timer_area .main_inner {
    flex-direction: row;
    justify-content: space-between;
    white-space: nowrap;
}

.event_container .event_timer_area p {
    line-height: 1.2;
    letter-spacing: -0.075em;
    color: #fff;
    font-size: 20px;
    font-family: 'noto4';
}

.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: 56px;
    height: 100%;
    padding-right: 50px;
}

.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 {
    width: 40px;
    height: 50px;
    line-height: 58px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-family: 'market-b';
    background: #050509;
}

.event_container .event_timer_area .event_timer > div::after {
    position: absolute;
    top: 50%;
    right: -32px;
    transform: translateY(-50%);
    letter-spacing: -0.08em;
    color: #fff;
    font-size: 22px;
    font-family: 'noto4';
}

.event_container .event_timer_area .event_timer .timer_day::after {
    content: '일';
}

.event_container .event_timer_area .event_timer .timer_hour::after {
    content: '시';
}

.event_container .event_timer_area .event_timer .timer_minute::after {
    content: '분';
}

.event_container .event_timer_area .event_timer .timer_seconds::after {
    content: '초';
}

.event_container .event_timer_area .btn_go {
    display: flex;
    align-items: center;
    position: relative;
    height: 48px;
    padding: 0 31px 0 32px;
    border-radius: 48px;
    letter-spacing: -0.035em;
    color: #000;
    font-size: 21px;
    font-family: 'noto5';
    background: #92ff66;
}

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

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

.event_cont_2 {
   background: #10172c;
}

.event_cont_2 .event_title {
    position: absolute;
    top: 113px;
    left: 0;
    width: 100%;
    text-align: center;
}

.event_cont_2 .event_title p {
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-size: 40px;
    font-family: 'noto5';
    color: #ffba13;
}

.event_cont_2 .event_title h3 {
    line-height: 1.2;
    margin: 16px 0 0;
    letter-spacing: -0.02em;
    font-size: 46px;
    font-family: 'noto7';
    color: #fff;
}

.event_cont_2 .event_history {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 40px 30px;
    position: absolute;
    top: 355px;
    right: 45px;
    width: 660px;
}

.event_cont_2 .history_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    min-height: 90px;
    line-height: 1.2;
    padding: 0 0 16px;
    letter-spacing: -0.035em;
    text-align: center;
    color: #e4d080;
    font-size: 18px;
    font-family: 'noto5';
    background: url('/img/event/9195/pc/icon_bracket.png') no-repeat center;
}

.event_cont_3 {
    min-height: 1156px;
   background: #1a4785 url('/img/event/9195/pc/cont_03_bg.jpg') no-repeat center top;
}

.event_cont_3 .main_inner {
    padding: 114px 0 20px;
}

.event_cont_3 .event_title {
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

.event_cont_3 .event_title p {
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-size: 40px;
    font-family: 'noto5';
}

.event_cont_3 .event_title h3 {
    line-height: 1.2;
    margin: 7px 0 0;
    letter-spacing: -0.035em;
    font-size: 50px;
    font-family: 'noto7';
}

.event_cont_3 .event_title em {
    font: inherit;
   color: #82a1f3;
}

.event_cont_3 .event_review {
    position: relative;
    width: 100%;
    margin: 100px 0 0;
}

.event_cont_3 .review_item {
    position: absolute;
    line-height: 1.35;
    padding: 29px 0 26px;
    border: 1px solid #536fb7;
    border-radius: 20px;
    letter-spacing: -0.035em;
    text-align: center;
    color: #fff;
    font-size: 21px;
    background: rgba(4, 24, 77, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.event_cont_3.is_active .review_item {
    opacity: 1;
    transform: translateY(0);
}

.event_cont_3 .review_item em {
    font-family: 'noto6';
}

.event_cont_3 .review_item:nth-child(1) {
    top: 0;
    left: -36px;
    width: 393px;
    transition-delay: 0s;
}

.event_cont_3 .review_item:nth-child(2) {
    top: 153px;
    left: -154px;
    width: 459px;
    transition-delay: 0.5s;
}

.event_cont_3 .review_item:nth-child(3) {
    top: 305px;
    left: -210px;
    width: 506px;
    transition-delay: 0.8s;
    height: 120px;
}

.event_cont_3 .review_item:nth-child(4) {
    top: 464px;
    left: -185px;
    width: 432px;
    transition-delay: 1.1s;
}

.event_cont_3 .review_item:nth-child(5) {
    top: 646px;
    left: -138px;
    width: 447px;
    transition-delay: 1.5s;
}

.event_cont_3 .review_item:nth-child(6) {
    top: 65px;
    right: -173px;
    width: 435px;
    transition-delay: 0.2s;
}

.event_cont_3 .review_item:nth-child(7) {
    top: 231px;
    right: -194px;
    width: 393px;
    transition-delay: 0.5s;
}

.event_cont_3 .review_item:nth-child(8) {
    top: 398px;
    right: -192px;
    width: 416px;
    transition-delay: 0.8s;
}

.event_cont_3 .review_item:nth-child(9) {
    top: 564px;
    right: -133px;
    width: 455px;
    transition-delay: 1.1s;
}

.event_cont_4 {
    min-height: 1000px;
   background: #eaeaea url('/img/event/9195/pc/cont_04_bg.jpg') no-repeat center top;
}

.event_cont_4 .main_inner {
    padding: 115px 0 20px;
}

.event_cont_4 .event_title {
    line-height: 1.2;
    letter-spacing: -0.035em;
    text-align: center;
    font-size: 50px;
    font-family: 'noto2';
}  

.event_cont_4 .event_title h3 {
    margin: 5px 0 0;
    font: inherit;
   color: #ed2e2e;
}

.event_cont_4 .event_title em {
    font-family: 'noto7';
}

.event_cont_4 .event_feature {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 38px;
    width: 1300px;
    margin: 115px 0 0;
}

.event_cont_4 .feature_item {
    width: 455px;
    height: 249px;
    padding: 35px 0 0;
    box-shadow: 0px 18px 32px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.event_cont_4 .feature_item_1 {
    background: url('/img/event/9196/pc/cont_04_feature_01.png') no-repeat 0 0 / cover;
}

.event_cont_4 .feature_item_2 {
    background: url('/img/event/9196/pc/cont_04_feature_02.png') no-repeat 0 0 / cover;
}

.event_cont_4 .feature_item_3 {
    background: url('/img/event/9196/pc/cont_04_feature_03.png') no-repeat 0 0 / cover;
}

.event_cont_4 .feature_item_4 {
    background: url('/img/event/9196/pc/cont_04_feature_04.png') no-repeat 0 0 / cover;
}

.event_cont_4 .feature_item_1 p {
    padding: 0 0 0 84px;
}

.event_cont_4 .feature_item_2 p {
    padding: 0 84px 0 0;
}

.event_cont_4 .feature_item_3 p {
    padding: 0 0 0 80px;
}

.event_cont_4 .feature_item_4 p {
    padding: 0 114px 0 0;
}

.event_cont_4 .feature_item strong {
    line-height: 1.2;
    letter-spacing: -0.035em;
    color: #fff;
    font-size: 20px;
    font-family: 'noto7';
}

.event_cont_4 .feature_item p {
    line-height: 1.42;
    margin: 43px 0 0;
    letter-spacing: -0.035em;
    word-break: keep-all;
    font-size: 19px;
    font-family: 'noto5';
}

.event_cont_5 {
   background: #fff;
}

.event_cont_5 .main_inner {
    padding: 133px 0 165px;
}

.event_cont_5 .event_video {
    position: relative;
    margin: 65px 0 0;
}

.event_cont_5 .event_video .video_box {
    position: absolute;
    top: 7px;
    left: 150px;
    width: 1100px;
    height: 486px;
}

.event_cont_5 .event_video .layer,
.event_cont_5 .event_video .start_video {
    display: block;
    width: 100%;
    height: 100%;
}

.event_cont_5 .event_list {
    display: flex;
    gap: 18px;
    width: 100%;
    margin: 19px 0 0;
}

.event_cont_5 .list_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 387px;
    padding: 29px 36px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 12px 57px 0px rgba(0, 0, 0, 0.23);
    background: #fff;
}

.event_cont_5 .list_item strong {
    display: block;
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-size: 21px;
    font-family: 'noto7';
}

.event_cont_5 .list_item img {
    display: block;
    margin: 21px 0 0;
}

.event_cont_5 .list_item div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.event_cont_5 .list_item p {
    line-height: 1.37;
    margin: 16px 0 0;
    letter-spacing: -0.035em;
    font-size: 19px;
    font-family: 'noto5';
}  

.event_cont_5 .list_item span {
     background: linear-gradient(to top, #fff9e3 12px, transparent 12px);
}

.event_cont_6 {
   background: #eaeaea url('/img/event/9196/pc/cont_06_bg.jpg') repeat-x center top;
}

.event_cont_6 .main_inner {
    padding: 111px 0 194px;
}

.event_cont_6 .btn_scroll {
    position: relative;
    display: block;
    margin: 57px 0 0;
}

.event_cont_6 .btn_scroll::after {
    content: '';
    position: absolute;
    top: 414px;
    right: 475px;
    width: 68px;
    height: 62px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_6 .event_detail {
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
    margin: 32px 0 0;
}

.event_cont_6 .detail_item {
    display: flex;
    flex-direction: column;
    gap: 54px;
    width: 100%;
}

.event_cont_6 .detail_item dt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.event_cont_6 .detail_item dt::before,
.event_cont_6 .detail_item dt::after {
    flex: 1 1 auto;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
}

.event_cont_6 .detail_item dt span {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 45px;
    border-radius: 45px;
    line-height: 1.2;
    white-space: nowrap;
    color: #fff;
    font-size: 28px;
    font-family: 'noto7';
    background: #000;
}

.event_cont_6 .detail_item dd {
    display: flex;
    justify-content: center;
    width: 100%;
}

.event_cont_6 .detail_list {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.event_cont_6 .detail_list .list_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 524px;
    height: 116px;
    padding: 0 0 0 162px;
    border-radius: 20px;
    background: no-repeat 0 0;
    box-shadow: 0px 17px 28px 0px rgba(0, 0, 0, 0.23);
}

.event_cont_6 .detail_list .list_item_1 {
    background-image: url('/img/event/9195/pc/cont_06_detail_01.png');
}

.event_cont_6 .detail_list .list_item_2 {
    background-image: url('/img/event/9195/pc/cont_06_detail_02.png');
}

.event_cont_6 .detail_list .list_item p {
     line-height: 1.45;
    letter-spacing: -0.035em;
    font-size: 22px;
}

.event_cont_6 .detail_list .list_item em {
    display: inline-block;
    font-family: 'noto7';
}

.event_cont_6 .detail_feature {
    display: flex;
    justify-content: center;
    gap: 33px;
    width: 100%;
    margin: -10px 0 0;
}

.event_cont_6 .feature_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 28px 0 36px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 17px 28px 0px rgba(0, 0, 0, 0.23);
    background: #fff;
}

.event_cont_6 .feature_item strong {
    line-height: 1.3;
    padding: 0 4px;
    letter-spacing: -0.035em;
    font-size: 22px;
    font-family: 'noto7';
    background: linear-gradient(to top, #dcf3a4 15px, transparent 15px);
}

.event_cont_6 .feature_item p {
    line-height: 1.35;
    margin: 9px 0 0;
    letter-spacing: -0.035em;
    font-size: 19px;
    font-family: 'noto5';
}

.event_cont_7 {
   background: #f8f8f8 url('/img/event/9196/pc/cont_07.bg.jpg') repeat-x center top;
}

.event_cont_7 .main_inner {
    padding: 100px 0 148px;
}

.event_cont_7 .main_title em {
    color: #ed2e2e;
}

.event_cont_7 .event_coupon {
    position: relative;
    margin: 62px 0 0;
}

.event_cont_7 .event_coupon .coupon_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 101px;
    left: 0;
    width: 100%;
    padding: 0 0 0 24px;
    text-align: center;
    color: #062764;
}

.event_cont_7 .coupon_text .text_cate {
    display: flex;
    align-items: center;
    line-height: 1.2;
    height: 57px;
    padding: 0 23px;
    border: 3px solid #062764;
    border-radius: 57px;
    letter-spacing: 0.07em;
    font-size: 34px;
    font-family: 'noto6';
}

.event_cont_7 .coupon_text .text_title {
    line-height: 1.2;
    margin: 26px 0 0;
    letter-spacing: -0.02em;
    font-size: 136px;
    font-family: 'market-b';
}

.event_cont_7 .event_note {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 22px 0 0;
    text-align: center;
}

.event_cont_7 .event_note li {
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #5c5c5c;
    font-size: 20px;
    font-family: 'noto4';
}

.event_cont_8 {
   background: #4b6dc4;
}

.event_cont_8 .main_inner {
    padding: 106px 0 128px;
}

.event_cont_8 .main_title {
    color: #fff;
}

.event_cont_8 .event_visual {
    margin: -4px 0 0;
}

.event_cont_8 .event_detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 51px;
    width: 100%;
    padding: 64px 88px 76px;
    margin: -632px 0 0;
    border-radius: 35px;
    background: #fff;
}

.event_cont_8 .detail_info {
     display: flex;
    flex-direction: column;
    gap: 27px;
    width: 100%;
} 

.event_cont_8 .detail_item {
    display: flex;
    align-items: center;
    gap: 21px;
} 

.event_cont_8 .detail_item dt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 150px;
    height: 40px;
    border: 2px solid #4458ff;
    border-radius: 45px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #4458ff;
    font-size: 20px;
    font-family: 'noto5';
}

.event_cont_8 .detail_item dd {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'noto5';
}

.event_cont_8 .detail_item dd p {
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-size: 20px;
}

.event_cont_8 .detail_item dd span {
     line-height: 1.2;
    font-size: 16px;
    color: #6d7cff;
}

.event_cont_8 .btn_event_apply {
    position: relative;
    width: 937px;
    height: 73px;
    line-height: 1.2;
    border-radius: 73px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    font-size: 35px;
    font-family: 'noto5';
    background: #000;
    box-shadow: 6px 10px 16px 0px rgba(0, 0, 0, 0.22);
}

.event_cont_8 .btn_event_apply::after {
    content: '';
    position: absolute;
    top: 33px;
    right: 110px;
    width: 70px;
    height: 60px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_9 {
   background: #fff;
}

.event_cont_9 .main_inner {
    padding: 127px 0;
}

.event_cont_9 .event_product {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin: 71px 0 0;
}

.event_cont_9 .product_item {
    position: relative;
    width: 100%;
    min-height: 140px;
    padding: 25px 0 24px 53px;
    background: linear-gradient(to right, #092249, #16256c);
} 

.event_cont_9 .product_item .item_text {
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #99ffc5;
    font-size: 25px;
    font-family: 'noto5';
}

.event_cont_9 .product_item .item_title {
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 5px 0 0;
    color: #fff;
    font-size: 46px;
    font-family: 'noto7';
}

.event_cont_9 .product_item .item_title em {
    color: #5cffa2;
}

.event_cont_9 .product_item .btn_go {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 39px;
    /* width: 189px; */
    width: 226px;
    height: 39px;
    transform: translateY(-50%);
    line-height: 1.2;
    border-radius: 38px;
    border: 1px solid #5cffa2;
    letter-spacing: -0.03em;
    color: #5cffa2;
    font-size: 17px;
    box-shadow: 0px 8px 20px 0px rgba(16, 16, 16, 0.41);;
    background: #000;
}

.event_cont_9 .product_item .btn_go::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -11px;
    width: 42px;
    height: 50px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

/* 시작 영역 */
.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;
    background: #f5f5f5;
}

.event_notice .main_inner {
    width: 1100px;
    margin: 0 auto;
}

.event_notice .notice_title {
    display: block;
    line-height: 1.1;
    width: 100%;
    border-bottom: 2px solid #000;
    text-indent: -2px;
    letter-spacing: -0.08em;
    font-size: 50px;
    font-family: 'noto5';
}

.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 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 ul + p {
    margin: 30px 0 5px;
    font-size: 20px;
    font-family: 'noto5';
}

.event_notice .btn_go {
    padding: 0 10px;
    margin: 0 6px;
    border-radius: 5px;
    font: inherit;
    color: #fff;
    background: #000;
}
