@charset "utf-8";
@import url('../css/style.css');


.sub .sc_tit {
    font-weight: 700;
}

.sub p.txt {
    font-size: 12px;
    line-height: 1.25;
}

.txt_item .tit {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 30px;
}


@media screen and (min-width: 768px) {
    
}

@media screen and (min-width: 1024px) {
    .sub .sc_tit {
        font-weight: 500;
    }

    .sub p.txt {
        font-size: 18px;
        line-height: 1.5;
    }
    
    
}

/* -------------------------------------------------- about */

/* #subVisual_01 */
#subVisual_01 .tit_area {
    margin-bottom: 55px;
}

#subVisual_01 .vis_tit {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

#subVisual_01 .vis_tit > span p {
    font-weight: 900;
}

@media screen and (min-width: 1024px) {
    #subVisual_01 .tit_area {
        margin-bottom: 70px;
    }

    #subVisual_01 .vis_tit {
        font-size: 110px;
        margin-bottom: 50px;
    }

}

/* #aboutSection_01 */
#aboutSection_01 {
    background-color: var(--bg_gray);
}

#aboutSection_01 .tit_area {
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
    #aboutSection_01 .tit_area {
        margin-bottom: 100px;
    }
}

.circle_moving {
    top: 0;
    margin: 0 auto;
    width: 300px;
    height: 300px;
}

.circle_group.cg_01 {
    width: 260px;
    height: 260px;
}

.circle_group.cg_02 {
    width: 150px;
    height: 150px;
}

.circle {
    width: 50px;
    height: 50px;
}

.circle.c1,
.circle.c2,
.circle.c3,
.circle.c4 {
    background-image: none;
    z-index: 10;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    color: #fff;
    text-align: center;
    font-size: 10px;
    line-height: 1.25;
    font-weight: 500;
    padding-top: 5px;
}

.circle.c1 {
    background-color: #88A9FF;
    animation: circle_01 30s linear infinite;
}

.circle.c2 {
    background-color: #67D6EE;
    animation: circle_02 30s linear infinite;
}

.circle.c3 {
    background-color: #d9d9d9;
    animation: circle_03 30s linear infinite;
}

.circle.c4 {
    color: var(--brand);
    background-color: #fff;
    animation: circle_04 30s linear infinite;
}

@keyframes circle_01 {
    0% {
        transform: rotate(0deg) translate(-130px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translate(-130px) rotate(-360deg);
    }
}

@keyframes circle_02 {
    0% {
        transform: rotate(90deg) translate(-130px) rotate(-90deg);
    }

    100% {
        transform: rotate(450deg) translate(-130px) rotate(-450deg);
    }
}

@keyframes circle_03 {
    0% {
        transform: rotate(180deg) translate(-130px) rotate(-180deg);
    }

    100% {
        transform: rotate(540deg) translate(-130px) rotate(-540deg);
    }
}

@keyframes circle_04 {
    0% {
        transform: rotate(280deg) translate(-130px) rotate(-280deg);
    }

    100% {
        transform: rotate(640deg) translate(-130px) rotate(-640deg);
    }
}

@keyframes circle_dot_01 {
    0% {
        transform: rotate(90deg) translate(-140px) rotate(90deg);
    }

    100% {
        transform: rotate(90deg) translate(-140px) rotate(90deg);
    }
}

@keyframes circle_dot_02 {
    0% {
        transform: rotate(90deg) translate(75px) rotate(90deg);
    }

    100% {
        transform: rotate(90deg) translate(75px) rotate(90deg);
    }
}

.circle_txt {
    background-color: var(--brand);
    color: #fff;
    width: 85px;
    height: 85px;
    font-size: 10px;
}

.circle.dot {
    width: 15px;
    height: 15px;
    background: #fff;
}

@media screen and (min-width: 1024px) {
    .circle_moving {
        width: 600px;
        height: 600px;
    }
    
    .circle_group.cg_01 {
        width: 540px;
        height: 540px;
    }

    .circle_group.cg_02 {
        width: 340px;
        height: 340px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .circle.c1,
    .circle.c2,
    .circle.c3,
    .circle.c4 {
        font-size: 24px;
    }

    @keyframes circle_01 {
        0% {
            transform: rotate(0deg) translate(-270px) rotate(0deg);
        }
    
        100% {
            transform: rotate(360deg) translate(-270px) rotate(-360deg);
        }
    }
    
    @keyframes circle_02 {
        0% {
            transform: rotate(90deg) translate(-270px) rotate(-90deg);
        }
    
        100% {
            transform: rotate(450deg) translate(-270px) rotate(-450deg);
        }
    }

    @keyframes circle_03 {
        0% {
            transform: rotate(180deg) translate(-270px) rotate(-180deg);
        }
    
        100% {
            transform: rotate(540deg) translate(-270px) rotate(-540deg);
        }
    }
    
    @keyframes circle_04 {
        0% {
            transform: rotate(280deg) translate(-270px) rotate(-280deg);
        }
    
        100% {
            transform: rotate(640deg) translate(-270px) rotate(-640deg);
        }
    }
    
    @keyframes circle_dot_01 {
        0% {
            transform: rotate(90deg) translate(-270px) rotate(90deg);
        }
    
        100% {
            transform: rotate(90deg) translate(-270px) rotate(90deg);
        }
    }
    
    @keyframes circle_dot_02 {
        0% {
            transform: rotate(90deg) translate(170px) rotate(90deg);
        }
    
        100% {
            transform: rotate(90deg) translate(170px) rotate(90deg);
        }
    }

    .circle.dot {
        width: 30px;
        height: 30px;
        background: #fff;
    }

    .circle_txt {
        width: 200px;
        height: 200px;
        font-size: 30px;
    }

}


/* aboutSection_02 */
.card_list.partners .card_item {
    width: 25%;
    margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
    .card_list.partners .card_item {
        width: 12.5%;
        margin-bottom: 90px;
    }
}


/* -------------------------------------------------- marketing */
.sub.mk {
    position: relative;
}

.sub.mk::before {
    content: '';
    z-index: -1;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: url(../img/bg_marketing.webp) center center / cover no-repeat;
    opacity: .6;
}

section[id ^="mkSection"]:not(:first-child) {
    background-color: #fff;
}

/* #mkSection_01 */
#mkSection_01 .tit_area {
    text-align: center;
}

.review_list {
    width: 95%;
    margin: 0 auto;
    position: relative;
}

.review_item {
    width: 100%;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    background-color: #fff;
    justify-content: flex-start;
}

.review_item:last-child {
    margin-bottom: 0;
}

.review_item .img_box {
    width: 50px;
    height: 50px;
}

.review_item .img_box figure {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.review_item .review {
    width: calc(100% - 85px);
    padding-left: 18px;
}

.review_item .tit {
    font-size: 13px;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
    #mkSection_01 .tit_area {
        text-align: left;
    }
    
    .sticky_inner {
        display: flex;
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

    .sticky_area {
        width: calc(100% - 725px);
    }

    .sticky {
        position: sticky;
        top: 200px;
    }
    
    .review_list {
        width: 725px;
        padding: 0 100px;
        position: relative;
    }

    .review_item {
        height: 180px;
        padding: 35px 40px;
        margin-bottom: 25px;
        justify-content: center;
        border-radius: 20px;
    }

    .review_item .img_box {
        width: 85px;
        height: 85px;
    }

    .review_item .tit {
        font-size: 20px;
        margin-bottom: 10px;
    }

}

/* #mkSection_02 */
#mkSection_02 {
    background-color: var(--brand);
}

#mkSection_02 .tit_area,
#mkSection_02 .sub_tit {
    color: #fff;
}

