@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@media all and (min-width:768px) {
    .smallBannerMobile{display: none}
    
    * {
        padding: 0;
        margin: 0;
    }

    body {
        font-family: 'Noto Sans KR', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        list-style: none;
    }

    button img,
    img {
        vertical-align: middle;
    }

    ul li { 
        list-style: none;
    }

    a {
        color: #000000;
        text-decoration: none;
        cursor: pointer;
    }

    input,
    label,
    button,
    select,
    textarea {
        cursor: pointer;
        font-family: 'Noto Sans KR', sans-serif;
        font-size: 14px;
        font-weight: 400;
    }


    /* 공통 css 시작 */
    .headerWrap,
    .menuTopArea,
    .menuLoginArea,
    .menuQuickArea,
    .noticeArea {
        margin: 0 auto;
        padding: 0px 3%;
        box-sizing: border-box;
    }

	/*
    .contentArea {
        margin-bottom: 100px;
    }*/

    .contentArea h2.title {
        font-size: 28px;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .contentArea h2.title span {
        color: #004ea2;
        font-weight: 600;
    }

    .slide-box {
        padding-left: 3%;
        overflow-x: scroll;
        display: -webkit-box;
        -webkit-overflow-scrolling: touch;
    }

    .slide-item {
        margin-right: 25px;
        border-radius: 5px;
    } 

    /* 공통 css 끝 */

    /* header 시작  */
    .headerWrap {
        /* position: relative; */
        /* display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center; */
        position: relative;
        height: 60px;
        line-height: 60px;
    }

    .headerWrap .userArea img {
        width: auto;
        height: auto;
    }

    .headerWrap .logoArea {
        text-align: center;
    }

    .headerWrap .logoArea img {
        width: auto;
        height: auto;
        width: 110px;
    }

    .headerWrap .menuArea {
        position: absolute;
        right: 3%;
        top: 0px;
    }

    .headerWrap .menuArea img {
        width: auto;
        height: auto;
        max-width: 32px;
    }

    .menuArea img {
        width: auto;
        height: auto;
        max-width: 32px;
    }

    /* header 끝  */

    /* 메뉴 시작 */
	.gnb .main {
		font-size: 20px;
		font-weight: 500;
		padding: 12px 3%;
		position:relative;
		top:305px;
		margin-bottom:3px;
	}

    .gnb .main:nth-child(2) .sub{
        height: 470px;
        overflow-y: auto;
    }

    .gnb .main:nth-child(2) .sub::-webkit-scrollbar {
        width: 20px;
        background: #fff;
    }

    .gnb .main:nth-child(2) .sub::-webkit-scrollbar-thumb {
        background:rgba(85,148,193,.5);
        border-radius: 7px;
        height: 30px;
        background-clip: padding-box;
        border: 2px solid transparent;
    }
    
	.gnb .sub { 
		display:none;
	}
	
	.gnb .sub li { 
		font-size: 18px;
		font-weight: 400;
		padding: 5px 3%;
		line-height: 40px;
		border-bottom: 1px dashed #ccc;
	}
	
	.gnb .sub a:first-child li{
		margin-top: 2%;
		border-top: 1px dashed #ccc;
	}

    #overlay {
        height: 100%;
        width: 100%;
        z-index: 2000;
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        overflow: scroll;
        background: #fff;
    }


    #overlay-button {
        padding: 26px 0px;
        box-sizing: border-box;
        z-index: 5;
        cursor: pointer;
        user-select: none;
    }

    #overlay-button span {
        height: 4px;
        width: 33px;
        border-radius: 2px;
        background-color: #000000;
        position: relative;
        display: block;
    }

    #overlay-button span:before {
        top: -10px;
        visibility: visible;
    }

    #overlay-button span:after {
        top: 10px;
    }

    #overlay-button span,
    #overlay-button span:before,
    #overlay-button span:after {
        background-color: #000;
    }

    #overlay-button span:before,
    #overlay-button span:after {
        height: 4px;
        width: 33px;
        border-radius: 2px;
        position: absolute;
        content: "";
        transition: all 0.2s ease-in-out;
    }

    .menuArea input[type=checkbox] {
        display: none;
    }

    .menuArea input[type=checkbox]:checked~#overlay-button:hover span,
    .menuArea input[type=checkbox]:checked~#overlay-button span {
        background: transparent;
    }

    .menuArea input[type=checkbox]:checked~#overlay-button span:before {
        transform: rotate(45deg) translate(7px, 7px);
        opacity: 1;
        background-color: #fff;
    }

    .menuArea input[type=checkbox]:checked~#overlay-button span:after {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: #fff;
    }

    .menuTopWrap {
		z-index: 100;
        position: fixed;
        background-color: #f2f9ff;
        width: 100%;
        border-bottom: 2px solid #dfebf3;
    }

    .menuTopArea ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }

    .menuTopArea ul li {
        display: inline-block;
    }

    .menuTopArea ul li img {
        width: auto;
        height: auto;
        max-width: 35px;
    }

    .menuLoginArea {
        padding: 11px 0 10px 0;
        margin: 0 3%;
    }

    .menuLoginArea .loginOff li p{
        font-size: 20px;
        margin-bottom: 17px;
        font-weight: 300;
        padding: 3px 0;
        margin-left: 20px;
        border-radius: 20px;
        /* background: #c3ddf8; */
    }

    .menuLoginArea .loginOff li a{
        font-size: 25px;
    }

    
     .menuLoginArea .loginOff li img{
        max-width: 30px; 
        background: #fff;
        margin-top: -2px; 
        margin-left: 20px;
        padding: 4px;
        border: 2px solid #0a5ac0;
        border-radius: 50%;
        margin-right: 12px;
    }
    
    .menuLoginArea .loginOff li a span{
        font-size: 25px;
        color: #0a5ac0;
        font-weight: 600;
    }

    .menuLoginArea .logoutOff li {
        margin-top: 20px;
        margin-bottom: -10px;
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menuLoginArea .logoutOff p span{
        font-size: 23px;
        font-weight: 600;
    }

    .menuLoginArea .logoutOff p{
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 300;
    }

    .menuLoginArea .logoutOff li {
        display:flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        border: 2px solid #a9cef5;
        border-radius: 5px;
    }


    .menuLoginArea .logoutOff li span {
        text-align: center;
        line-height: 50px;
        width: calc(99%/2);
        font-size: 18px;
    }

    .menuLoginArea .logoutOff li span:first-child{
        border-right: 1px dashed #fff;
        background: #a9cef5;
        color: #262626;
    }

    .menuLoginArea .logoutOff li span img{
        max-width: 28px; 
        margin-top: -2px; 
        margin-right: 5px;
    }    

    .menuLoginArea .menuloginOn {
        display: none;
    }
	
	.menuQuickArea {
        
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        margin-bottom: 10px;
        align-items: center;
        margin: 0 3%;
        padding: 28px 0;
        box-sizing: border-box;
    }

    .menuQuickArea ul{
        display: flex;
        align-items: center;
    }
    .menuQuickArea ul li {
        text-align: center;
		width: 100px;
    }

    .menuQuickArea ul li img {
        /* filter: invert(100%) sepia(13%) saturate(0%) hue-rotate(59deg) brightness(106%) contrast(103%); */
        width: auto;
        height: auto;
		margin-right: 20px;
    }

    .menuQuickArea ul li a {
        font-size: 18px;
        font-weight: 400;
    }

    .menuContentWrap nav {
        padding: 261px 3% 100px 3%;
        box-sizing: border-box;
    }

    .menuContentWrap nav ul li {
        border-bottom: 1px solid #ddd;
        padding: 20px 0px;
        box-sizing: border-box;
    }

    .menuContentWrap nav ul li a {
        color: #000;
        text-decoration: none;
    }

    .menuContentWrap nav ul li>a {
        font-size: 22px;
        font-weight: 500;
    }

    .menuContentWrap nav ul li ul li a {
        display: block;
        width: 100%;
        font-size: 20px;
        font-weight: 400;
        color: #616161;
    }

    .menuContentWrap nav ul li.sub-menu ul {
        margin-top: 10px;
    }

    .menuContentWrap nav ul li.sub-menu ul li {
        border-bottom: none;
        padding: 10px 0;
    }

    .menuContentWrap nav ul li a .fa {
        display: block;
        line-height: 28px;
        text-rendering: auto;
        color: #000;
        text-align: center;
    }

    .fa-caret-down:before {
        content: "\f0d7";
    }

    .right {
        float: right;
    }

    .left {
        float: left;
    }

    .menuSnsArea {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;

        margin-bottom: 30px;
    }

    .menuSnsArea li {
        display: inline-block;
    }

    .menuSnsArea li:not(:last-of-type) {
        margin-right: 40px;
    }

    .menuSnsArea li img {
        width: auto;
        height: auto;
        max-width: 36px;
    }

    /* 메뉴 끝 */

    /* 메인슬라이드 시작 */
    .mainSlideArea {
        margin-bottom: 60px;
    }

    .gallery1 {
        width: 100%;
    }

    .swiper-wrapper {
        position: relative;
    }

    .slideContent {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        color: #fff;
    }

    .slideContent img{
        width: 100%;
    }
    .slideContent h4 {
        font-size: 24px;
    }

    .slideContent h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .slideContent p {
        font-size: 20px;

        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .textSlideUp {
        opacity: 0;
        animation-name: fadeIn;
        animation-duration: 1.6s;
        animation-delay: 0.15s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(10%);
        }

        100% {
            opacity: 1;
            transform: translateY(0%);
        }
    }


    .gallery1 .swiper-button-prev,
    .gallery1 .swiper-button-next {
        color: #fff;
    }

    .gallery1 .swiper-button-prev {
        left: 3%;
    }

    .gallery1 .swiper-button-next {
        right: 3%;
    }

    .gallery1 .swiper-button-prev:hover,
    .gallery1 .swiper-button-next:hover {
        opacity: 1;
    }

    .gallery1 .swiper-pagination {
        bottom: 10px !important;
    }

    .gallery1 .swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
        margin-right: 20px !important;
    }

    .gallery1 .swiper-pagination .swiper-pagination-bullet {
        background-color: rgba(255, 255, 255, 0.8);
        opacity: 0.5;
        width: 15px;
        height: 15px;
        border-radius: 50px;
    }


    .gallery1 .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #fff;
        opacity: 1;
    }
    /* 메인슬라이드 끝 */

    /* 상단배너 시작 */
    .smallBanner{
        padding: 0 3%;
		margin-bottom: 70px;
    }
    
    .smallBanner ul{
        display: flex;
        justify-content: space-between;
        position: relative;
        width: 100%;
    }
    
    .smallBanner ul{ 
        display: flex;
        margin-bottom: 10px;
    }
    
    .smallBanner ul li{
        width: calc(100%/2)
    }
     .smallBanner ul li img{
         width: 98%;
     }
    
    /* 상단배너 끝 */
    
    /* contentArea - noticeArea 시작*/
    .noticeArea {
        position: relative;
        margin-bottom: 70px;
    }

    .noticeArea span{
        color: #00abe5;
    }
    
    .noticeArea button {
        position: absolute;
        top: 10px;
        right: 3%;

        border: none;
        background-color: transparent;
    }

    .noticeArea button img {
        width: auto;
        height: auto;
        max-width: 24px;
    }

    .noticeContent {
        margin-top: 20px;
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        padding: 1% 0;
        border-top: 2px solid #ccc;
        border-bottom: 2px solid #ccc;
    }

    .noticeContent dl {
        display:flex;
        cursor: pointer;
        width: 100%;
    }
    .noticeContent dl:not(:last-of-type) {
        box-sizing: border-box;
    }

    .noticeContent dl dt {
        width: 16%;
        font-size: 21px;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin: 8px 0 ;
    }

    .noticeContent dl dd {
        font-size: 18px;
        line-height: 28px;
    }

    .noticeContent dl dd:first-of-type {
        width: 65%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-wrap: break-word;
        margin: 8px 0 ;
    }

    .noticeContent dl dd:nth-of-type(2) {
        color: #909090;
        width: 17%;
        text-align: right;
        margin: 8px 0 ;
    }
    /* contentArea - noticeArea 끝*/

    /* lectureContents 시작 */
    .lectureContents{
        padding: 0 3%;
		margin-bottom: 70px;
    }
    
    .lectureContents .lectureTab{
		margin-bottom: 30px;
    }
    
    .lectureContents ul{
        background: #fff9c9;
        padding: 2% 5%;
        border-radius: 10px;
        margin-top: 2%;
        height: 95px;
        display: flex;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

    .lectureContents ul h2 img{
        max-width: 50px;
    }
    
    .lectureContents ul h2{
        margin-top: 5px;
        font-size: 20px;
        text-align: center;
        width: 130px;
        margin-right: 25px;
    }
    
    .lectureContents ul h4{
        margin: 0px 0 8px 5px;
        padding: 2px 0;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        background: #fff;
        width: 150px;
        color: #212121;
        font-weight: 500;
        text-align: center;
        border-radius: 10px;
    }

    .lectureContents ul li:first-child{
        border-right: 1px dotted #333;
    }

    .lectureContents ul li:last-child{
        padding-left: 40px;
    }

    .lectureContents ul li span{
        font-size: 18px;
        font-weight: 400;
    }
    /* lectureContents 끝 */
    
    
    /* contentArea - suggestArea 시작*/
    .suggestArea {
        margin-bottom: 60px;
    }

    .suggestArea h2 {
        padding: 0 3%;
        box-sizing: border-box;
    }

    .suggestArea .slide-item img {
        width: 290px;
        height: 190px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 8px;
    }

    .slide-box::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .slideText h3 {
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;

        width: 290px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    /* contentArea - suggestArea 끝*/

    
    
    /* (추천강의미리보기) previewArea 시작 */
    .previewArea .preview-item{
        padding:0 3%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 70px;
    }
    
    .previewArea .preview-item>li{
        text-align: center;
        border-radius: 10px;
        width: 49%;
        padding-bottom: 10px;
        background: #ebfbfa;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        border-radius: 10px;
    }

    .previewArea .preview-item img{
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .previewArea .preview-item h3{
        padding-top: 7px;
        font-weight: 700;
        font-size: 16px;
    }
    
    .previewArea .preview-item h4{
        padding: 3px 0;
        margin-bottom: 5px;
        font-weight: 400;
        font-size: 20px;
    }
    
    /* (추천강의미리보기) previewArea 끝 */
    
    /* ourFamily 시작 */
    .title{
        padding: 0 3%;
    }
    
    .slide .slide-wrapper {
        width: 33%;
        position: relative;
        float: left;
        margin-bottom: 70px;
        margin-top: 20px;
    }

    
    .slide .slide-wrapper .familyInfo{
        width: 100%;
        margin-top:185px;
        background: rgba(0,78,162,0.7);
        padding: 6px 0;
        font-weight: 400;
		box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    }
    
    .slide .slide-wrapper h3{
        text-align: center;
        font-weight: 300;
        color: #fff;
        font-size: 14px;
    }
    
    .slide-wrapper .slide-wrapper-inner {
        box-sizing: border-box;
        border-radius: 5px;
        overflow: hidden;
        height: 220px;
        color: #fff;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
    }

    .slide.slick-center .slide-wrapper .slide-wrapper-inner {
        margin: 0 auto;
        color: #fff;
        width: 295%;
    }

    
    .slide .slide-wrapper a {
        display: block;
        position: absolute;
        width: 8px;
        height: 8px;
        top: 50%;
        outline: none;
        opacity: 0;
        transition: all ease 0.4s;
    }

    .medyonBg {
        background-color: #52bdb5;
    }
    
    .familyInfo {
        width: 70%;
        font-size: 18px;
    }

    .familyInfo h3 {
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 5px;
    }

    .slide .slide-wrapper a.arrow-right {
        right: 0;
        transform: translate(0, -50%);
        background-color: red;
    }

    .slide .slide-wrapper a.arrow-left {
        left: 0;
        transform: translate(0, -50%);
        background-color: red;
    }

    .bannerNumber {
        padding-left: 60px;
        margin-bottom: 70px;
    }

    .bannerNumber ul li {
        display: none;
        font-size: 20px;
    }

    .bannerNumber ul li.active {
        color: #a3a3a3;
        display: block;
    }

    .bannerNumber ul li.active span {
        color: #000;
    }

    /* 

    .flexslider ol,
    .flex-direction-nav {
        display: none;
    }

    .flexslider {
        margin-bottom: 50px;
    }

    .flex-viewport {
        width: 100% !important;
        height: 200px;
    }

    .flexslider ul li a {
        height: 200px;
        display: flex !important;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0 3%;
        box-sizing: border-box;
        color: #fff;
        
        .flexslider ul li a img {
                border-radius: 8px;
            }
    } */
    /* ourFamily 끝 */

    /* 교육지원센터 시작 */
    .customerArea {
        margin-bottom: 60px;
    }

    .customerArea h2 {
        padding: 0 3%;
    }

    .customerArea .slide-item {
        margin-right: 35px;
        border-radius: 5px;
    }

    .slideTextCenter h3 {
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        width: 120px;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .circleImg {
        text-align: center;
        width: 120px;
        height: 120px;
        border-radius: 50px;
        background-color: #f3f3f3;
        border: 1px solid #dadada;
        margin-bottom: 10px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circleImg img {
        border-radius: 50px;
    }

    /* 교육지원센터 끝*/

    .middleBanner{
        width: 100%;
        margin-bottom: 70px;
    }

    .middleBanner img{
        width: 100%;
    }

    
    /* footer 시작 */

    footer {
        color: #616161;
        padding: 30px 2%;
        text-align: center;
        background-color: #f8f8f8;
        font-size: 15px;
    }

    footer a {
        color: #616161;
    }

    .footerSnsArea {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;

        margin-bottom: 30px;
    }

    .footerSnsArea li {
        display: inline-block;
    }

    .footerSnsArea li:not(:last-of-type) {
        margin-right: 30px;
    }

    .footerSnsArea li img {
        width: auto;
        height: auto;
        max-width: 32px;
    }

    .footerInfo {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;

        margin-bottom: 20px;
    }

    .footerInfo li {
        display: inline-block;
    }

    .footerInfo li:not(:last-of-type) {
        margin-right: 20px;
    }

    .footerInfo li a {
        text-decoration: underline;
    }

    .footerContent li {
        line-height: 23px;
        font-weight: 300;
    }

    .footerContent li:last-child{
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .footerContent li span{
        color: #004ea2;
        font-weight: 500;
    }
 
    /* footer 끝 */

    /* quickBanner 시작*/

    .quickBanner {
        position: fixed;
        bottom: 30px;
        right: 3%;
        /* width: 195px; */
        height: 260px;
        z-index: 1000;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .quickBanner a {
        width: 145px;
        height: 50px;
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        text-align: center;
        color: #fff;

        transition: all 0.3s ease;
        box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
            0px 2px 10px 0px rgba(0, 0, 0, 0.2);
        outline: none;
    }

    .quickBanner p {
        font-size: 15px;
        line-height: 18px;
    }

    .quickBtn01 {
        background: linear-gradient(0deg, rgb(253, 146, 46) 0%, rgba(251, 75, 2, 0.9) 100%);
        padding: 0;
        border: none;
    }

    .quickBtn02 {
        background: linear-gradient(0deg, rgb(67, 122, 233) 0%, rgba(12, 68, 179, 0.9) 100%);
        padding: 0;
        border: none;
    }

    .quickBtn03 {
        background: linear-gradient(0deg, rgb(141, 216, 97) 0%, rgba(102, 185, 53, 0.9) 100%);
        padding: 0;
        border: none;
    }

    .quickBtn04 {
        background: linear-gradient(0deg, rgb(104, 219, 215) 0%, rgba(0, 149, 161, 0.9) 100%);
        padding: 0;
        border: none;
    }

    /* quickBanner 끝*/

    /* 상단으로 가기 버튼 시작 */
    .topButton {
        position: fixed;
        right: 3%;
        bottom: 30px;
        border-radius: 10px;
        display: none;
        z-index: 999;
        width: 50px;
        height: 50px;
        background-color: #004ea2;
    }

    .topBtnImg {
        width: auto;
        height: auto;
        max-width: 50px;
        animation: motion 0.5s linear 0s infinite alternate;
        margin-top: 0;
    }

    @keyframes motion {
        0% {
            margin-top: 0px;
        }

        100% {
            margin-top: -5px;
        }
    }

    /* 상단으로 가기 버튼 끝 */
}

@media all and (max-width: 767px) {
    * {
        padding: 0;
        margin: 0;
    }

    body {
        font-family: 'Noto Sans KR', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        list-style: none;
    }

    button img,
    img {
        vertical-align: middle;
    }

    ul li {
        list-style: none;
    }

    a {
        color: #000000;
        text-decoration: none;
        cursor: pointer;
    }

    input, 
    label,
    button,
    select,
    textarea {
        cursor: pointer;
        font-family: 'Noto Sans KR', sans-serif;
        font-size: 14px;
        font-weight: 400;
    }


    /* 공통 css 시작 */
    .headerWrap,
    .menuTopArea,
    .menuLoginArea,
    .menuQuickArea,
    .noticeArea {
        margin: 0 auto;
        padding: 0px 3%;
        box-sizing: border-box;
    }
    
    #visual img{
        width:100%;
    }

    .contentArea h2.title {
        padding: 0 3%;
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: 30px;
        font-weight: 600;
    }

   .contentArea h2.title span {
        font-size: 20px;
        color: #004ea2;
    }

    .slide-box {
        padding-left: 3%;
        overflow-x: scroll;
        display: -webkit-box;
        -webkit-overflow-scrolling: touch;
    }

    .slide-item {
        margin-right: 25px;
        border-radius: 5px;
    }

    /* 공통 css 끝 */

    /* header 시작  */
    .headerWrap {
        /* display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center; */

        position: relative;
        height: 60px;
        line-height: 60px;
    }
 
    .headerWrap div a {
        line-height: 20px;
    }

    .headerWrap .userArea {
        line-height: 19px;
    }

    .headerWrap .userArea img {
        width: auto;
        height: auto;
        max-width: 23px;
    }

    .headerWrap .logoArea {
        text-align: center;
    }

    .headerWrap .logoArea img {
        width: auto;
        height: auto;
        max-width: 110px;
    }

    .headerWrap .menuArea {
        position: absolute;
        right: 3%;
        top: 0px;
    }

    .headerWrap .menuArea img {
        width: auto;
        height: auto;
        max-width: 24px;
    }

    .menuArea img {
        width: auto;
        height: auto;
        max-width: 24px;
    }

    /* header 끝  */

    /* 메뉴 시작 */
    #overlay {
        height: 100%;
        width: 100%;
        z-index: 2000;
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        overflow: scroll;
        background: #fff;
    }


    #overlay-button {
        padding: 26px 0px;
        box-sizing: border-box;
        z-index: 5;
        cursor: pointer;
        user-select: none;
    }

    #overlay-button span {
        height: 4px;
        width: 33px;
        border-radius: 2px;
        background-color: #000000;
        position: relative;
        display: block;
    }

    #overlay-button span:before {
        top: -10px;
        visibility: visible;
    }

    #overlay-button span:after {
        top: 10px;
    }

    #overlay-button span,
    #overlay-button span:before,
    #overlay-button span:after {
        background-color: #000;
    } 

    #overlay-button span:before,
    #overlay-button span:after {
        height: 4px;
        width: 33px;
        border-radius: 2px;
        position: absolute;
        content: "";
        transition: all 0.2s ease-in-out;
    }

    .menuArea input[type=checkbox] {
        display: none;
    }

    .menuArea input[type=checkbox]:checked~#overlay-button:hover span,
    .menuArea input[type=checkbox]:checked~#overlay-button span {
        background: transparent;
    }

    .menuArea input[type=checkbox]:checked~#overlay-button span:before {
        transform: rotate(45deg) translate(7px, 7px);
        opacity: 1;
        background-color: #fff;
    }

    .menuArea input[type=checkbox]:checked~#overlay-button span:after {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: #fff;
    }

    .menuTopWrap {
        position: fixed;
        background-color: #f3faff;
        width: 100%;
        border-bottom: 2px solid #dfebf3;
    }

    .menuTopWrap {
		z-index: 100;
        position: fixed;
        background-color: #f2f9ff;
        width: 100%;
    }

    .menuTopArea ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        height: 40px;
    }

    .menuTopArea ul li {
        display: inline-block;
    }

    .menuTopArea ul li:first-of-type img {
        width: auto;
        height: auto;
        max-width: 25px;
    }

    .menuTopArea ul li:nth-of-type(2) img {
        width: auto;
        height: auto; 
        max-width: 18px;
    }

    .menuLoginArea {
        padding-top: 10px;
        padding-bottom: 15px;
    }


    .menuLoginArea .loginOff li p{
        font-size: 14px;
        margin-bottom: 7px;
        font-weight: 300;
        padding: 8px 10px;
        border-radius: 10px;
        letter-spacing: -.4px;
    }

    .menuLoginArea .loginOff li{
        text-align: left;
        padding:0 4%;
    }

    .menuLoginArea .loginOff li img{
        max-width: 25px; 
        background: #fff;
        margin-top: -2px; 
        padding: 4px;
        border: 1px solid #555;
        border-radius: 50%;
        margin-right: 7px;
    }
    
    .menuLoginArea .loginOff li a{
        font-size: 18px;
    }
    
    .menuLoginArea .loginOff li a span{
        font-size: 18px;
        color: #0a5ac0;
        font-weight: 600;
    }

    .menuLoginArea .logoutOff li {
        display:flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        border: 2px solid #a9cef5;
        border-radius: 5px;
    }

    .menuLoginArea .logoutOff p span{
        font-size: 18px;
        font-weight: 600;
    }

    .menuLoginArea .logoutOff p{
        font-size: 16px;
        margin-bottom: 10px;
    }

    .menuLoginArea .logoutOff li span {
        text-align: center;
        line-height: 35px;
        width: calc(99%/2);
        font-size: 14px;
        letter-spacing: -.4px;
    }

    .menuLoginArea .logoutOff li span:first-child{
        border-right: 1px dashed #fff;
        background: #a9cef5;
        color: #262626;
    }
    
    .menuLoginArea .logoutOff li span img{
        max-width: 20px;
    }

    .menuLoginArea .menuloginOn {
        display: none;
    }

    .menuQuickArea {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;

        margin: 0px 2% 10px 2%;
        box-sizing: border-box;
        /* border-bottom: 1px solid #ddd; */
    }

	.menuQuickArea ul {
		padding: 6px 3px;
		width: 80px;
    }
	
    .menuQuickArea ul li {
        text-align: center;
	}

    .menuQuickArea ul li img {
        width: auto;
        height: auto;
        max-height: 30px;
        margin-bottom: 5px;
    }

    .menuQuickArea ul li a {
        font-size: 13px;
        font-weight: 400;
    }

