@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) {
    * {
        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: 35px;
        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 끝  */

    /* 메뉴 시작 */
    #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;
    }

    .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: 20px 3%;
    }

    .menuLoginArea ul li {
        font-size: 26px;
    }
	.menuloginOff li{
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
	}
    .menuLoginArea ul li span {
        color: #004ea2;
        font-weight: 500;
    }
	.logOut{
		color: #666666 !important;
		padding: 8px 18px;
		box-sizing: border-box;
		border: 1px solid #666666;
		font-size: 18px;
		border-radius: 5px;
	}

    .menuLoginArea .menuloginOn {
        display: none;
    }

    .menuQuickArea {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;

        padding: 20px 3%;
        box-sizing: border-box;
    }

    .menuQuickArea ul li {
        text-align: center;
    }

    .menuQuickArea ul li img {
        /* filter: invert(100%) sepia(13%) saturate(0%) hue-rotate(59deg) brightness(106%) contrast(103%); */
        width: auto;
        height: auto;
        margin-bottom: 5px;
    }

    .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;
    }

    .slideBg01 {
        background: url('../../_images/slideBg01.png')no-repeat;
        background-size: cover;
    }

    .slideBg02 {
        background: url('../../_images/slideBg02.png')no-repeat;
        background-size: cover;
    }

    .slideBg03 {
        background: url('../../_images/slideBg03.png')no-repeat;
        background-size: cover;
    }

    .slideBg04 {
        background: url('../../_images/slideBg04.png')no-repeat;
        background-size: cover;
    }

    .slideBg05 {
        background: url('../../_images/slideBg05.png')no-repeat;
        background-size: cover;
    }

    .slideContent {
        text-align: center;
        height: 480px;
        padding-top: 155px;
        box-sizing: border-box;
        color: #fff;
    }

    .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-slide img {
        max-width: 100%;
        height: 320px;
        object-fit: cover;
    }

    .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;
    }


    /* 메인슬라이드 끝 */


    /* contentArea - noticeArea 시작*/
    .noticeArea {
        position: relative;
        margin-bottom: 50px;
    }

    .noticeArea button {
        position: absolute;
        top: 7px;
        right: 3%;

        border: none;
        background-color: transparent;
    }

    .noticeArea button img {
        width: auto;
        height: auto;
        max-width: 24px;
    }

    .noticeContent {
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .noticeContent dl {
        cursor: pointer;
        width: 48%;
    }

    .noticeContent dl:not(:last-of-type) {
        box-sizing: border-box;
    }

    .noticeContent dl dt {
        min-height: 52px;
        margin-bottom: 20px;
        font-size: 18px;
        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;
    }

    .noticeContent dl dd {
        font-size: 16px;
        line-height: 28px;
    }

    .noticeContent dl dd:first-of-type {
        min-height: 40px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        margin-bottom: 20px;
    }

    .noticeContent dl dd:nth-of-type(2) {
        color: #909090;
    }

    /* contentArea - noticeArea 끝*/

    /* 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 끝*/

    /* ourFamily 시작 */
    .slide .slide-wrapper {
        position: relative;
        transition: all ease 0.4s;
        margin-bottom: 10px;
    }

    .slide-wrapper .slide-wrapper-inner {
        padding: 30px;
        box-sizing: border-box;
        border-radius: 5px;
        height: 230px;
        color: #fff;

        display: flex !important;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
    }

    .slide.slick-center .slide-wrapper .slide-wrapper-inner {
        width: 95%;
        margin: 0 auto;
        color: #fff;
    }


    .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;
    }

    .corpBg {
        background-color: #11324d;
    }

    .studyCardBg {
        background-color: #23b5e6;
    }

    .licenseBg {
        background-color: #4450bf;
    }

    .nayanetBg {
        background-color: #0f51a1;
    }

    .safeBg {
        background-color: #be1d2c;
    }

    .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: 60px;
    }

    .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;
    }

    /* 교육지원센터 끝*/

    /* 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: 28px;
    }

    .footerContent li:not(:last-of-type) {
        margin-bottom: 10px;
    }

    /* 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;
        }
    }

    /* 상단으로 가기 버튼 끝 */

	/* 로딩화면 시작 */

    .loadingArea {
        background: #fff;
		opacity: 0.5;
        display: grid;
        place-items: center;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .txt {
        position: relative;
        top: 65px;
        font-family: sans-serif;
        color: #004ea2;
    }

    .support {
        width: 70px;
        height: 70px;
        position: absolute;
        animation: rotation 3.8s linear infinite;
    }

    .support:nth-child(1) {
        animation-delay: 0.15s;
    }

    .support:nth-child(2) {
        animation-delay: 0.3s;
    }

    .support:nth-child(3) {
        animation-delay: 0.45s;
    }

    .support:nth-child(4) {
        animation-delay: 0.6s;
    }

    .support:nth-child(5) {
        animation-delay: 0.75s;
    }

    .support:nth-child(6) {
        animation-delay: 0.9s;
    }

    @keyframes rotation {
        0% {
            opacity: 0.8;
        }

        30% {
            transform: rotate(180deg);
            opacity: 1;
        }

        40% {
            transform: rotate(360deg);
            opacity: 1;
        }

        80% {
            transform: rotate(720deg);
            opacity: 0.8;
        }

        81% {
            opacity: 0;
        }

        100% {
            transform: rotate(0deg);
            opacity: 0;
        }
    }

    .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #004ea2;
        position: relative;
        top: 48px;
        left: 0px;
    }

    /* 로딩화면 끝 */
}