#mkSection_02 .txt_list {
    display: block;
    margin: 0;
}

#mkSection_02 .txt_item {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
}

#mkSection_02 .txt_item > div {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    color: #fff;
    display: flex;
}

.txt_item .sns {
    width: 55px;
    height: 55px;
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 25px;
}

#mkSection_02 .txt_item .tit {
    display: none;
}

#mkSection_02 .txt_item .txt > span {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 7px;
}

.txt_item.cafe .sns {
    background-image: url(../img/ic_sns_cafe.png);
}

.txt_item.insta .sns {
    background-image: url(../img/ic_sns_insta.png);
    background-color: #fff;
    background-size: 70% auto;
    background-position: center center;
    border-radius: 10px;
}

.txt_item.blog .sns {
    background-image: url(../img/ic_sns_blog.png);
}

.txt_item.place .sns {
    background-image: url(../img/ic_sns_place.png);
}

.txt_item.kakao .sns {
    background-image: url(../img/ic_sns_kakao.png);
}

@media screen and (min-width: 1024px) {
    #mkSection_02 .txt_list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    #mkSection_02 .txt_item {
        width: 33.3333%;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .txt_item.cafe {
        order: 1;
    }

    .txt_item.insta {
        order: 2;
    }

    .txt_item.blog {
        order: 3;
    }

    .txt_item.place {
        order: 4;
    }

    .txt_item.kakao {
        order: 5;
    }

    #mkSection_02 .txt_item > div {
        background-color: #fff;
        color: #000;
        border-radius: 15px;
        padding: 50px 55px;
        flex-direction: column;
    }

    .txt_item .sns {
        width: 100%;
        height: 100px;
        margin-top: 30px;
        margin-right: 0;
        background-position: center right;
        order: 3;
    }

    .txt_item.insta .sns {
        background-color: none;
        background-size: contain;
        background-position: center right;
        border-radius: 0;
    }
    

    #mkSection_02 .txt_item .tit {
        display: block;
        order: 1;
    }
    
    #mkSection_02 .txt_item .txt {
        order: 2;
    }

    #mkSection_02 .txt_item .txt > span {
        font-size: inherit;
        font-weight: 400;
        margin-bottom: 0;
    }

}


/* #mkSection_03 */
#mkSection_03 {
    position: relative;
}

#mkSection_03::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: var(--brand);
}

.swiper.serviceSwiper {
    padding-left: 18px;
    padding-right: 18px;
}

.serviceSwiper .swiper-slide {
    width: 70%;
    margin: 0 12px; /* .swiper padding 값에 더해주기 */
}

