@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 {
    font-family: 'noto4';
    font-size: 48px;
    letter-spacing: -0.045em;
    color: #222;
}

.event_container .main_title h3 {
    display: block;
    margin-top: 9px;
    line-height: 1.1;
    letter-spacing: -0.065em;
    font-size: 53px;
    font-family: 'noto7';
    font-weight: normal;
    color: #690af7;
}

.event_container .main_title .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 107px;
    height: 33px;
    margin: 0 auto 36px;
    border-radius: 6px;
    border: 1px solid #000;
    box-sizing: border-box;
    background: #a469fa;
    font-family: 'noto5';
    font-size: 20px;
    letter-spacing: -0.045em;
    color: #fff;
}

.event_container .main_title.dark_bg_title p {
    color: #fff;
}

.event_container .main_title.dark_bg_title h3 {
    color: #ffde25;
}

.event_container .main_title.dark_bg_title .num {
    background: #ba9f36;
}

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

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

@keyframes up {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* 플로팅배너 */
.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 5px;
    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: 95px;
}

.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: 45px 0 0;
}

.event_container .event_floating .floating_label {
    position: absolute;
    top: -25px;
    left: 7px;
    animation: floating 1.5s ease-in-out 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_cont_1 {
    height: 1536px;
    background: url('/img/event/9286/pc/visual_bg.png') center bottom no-repeat;
}

.event_cont_1 .evidence_area {
    position: absolute;
    top: 121px;
    right: 8px;
}

.event_cont_1 .evidence_btn {
    opacity: 0;
}

.event_cont_1 .visual_slide_wrap {
    position: absolute;
    top: 530px;
    left: 67px;
    width: 635px;
    height: 124px;
}

.event_cont_1 .visual_slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event_cont_1 .visual_slide .swiper-slide {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s;
}

.event_cont_1 .visual_slide .swiper-slide-active {
    opacity: 1;
}

.event_cont_1 .item_list_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 57px;
    width: 100%;
    margin-top: 970px;
}

