@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;
    margin: 0 auto;
}

.event_container .main_title {
    text-align: center;
}
.event_container .txt_white{
    color:#ffffff;
}
.event_container .main_title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    line-height: 1.2;
    letter-spacing: -0.025em;
    height: 62px;
    margin: 0 0 16px;
    padding: 0 33px;
    border-radius: 62px;
    color: #fff;
    font-size: 32px;
    font-family: 'noto6';
    background: #24b600;
}

.event_container .main_title span em {
    color: #ffec40;
}

.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.35;
    margin: 2px 0 0;
    letter-spacing: -0.05em;
    font-size: 58px;
    font-family: 'noto7';
}

.event_container .main_title h3 em {
    font: inherit;
    color: #24b600;
}

.event_container .event_noti_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 28px 0 39px 40px;
    background: #ddecd8;
}

.event_container .event_noti_box .noti_title {
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #2c4522;
    font-size: 20px;
    font-family: 'noto6';
}

.event_container .event_noti_box .noti_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    margin: 18px 0 0;
}

.event_container .event_noti_box .noti_list li {
    line-height: 1.2;
    word-break: keep-all;
    letter-spacing: -0.025em;
    color: #5a764f;
    font-size: 16px;
}

.event_container .event_noti_box .noti_list li:nth-child(odd) {
    width: 50.3%;
}

.event_container .event_noti_box .noti_list li:nth-child(even) {
    width: 49%;
}

@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(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes blink {

    0%,
    49% {
        opacity: 0;
    }

    50%,
    100% {
        opacity: 1;
    }
}

/* 탭 */
.main_tab {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main_tab .tab_list {
    display: flex;
    width: 100%;
}

.main_tab .tab_list li,
.main_tab .tab_list .btn_tab {
    width: 100%;
}

.main_tab .tab_content {
    display: none;
}

.main_tab .tab_content.is_active {
    display: flex;
    flex-direction: column;
}

/* 근거확인 */
.evidence_area {
    display: flex;
    justify-content: flex-end;
    position: relative;
    gap: 10px;
    width: 100%;
    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;
    left: initial !important;
    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;
}

.evidence_popup_area p {
    line-height: 1.8;
    text-align: left;
    word-break: keep-all;
    letter-spacing: -0.045em;
    color: #000;
    font-size: 14px;
}

/* 상단 배너 */
.event_container .event_marquee {
    background: #49df24;
    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: 70px;
}

.event_container .event_marquee .marquee_inner ul li {
    margin: 0 40px;
    font-family: 'noto6';
    font-size: 30px;
    letter-spacing: -0.025em;
    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_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 button {
    position: relative;
    display: block;
    width: 100%;
}

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

.event_container .event_floating .badge {
    position: absolute;
    top: -26px;
    left: 15px;
}

/* 타이머 */
.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: #49df24;
}

.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 {
    padding: 70px 0 138px;
    background: url('/img/event/9360/pc/top_bg.png')center top no-repeat;
}

.event_cont_1 .evidence_area {
    display: flex;
    position: absolute;
    top: 59px;
    left: 0;
    padding: 0px 24px 0 0;
}

.event_cont_1 .evidence_btn {
    width: 90px;
    height: 28px;
    opacity: 0;
}
.event_cont_1 .top_evidence{
    margin-left: 97px;
}

.event_cont_1 .tit_img{
    margin-top:126px
}
.event_cont_1 .event_slide {
    position: absolute;
    top: 420px;
    left: 0;
    width: 1100px;
    height: 739px;
    overflow: hidden;
    z-index: 1;
}
.event_cont_1 .event_slide .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: start;
}
.event_cont_1 .event_slide .event_slide_1{
    padding-left: 50px;
}
.event_cont_1 .event_slide .event_slide_2{
    padding-left: 130px;
}
.event_cont_1 .event_slide .event_slide_3{
    padding-left: 122px;
}
.event_cont_1 .event_list {
    display: flex;
    width: 1100px;
    height: 290px;
    gap: 10px;
    margin-top:294px;
    z-index: 2;
}
.event_cont_1 .event_list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    width: 100%;
    height: 100%;
    text-align: center;
    background: url('/img/event/9360/pc/top_list_bg.png') no-repeat center top / contain;
}
.event_cont_1 .event_list p {
    width: 100%;
    margin-top:20px;
    line-height: 1.42;
    letter-spacing: -0.04em;
    color: #cce4c8;
    font-size: 28px;
}