.serviceSwiper .swiper-slide figure {
    height: 0;
    padding-bottom: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-position: top center;
}

.serviceSwiper .txt {
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .swiper.serviceSwiper {
        padding-left: calc( 50% - 700px );
        padding-right: calc( 50% - 700px );
    }

    .serviceSwiper .swiper-slide {
        width: 430px;
        margin: 0 18px; /* .swiper padding 값에 더해주기 */
    }

    .serviceSwiper .swiper-slide figure {
        height: 410px;
        padding-bottom: 0;
    }

    .serviceSwiper .txt {
        font-size: 24px;
        margin-top: 45px;
    }
}


/* #mkSection_04 */
#mkSection_04 .txt_list {
    flex-direction: column;
}

#mkSection_04 .txt_item {
    width: 100%;
    margin-bottom: 10px;
}

#mkSection_04 .txt_item > div {
    background-color: var(--brand);
    color: #fff;
    padding: 40px 0;
}

#mkSection_04 .txt_item .tit {
    margin-bottom: 0;
    font-size: 15px;
}

@media screen and (min-width: 1024px) {
    #mkSection_04 .txt_list {
        flex-direction: row;
    }

    #mkSection_04 .txt_item {
        width: 33.3333%;
        margin-bottom: 0;
    }

    #mkSection_04 .txt_item > div {
        background-color: var(--brand);
        color: #fff;
        padding: 85px 65px;
        height: 353px;
    }

    #mkSection_04 .txt_item .tit {
        margin-bottom: 30px;
        font-size: 24px;
    }
}


/* #mkSection_05 */
#mkSection_05 {
    background-color: #EEF9FF;
}

@media screen and (min-width: 1024px) {

}




/* #mkSection_06 */
#mkSection_06 .smooth_swiper .swiper-wrapper {
    padding: 8px 0;
}

#mkSection_06 .smooth_swiper .swiper-slide {
    padding: 0;
    margin: 0 4px;
    width: 95px;
    height: auto;
}

@media screen and (min-width: 1024px) {
    #mkSection_06 .smooth_swiper .swiper-wrapper {
        padding: 14px 0;
    }

    #mkSection_06 .smooth_swiper .swiper-slide {
        margin: 0 14px;
        width: 220px;
    }
    
}



/* #mkSection_07 */
#mkSection_07 {
    background: var(--brand) url(../img/bg_event_m.png) center right / cover no-repeat;
    color: #fff;
}

#mkSection_07 img {
    margin: 0 auto;
    display: block;
    width: 55%;
}

#mkSection_07 .dot_txt {
    width: 285px;
    margin: 70px auto 0;
}

#mkSection_07 .dot_txt .tit::before {
    background: url(../img/ic_dot_tit_w.png) center center / contain no-repeat;
}

#mkSection_07 .dot_txt .txt::before {
    background-color: #fff;
}

@media screen and (min-width: 1024px) {
    #mkSection_07 {
        background: var(--brand) url(../img/bg_event.png) center center / contain no-repeat;
    }

    #mkSection_07 img {
        width: auto;
    }

    #mkSection_07 .dot_txt {
        width: 420px;
    }
}


/* #subCta */
#subCta {
    background: url(../img/bg_mk_cta.webp) center center / cover no-repeat;
    height: 500px;
    color: #fff;
}

#subCta .img_box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

#subCta p {
    padding-top: 10px;
}

@media screen and (min-width: 1024px) {
    #subCta {
        height: 100vh;
        min-height: 900px;
        max-height: 1000px;
    }

    #subCta .img_box {
        width: 237px;
        height: 237px;
        margin: 0 auto 55px;
    }

    #subCta p {
        padding-top: 0;
    }
}




/* -------------------------------------------------- class */
/* #claSection_01 */
section:not(#Visual)#claSection_01 {
    padding: 0;
    height: 450px;
    color: #fff;
    position: relative;
}

section:not(#Visual)#claSection_01::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
}

.parallax-window {
    min-height: 100%;
    background: transparent;
}

#claSection_01 .tit_area {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#claSection_01 .tit_area .sc_tit {
    font-size: 18px;
}


@media screen and (min-width: 1024px) {
    section:not(#Visual)#claSection_01 {
        height: 100vh;
        min-height: 900px;
        max-height: 1000px;
    }

    #claSection_01 .tit_area .sc_tit {
        font-size: 70px;
    }
}


/* #claSection_02 */
#claSection_02 {
    background: url(../img/bg_class_02.webp) center center / cover no-repeat;
    color: #fff;
    height: 490px;
}

#claSection_02 .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#claSection_02 .tit_area {
    text-align: center;
}

#claSection_02 .sub_tit {
    color: #fff;
}

#claSection_02 .txt_area {
    align-items: center;
    flex-wrap: wrap;
}

#claSection_02 .txt_area > div {
    color: #000;
    padding: 11px 20px;
    background-color: #fff;
    border-radius: 50px;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 17px;
    margin-left: 10px;
}

#claSection_02 .txt_area > div:nth-child(5) {
    margin-right: 10%;
}

#claSection_02 .txt_area > div:nth-child(7) {
    margin-left: 20%;
    margin-bottom: 0;
}