.event_cont_1 .item_list {
    position: relative;
    width: 460px;
    height: 204px;
    padding: 45px 0 0 46px;
    border-radius: 20px;
    box-sizing: border-box;
    background: url('/img/event/9286/pc/visual_box_01.png') 0 0 no-repeat ,linear-gradient(to bottom right, #251d06 50%, #59316a);
    opacity: 0.7;
    transition: 0.5s;
}

.event_cont_1 .item_list_01 {
    background: url('/img/event/9286/pc/visual_box_01.png') 0 0 no-repeat ,linear-gradient(to bottom right, #251d06 50%, #59316a);
}

.event_cont_1 .item_list_02 {
    background: url('/img/event/9286/pc/visual_box_02.png') 0 0 no-repeat ,linear-gradient(to bottom right, #251d06 50%, #59316a);
}

.event_cont_1 .item_list_03 {
    background: url('/img/event/9286/pc/visual_box_03.png') 0 0 no-repeat ,linear-gradient(to bottom right, #251d06 50%, #59316a);
}

.event_cont_1 .item_list_04 {
    background: url('/img/event/9286/pc/visual_box_04.png') 0 0 no-repeat ,linear-gradient(to bottom right, #251d06 50%, #59316a);
}

.event_cont_1 .item_list:nth-child(2n) {
    width: 450px;
}

.event_cont_1 .item_list.is_active {
    box-shadow: 0 0 20px rgba(255, 201, 44, 0.5);
    opacity: 1;
}
.event_cont_1 .item_list.is_active::after {
    clear: both;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 20px;
    border: 4px solid #ffde25;
    pointer-events: none;
}

.event_cont_1 .item_list .num {
    font-family: 'noto3';
    font-size: 27px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffc92c;
}

.event_cont_1 .item_list .item_txt {
    margin-top: 12px;
    font-family: 'noto5';
    font-size: 24px;
    letter-spacing: -0.045em;
    line-height: 1.25;
    color: #fff;
}

.event_cont_2 {
    background: #ecd6ff;
}

.event_cont_3 {
    height: 1208px;
    background: #402197 url('/img/event/9286/pc/cont_02.png') center top no-repeat;
}

.event_cont_3 .main_inner {
    padding: 136px 0 141px;
}

.event_cont_3 .event_noti {
    width: 100%;
    margin-top: auto;
    padding: 61px 0 64px 128px;
    border-radius: 12px;
    box-sizing: border-box;
    background: #160b34;
}

.event_cont_3 .event_noti li {
    display: flex;
    color: #fff;
}

.event_cont_3 .event_noti li + li {
    margin-top: 35px;
}

.event_cont_3 .event_noti li .noti_title {
    width: 103px;
    height: 32px;
    padding: 4px 11px;
    border: 1px solid #fff;
    border-radius: 30px;
    box-sizing: border-box;
    font-family: 'noto4';
    font-size: 21px;
    line-height: 1;
    letter-spacing: -0.065em;
    color: #fff;
}

.event_cont_3 .event_noti li .noti_txt {
    margin-left: 10px;
    font-family: 'noto3';
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: -0.065em;
}

.event_cont_4 {
    height: 1240px;
    background: #431274 url('/img/event/9286/pc/cont_03.png') center top no-repeat;
}

.event_cont_4 .main_inner {
    padding: 140px 0 138px;
}

.event_cont_4 .event_desc {
    width: 100%;
    margin-top: auto;
    margin-bottom: 32px;
    padding-right: 77px;
    font-family: 'noto3';
    font-size: 14px;
    letter-spacing: -0.045em;
    line-height: 1;
    text-align: right;
    color: #fff;
    opacity: 0.7;
}

.event_cont_4 .event_noti {
    width: 100%;
    padding: 57px 0 53px 128px;
    border-radius: 12px;
    box-sizing: border-box;
    background: #160b34;
}

.event_cont_4 .event_noti li {
    display: flex;
    color: #fff;
}

.event_cont_4 .event_noti li + li {
    margin-top: 35px;
}

.event_cont_4 .event_noti li .noti_title {
    width: 103px;
    height: 32px;
    padding: 4px 11px;
    border: 1px solid #fff;
    border-radius: 30px;
    box-sizing: border-box;
    font-family: 'noto4';
    font-size: 21px;
    line-height: 1;
    letter-spacing: -0.065em;
    color: #fff;
}

.event_cont_4 .event_noti li .noti_txt {
    margin-left: 10px;
    font-family: 'noto3';
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: -0.065em;
}

.event_cont_5 {
    height: 2461px;
    background: #ecd6ff url('/img/event/9286/pc/cont_04.png') center top no-repeat;
}

.event_cont_5 .main_inner {
    padding: 140px 0 0;
}

.event_cont_5 .cont_04_img {
    margin: -33px 0 0 -48px;
}

.event_cont_5 .event_noti {
    margin-top: 61px;
}

.event_cont_5 .event_noti li {
    display: flex;
    color: #000;
}

.event_cont_5 .event_noti li:nth-child(2) {
    flex-direction: column;
    gap: 16px;
}

.event_cont_5 .event_noti li + li {
    margin-top: 32px;
}

.event_cont_5 .event_noti li .noti_title {
    width: 103px;
    height: 32px;
    padding: 4px 11px;
    border-radius: 30px;
    box-sizing: border-box;
    background: #222;
    font-family: 'noto4';
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.065em;
    text-align: center;
    color: #fff;
}

.event_cont_5 .event_noti li .noti_txt {
    margin-left: 10px;
    font-family: 'noto3';
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: -0.065em;
}

.event_cont_5 .event_noti li .step_img_wrap {
    position: relative;
    width: 100%;
}

.event_cont_5 .event_noti li .step_img_wrap .link_btn {
    position: absolute;
    bottom: 26px;
    left: 76px;
    width: 167px;
    height: 50px;
}

.event_cont_5 .review_slide_wrap {
    width: 1340px;
    height: 721px;
    margin-top: 39px;
    overflow: hidden;
}

.event_cont_5 .review_slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.event_cont_5 .review_slide .swiper-slide {
    width: 100%;
    height: 721px;
}

.event_cont_5 .review_slide .swiper-slide img {
    max-width: 1123px;
    width: 100%;
    margin: 0 auto;
}

.event_cont_5 .review_slide .swiper-button-prev,
.event_cont_5 .review_slide .swiper-button-next {
    top: 48%;
    width: 95px;
    height: 120px;
}

.event_cont_5 .review_slide .swiper-button-prev {
    background: url('/img/event/9286/pc/arrow_prev.png') center no-repeat;
}

.event_cont_5 .review_slide .swiper-button-next {
    background: url('/img/event/9286/pc/arrow_next.png') center no-repeat;
}

.event_cont_6 {
    height: 1950px;
    background: #fff;
}

.event_cont_6 .main_inner {
    padding: 140px 0 0;
}

.event_cont_6 .cont_05_img {
    margin: -197px 0 0 0;
}

.event_cont_6 .event_noti {
    margin-top: -206px;
}

.event_cont_6 .event_noti li {
    display: flex;
    color: #000;
}

.event_cont_6 .event_noti li:nth-child(2) {
    flex-direction: column;
    gap: 16px;
}

.event_cont_6 .event_noti li + li {
    margin-top: 32px;
}

.event_cont_6 .event_noti li .noti_title {
    width: 103px;
    height: 32px;
    padding: 4px 11px;
    border-radius: 30px;
    box-sizing: border-box;
    background: #222;
    font-family: 'noto4';
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.065em;
    text-align: center;
    color: #fff;
}

.event_cont_6 .event_noti li .noti_txt {
    margin-left: 10px;
    font-family: 'noto3';
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: -0.065em;
}

.event_cont_6 .event_noti li .step_img_wrap {
    position: relative;
    width: 100%;
}

.event_cont_6 .event_noti li .step_img_wrap .link_btn {
    position: absolute;
    bottom: 26px;
    left: 76px;
    width: 167px;
    height: 50px;
}

/* 합격 영상 슬라이드 : s */
.hab_hugi_wrap {
    width: auto;
    position: relative;
    overflow: hidden;
	margin-top: 7px;
}

.hab_hugi_wrap .title {
    position: relative;
    width: 1100px;
    margin: 0 auto;
}

.hab_hugi_wrap .animation_wrap {
    margin-top: 110px;
    height: 424px;
    display: inline-flex;
    flex-wrap: nowrap;
    animation: 30s linear 0s infinite normal none running animat;
}

@keyframes animat {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hab_hugi_wrap .animation_wrap:hover {
    animation-play-state: paused;
}

.hab_hugi_wrap .animation_wrap li {
    transition: 0.3s;
}

.hab_hugi_wrap .animation_wrap li:hover {
    transform: translateY(-30px);
}

.hab_hugi_wrap .popupVideo {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.hab_hugi_wrap .popupVideo > a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}

.hab_hugi_wrap .popupVideo > a:focus {
    outline: none;
}
/* 합격 영상 슬라이드 : e */

.event_cont_7 {
    height: 1694px;
    background: #ebebeb;
}

.event_cont_7 .main_inner {
    padding: 142px 0 150px;
}

.event_cont_7 .main_title p {
    font-family: 'noto5';
}

.event_cont_7 .main_tab {
    width: 100%;
    margin-top: 62px;
}

.event_cont_7 .main_tab .tab_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 27px;
}

.event_cont_7 .main_tab .tab_list .btn_tab {
    width: 212px;
    height: 76px;
    border-radius: 8px;
    background: #bfbfbf;
    font-family: 'noto5';
    font-size: 24px;
    letter-spacing: -0.065em;
    line-height: 1 ;
    color: #dcdcdc;
}

.event_cont_7 .main_tab .tab_list .btn_tab.is_active {
    background: #690af7;
    color: #fff;
}

.event_cont_7 .main_tab .tab_list .btn_tab:first-child {
    margin-left: 0.1px;
}

.event_cont_7 .tab_content {
    display: none;
    width: 100%;
    padding: 55px 55px 70px 70px;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(34, 16, 50, 0.1);
    background: #fff;
}

.event_cont_7 .tab_content.is_active {
    display: block;
}

.event_cont_7 .tab_content .noti_step_wrap {
    width: 100%;
    height: 100%;
}

.event_cont_7 .tab_content .noti_title {
    width: fit-content;
    padding: 7px 25px;
    border: 2px solid #909090;
    border-radius: 30px;
    box-sizing: border-box;
    font-family: 'noto6';
    font-size: 21px;
    letter-spacing: -0.065em;
    line-height: 1;
    color: #222222;
}

.event_cont_7 .tab_content .noti_step_wrap ul {
    display: flex;
    width: 100%;
    margin-top: 21px;
    padding-left: 20px;
    box-sizing: border-box;
}

.event_cont_7 .tab_content .noti_step_wrap ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 190px;
}

.event_cont_7 .tab_content .noti_step_wrap ul li .icon {
    width: 130px;
    height: 129px;
    background-position: center;
    background-repeat: no-repeat;
}

.event_cont_7 .tab_content_001132 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001132 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_02.png');
}

.event_cont_7 .tab_content_001132 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001132 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001132 .noti_step_wrap ul .noti_step_05 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_05.png');
}

.event_cont_7 .tab_content_001092 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001092 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_06.png');
}

.event_cont_7 .tab_content_001092 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001092 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001092 .noti_step_wrap ul .noti_step_05 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_05.png');
}

