@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;
    list-style: 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.05em;
    font-size: 43px;
    font-family: 'noto5';
    color: #131312;
}

.event_container .main_title h3 {
    line-height: 1.2;
    margin: 2px 0 0;
    letter-spacing: -0.05em;
    color: #ff672b;
    font-size: 43px;
    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: #81ff53;
    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: 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 a {
    display: block;
    width: 100%;
}

/* 타이머 */
.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 {
    height: 2029px;
    background: linear-gradient(to bottom, #322813 55%, #feac38 77%);
}

.event_cont_1 .top_wrap {
    display: flex;
    position: relative;
    z-index: 1;
}

.event_cont_1 .top_wrap .top_check {
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
    opacity: 0;
    transform: translate(-150px, -150px);
    transition: 0.15s;
}

.event_cont_1.is_active .top_wrap .top_check {
    opacity: 1;
    transform: translate(0);
}

.event_cont_1 .top_wrap .top_teacher {
    margin: 69px 0 0 -31px;
}

.event_cont_1 .top_wrap .top_title_wrap {
    margin-top: 170px;
    transform: translateX(-120px);
}

.event_cont_1 .top_wrap .top_title_wrap p {
    margin: 0 0 28px 20px;
    font-family: 'noto5';
    font-size: 47px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: #fff;
}

.event_cont_1 .btm_wrap {
    position: relative;
    margin-top: -467px;
    z-index: 1;
}

.event_cont_1 .main_title {
    margin-bottom: 74px;
}

.event_cont_1 .main_title p {
    color: #fff;
}

.event_cont_1 .main_title h3 {
    color: #fed238;
}

.event_cont_1 .event_video {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.event_cont_1 .video_tag {
    position: absolute;
    top: 383px;
    left: 24px;
    animation: floating 0.8s ease-in infinite;
    z-index: 1;
}

.event_cont_1 .video_box_wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

.event_cont_1 .video_box_wrap .btn_video,
.event_cont_1 .video_box_wrap iframe {
    display: block;
    width: 100%;
    height: 655px;
}

/* .event_cont_1 .video_box_wrap .btn_video::after {
    content: '';
    position: absolute;
    top: 290px;
    right: 448px;
    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_1 .btn_scroll {
    position: absolute;
    bottom: 92px;
    left: 0;
    width: 691px;
    height: 92px;
}

.event_cont_1 .btn_scroll::after {
    content: '';
    position: absolute;
    top: 54px;
    right: 0;
    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_2 {
    height: 1192px;
    background: #fff;
}

.event_cont_2 .main_inner {
    padding-top: 154px;
}

.event_cont_2 .event_cont_3 {
    background: #f0f4ff;
}

.event_cont_2 .exam_list_wrap {
    width: 100%;
    margin-top: 66px;
    padding: 17px 8px 0 16px;
    border-radius: 16px;
    box-sizing: border-box;
    background: #e8dbbc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.event_cont_2 .exam_list_box {
    position: relative;
    max-height: 576px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: #988c71 !important;
    scrollbar-gutter: stable !important;
}

.event_cont_2 .exam_list {
    position: relative;
}

.event_cont_2 .exam_list + .exam_list {
    margin-top: 50px;
} 

.event_cont_2 .exam_list:last-child {
    margin-bottom: 17px;
}

.event_cont_2 .exam_list::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 197px;
    height: 194px;
    background: url('/img/event/9192/pc/stemp.png') center no-repeat;
}

.event_cont_2 .exam_list_box::-webkit-scrollbar {
    width: 10px;
}

.event_cont_2 .exam_list_box::-webkit-scrollbar-track {
    background: transparent !important;
    border-radius: 10px;
}

.event_cont_2 .exam_list_box::-webkit-scrollbar-thumb {
    width: 10px !important;
    background-color: #988c71 !important;
    border-radius: 10px;
}

.event_cont_2 .link_btn {
    display: block;
    width: 361px;
    height: 63px;
    margin: 48px auto 0;
    border-radius: 8px;
    background: #000;
    font-family: 'noto6';
    font-size: 23px;
    letter-spacing: -0.05em;
    line-height: 60px;
    text-align: center;
    color: #fff;
}

.event_cont_3 {
    height: 2028px;
    background: url('/img/event/9192/pc/teacher_info_bg.png') center no-repeat;
}

.event_cont_3 .main_inner {
    padding-top: 138px;
}

.event_cont_3 .main_title p {
    color: #fff;
}

.event_cont_3 .main_title h3 {
    color: #fed238;
}

.event_cont_3 .top_wrap {
    position: relative;
    width: 100%;
    margin-top: 67px;
}

.event_cont_3 .teacher_img {
    margin-left: -132px;
}

.event_cont_3 .teacher_info_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 28px;
    position: absolute;
    top: 90px;
    right: 0;
    width: 570px;
}

.event_cont_3 .teacher_info_wrap .teacher_info {
    opacity: 0;
    transform: translateY(100px);
    transition: 0.5s;
}

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

.event_cont_3.is_active .teacher_info_wrap .teacher_info:nth-child(2) {
    transition-delay: 0.2s;
}

.event_cont_3.is_active .teacher_info_wrap .teacher_info:nth-child(3) {
    transition-delay: 0.4s;
}

.event_cont_3.is_active .teacher_info_wrap .teacher_info:nth-child(4) {
    transition-delay: 0.6s;
}

.event_cont_3 .txt_wrap {
    position: absolute;
    top: 785px;
    left: 80px;
}

.event_cont_3 .txt_wrap p {
    font-family: 'noto3';
    font-size: 24px;
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: #fff;
}

.event_cont_3 .txt_wrap h3 {
    font-family: 'noto6';
    font-size: 30px;
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: #fff;
}

.event_cont_3 .btm_wrap {
    position: relative;
    width: 100%;
    margin-top: -345px;
}

.event_cont_3 .btm_wrap .teacher_point_title {
    margin: 0 auto 58px;
}

.event_cont_3 .teacher_point_wrap {
    display: flex;
    gap: 16px;
    width: 100%;
}

.event_cont_3 .teacher_point_wrap .teacher_point {
    width: 100%;
    height: 434px;
    padding: 27px 23px 31px 25px;
    border-radius: 20px;
    box-sizing: border-box;
    background: #fff;
    opacity: 0;
    transform: translateY(100px);
    transition: 0.5s;
    transition-delay: 1s;
}

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

.event_cont_3.event_cont_3.is_active .teacher_point_wrap .teacher_point_2 {
    transition-delay: 1.2s;
}

.event_cont_3.event_cont_3.is_active .teacher_point_wrap .teacher_point_3 {
    transition-delay: 1.4s;
}

.event_cont_3 .teacher_point_wrap .teacher_point p {
    width: 107px;
    height: 30px;
    margin: 0 auto 15px;
    border-radius: 30px;
    background: #fed238;
    font-family: 'noto6';
    font-size: 15px;
    line-height: 29px;
    text-align: center;
    color: #000;
}

.event_cont_3 .teacher_point_wrap .teacher_point h3 {
    margin-bottom: 21px;
    font-family: 'noto7';
    font-size: 29px;
    letter-spacing: -0.05em;
    line-height: 1.2;
    text-align: center;
    color: #000;
}

.event_cont_3 .teacher_point_wrap .teacher_point .point_txt li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 21px;
    font-family: 'noto4';
    font-size: 19px;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #000;
}

.event_cont_3 .teacher_point_wrap .teacher_point .point_txt li::before {
    clear: both;
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url('/img/event/9192/pc/icon_check.png') center no-repeat;
}

.event_cont_3 .teacher_point_wrap .teacher_point .point_txt li + li {
    margin-top: 11px;
}

.event_cont_3 .teacher_point_wrap .teacher_point_1 .point_txt li {
    margin-left: 29px;
}

.event_cont_3 .teacher_point_wrap .teacher_point_3 .point_txt li {
    gap: 4px;
}

.event_cont_3 .teacher_point_wrap .teacher_point .gif_wrap {
    width: 100%;
    height: 166px;
    margin-top: 30px;
    background: #858585;
}

.event_cont_3 .teacher_point_wrap .teacher_point_1 .gif_wrap {
    background: url('/img/event/9192/pc/teacher_gif_1.gif') center / 100% auto no-repeat;
}

.event_cont_3 .teacher_point_wrap .teacher_point_2 .gif_wrap {
    background: url('/img/event/9192/pc/teacher_gif_2.gif') center / 100% auto no-repeat;
}

.event_cont_3 .teacher_point_wrap .teacher_point_3 .gif_wrap {
    background: url('/img/event/9192/pc/teacher_gif_3.gif') center / 100% auto no-repeat;
}

.event_cont_4 {
    height: 1071px;
    background: #f6ebd1;
    overflow: hidden;
}

.event_cont_4 .main_inner {
    padding-top: 150px;
}

.event_cont_4 .event_marquee {
    width: 100vw;
    margin-top: 63px;
}

.event_cont_4 .event_marquee .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.event_cont_4 .event_marquee .swiper-slide {
    width: 312px !important;
    height: 167px;
    flex-shrink: 0;
    padding: 24px 0 22px;
    border-radius: 20px;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
}

.event_cont_4 .event_marquee .swiper-slide .star {
    width: 111px;
    height: 15px;
    margin: 0 auto 12px;
    background: url('/img/event/9192/pc/review_star.png') no-repeat 0 0 / 100% auto;
    transform: translateX(3px);
}

.event_cont_4 .event_marquee .swiper-slide .review_txt {
    font-family: 'noto4';
    font-size: 19px;
    letter-spacing: -0.05em;
    line-height: 1.2;
    text-align: center;
    color: #000;
}

.event_cont_4 .event_marquee .swiper-slide .user_name {
    margin-top: 10px;
    font-family: 'noto3';
    font-size: 15px;
    letter-spacing: -0.05em;
    line-height: 1;
    text-align: center;
    color: #000;
}

.event_cont_4 .review_img {
    position: relative;
    margin: -120px 0 0 83px;
    z-index: 1;
}

.event_cont_5 {
    height: 1180px;
    background: #fff;
}

.event_cont_5 .main_inner {
    padding-top: 170px;
}

.event_cont_5 .thumb_wrap {
    position: relative;
    margin-top: 69px;
}

.event_cont_5 .thumb_wrap::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: -105px;
    right: -85px;
    width: 274px;
    height: 275px;
    background: url('/img/event/9192/pc/bullet.png') center no-repeat;
}

.event_cont_5 #btn_event_apply {
    position: relative;
    width: 361px;
    height: 63px;
    margin: 71px auto 0;
    border-radius: 8px;
    background: #000;
    font-family: 'noto6';
    font-size: 23px;
    letter-spacing: -0.05em;
    line-height: 60px;
    text-align: center;
    color: #fff;
}

.event_cont_5 #btn_event_apply::after {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    top: 38px;
    right: -27px;
    width: 71px;
    height: 64px;
    background: url('/img/event/8961/pc/btn_icon.png') no-repeat 0 0;
    animation: pointerBounceDiagonal 0.8s ease infinite;
    z-index: 3;
}

.event_cont_6 {
    height: 869px;
    background: url('/img/event/9192/pc/bottom_bg.png') no-repeat center;
    overflow: hidden;
}

.event_cont_6 .main_inner {
    padding-top: 112px;
    z-index: 1;
}

.event_cont_6 .main_inner::before {
    clear: both;
    content: '';
    display: block;
    position: absolute;
    width: 1526px;
    height: 1324px;
    top: -325px;
    left: -502px;
    background: url('/img/event/9192/pc/trophy.png') center no-repeat;
    z-index: -1;
}

.event_cont_6 .main_title {
    transform: translateX(58px);
}

.event_cont_6 .main_title img {
    display: block;
    margin: 0 auto 42px;
}

.event_cont_6 .main_title p {
    letter-spacing: -0.06em;
}

.event_cont_6 .main_title h3 {
    margin: 5px 0 0 0;
    letter-spacing: -0.06em;
    color: #000;
}

.event_cont_6 .item_wrap {
    width: 100%;
    height: 325px;
    margin: 80px 0 0 5px;
    padding: 25px 30px;
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    background: #fff;
}
.event_cont_6 .item_wrap .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0 12px 20px;
    border-bottom: 1px solid #cccccc;
    box-sizing: border-box;
}
.event_cont_6 .item_wrap .item:last-child {
    border-bottom: 0;
}
.event_cont_6 .item_wrap .item .box_wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}
.event_cont_6 .item_wrap .item .box_wrap p {
    margin-bottom: 12px;
    font-family: 'noto4';
    font-size: 27px;
    letter-spacing: -0.05em;
    line-height: 1;
}
.event_cont_6 .item_wrap .item .box_wrap h3 {
    font-family: 'market-b';
    font-size: 41px;
    letter-spacing: -0.05em;
    line-height: 1;
}
.event_cont_6 .item_wrap .item .link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 202px;
    height: 90px;
    border-radius: 10px;
    background: #000;
    font-family: 'noto5';
    font-size: 24px;
    letter-spacing: -0.11em;
    line-height: 1;
    color: #fff;
}

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

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