@media screen and (min-width: 1024px) {
    #claSection_02 {
        height: auto;
    }

    #claSection_02 .inner {
        display: block;
    }

    #claSection_02 .tit_area {
        text-align: left;
    }

    #claSection_02 .txt_area > div {
        padding: 40px 80px;
        font-size: 24px;
        margin-bottom: 35px;
        margin-left: 35px;
    }

    #claSection_02 .txt_area > div:first-child {
        margin-left: 10%;
    }    

    #claSection_02 .txt_area > div:nth-child(5) {
        margin-right: 0;
    }

    #claSection_02 .txt_area > div:nth-child(7) {
        margin-right: auto;
        margin-left: 35px;
        margin-bottom: 35px;
    }

    #claSection_02 .txt_area > div:last-child {
        margin-bottom: 0;
    }
}




/* #claSection_03 */
#claSection_03 .tit_area {
    text-align: center;
}

#claSection_03 .sc_tit em {
    color: var(--brand);
}

#claSection_03 .img_box {
    border-radius: 10px;
}

#claSection_03 .class_info {
    font-size: 12px;
}

#claSection_03 .class_info .row {
    margin-top: 15px;
    flex-wrap: wrap;
}

#claSection_03 .class_info_item {
    display: flex;
    align-items: center;
    width: 50%;
}

#claSection_03 .class_info_item:not(:nth-child(n+3)) {
    margin-bottom: 10px;
}

#claSection_03 .class_info_item .tit {
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 32%;
}

#claSection_03 .class_info_item .tit > span {
    width: 15px;
    height: 15px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin-right: 5px;
}

#claSection_03 .class_info .ic_01 {
    background-image: url(../img/ic_smile_01.svg);
}

#claSection_03 .class_info .ic_02 {
    background-image: url(../img/ic_smile_02.svg);
}

#claSection_03 .class_info .ic_03 {
    background-image: url(../img/ic_smile_03.svg);
}

#claSection_03 .class_info .ic_04 {
    background-image: url(../img/ic_smile_04.svg);
}

#claSection_03 .class_info .txt_box {
    padding: 20px 25px;
    margin: 30px 0 10px;
    border-radius: 10px;
}

#claSection_03 .class_info .rt p {
    font-size: 12px;
}

#claSection_03 .dot_txt .tit {
    font-weight: 500;
    margin-bottom: 10px;
}

#claSection_03 .dot_txt .txt {
    line-height: 1.5 !important;
}

#claSection_03 .class_info .txt_box + p {
    font-size: 10px;
    color: #959595;
    display: flex;
}

#claSection_03 .class_info .txt_box + p > span {
    margin-right: 3px;
}

#claSection_03 .class_info .rt .btn_area {
    margin-top: 40px;
}

#claSection_03 .btn {
    font-size: 15px;
    height: 40px;
    max-width: 160px;
    margin: 0 auto;
}

@media screen and (min-width: 1024px) {
    #claSection_03 .tit_area {
        text-align: left;
    }

    #claSection_03 .class_info {
        font-size: 24px;
        display: flex;
        justify-content: space-between;
    }

    #claSection_03 .class_info .lt {
        width: 50%;
    }
    
    #claSection_03 .class_info .rt {
        width: 45%;
        position: relative;
    }

    #claSection_03 .class_info .row {
        justify-content: space-between;
        margin-top: 75px;
        flex-wrap: nowrap;
    }

    #claSection_03 .class_info_item {
        width: auto;
        display: block;
    }

    #claSection_03 .class_info_item:not(:nth-child(n+3)) {
        margin-bottom: 0;
    }
    

    #claSection_03 .class_info_item .tit {
        margin-bottom: 7px;
        width: auto;
    }

    #claSection_03 .class_info_item .tit > span {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    #claSection_03 .class_info .txt_box {
        padding: 30px 40px;
        margin: 40px 0 20px;
    }  

    #claSection_03 .dot_txt .tit {
        margin-bottom: 20px;
    }

    #claSection_03 .dot_txt .txt {
        line-height: 1.5 !important;
    }

    #claSection_03 .class_info .rt p {
        font-size: 24px;
    }
    

    #claSection_03 .class_info .txt_box + p {
        font-size: 20px;
    }

    #claSection_03 .class_info .txt_box + p > span {
        margin-right: 5px;
    }
    
    /* #claSection_03 .class_info .rt .btn_area {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    } */

    #claSection_03 .class_info .rt .btn_area {
        margin-top: 70px;
        position: relative;
        left: calc( 50% - 210px );
    }

    #claSection_03 .btn {
        font-size: 35px;
        height: 85px;
        min-width: 420px;
        margin: 0;
    }
}




/* #claSection_04 */
#claSection_04 {
    background-color: var(--bg_gray);
    height: 465px;
}

#claSection_04 .inner {
    height: auto;
}

.curriculum_item {
    font-size: 12px;
}