.event_cont_7 .tab_content_001110 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001110 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_06.png');
}

.event_cont_7 .tab_content_001110 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001110 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001011 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001011 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_06.png');
}

.event_cont_7 .tab_content_001011 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001011 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001108 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001108 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_02.png');
}

.event_cont_7 .tab_content_001108 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001108 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001138 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001138 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_02.png');
}

.event_cont_7 .tab_content_001138 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001138 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001067 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001067 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_07.png');
}

.event_cont_7 .tab_content_001067 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_05.png');
}

.event_cont_7 .tab_content_001067 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001067 .noti_step_wrap ul .noti_step_05 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001058 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001058 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_02.png');
}

.event_cont_7 .tab_content_001058 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001058 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content_001058 .noti_step_wrap ul .noti_step_05 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_05.png');
}

.event_cont_7 .tab_content_001059 .noti_step_wrap ul .noti_step_01 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_01.png');
}

.event_cont_7 .tab_content_001059 .noti_step_wrap ul .noti_step_02 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_02.png');
}

.event_cont_7 .tab_content_001059 .noti_step_wrap ul .noti_step_03 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_03.png');
}

.event_cont_7 .tab_content_001059 .noti_step_wrap ul .noti_step_04 .icon {
    background-image: url('/img/event/9286/pc/cont_06_icon_04.png');
}