.event_cont_1 .event_list em {
    padding: 0 2px;
    color: #fff;
    font-family: 'noto6';
    background: linear-gradient(to top, #8c9600 10px, rgba(0, 0, 0, 0) 10px);
}

.event_cont_2 {
    background: #151515;
    padding: 144px 0 156px;
}
.event_cont_2 .main_title h3 em{
    color:#2fed00;
}
.event_cont_2 .reason_wrap{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px 12px;
    margin:49px auto 0;
}
.event_cont_2 .reason_cont{
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    /* height:456px; */
    padding:40px 31px;
    background:#343737;
}
.event_cont_2 .reason_cont .txt_box{
    display: flex;
    flex:1;
    flex-direction:column;
}
.event_cont_2 .reason_cont .num{
    font-size:16px;
    color:#2fed00;
    font-family:"noto5";
    letter-spacing:-1px;
}
.event_cont_2 .reason_cont h4{
    display: inline;
    align-self: flex-start;
    width:auto;
    font-size:32px;
    color:#ffffff;
    font-family:"noto4";
    letter-spacing:-1px;
    font-weight:600;
    background: linear-gradient(to top, #4d5b1b 10px, rgba(0, 0, 0, 0) 10px);
}
.event_cont_2 .reason_cont p{
    margin: 11px 0 27px;
    font-size:20px;
    color:#a8a8a8;
    font-family:'noto2';
    letter-spacing:-1px;
}
.event_cont_2 .reason_ment{
    margin:80px auto 0;
    text-align: center;
}
.event_cont_2 .reason_ment p{
    font-size:40px;
    color:#c8c8c8;
    font-family:"noto6";
    letter-spacing:-1px;
}
.event_cont_2 .reason_ment h3{
    margin-top: 2px;
    font-size: 40px;
    color:#ffffff;
    font-family: 'noto7';
    line-height: 1.2;
    font-weight:100;
}
.event_cont_2 .reason_ment h3 > em{
    display:inline-block;
    margin-top:12px;
    background:#2fed00;
    color:#000000;
    font: inherit;
}
.event_cont_3 {
    background: #e8f4e4;
}

.event_cont_3 .event_noti_box {
    position: absolute;
    top: 1096px;
    left: 0;
}

.event_cont_4 {
    padding: 144px 0 130px;
    background: #fff;
}

.event_cont_4 .main_tab {
    margin: 62px 0 0;
}

.event_cont_4 .main_tab .tab_list {
    gap: 1px;
    border-bottom: 1px solid #fff;
}

.event_cont_4 .main_tab .btn_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #999;
    font-size: 28px;
    font-family: 'noto6';
    background: #ddd;
}

.event_cont_4 .main_tab .btn_tab.is_active {
    color: #fff;
    background: #111;
}

.event_cont_4 .event_video {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 0 160px;
}

.event_cont_4 .video_box_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event_cont_4 .video_box_wrap .btn_video,
.event_cont_4 .video_box_wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.event_cont_4 .video_box_wrap .btn_video::after {
    content: '';
    position: absolute;
    top: 390px;
    right: 13px;
    width: 71px;
    height: 64px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_4 .event_coupon {
    background: #011b0c;
}

.event_cont_4 .event_coupon .main_title {
    position: absolute;
    top: 207px;
    left: 0;
    width: 100%;
    color: #fff;
}

.event_cont_4 .event_coupon .coupon_badge {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 278px;
    right: -60px;
}

.event_cont_4 .event_coupon .coupon_badge li {
    animation: floating 3s ease-in-out infinite;
}

.event_cont_4 .event_coupon .coupon_badge li:nth-child(2) {
    animation-delay: 0.2s;
}

.event_cont_4 .event_coupon .coupon_badge li+li {
    margin: -70px 0 0;
}

.event_cont_4 .event_coupon .btn_coupon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 879px;
    left: 50%;
    transform: translate(-50%, 0);
    height: 90px;
    padding: 0 57px;
    border-radius: 90px;
    letter-spacing: -0.025em;
    font-size: 28px;
    font-family: 'noto6';
    background: #33ff00;
}

.event_cont_4 .event_coupon .btn_coupon::after {
    content: '';
    position: absolute;
    bottom: -33px;
    right: -27px;
    width: 70px;
    height: 75px;
    background: url('/img/event/9209/pc/icon_cursor.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_4 .event_coupon .event_noti_box {
    position: absolute;
    top: 1054px;
    left: 0;
}

.event_cont_4 .event_coupon .event_noti {
    position: absolute;
    top: 994px;
    left: 0;
    width: 100%;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: center;
    color: #658272;
    font-size: 20px;
}

.event_cont_4 .event_product {
    padding: 129px 0 0;
}

.event_cont_4 .product_wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 39px 30px;
    margin: 62px 0 0;
    border-radius: 20px;
    background: #ededed;
}

.event_cont_4 .product_wrap+.product_wrap {
    margin: 29px 0 0;
}

.event_cont_4 .product_wrap_red+.product_wrap {
    margin: 44px 0 0;
}

.event_cont_4 .product_title {
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-align: center;
    font-size: 34px;
    font-family: 'noto6';
}

.event_cont_4 .product_title span {
    color: #ff3a2a;
    font-family: 'noto6';
}

.event_cont_4 .product_desc {
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.04em;
    font-size: 34px;
    font-family: 'noto5';
}

.event_cont_4 .product_list {
    display: flex;
    flex-direction: column;
    gap: 27px;
    width: 100%;
    margin: 35px 0 0;
}

.event_cont_4 .product_list .list_item {
    display: flex;
    position: relative;
    width: 100%;
    height: 123px;
    border: 3px solid #000;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 7px 27px 0px rgba(0, 0, 0, 0.23);
}

.event_cont_4 .product_list .item_header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 262px;
    height: 100%;
    padding: 18px 0 0;
    text-align: center;
    border-radius: 16px 0 0 16px;
    background: #ffec80;
}