.curriculum_item .tit {
    border-bottom: 1px solid #cbcbcb;
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.curriculum_item .tit > span {
    font-size: 13px;
    display: block;
    margin-bottom: 7px;
    color: #959595;
}

.curriculum_item .subheading > div:not(:last-child) {
    margin-bottom: 10px;
}

.curriculum_item .subheading .play {
    width: 15px;
    height: 15px;
    background: url(../img/ic_play.svg) center center / contain no-repeat;
    margin-right: 7px;
}

.curriculum_item .subheading .row {
    align-items: center;
}

.curriculum_item .subheading .sh_item ul {
    margin-top: 10px;
    padding-left: 24px;
    font-size: 12px;
}

.curriculum_item .subheading .sh_item li:not(:last-child) {
    margin-bottom: 7px;
}

@media screen and (max-width: 1023px) {

    .tab_menu{
        padding: 0 30px 10px;
        margin-bottom: 25px;
        width: 100%;
        overflow-x: auto;
        display: flex;
    }
    .tab_menu ul{
        margin: 0;
        padding: 0;
    }

    .tab_menu ul + div {
        width: 30px;
        height: 100%;
    }

    .tab_menu ul li:not(:last-child) {
        margin-right: 5px;
    }

    .tab_menu ul li a{
        text-decoration: none;
        color: #959595;
        background-color: #fff;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
        border-radius: 30px;
        width: 85px;
        height: 25px;
        line-height: 25px;
        font-size: 10px;
        font-weight: 700;
        text-align: center;
        display: block;
    }
    .tab_menu ul li a.active{
        background-color: var(--brand);
        color: #fff;
    }

    .tab_menu ul li a > span:not(:nth-child(2)) {
        display: none;
    }
    .tab{
        display: none;
    }

    .tab_active {
        display: block;
    }

}


@media screen and (min-width: 1024px) {
    #claSection_04 {
        background-color: #fff;
        height: auto;
    }
    .curriculum_list {
        background-color: var(--bg_gray);
        padding: 70px 50px;
    }

    .curriculum_item {
        font-size: 28px;
    }

    .curriculum_item:not(:last-child) {
        margin-bottom: 70px;
    }
    

    .curriculum_item .tit {
        font-size: 30px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    
    .curriculum_item .tit > span {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .curriculum_item .subheading .play {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .curriculum_item .subheading > div:not(:last-child) {
        margin-bottom: 30px;
    }

    .curriculum_item .subheading .sh_item ul {
        margin-top: 15px;
        padding-left: 90px;
        font-size: 24px;
    }

    .curriculum_item .subheading .sh_item li:not(:last-child) {
        margin-bottom: 15px;
    }
    
}



/* #claSection_05 */
#claSection_05 .smooth_swiper .swiper-slide {
    width: 500px;
    height: 350px;
    padding: 40px;
    background-color: var(--bg_gray);
    box-shadow: none;
}

@media screen and (max-width: 1023px) {
    #claSection_05 .smooth_swiper .swiper-slide {
        width: 265px;
        height: 290px;
        padding: 20px;
    }
    .smooth_swiper .tit {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .smooth_swiper .txt {
        font-size: 12px;
    }

    .smooth_swiper .user_img {
        width: 50px;
        height: 50px;
    }

    .smooth_swiper .user {
        font-size: 12px;
    }

    .smooth_swiper .user b {
        font-size: 13px;
        display: block;
        margin-bottom: 7px;
    }
}


/* #claSection_06 */
#claSection_06 {
    background-color: var(--bg_gray);
}

#claSection_06 .card_item {
    position: relative;
    width: 33.3333%;
    padding: 0 2px;
    margin-bottom: 4px;
    text-align: center;
}

#claSection_06 .card_item:nth-child(n+13) {
    display: none;
}

#claSection_06 .card_item figure {
    position: relative;
}

#claSection_06 .card_item figure::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
}

#claSection_06 .card_item figure + * {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    color: #fff;
}

@media screen and (min-width: 1024px) {
    #claSection_06 .card_item {
        width: 20%;
        padding: 0 5px;
        margin-bottom: 10px;
    }

    #claSection_06 .card_item:nth-child(n+13) {
        display: block;
    }
}




/* #claSection_07 */
#claSection_07 {
    background: url(../img/bg_graph.webp) center center / cover no-repeat;
    color: #fff;
}


#claSection_07 .cont .tit {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 25px;
}

#claSection_07 .cont .tit > span {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 400;
}

#claSection_07 .row {
    flex-wrap: wrap;
}

#claSection_07 .year {
    width: 15%;
    padding-top: 110px;
    font-size: 13px;
}

.graph_area {
    width: 85%;
    height: 115px;
    margin-bottom: 55px;
    padding: 0 10px;
    border-bottom:1px solid #bebebe;
}

.graph_area ul {
    display:flex;
    justify-content:center;
    position:relative;
    padding:0;
    height:100%;
}

.graph_area .g_item {
    flex: 1;
    position: relative;
}

.graph_area .txt {
    position: absolute;
    bottom: -27px;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
    font-size: 13px;
}

.graph_area .graph {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 18px;
    height: 100%;
    overflow: hidden;
}

.graph span[class ^="data"] {
    display: block;
    position: relative;
    width: 100%;
}