@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;
    }

    .contentArea {
        margin-bottom: 80px;
    }

    .contentArea h2.title {
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .contentArea h2.title span {
        display: none;
    }

    .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: 95px;
    }

    .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 {
        position: fixed;
        background-color: #f3faff;
        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: 20px 3%;
    }

    .menuLoginArea ul li {
        font-size: 18px;
    }
	.menuloginOff li{
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
	}
    .menuLoginArea ul li span {
        color: #004ea2;
        font-weight: 500;
    }
	.logOut{
		color: #666666 !important;
		padding: 5px 15px;
		box-sizing: border-box;
		border: 1px solid #666666;
		font-size: 15px;
		border-radius: 5px;
	}
    .menuLoginArea .menuloginOn {
        display: none;
    }

    .menuQuickArea {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;

        padding: 10px 3% 15px 3%;
        box-sizing: border-box;
        /* border-bottom: 1px solid #ddd; */
    }

    .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: 14px;
        font-weight: 400;
    }

    .menuContentWrap nav {
        padding: 191px 3% 80px 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: 16px;
        font-weight: 500;
    }

    .menuContentWrap nav ul li ul li a {
        display: block;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        color: #616161;
    }

    .menuContentWrap nav ul li.sub-menu ul {
        margin-top: 8px;
    }

    .menuContentWrap nav ul li.sub-menu ul li {
        border-bottom: none;
        padding: 6px 0;
    }

    .menuContentWrap nav ul li a .fa {
        display: block;
        line-height: 20px;
        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: 30px;
    }

    .menuSnsArea li img {
        width: auto;
        height: auto;
        max-width: 30px;
    }

    /* 메뉴 끝 */

    /* 메인슬라이드 시작 */
    .mainSlideArea {
        margin-bottom: 40px;
    }

    .gallery1 {
        width: 100%;
    }

    .swiper-wrapper {
        position: relative;
    }

    .slideBg01 {
        background: url('../../_images/slideBg01.png')no-repeat;
        background-size: cover;
    }

    .slideBg02 {
        background: url('../../_images/slideBg02.png')no-repeat;
        background-size: cover;
    }

    .slideBg03 {
        background: url('../../_images/slideBg03.png')no-repeat;
        background-size: cover;
    }

    .slideBg04 {
        background: url('../../_images/slideBg04.png')no-repeat;
        background-size: cover;
    }

    .slideBg05 {
        background: url('../../_images/slideBg05.png')no-repeat;
        background-size: cover;
    }

    .slideContent {
        text-align: center;
        height: 300px;
        padding-top: 100px;
        box-sizing: border-box;
        color: #fff;
    }

    .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-slide img {
        max-width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .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 {
        bottom: 10px !important;
    }

    .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;
    }


    /* 메인슬라이드 끝 */


    /* contentArea - noticeArea 시작*/
    .noticeArea {
        position: relative;
        margin-bottom: 40px;
    }

    .noticeArea button {
        position: absolute;
        top: 4px;
        right: 3%;

        border: none;
        background-color: transparent;
    }

    .noticeArea button img {
        width: auto;
        height: auto;
        max-width: 20px;
    }

    .noticeContent {
        flex-direction: column;
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .noticeContent dl {
        cursor: pointer;
    }

    .noticeContent dl:not(:last-of-type) {
        box-sizing: border-box;
        margin-bottom: 35px;
    }

    .noticeContent dl dt {
        margin-bottom: 15px;
        font-size: 16px;
        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;
    }

    .noticeContent dl dd {
        font-size: 15px;
    }

    .noticeContent dl dd:first-of-type {
        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: 15px;
    }

    .noticeContent dl dd:nth-of-type(2) {
        color: #909090;
    }

    /* 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 시작 */
    .slide .slide-wrapper {
        position: relative;
        transition: all ease 0.4s;
        margin-bottom: 5px;
    }

    .slide-wrapper .slide-wrapper-inner {
        padding: 15px 10px;
        box-sizing: border-box;
        border-radius: 5px;
        height: 160px;
        color: #fff;

        display: flex !important;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
    }

    .slide.slick-center .slide-wrapper .slide-wrapper-inner {
        width: 90%;
        margin: 0 auto;
        color: #fff;
    }

    .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;
    }

    .medyonBg {
        background-color: #52bdb5;
    }

    .corpBg {
        background-color: #11324d;
    }

    .studyCardBg {
        background-color: #23b5e6;
    }

    .licenseBg {
        background-color: #4450bf;
    }

    .nayanetBg {
        background-color: #0f51a1;
    }

    .safeBg {
        background-color: #be1d2c;
    }

    .familyInfo {
        /* width: 70%; */
    }

    .familyInfo h3 {
        font-weight: 500;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .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;
    }

    /* 

    .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: 40px;
    }

    .customerArea h2 {
        padding: 0 3%;
    }

    .customerArea .slide-item {
        margin-right: 30px;
        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%;
    }

    /* 교육지원센터 끝*/

    /* 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 {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;

        margin-bottom: 10px;
    }

    .footerInfo li {
        display: inline-block;
    }

    .footerInfo li:not(:last-of-type) {
        margin-right: 20px;
    }

    .footerInfo li a {
        font-size: 13px;
        text-decoration: underline;
    }

    .footerContent li {
        font-size: 13px;
        line-height: 22px;
    }

    .footerContent li:not(:last-of-type) {
        margin-bottom: 10px;
    }

    /* 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: #004ea2;
    }

    .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;
        }
    }

    /* 상단으로 가기 버튼 끝 */

	
    /* 로딩화면 시작 */

    .loadingArea {
        background: #fff;
		opacity: 0.5;
        display: grid;
        place-items: center;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .txt {
        position: relative;
        top: 65px;
        font-family: sans-serif;
        color: #004ea2;
    }

    .support {
        width: 30px;
        height: 30px;
        position: absolute;
        animation: rotation 3.8s linear infinite;
    }

    .support:nth-child(1) {
        animation-delay: 0.15s;
    }

    .support:nth-child(2) {
        animation-delay: 0.3s;
    }

    .support:nth-child(3) {
        animation-delay: 0.45s;
    }

    .support:nth-child(4) {
        animation-delay: 0.6s;
    }

    .support:nth-child(5) {
        animation-delay: 0.75s;
    }

    .support:nth-child(6) {
        animation-delay: 0.9s;
    }

    @keyframes rotation {
        0% {
            opacity: 0.8;
        }

        30% {
            transform: rotate(180deg);
            opacity: 1;
        }

        40% {
            transform: rotate(360deg);
            opacity: 1;
        }

        80% {
            transform: rotate(720deg);
            opacity: 0.8;
        }

        81% {
            opacity: 0;
        }

        100% {
            transform: rotate(0deg);
            opacity: 0;
        }
    }

    .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #004ea2;
        position: relative;
        top: 30px;
        left: 0px;
    }

    /* 로딩화면 끝 */
}