.event_cont_4 .product_list .product_badge {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
}

.event_cont_4 .product_list .product_name {
    line-height: 1.1;
    padding: 0 20px;
    letter-spacing: -0.04em;
    word-break: keep-all;
    font-size: 33px;
    font-family: 'market-b';
}

.event_cont_4 .product_list .item_body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 0 32px 28px 34px;
    border-radius: 0 16px 16px 0;
}

.event_cont_4 .product_list .price_origin {
    line-height: 1.7;
    letter-spacing: -0.04em;
    color: #b1b1b1;
    font-size: 25px;
    text-decoration: line-through;
}

.event_cont_4 .product_list .price_total {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-family: 'noto6';
}

.event_cont_4 .product_list .price_total span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    height: 31px;
    padding: 0 23px;
    border-radius: 31px;
    letter-spacing: -0.04em;
    color: #fff;
    font-size: 18px;
    background: #ff3a2a;
}

.event_cont_4 .product_list .price_total p {
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-size: 45px;
    font-family: 'noto7';
}

.event_cont_4 .product_list .price_button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 252px;
    height: 67px;
    padding: 0 10px;
    border-radius: 10px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #ffdf2c;
    font-size: 25px;
    font-family: 'noto6';
    background: #000;
}

.event_cont_4 .product_list .price_button::after {
    content: '';
    position: absolute;
    bottom: -41px;
    right: -17px;
    width: 50px;
    height: 50px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0 / contain;
    animation: pointerBounceDiagonal 0.8s ease infinite;
}

.event_cont_4 .product_list .item_badge {
    position: absolute;
    top: -41px;
    right: -6px;
}

.event_cont_4 .product_list .item_badge img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    animation: blink 1s infinite;
}

.event_cont_4 .product_noti {
    margin: 29px 0 0 6px;
    opacity: 0.5;
}

.event_cont_4 .product_noti li {
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #fff;
    font-size: 16px;
}

.event_cont_4 .product_wrap_red {
    background: #ff3a2a;
}

.event_cont_4 .product_wrap_red .product_title {
    color: #ffdf2c;
}

.event_cont_4 .product_wrap_red .product_desc {
    color: #fff;
}

.event_cont_4 .product_wrap_red .product_list {
    margin-top: 43px;
}

.event_cont_4 .product_wrap_red .list_item {
    border: none;
}

.event_cont_4 .product_wrap_red .item_header {
    background: #292929;
}

.event_cont_4 .product_wrap_red .product_name {
    color: #fff;
}

.event_cont_4 .product_wrap_red .item_body {
    background: #000;
}

.event_cont_4 .product_wrap_red .price_origin {
    color: #666;
}

.event_cont_4 .product_wrap_red .price_total {
    color: #fff;
}

.event_cont_4 .product_wrap_red .price_button {
    color: #000;
    background: #ffdf2c;
}

/* 시작 영역 */
.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: 367px;
    right: 97px;
    z-index: 1;
}

.start_cont .evidence_btn {
    display: block;
    width: 82px;
    height: 28px;
    letter-spacing: -0.03em;
    font-size: 0;
    font-family: 'noto4';
    background-color: transparent;
    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 ul+ul {
    margin-top: 32px;
}

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