.graph .data1 {
    background: linear-gradient(#898989, #000);
    z-index: 10;
    height: 10%;
}

.graph .data2 {
    background: linear-gradient(#5484FF, rgba(143, 143, 143, 0));
    z-index: 11;
    height: 0;
    transition: 1s;
}

.cont.on .lt .g_item:nth-child(1) .data2 {
    height: 50%;
}

.cont.on .lt .g_item:nth-child(2) .data2 {
    height: 75%;
}

.cont.on .lt .g_item:nth-child(3) .data2 {
    height: 60%;
}

.cont.on .lt .g_item:nth-child(4) .data2 {
    height: 70%;
}

.cont.on .lt .g_item:nth-child(5) .data2 {
    height: 100%;
}

.cont.on .lt .g_item:nth-child(6) .data2 {
    height: 100%;
}

.cont.on .rt .g_item:nth-child(1) .data2 {
    height: 55%;
}

.cont.on .rt .g_item:nth-child(2) .data2 {
    height: 65%;
}

.cont.on .rt .g_item:nth-child(3) .data2 {
    height: 50%;
}

.cont.on .rt .g_item:nth-child(4) .data2 {
    height: 60%;
}

.cont.on .rt .g_item:nth-child(5) .data2 {
    height: 70%;
}

.cont.on .rt .g_item:nth-child(6) .data2 {
    height: 100%;
}


.graph_area + .txt {
    width: 100%;
    text-align: center;
    font-size: 13px;
}

#claSection_07 .class_Swiper {
    padding-bottom: 60px;
}

#claSection_07 .class_Swiper .swiper-slide {
    width: 250px !important;
    margin: 0 calc(50% - 125px);
}

#claSection_07 .class_Swiper .swiper-pagination-bullet {
    background: #d9d9d9 !important;
    opacity: 1 !important;
}

#claSection_07 .class_Swiper .swiper-pagination-bullet-active {
    background: var(--brand) !important;
}

@media screen and (min-width: 1024px) {
    #claSection_07 .cont {
        width: 80%;
        max-width: 1040px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    
    #claSection_07 .cont > div {
        max-width: 450px;
    }

    #claSection_07 .class_Swiper .swiper-slide {
        width: 47.5% !important;
        margin: 0;
    }

    
    #claSection_07 .cont .tit {
        font-size: 40px;
        margin-bottom: 50px;
    }

    #claSection_07 .cont .tit > span {
        font-size: 24px;
        margin-bottom: 10px;
    }


    #claSection_07 .year {
        width: 20%;
        padding-top: 32%;
        font-size: 24px;
    }

    .graph_area {
        width: 80%;
        height: 170px;
        margin-bottom: 75px;
        padding: 0 20px;
    } 

    .graph_area .txt {
        bottom: -43px;
        font-size: 24px;
    }

    .graph_area .graph {
        width: 25px;
    }

    .graph_area + .txt {
        font-size: 15px;
    }
    
}




/* #claSection_08 */
#claSection_08 .txt_item > div {
    background-color: var(--brand);
    color: #fff;
    height: auto;
}

#claSection_08 .txt_item .tit {
   margin-bottom: 10px;
   font-size: 13px;
}

@media screen and (min-width: 1024px) {
    #claSection_08 .txt_item > div {
        padding: 55px 50px;
    }

    #claSection_08 .txt_item .tit {
        border-bottom: 1px solid #fff;
        margin-bottom: 27px;
        padding-bottom: 27px;
        font-size: 24px;
     }
}



/* #claSection_09 */
#claSection_09 {
    background-color: var(--brand);
    color: #fff;;
}

#claSection_09 .sub_tit {
    color: #fff;
}

#claSection_09 b {
    display: block;
}


#claSection_09 .card_item {
    width: 33.3333%;
    padding: 0 15px;
}

#claSection_09 .card_item figure {
    padding-bottom: 75%;
    border-radius: 20px;
    background-color: #fff;
    background-size: 70% auto;
}

#claSection_09 .swiper.benefits_Swiper {
    margin-bottom: 30px;
    padding: 0 15px;
}


#claSection_09 .swiper-slide figure {
    padding-bottom: 75%;
    border-radius: 20px;
}

#claSection_09 .swiper-slide figure + * {
    margin-top: 15px;
}

#claSection_09 .btn_area {
    margin-bottom: 45px;
}

#claSection_09 .btn_primary {
    background-color: #fff;
    color: var(--brand);
}

#claSection_09 .dot_txt {
    max-width: 1030px;
    margin: 0 auto;
}

#claSection_09 .dot_txt .txt::before {
    background-color: #fff;
}

#claSection_09 .dot_txt .tit {
    padding-left: 0;
}

#claSection_09 .dot_txt .tit::before {
    display: none;
}

#claSection_09 .dot_txt .txt {
    padding-left: 15px;
}

#claSection_09 .dot_txt .txt::before {
    left: 0;
}

@media screen and (max-width: 767px) {
    #claSection_09 .benefits_Swiper .swiper-slide {
        width: 80% !important;
    }

    #claSection_09 .swiper-slide figure + * b {
        font-size: 15px;
    }    
    
    #claSection_09 .btn_primary {
        font-size: 15px;
        min-width: 230px;
        height: 40px;
    }
}