.event_cont_7 .tab_content .noti_step_wrap ul li p {
    display: flex;
    gap: 6px;
    margin-top: 15px;
    font-family: 'noto6';
    font-size: 20px;
    letter-spacing: -0.065em;
    line-height: 1.2;
    text-align: left;
    color: #000;
}

.event_cont_7 .tab_content .noti_step_wrap ul li p::before {
    clear: both;
    content: "1";
    display: block;
    width: 23px;
    height: 23px;
    border-radius: 4px;
    background: #000;
    font-family: 'noto6';
    font-size: 19px;
    letter-spacing: -0.065em;
    line-height: 23px;
    text-align: center;
    color: #fff;
}

.event_cont_7 .tab_content .noti_step_wrap ul .noti_step_01 p::before {
    content: "1";
}

.event_cont_7 .tab_content .noti_step_wrap ul .noti_step_02 p::before {
    content: "2";
}

.event_cont_7 .tab_content .noti_step_wrap ul .noti_step_03 p::before {
    content: "3";
}

.event_cont_7 .tab_content .noti_step_wrap ul .noti_step_04 p::before {
    content: "4";
}

.event_cont_7 .tab_content .noti_step_wrap ul .noti_step_05 p::before {
    content: "5";
}

.event_cont_7 .tab_content .noti_wrap {
    width: 100%;
    margin-top: 33px;
}

.event_cont_7 .tab_content .noti_wrap .noti_list_wrap {
    margin-top: 20px;
    padding-left: 38px;
}

.event_cont_7 .tab_content .noti_wrap .noti_list_wrap p {
    font-family: 'noto6';
    font-size: 14px;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #4b4b4b;
}

.event_cont_7 .tab_content .noti_wrap .noti_list {
    margin-top: 3px;
    font-family: 'noto4';
    font-size: 14px;
    letter-spacing: -0.025em;
    line-height: 1.55;
    color: #4b4b4b;
}

.event_cont_7 .tab_content .noti_wrap .noti_list a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: 110px;
    height: 24px;
    margin-left: 5px;
    padding: 0 10px 0 8px;
    border: 1px solid #000;
    border-radius: 4px;
    box-sizing: border-box;
    background: #f7efff;
    font-family: 'noto4';
    font-size: 14px;
    letter-spacing: -0.04em;
    line-height: 24px;
    color: #000;
}

.event_cont_7 .tab_content .noti_wrap .noti_list a span {
    font-size: 6px;
}

.event_cont_7 .tab_content .noti_wrap .noti_list + p {
    margin-top: 24px;
}

.gift_review_cont {
    width: 100%;
    margin-top: 0;
    padding: 129px 0 190px;
    overflow: hidden;
}

.gift_review_cont .main_title .icon {
    display: block;
    margin: 0 auto;
    transform: translateX(-10px);
}

.gift_review_cont .gift_slide {
    margin-top: 90px;
    width: 100%;
    height: 424px;
}