/* 메뉴 시작 */
	.gnb .main {
		font-size: 18px;
		font-weight: 500;
		padding: 12px 3%;
		position:relative;
		top:250px;
		margin-bottom:3px;
	}
	
	.gnb .sub { 
		display:none;
	}
	
	.gnb .sub li { 
		font-size: 15px;
		font-weight: 300;
		padding: 5px 3%;
		line-height: 40px;
		border-bottom: 1px dashed #ccc;
		padding-left: 20px; 
	}

	
	.gnb .sub li:hover {
		font-weight: 700;
		color: #0a5ca5;
	}

    /* 메뉴 끝 */
	
	

    /*탭1 영역 시작*/
    .tab1ServeContentArea div{
        background: #fff6fb;
        padding: 4% 5%;
        margin-top: 30px;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    }
    .tab1ServeContentArea h1{
        text-align:left;
        font-size: 20px;
        margin: 10px 0;
    }
    .tab1ServeContentArea h3{
        color: #000;
        font-weight:300;
        font-size: 17px;
        line-height: 30px;
        border-radius: 5px;
        text-align: left;
    }

    .tab1ServeContentArea h2{
        font-size: 18px;
        text-align: left;
    }
    
    .introduceIcon{
        display: flex;
        justify-content: space-between;
    }
    
    .introduceIcon li{
        margin-top: 20px;
        border-radius: 50%;
        overflow: hidden;
        width: 29%;
        border: 5px solid #fff;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    }

    .introduceEx{
        display: flex;
        justify-content: space-between;
    }
    
    .introduceEx li{
        margin-top: 5px;
        border-radius: 50%;
        width: 32%;
    }

    .introduceEx h4{
        font-size: 13px;
        font-weight: 400;
        letter-spacing: -.4px;
    }
    
    .middleContentArea{
        margin-top: 3%;
        text-align: center;
        padding: 3% 4%;
        border-radius: 10px;
        background: #fff8ec;
        box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    }
    
    .middleContentArea ul li{
        margin: 2% 0;
    }

    .middleContentArea h3{
        color: #000;
        font-weight:300;
        font-size: 17px;
        line-height: 30px;
        border-radius: 5px;
        text-align: left;
    }

    
    /*탭1 영역 끝*/
    
    /*탭2 영역 시작*/
    .tab2ServeContentArea div{
        background: #f4f9f6;
        padding: 4% 5%;
        margin-top: 30px;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    } 
    .tab2ServeContentArea li{
        padding: 1.5%;
        border-bottom: 1px solid #ccc;
    }

    .tab2ServeContentArea li:first-child{
        margin-top: 20px;
    }

    .tab2ServeContentArea h2 {
        margin: 20px 0;
        font-weight: 500; 
        line-height: 30px;
        font-size: 18px;
    }

    .tab2ServeContentArea h3{
        text-align: left;
        font-size: 17px;
        padding: 3px 0;
    }
    
    .tab2ServeContentArea h2 span{
        margin-left: 10px;
        font-weight: 500;
        color: #585858
    }

    .tab2ServeContentArea li:last-child{
        margin-bottom: 20px;
    }
    /*탭2 영역 끝*/
    
    /*탭3 영역 시작*/
     .tab3ServeContentArea div{        
        background: #fff8ec;
        padding: 4% 5%;
        margin-top: 30px;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    }
    
    .tab3ServeContentArea h1{
        font-size: 20px;
        margin: 20px 0;
    }

    .tab3ServeContentArea h1:first-child{
        margin: 0;
        margin-bottom: 30px;
        font-size: 25px;
    }
    
    .tab3ServeContentArea h2{
        font-size: 23px;
        margin-top: 5px;
        margin-bottom: 10px;
        
        color: #004ea2;
    }
    
    .tab3ServeContentArea h3{
        text-align: left;
        color: #000;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    
    .tab3ServeContentArea ul{
        padding: 10px 3% 30px 3%;
        border-bottom: 1px solid #ccc;
    }

    .tab3ServeContentArea ul:last-child{
        border-bottom: none;
    }
    
    .tab3ServeContentArea h3 span{
        color: #19aaa3;
        font-weight: 500;
    }
    
    .tab3ServeContentArea p{
        float: left;
        margin-right: 5px;
        margin-top:  4px;
        font-size: 14px;
        background: #63c5c2;
        border-radius: 50%;
        color: #fff;
        font-weight: 400;
        width: 30px;
        height: 26px;
        padding-top: 2px;
        text-align: center;
    }
    /*탭3 영역 끝*/
    
    /*탭4 영역 시작*/
.tab4ServeContentArea div{
        background: #f4f9fb;
        padding: 4% 5%;
        margin-top: 30px;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    }
    
  
    .tab4ServeContentArea h1{
        font-size: 20px;
        margin: 20px 0;
    }

    .tab4ServeContentArea h1:first-child{
        margin: 0;
        margin-bottom: 30px;
        font-size: 25px;
    }

    .tab4ServeContentArea h1:nth-child(2){
        padding-top: 0;
        border-top: none;
    }
    
    .tab4ServeContentArea h2{
        font-size: 18px;
        margin-top: 5px;
        margin-bottom: 10px;
        font-weight: 600;
        color: #6292e1;
    }
    
    .tab4ServeContentArea h3{
        color: #000;
        font-weight:300;
        font-size: 17px;
        line-height: 30px;
        border-radius: 5px;
        text-align: left;
    }
    
    .tab4ServeContentArea ul{
        margin-bottom: 40px;
    }
    
    .tab4ServeContentArea h3 span{
        color: #65b0ac;
        font-weight: 500;
    }
    /*탭4 영역 끝*/
    
    
    
    
    /*탭메뉴 시작*/
    #tab_wrap .nav li {
        width: 100%;
        line-height: 50px;
    }

    
    #tab_wrap .nav li:nth-child(2) a{
        border-bottom: none;
        border-top: none;
    }
    
    #tab_wrap .nav li:nth-child(3) a{
        border-bottom: none;
    }
    
    #tab_wrap .nav li:nth-child(4) a{
        border-bottom: 1px solid #ccc;
    }
    
    #tab_wrap .nav li a {
        display: block;
        text-align: center;
        background-color: #ddd;
        font-weight: 500;
        border-left: 1px solid #bbb;
        border: 1px dotted #ccc;
        border-right: none;
        border-left: none;
    }
    
    #tab_wrap .nav li:nth-child(1) a{
        border-left: none;
        border-top: 1px solid #ccc;
    }
    
    /*탭메뉴 끝*/
    
    /* Mobile Notice 탭메뉴 시작*/
    #noticeTab_wrap .noticeNav li {
        width: 100%;
        line-height: 45px;
    }

    #noticeTab_wrap .noticeNav li a {
        display: block;
        text-align: center;
        background-color: #ddd;
        font-weight: 400;
        border-bottom: 1px solid #bbb;
    }
    /*탭메뉴 끝*/
    
    /* Mobile Edu-tap 탭메뉴 시작*/
    #Edu-tab_wrap .Edu-nav li {
        width: 100%;
        line-height: 45px;
    }

    #Edu-tab_wrap .Edu-nav li a {
        display: block;
		width: 100%;
        text-align: center;
        background-color: #ddd;
        font-weight: 400;
		border: 1px solid #ccc;
		border-bottom: none;
    }
	
    /*탭메뉴 끝*/
    
    /* Mobile Edu-tap 탭메뉴 시작*/
    #mypage-tab_wrap .mypage-nav li {
        width: 100%;
        line-height: 45px;
    }

    #mypage-tab_wrap .mypage-nav li a {
        display: block;
        text-align: center;
        background-color: #ddd;
        font-weight: 400;
        border-bottom: 1px solid #bbb;
    }
    
    
    /* noticeContentArea 시작 */
    /* board 시작 */
    .boardArea {
        border-top: 1px dashed #a3a3a3;
        border-bottom: 1px solid #a3a3a3;
    }
    
    .boardArea .boardList{
        border-bottom: 1px solid #ddd;
    }

    .boardArea ul {
        padding: 0 3%;
        box-sizing: border-box;
    }

    .boardArea ul li a {
        display: block;
        padding: 30px 0px;
    }

    .boardArea ul li a div {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .boardArea .boardListReview a ul{
        padding: 0;
    }
    
    .boardArea .boardListReview h4{
        font-size: 14px;
        font-weight: 400;
    }
    
    .boardArea .boardListReview p{
        width: 40%;
        margin-left: 3%;
        line-height: 32px;
        font-size: 12px;
    }
    
    .boardArea .boardListReview a ul>li:first-child h2{
        width: 100%;
        font-size: 16px;
        text-overflow: ellipsis; 
        white-space: nowrap;
        overflow: hidden;
    }

    .boardArea .boardListReview a ul>li:first-child span{
        background: #004ea2;
        color: #fff;
        font-weight: 300;
        padding: 0 8px;
        padding-bottom: 1px;
        border-radius: 30px;
        font-size: 14px;
        margin-right: 5px;
    }
    

    .boardArea .boardListReview a ul>li:nth-child(2){
        display: flex;
        justify-content: space-between;
        margin: 3px 0;
    }

    .boardArea .boardListReview a ul>li:nth-child(2) h4{
        color: #585858
    }
    
    .boardArea ul li a div img {
        width: 100%; 
        height: 100%;
        max-width: 36px;
    }

    .boardArea ul li a div h2{
        margin-right: 5px;
        width: 10%;
        text-align: center;
        font-size: 14px;
    }
    .boardArea ul li a h3 {
        text-align: left;
        font-weight: 300;
        font-size: 17px;
        letter-spacing: -0.4px;
        flex-basis: 70%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        margin-bottom: 10px;
        transition: .4s;
    }
    
    .tab6noticeContentArea ul li a:hover h3{
        overflow: visible;
        display: block;
        padding: 15px 0;
    }

    /* board 끝 */
    
    
    .noticeContentArea .title{
        display: flex;
        justify-content: space-between;
        margin: 30px 0 5px 3%;
        padding: 0 3%;
    }
    
    .noticeContentArea .title h1{
        font-size: 20px;
    }
    
    .noticeContentArea .title h2 a{
		font-size: 12px;
        background: #0a5ca5;
        color: #fff;
        font-weight: 300;
        padding: 2px 15px;
        margin-top: 13px;
        border-radius: 20px;
        line-height: 20px;
    }
    
    #noticeTab5 .inquiry{
        padding: 0 3%; 
    }
    
    #noticeTab5 .inquiry h3{
        color: #000;
        font-size: 14px;
        font-weight: 400;
        text-align: left;
        margin: 3% 0;
    }
    
    #noticeTab5 .qna p{
        margin-bottom: 5%;
    }
    
    #noticeTab5 .la{
        width: 100%;
        font-weight: 600;
        display: inline-block;
        font-size: 14px;
        margin-right: 2%;
    }
    
    #noticeTab5 input{
        width: 100%;
        height: 40px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }
    
    #noticeTab5 #f2{
        margin-top: 2%;
        width: 100%;
        text-align: center;
        height: 40px;
        border-radius: 5px;
        background:#fff;
        border: 1px solid #ccc;
    }
    
    #noticeTab5 #f6{
        width: 100%;
        margin-top: 2%;
        border-radius: 5px;
        border: 1px solid #ccc;
    }
    
    #noticeTab5 .btnArea{
        margin: 3% 0;
    }
    
    #noticeTab5 button{
        width: 100%;
        height: 35px;
        font-size: 100%;
        letter-spacing: -1px;
        border: none;
        background: #19aaa3;
        color: #fff;
        border-radius: 5px;
    }
    /* noticeContentArea 끝 */

    #noticeTab6 .boardListReview{
        border-bottom: 1px solid #ccc;
        margin-bottom: 10px;
    }

    #noticeTab6 .boardListReview:last-child{
        border-bottom: none;
    }

    #noticeTab6 .boardListReview h2{
        width: 100%;
        font-size: 16px;
        text-overflow: ellipsis; 
        white-space: nowrap;
        overflow: hidden;
        color: #0a5ca5;
    }

    #noticeTab6 .boardListReview h3{
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 400;
        letter-spacing: -0.4px;
        text-align: left;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    
    #noticeTab6 .boardListReview h4{
        font-size: 14px;
        font-weight: 400;
    }

    #noticeTab6 #list07 ul{
        width: 100%;
    }
    
    
    
    /* 메인슬라이드 시작 */
    .mainSlideArea {
        margin-bottom: 40px;
    }

    .gallery1 {
        width: 100%;
    }

    .swiper-wrapper {
        position: relative;
    }

    .swiper-wrapper {
        position: relative;
    }

    .slideContent {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        color: #fff;
    }

    .slideContent img{
        width: 100%;
    }

    .slideContent h4 {
        font-size: 16px;
    }

    .slideContent h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .slideContent p {
        font-size: 13px;

        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }


    .textSlideUp {
        opacity: 0;
        animation-name: fadeIn;
        animation-duration: 1.6s;
        animation-delay: 0.15s;
        animation-iteration-count: 1;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(10%);
        }

        100% {
            opacity: 1;
            transform: translateY(0%);
        }
    }


    .gallery1 .swiper-button-prev,
    .gallery1 .swiper-button-next {
        color: #fff;
    }

    .gallery1 .swiper-button-prev::after,
    .gallery1 .swiper-button-next::after {
        font-size: 26px;
    }

    .gallery1 .swiper-button-prev {
        left: 3%;
    }

    .gallery1 .swiper-button-next {
        right: 3%;
    }


    .gallery1 .swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
        margin-right: 10px !important;
    }

    .gallery1 .swiper-pagination .swiper-pagination-bullet {
        background-color: rgba(255, 255, 255, 0.8);
        opacity: 0.5;
        width: 10px;
        height: 10px;
        border-radius: 50px;
    }


    .gallery1 .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #fff;
        opacity: 1;
    } 


    /* 메인슬라이드 끝 */

    /* (추천강의미리보기) previewArea 시작 */ 
    .previewArea{
        padding:0 3%;
    }
    
    .previewArea .preview-item li>ul{
        display: flex;
        margin-bottom: 3%;
        border-radius: 10px;
        background: #cfe9e4;
        width: 100%;
        overflow: hidden;
    }
    
    .previewArea .preview-item li>ul li:first-child{
        width: 40%;
        margin-right: 3%;
    }

    .previewArea .preview-item li>ul li:last-child{
        padding-top: 3%;
    }
    
    .previewArea .preview-item img{
        width: 100%;
    
    }
    
    .previewArea .preview-item h3{
        text-align: left;
        padding-top: 6%;
        font-weight: 600;
        font-size: 16px;
        color: #000;
    }
    
    .previewArea .preview-item h4{
        padding: 8px 0;
        font-size: 12px;
        font-weight: 400;
    }
    
    /* (추천강의미리보기) previewArea 끝 */

     /* lectureContents 시작 */
    .lectureContents{
        padding: 0 3%;
		margin-bottom: 70px;
    }
    
    .lectureContents .lectureTab{
		margin-bottom: 30px;
    }
    
    .lectureContents ul{
        background: #fff9c9;
        padding: 4% 2%;
        border-radius: 10px;
        margin-top: 5%;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

    .lectureContents ul h2 img{
        max-width: 50px;
        border: 1px dashed #000;
        padding: 5px;
        background: #fff;
        border-radius: 50%;
    }
    
    .lectureContents ul h2{
        font-size: 20px;
        display: flex;
        align-items: center;
        margin-left: 10px;
        text-align: center;
    }
    
    .lectureContents ul h4{
        margin-bottom: 10px;
        margin-top: 5px;
        padding: 2px 0;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        background: #fff;
        color: #212121;
        font-weight: 500;
        text-align: center;
        border-radius: 10px;
    }

    .lectureContents ul li:first-child{
        width: 200px;
        margin: 0 auto;
        padding-bottom: 7px;
        display: flex;
    }

    .lectureContents ul li:last-child{
        padding: 0 10px;
    }

    .lectureContents ul li span{
        font-size: 14px;
        letter-spacing: -0.4px;
        font-weight: 500;
    }
    /* lectureContents 끝 */
    
    /* contentArea - noticeArea 시작*/
    .noticeArea {
        position: relative;
        margin-bottom: 50px;
    }

    .noticeArea span{
        color: #00abe5;
    }
    
    .noticeArea button {
        position: absolute;
        top: 10px;
        right: 3%;

        border: none;
        background-color: transparent;
    }

    .noticeArea button img {
        width: auto;
        height: auto;
        max-width: 24px;
    }

    .noticeContent {
        margin-top: 20px;
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        padding: 1% 0;
        border-top: 2px solid #ccc;
        border-bottom: 2px solid #ccc;
        width: 100%;
    }

    .noticeContent dl {
        display:flex;
        cursor: pointer;
        width: 100%;
    }
    .noticeContent dl:not(:last-of-type) {
        box-sizing: border-box;
    }

    .noticeContent dl dt {
        width: 16%;
        flex-wrap: wrap;
        font-size: 14px;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin: 2% 1% ;
    }

    .noticeContent dl dd {
        font-size: 14px;
        line-height: 28px;
    }

    .noticeContent dl dd:first-of-type {
        width: 66%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-wrap: break-word;
        padding: 0 2%;
    }

    .noticeContent dl dd:nth-of-type(2) {
        color: #909090;
        font-size: 14px;
        text-align: right;
    }
    /* contentArea - noticeArea 끝*/

    /* contentArea - suggestArea 시작*/
    .suggestArea {
        margin-bottom: 60px;
    }

    .suggestArea h2 {
        padding: 0 3%;
        box-sizing: border-box;
    }

    .suggestArea .slide-item img {
        width: 200px;
        height: 130px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 8px;
    }

    .slide-box::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .slideText h3 {
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;

        width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    /* contentArea - suggestArea 끝*/
    

    /* ourFamily 시작 */
    .ourFamily{
        /*padding: 0 3%;*/
    }
    .slide{
        float: left;
        margin-bottom: 30px;
    }
    
    .slide .slide-wrapper:nth-child(2){
        display: none;
    }
    
    .slide .slide-wrapper:nth-child(3){
        display: none;
    }
    
    .slide .slide-wrapper {
        position: relative;
        transition: all ease 0.4s;
        margin-bottom: 5px;
		
    }

    .slide-wrapper .slide-wrapper-inner {
        box-sizing: border-box;
        border-radius: 5px;
        height: 160px;
        color: #fff;
        overflow: hidden;

        display: flex !important;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
    }

	.slide-wrapper h4{
		position: absolute;
		left: 0px;
		bottom: 0px;
		background: rgba(255,255,255,0.8);
		width: 100%;
		line-height: 35px;
		text-align: center;
		color: #1e6fb7;
		font-weight: 500;
	}
	
    .slide.slick-center .slide-wrapper .slide-wrapper-inner { 
        width: 90%;
        margin: 0 auto;
        color: #fff;
		overflow: hidden;
		box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    }

    .slide-wrapper-inner img {
        display: none !important;
    }

    .slide .slide-wrapper a {
        display: block;
        position: absolute;
        width: 8px;
        height: 8px;
        top: 50%;
        outline: none;
        opacity: 0;
        transition: all ease 0.4s;
    }
    
    .bannerNumber{
        display: none;
    }

        .slide .slide-wrapper .familyInfo{
        width: 100%;
            
    }
    
 
    .familyInfo h3 {
        padding: 3px 0;
        font-size: 16px;
        margin-top: 130px;
        background: rgba(0,78,162,0.7);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .familyInfo p {
        font-size: 14px;
    }

    .slide .slide-wrapper a.arrow-right {
        right: 0;
        transform: translate(0, -50%);
        background-color: red;
    }

    .slide .slide-wrapper a.arrow-left {
        left: 0;
        transform: translate(0, -50%);
        background-color: red;
    }

    .bannerNumber {
        padding-left: 50px;
        margin-bottom: 40px;
    }

    .bannerNumber ul li {
        display: none;
        font-size: 16px;
    }

    .bannerNumber ul li.active {
        color: #a3a3a3;
        display: block;
    }

    .bannerNumber ul li.active span {
        color: #000;
    }

    /* ourFamily 끝 */

    /* 교육지원센터 시작 */
    .customerArea {
        margin-bottom: 40px;
    }

    .customerArea h2 {
        padding: 0 3%;
    }

    .customerArea .slide-item {
        margin-right: 20px;
        border-radius: 5px;
    }

    .slideTextCenter {
        margin: 0 auto;
    }

    .slideTextCenter h3 {
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        width: 80px;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .circleImg {
        text-align: center;
        width: 80px;
        height: 80px;
        border-radius: 35px;
        background-color: #f3f3f3;
        border: 1px solid #dadada;
        margin-bottom: 10px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circleImg img {
        border-radius: 35px;
        width: 100%;
    }

    /* 교육지원센터 끝*/

    .middleBanner{
        width: 100%;
        margin-bottom: 30px;
    }

    .middleBanner img{
        width: 100%;
    }

    
    /* footer 시작 */
    footer {
        color: #616161;
        padding: 30px 2%;
        text-align: center;
        background-color: #f8f8f8;
        font-size: 15px;
    }

    footer a {
        color: #616161;
    }

    .footerSnsArea {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;

        margin-bottom: 20px;
    }

    .footerSnsArea li {
        display: inline-block;
    }

    .footerSnsArea li:not(:last-of-type) {
        margin-right: 30px;
    }

    .footerSnsArea img {
        width: auto;
        height: auto;
        max-width: 30px;
    }

    .footerInfo {
        margin-bottom: 15px;
    }


    .footerInfo li:not(:last-of-type) {
        margin-right: 10px;
    }

    .footerInfo li a {
        font-size: 13px;
        text-decoration: underline;
    }

    .footerContent li {
        font-size: 13px;
    }

        .footerContent li span{
        color: #004ea2;
        font-weight: 500;
    }

    .footerContent li:not(:last-of-type) {
        margin-bottom: 5px;
    }

    /* footer 끝 */


    /* quickBanner 시작*/
    .quickBanner {
        position: fixed;
        bottom: 0px;
        right: 3%;
        /* width: 100px; */
        height: 208px;
        z-index: 1000;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .quickBanner a {
        width: 100px;
        height: 40px;
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        text-align: center;
        color: #fff;

        transition: all 0.3s ease;
        box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
            0px 2px 8px 0px rgba(0, 0, 0, 0.2);
        outline: none;
    }

    .quickBanner p {
        font-size: 12px;
        line-height: 16px;
    }

    .quickBtn01 {
        background: linear-gradient(0deg, rgb(253, 146, 46) 0%, rgba(251, 75, 2, 0.9) 100%);
        padding: 0;
        border: none;
    }

    .quickBtn02 {
        background: linear-gradient(0deg, rgb(67, 122, 233) 0%, rgba(12, 68, 179, 0.9) 100%);
        padding: 0;
        border: none;
    }

    .quickBtn03 {
        background: linear-gradient(0deg, rgb(141, 216, 97) 0%, rgba(102, 185, 53, 0.9) 100%);
        padding: 0;
        border: none;
    }

    .quickBtn04 {
        background: linear-gradient(0deg, rgb(104, 219, 215) 0%, rgba(0, 149, 161, 0.9) 100%);
        padding: 0;
        border: none;
    }

    /* quickBanner 끝*/

    /* 상단으로 가기 버튼 시작 */
    .topButton {
        position: fixed;
        right: 3%;
        bottom: 30px;
        border-radius: 5px;
        display: none;
        z-index: 999;
        width: 36px;
        height: 36px; 
        background-color: #548bcf;
    }

    .topBtnImg {
        width: auto;
        height: auto;
        max-width: 36px;
        animation: motion 0.5s linear 0s infinite alternate;
        margin-top: 0;
    }

    @keyframes motion {
        0% {
            margin-top: 0px;
        }

        100% {
            margin-top: -4px;
        }
    }

    /* 상단으로 가기 버튼 끝 */
}