@media screen and (min-width: 1024px) {
    #claSection_09 .swiper.benefits_Swiper {
        margin-bottom: 60px;
        padding-left: calc( 50% - 700px );
        padding-right: calc( 50% - 700px );
    }

    #claSection_09 .swiper-slide figure + * {
        margin-top: 30px;
    }

    #claSection_09 .btn_area {
        margin-bottom: 110px;
    }
    
    
}






/* -------------------------------------------------- #contact */
#contact {
    font-weight: 500;
}

#contact.inner {
    padding: 40px 0 75px;
}

#contact .ct_tit_01 {
    font-size: 15px;
    margin-bottom: 25px;
}

#contact .ct_tit_01 > span {
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

#contact .ct_tit_01 em {
    color: #FF0000;
}

#contact .ct_tit_02 {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 10px;
}

#contact .ct_info_group.first .ct_tit_02 {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
}


#contact .ct_tit_02 > span {
    display: block;
    color: #cbcbcb;
    margin-top: 5px;
    font-size: 10px;
}

.ct_info_group {
    padding: 25px 0;
    border-top: 1px solid #000;
}

.ct_info_list {
    padding-top: 10px;
}

.ct_info_list > div:not(:last-child),
.ct_info_list .flex_2 > div:not(:last-child) {
    margin-bottom: 45px;
}

.ct_info_list.flex {
    flex-wrap: wrap;
}

.ct_info_list.flex > div {
    width: calc( 50% - 7px );
    margin-right: 14px;
}

.ct_info_list.flex > div:nth-child(even) {
    margin-right: 0;
}

.ct_info_list.flex > div:not(:last-child) {
    margin-bottom: 14px;
}

.ct_info_group .flex {
    flex-wrap: wrap;
}

.ct_info_group .tit {
    margin-bottom: 5px;
}

.ct_info_group .tit > span,
#popup_open_btn span {
    font-weight: normal;
    color: #ff0000;
}

.ct_info_group .btn_tit {
    margin-bottom: 15px;
}

.user_check input {
    display: none;
}

.user_check input[type="checkbox"]+label {
    position: relative;
    cursor: pointer;
    width: 0;
}

.user_check input[type="checkbox"]+label::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 1px solid #000;
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 3px;
}

.user_check input[type="checkbox"]:checked+label::after {
    content: '';
    width: 17px;
    height: 17px;
    background: var(--brand) url(../img/ic_check.svg) center center / 70% auto no-repeat;
    border: 2px solid #88A9FF;
    text-align: center;
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 3px;
}

.user_check input[type="checkbox"]+label+div {
    display: block;
    line-height: 25px;
    padding-left: 20px;
}

.user_check a {
    border-bottom: 1px solid #000;
    font-weight: 600;
}

.user_check a + span {
    color: #ff0000;
}


/* checkbox & button */
.ct_info_group .ck input {
    display: none;
}

.ct_info_group .ck {
    width: calc( 50% - 7px );
    height: 26px;
}

.ct_info_group .ck:nth-child(odd) {
    margin-right: 14px;
}

.ct_info_group .m_flex_3 .ck {
    width: calc( 33.3333% - 6px );
    margin-right: 9px;
}

.ct_info_group .ck:nth-child(odd) {
    margin-right: 9px;
}

.ct_info_group .m_flex_3 .ck:nth-child(3n) {
    margin-right: 0;
}

.ct_info_group .ck:nth-child(even):not(:last-child) {
    margin-bottom: 14px;
}

.ct_info_group .ck > label {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 24px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
    padding-left: 0;
    border: 1px solid #D9D9D9;
}

.ct_info_group .ck input:checked + label {
    background-color: var(--brand);
    border-color: #88A9FF;
    color: #fff;
}

.ct_info_group .tit,
.user_check input[type="checkbox"]+label+div,
.ct_info_group .ck > label.txt {
    font-size: 13px;
}


/* auto_complete */
.ui-widget,
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: 'Pretendard', sans-serif !important;
}

.ui-widget {
    font-size: 14px!important;
}

.ui-autocomplete {
    border: 1px solid #000;
    line-height: 2;
}

.ui-menu-item div.ui-state-hover,
.ui-menu-item div.ui-state-active {
    color: #ffffff;
    text-decoration: none;
    background-color: #000;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    background-image: none;
    border: 1px solid #000;
}
/**/

/* dropdown style */
.list_unstyled {
    width: calc(50% - 7px);
    height: 26px;
    z-index: 2;
    background: url(../img/ic_arrow_bt.svg) right 13px center / 8px auto no-repeat;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.list_unstyled li {
    width: 100%;
    padding-left: 13px;
    line-height: 26px;
    font-size: 13px;
}

.list_unstyled li:not(.init) {
    display: none;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    background-color: #fff;
    z-index: 10;
}

.list_unstyled li:last-child {
    border-bottom: 1px solid #d9d9d9;
}

.list_unstyled li:not(.init):hover {
    background: var(--brand);
    color: #fff;
}

ul li.selected:not(.init) {
    background-color: #fff;
    color: #000;
}

li.init {
    cursor: pointer;
    border: 1px solid #88A9FF;
    color: #ccc;
}

li.init.on {
    color: #000;
}

@media screen and (min-width: 1024px) {
    .list_unstyled {
        height: 50px;
    }
    
    .list_unstyled li {
        line-height: 48px;
        font-size: 16px;
    }
}

/**/

.mt_place {
    margin-top: 20px;
}

.mt_place p {
    font-size: 15px;
}

.mt_place p:last-child {
    font-size: 13px;
}

.ic_place {
    display: inline-block;
    width: 17px;
    height: 24px;
    background: url(../img/ic_place.png) left center / contain no-repeat;
}

#contact .btn_area {
    margin-top: 30px;
}