.gift_review_cont .gift_slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.gift_review_cont .gift_slide li {
    width: 360px;
    height: 410px;
    margin-right: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.gift_review_cont .gift_slide li .img_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 195px;
    background: linear-gradient(to right, #e6e9f8, #dde9ff);
    overflow: hidden;
}

.gift_review_cont .gift_slide li .txt_wrap {
    padding: 29px 31px;
    box-sizing: border-box;
}

.gift_review_cont .gift_slide li .txt_wrap .bullet {
    padding: 0 11px;
    border: 1px solid #7c87ff;
    border-radius: 50px;
    font-family: 'noto4';
    font-size: 16px;
    letter-spacing: -0.065em;
    line-height: 1;
    color: #7c87ff;
}

.gift_review_cont .gift_slide li .txt_wrap .review_title {
    width: 298px;
    margin: 14px 0;
    font-family: 'noto7';
    font-size: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #000;
    overflow: hidden;
}

.gift_review_cont .gift_slide li .txt_wrap .hash_txt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 42px;
    font-family: 'noto4';
    font-size: 16px;
    text-overflow: ellipsis;
    letter-spacing: -0.045em;
    line-height: 1.3;
    color: #a1a1a1;
    overflow: hidden;
}

.gift_review_cont .gift_slide li .txt_wrap .txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.gift_review_cont .gift_slide li .txt_wrap .txt p {
    font-family: 'noto4';
    font-size: 18px;
    letter-spacing: -0.065em;
    line-height: 1;
    color: #000;
}
/* 합격수기 페이지 : e */

/* 경품 리뷰 팝업 : s */
.gift_modal_cont {
	display: none;
    align-items: center;
    justify-content: center;
	position: fixed;
	top: 50%;
	left: 50%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
	transform: translate(-50%, -50%);
    z-index: var(--z-index-toast, 500);
}
.gift_modal_cont .gift_modal_wrap {
	width: 600px;
	max-height: 584px;
	border: 1px solid #000;
	background: #fff;
}
.gift_modal_cont .gift_modal_wrap .modal_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 20px;
	background: linear-gradient(to right, #541ec2, #a01ec2);
	font-family: 'noto7';
	font-size: 16px;
	letter-spacing: -0.065em;
	line-height: 1;
	color: #fff;
}
.gift_modal_cont .gift_modal_wrap .modal_head .close_btn {
	border: 0;
	background: transparent;
	font-family: 'noto5';
	font-size: 18px;
	color: #fff;
}
.gift_modal_cont .gift_modal_wrap .modal_contents {
	width: 100%;
	max-height: 730px;
	padding: 40px 60px 50px;
	box-sizing: border-box;
}
.gift_modal_cont .gift_modal_wrap .modal_content {
	width: 100%;
	max-height: 445px;
	overflow: auto;
}
.gift_modal_cont .gift_modal_wrap .modal_content::-webkit-scrollbar {
	display: none;
}
.gift_modal_cont .gift_modal_wrap .modal_contents .review_info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
	font-family: 'noto4';
	font-size: 15px;
	letter-spacing: -0.065em;
	color: #000;
}
.gift_modal_cont .gift_modal_wrap .modal_contents .review_info .gift_review_date span {
    padding-right: 5px;
}
.gift_modal_cont .gift_modal_wrap .modal_contents table {
	width: 100%;
	margin-top: 10px;
	border: 1px solid #000;
	font-family: 'noto4';
	font-size: 14px;
	letter-spacing: -0.065em;
	color: #000;
}
.gift_modal_cont .gift_modal_wrap .modal_contents table tr:not(:last-child) {
	border-bottom: 1px solid #d1d1d1;
}
.gift_modal_cont .gift_modal_wrap .modal_contents table th {
	width: 100px;
	padding: 10px;
	box-sizing: border-box;
	background: #f1f1f1;
}
.gift_modal_cont .gift_modal_wrap .modal_contents table td {
	padding: 10px;
	box-sizing: border-box;
}
.gift_modal_cont .gift_modal_wrap .modal_contents table td .keyword_wrap {
	display: flex;
	gap: 10px 4px;
}
/* 경품 리뷰 팝업 : e */

/* 유의사항 */
.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: 'noto5';
    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;
    font-family: 'noto2';
}

@media (min-width: 2560px) {
    .event_cont_1,
    .event_cont_2,
    .event_cont_3,
    .event_cont_4,
    .event_cont_5,
    .event_cont_6 {
        background-size: cover;
    }
}