#contact .btn_primary {
    width: 160px;
    height: 40px;
    margin: 0 auto;
}


@media screen and (min-width: 768px) {
    #contact .btn_primary {
        width: 220px;
    }

    .ct_info_list .flex_2 > div:not(:last-child) {
        margin-bottom: 0;
    }

    .ct_meeting.ct_info_group .ct_info_list > div:not(:last-child) {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    #contact.inner {
        padding: 130px 0 170px;
    }

    #contact .ct_tit_01 {
        font-size: 50px;
        margin-bottom: 100px;
    }

    #contact .ct_tit_01 > span {
        font-size: 24px;
    }


    #contact .ct_tit_02 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    #contact .ct_info_group.first .ct_tit_02 {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .ct_info_group .flex_2 > * {
        width: calc( 50% - 45px );
    }

    .user_check input[type="checkbox"]+label+div {
        font-size: 18px;
    }

    .ct_info_list {
        padding-top: 0;
    }

    .user_info_list.ct_info_list > div:not(:last-child) {
        margin-bottom: 51px;
    }


    .ct_info_list > div:not(:last-child) {
        margin-bottom: 0px;
    }

    /* .ct_info_list.flex > div {
        width: 55%;
    } */

    .ct_info_list.flex > div:not(:last-child) {
        margin-bottom: 45px;
    }

    .ct_info_group .tit {
        margin-bottom: 15px;
        font-size: 20px;
    }


    .ct_info_group .ck {
        width: calc( 33% - 7px );
        margin-right: 14px;
        height: 50px;
    }

    .ct_info_group .ck:nth-child(3n) {
        margin-right: 0px;
        margin-bottom: 14px;
    }

    .ct_info_group .ck > label {
        line-height: 48px;
    }

    .ct_info_group .ck > label.txt {
        font-size: 18px;
    }

    .ct_info_group .ck:nth-child(even):not(:last-child),
    .ct_info_group .ck:nth-child(even):not(:nth-child(2)) {
        margin-bottom: 0;
    }
  
    .ct_meeting.ct_info_group .ck {
        width: calc( 50% - 20px );
    }

    .ui-widget {
        font-size: 18px !important;
    }

    .mt_place {
        margin-top: 30px;
    }

    .mt_place p:last-child {
        font-size: 15px;
    }

    .user_check a {
        border-bottom: 2px solid #000;
    }

    .user_check input[type="checkbox"]+label::before {
        border: 2px solid #000;
    }

    #contact .btn_primary {
        width: 280px;
        height: 80px;
        margin: 0;
        margin-left: auto;
    }

}

@media screen and (min-width: 1280px) {
    .user_check input[type="checkbox"]+label {
        padding-left: 25px;
    }
       
    .user_check input[type="checkbox"]+label+div {
        margin-left: 0;
        padding-left: 0;
    }

    #contact .ct_tit_02 {
        font-size: 30px;
        margin-bottom: 0;
    }

    #contact .ct_info_group.first .ct_tit_02 {
        margin-bottom: 0;
    }
    
    #contact .ct_tit_02 > span {
        font-size: 18px;
        margin-top: 10px;
    }

    .ct_info_group {
        display: flex;
        margin-bottom: 65px;
        border-top: 1px solid #000;
        padding-top: 65px;
    }


    .ct_info_group .flex {
        flex-wrap: nowrap;
    }

    .ct_info_group > div:first-child {
        width: 30%;
    }

    .ct_info_group > div:last-child {
        width: 70%;
    }


    .ct_info_group .ck {
        width: calc( 16% - 7px );
    }

    .ct_info_group .ck:nth-child(3n) {
        margin-bottom: 0;
        margin-right: 14px;
    }

    .ct_info_group .ck:nth-child(6n) {
        margin-right: 0;
    }

    .ct_info_group .m_flex_3 .ck {
        width: calc( 16% - 7px );
        margin-right: 14px;
    }
    
    .ct_info_group .ck:nth-child(odd),
    .ct_info_group .m_flex_3 .ck:nth-child(3n) {
        margin-right: 14px;
    }


    .ct_info_list.flex {
        flex-wrap: wrap;
    }

    .ct_info_list.flex:not(.user_info_list) > div {
        width: 55%;
    }

    #contact .btn {
        max-width: 280px;
        margin-left: auto;
    }

}

@media screen and (min-width: 1440px) {
    .ct_meeting.ct_info_group input[type="radio"] {
        width: 150px;
    }

    .ct_info_group .ck:nth-child(even):not(:last-child) {
        margin-bottom: 0;
        margin-right: 14px;
    }
}