@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');

#site {
    padding-top: 153px;
}

@media (max-width: 767px) {
    #site {
        padding-top: 59px;
    }
}

/* 폰트 설정 */
*,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button {
    font-family: 'notokr',
        "NanumGothic", "나눔고딕",
        'NanumBarunGothic',
        'Apple SD Neo Gothic',
        'Malgun Gothic',
        'Gulim',
        'Nanum Myeongjo',
        serif,
        sans-serif;

}

ol,
ul,
li {
    list-style: none;
    list-style-position: inside;
    font-size: 15px;
    line-height: 1.4;
}

p {
    font-size: 15px;
    line-height: 1.6;
}

a:hover,
a:focus {
    text-decoration: none;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

/* 불필요 항목 삭제 */
.navbar .caret {
    display: none;
}

/* 레이아웃 조정 */
.navbar-inverse+.container {
    padding: 0;
    width: 100%;
}

.board_wrapper,
.search_wrap,
.pagination_wrap {
    visibility: hidden;
}


/* =============== 네비게이션 =============== */

.navbar-inverse {
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 0;
    border: 0
}

.navbar-brand {
    height: auto;
    padding: 0px;
}

.navbar-inverse .navbar-nav>li>a {
    font-weight: 600;
    color: #333;
}

.navbar-inverse .navbar-nav>li>a::before {
    font-family: "Font Awesome 5 Free";
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
    color: #6a3a05;
}

.navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle {
    background: none;
    color: #6a3a05;
}

/* 메뉴 - 상단 */
.menu-top .container {
    padding: 26px 0 26px;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.menu-top .logo {
    margin: 0;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.menu-top ul {
    float: right;
    padding-top: 23px;
    padding-right: 150px;
    margin: 0;
}

.menu-top ul li {
    display: inline-block;
    padding: 0 10px;
    border-right: 1px solid #ddd;
    line-height: 1;
    font-size: 13px;
}

.menu-top ul li:last-child {
    border: none;
}

.menu-top ul li a {
    color: #999;
}

.menu-top ul li a:hover {
    color: #666;
}


@media (max-width: 767px) {

    .menu-top {
        display: none;
    }

    .navbar-brand {
        padding: 20px 0 20px 15px;
    }

    .navbar-brand>img {
        width: 220px;
    }

    .navbar-inverse .navbar-toggle {
        border: 0;
        margin: 14px 15px 13px 0;
        padding: 9px 0;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #666;
        transition: ease-in-out .15s all;
        opacity: 1;
        position: relative;
    }

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: none;
        border-color: #222;
    }

    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #222;
    }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: transparent;
    }

    .navbar-inverse .navbar-collapse {
        background: #865f34;
    }

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(3) {
        transform: rotate(-45deg);
        top: -6px;
    }

    .navbar-inverse .navbar-nav>li>a {
        padding: 7px 15px;
        font-weight: 400;
        color: #fff;
    }

    .navbar-inverse .navbar-nav>li>a:hover,
    .navbar-inverse .navbar-nav>li>a:focus {
        color: #fff;
    }
}

@media (min-width: 768px) {

    .navbar-header {
        display: none;
    }

    .navbar-inverse .navbar-right {
        width: 100%;
        text-align: center;
    }

    .navbar-nav>li {
        float: none;
        display: inline-block;
    }

    .navbar-inverse .navbar-nav>li>a {
        padding: 18px 50px;
        font-size: 17px;
        /* font-weight: 500; */
        letter-spacing: -0.04em;
        color: #000;
        font-family: "NanumSquare" !important;
    }

    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 12px;
        border: 1px solid #d5d5d5;
        padding: 15px 0;
        -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, .125);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, .125);
        background: #fff;
    }

    .navbar-inverse .navbar-nav .dropdown-menu>li>a {
        padding: 7px 25px;
        font-size: 15px;
        color: #666;
        letter-spacing: -0.03em;
    }

    .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu>li>a:focus {
        background: none;
        color: #237f39;
        text-decoration: underline;
    }
}


/* =============== 메인 페이지 =============== */

/* 슬라이드 */
#mainCarousel .carousel-inner .item {
    height: 680px;
}

.carousel-control {
    text-shadow: 0px 2px 6px rgba(0, 0, 0, .125);
    transition: ease-in-out .15s all;
    display: none;
}

.carousel-control.left .glyphicon::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.carousel-control.right .glyphicon::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, .1);
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 3px;
    transition: ease-in-out .15s all;
}

.carousel-indicators li.active {
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .125);
}

.carousel-caption {
    padding: 0;
    text-shadow: none;
}

.carousel-caption h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: "NanumSquare";
    letter-spacing: -0.034em;
    margin-bottom: 60px;
    margin-top: 30px;
}

.carousel-caption .slide-btn {
    display: block;
    margin: 50px auto 0;
    padding: 15px 0;
    width: 230px;
    background: #292929;
    border-radius: 200px;
    color: #ffbc76;
    font-size: 15px;
    font-weight: 400;
}

/* 메인 - 게시판 */
#section_ea5d2f {
    padding: 100px 0;
    background: #ead3ba;
}

div[class^="board_box_"] .page-header {
    float: left;
    width: 195px;
    margin: 0;
    border-bottom: none;
}

div[class^="board_box_"] .page-header h4 {
    position: relative;
    margin: 0 0 35px;
    padding: 0;
    font-size: 28px;
    color: #543718;
    position: relative;
    margin: 0 0 35px;
    font-size: 30px;
    font-weight: 900;
    font-family: "NanumSquare";
    letter-spacing: -0.034em;
}

div[class^="board_box_"] .page-header h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 40px;
    height: 1px;
    background: #333;
}

div[class^="board_box_"] .page-header .pull-right {
    display: none;
}

#section_ea5d2f div[class^="board_box_"] .page-header h4:after {
    content: "Calendar";
    font-size: 55%;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    font-size: 12px;
    letter-spacing: -0.01em;
    /* font-weight: 900; */
    margin-top: 10px;
    color: rgb(181, 146, 113);
    font-family: 'notokr';
}

.board_box_blog2 {
    margin-bottom: 0 !important;
}

.board_box_blog2:after {
    content: "";
    display: block;
    clear: both;
}

.board_box_blog2>.row {
    float: left;
    width: calc(100% - 195px);
}

.board_box_blog2 .col-md-4 {
    width: 25%;
}

.board_box_blog2 .inner {
    margin-bottom: 0;
    margin-top: 0;
    border-color: rgba(255, 255, 255, 0.3);
}

.board_box_blog2 .inner:hover,
.board_box_blog2 .inner:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.board_box_blog2 .inner .bottom {
    display: none;
    background: #fff;
}

.board_box_blog2 .inner .bottom .title a {
    font-size: 17px;
}

/* 메인 - 컨텐츠 */
.main-content section {
    padding: 120px 0;
}

.main-content .main-sec-tit {
    position: relative;
    margin: 0 0 35px;
    font-size: 30px;
    font-weight: 900;
    font-family: "NanumSquare";
    letter-spacing: -0.034em;
}

.main-content .main-sec-tit:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 40px;
    height: 1px;
    background: #333;
}

.main-content .main-sec-tit span {
    display: block;
    font-size: 12px;
    letter-spacing: -0.01em;
    /* font-weight: 600; */
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.3);
}

.main-curriculum .col-sm-3 {
    width: 20%;
}

.main-curriculum .inner {
    display: block;
}

.main-curriculum img {
    /* box-shadow: 0 0 15px rgba(0,0,0,0.125); */
    /* border: 2px solid #ddd; */
    transition: 0.35s ease;
}

.main-curriculum .inner:hover img {
    border-color: #865f34;
    background: #000;
}

.main-curriculum h5 {
    margin: 30px 0 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.35;
    color: #333;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.main-location #daumRoughmapContainer1588904866648 {
    width: 100% !important;
    border-bottom: 1px solid #ddd;
}

.main-location dl {
    margin: 100px 0 0;
    padding-left: 35px;
}

.main-location dt span {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing: -0.04em;
    color: #111;
    display: inline-block;
    /* border-bottom: 2px solid #ddd; */
    padding-bottom: 3px;
}

.main-location dd {
    margin-bottom: 15px;
    font-size: 17px;
    letter-spacing: -0.03em;
    color: #666;
}


/* =============== 푸터 =============== */
.footer-wrap {
    padding: 40px 0 45px;
    background: #444;
    color: #bbb;
}

.footer-wrap h5 {
    letter-spacing: -0.034em;
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-wrap address,
.footer-wrap ul {
    margin: 0;
    letter-spacing: -0.04em;
}

.footer-wrap .footer-info li {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
}

.footer-wrap .copy {
    margin: 15px 0 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-wrap .sns-link li {
    display: block;
    font-size: 13px;
}

.footer-wrap .sns-link li a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-wrap .sns-link li a:hover {
    color: #fff;
}

.footer-wrap .sns-link li+li {
    margin: 7px 0 0;
}

.footer-wrap .sns-link li img {
    display: inline-block;
    margin-right: 5px;
    border-radius: 21px;
    overflow: hidden;
}


/* =============== 게시판 =============== */
.table_blog2 dd .inner:hover {
    border-color: #e4963f;
}

.btn.btn-primary {
    background-color: #865f34;
    border-color: #865f34;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #6a3a05;
    border-color: #6a3a05;
}

@media (max-width: 768px) {

    .subpage[id^="bbs"] .board_wrapper {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .table_blog2 dd{
        width: 100%;
    }

    .table.table_default {
        margin-bottom: 0;
    }

    .search_wrap {
        margin-bottom: 0;
    }

    .search_wrap #search_kind {
        width: 28%;
        float: left;
    }

    #search_query {
        width: 70% !important;
        float: right;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    #board_write_form fieldset>.text-center {
        display: flex;
    }

    #board_write_form fieldset>.text-center .btn.btn-lg {
        width: 100%;
        padding: 15px;
    }

    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big {
        width: 100%;
    }
}


/* =============== 로그인 =============== */

.member_wrapper {
    margin: 0 auto;
    max-width: 1140px;
}

@media (max-width: 768px) {
    .member_wrapper {
        padding: 70px 15px;
    }

    .member_wrapper .login_extra ul li+li::before {
        margin: 0 10px;
    }
}


/* =============== 문의폼 =============== */
.board_wrapper .table.board_write_table tbody tr th {
    position: static;
}


/* =============== 서브페이지 =============== */
.pageheader {
    display: table;
    width: 100%;
    height: 300px;
    text-align: center;
    background: #eee url(/public/img/sub/subtop-bg.jpg) no-repeat center / cover;
    border-bottom: 1px solid #eee;
}

.pageheader .container {
    position: relative;
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding-top: 20px;
}

.pageheader h2 {
    margin: 0;
    font-weight: 700;
    font-size: 42px;
    color: #111;
    letter-spacing: -0.05em;
    position: relative;
    padding-bottom: 30px;
    font-family: "NanumSquare";
}

#notice01 .pageheader,
.subpage[id^="bbs"] .pageheader,
.subpage[id^="site"] .pageheader {
    height: 280px;
}

#notice01 .pageheader h2,
.subpage[id^="bbs"] .pageheader h2,
.subpage[id^="site"] .pageheader h2 {
    padding-bottom: 0;
}

.pageheader h2:after {
    content: "";
    display: block;
    margin: 20px auto 0;
    width: 35px;
    height: 1px;
    background: #999;
}

.pageheader h2 small {
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 900;
    color: #999;
    letter-spacing: 0;
    font-family: "Noto Sans KR";
}

.pageheader p {
    font-size: 16px;
    margin-bottom: 0;
    letter-spacing: -0.06em;
    font-weight: 400;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
    color: #bbb;
}

.breadcrumb .active {
    color: #fff;
}

.subpage-content {
    padding-top: 80px;
    padding-bottom: 180px;
}

.subpage-content section {
    margin-bottom: 120px;
}

.subpage-content section article {
    margin-bottom: 100px;
}

.subpage-content section:last-child,
.subpage-content section article:last-child {
    margin-bottom: 0;
}

.subpage-content .emph {
    color: #c36600;
    font-weight: 500;
}

h2.subTitle {
    margin: 0;
    font-size: 32px;
    letter-spacing: -0.04em;
    border-left: 6px solid #e4e4e4;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
}

h3.subTitle {
    margin: 0;
    /* border: 1px solid #ccc; */
    font-size: 27px;
    font-weight: bold;
    color: #000;
    /* padding: 16px 40px; */
    display: inline-block;
    /* border-bottom: none; */
    /* border-top-left-radius: 8px; */
    /* border-top-right-radius: 8px; */
    /* background: #fff; */
    letter-spacing: -0.04em;
    line-height: 1;
    /* font-family: "NanumSquare"; */
    font-weight: 700;
    /* padding-left: 9px; */
}

.subTitle-wrap {
    margin: 0 0 40px;
    position: relative;
}

.subTitle-wrap:after {
    content: "";
    width: 1px;
    height: 27px;
    background: #333;
    display: block;
    position: absolute;
    left: 0;
    bottom: 1px;
    z-index: -1;
    display: none;
}

/* 서브메뉴 */
.snb {
    margin: 0 0 100px;
    padding: 0 0 0px;
}

.snb ul {
    display: flex;
    margin-bottom: 0;
    /* border-bottom: 1px dashed #ddd; */
}

.snb ul li {
    width: 100%;
}

.snb ul:after {
    content: '';
    display: block;
    clear: both;
}

.snb ul li a {
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 16px 0;
    font-weight: 500;
    border: 1px solid #d3d3d3;
    /* margin-right: 10px; */
    transition: all ease .3s;
    text-decoration: none;
    border-right: none;
    letter-spacing: -0.06em;
    color: #666;
}

.snb ul li a:hover {
    color: #c26807;
    border-color: #ccc;
}

.snb ul .active a {
    background: #b1793b !important;
    border-color: #b1793b !important;
    color: #fff !important;
}

.subpage[id^="curriculum"] .snb ul li a {
    height: 80px;
}

.subpage[id^="curriculum"] .snb ul li:nth-child(3) a,
.subpage[id^="curriculum"] .snb ul li:nth-child(4) a,
.subpage[id^="curriculum"] .snb ul li:nth-child(5) a {
    padding-top: 28px;
}

/* about */
.greeting-wrap p {
    margin: 0 0 30px;
    font-size: 17px;
    letter-spacing: -0.034em;
    line-height: 1.5em;
    font-style: inherit;
}

.greeting-wrap h5 {
    position: relative;
    margin: 30px 0 20px;
    line-height: 1.4;
    font-size: 32px;
    letter-spacing: -0.06em;
    font-weight: 400;
    color: #111;
    font-family: 'Nanum Myeongjo',
        serif;
}

.greeting-wrap h5::after {
    content: "";
    width: 40px;
    height: 1px;
    background: #333;
    margin: 20px 0 30px;
    display: block;
}

/* .greeting-wrap .name-mean{
    margin: 35px 0 15px;
    padding: 25px;
    background: #fafafa;
    border: 1px solid #eee;
} */

/* .greeting-wrap .name-mean p:last-child{
    margin-bottom: 0;
} */

.greeting-wrap .name-mean span {
    display: inline-block;
    padding: 1px 9px;
    background: #ca904f;
    border-radius: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.slogan-wrap {
    text-align: center;
}

.slogan-wrap h5 {
    position: relative;
    margin: 0 auto 50px;
    padding: 30px;
    /* background: #f8f3ed; */
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #333;
    font-family: 'Nanum Myeongjo',
        serif;
    /* width: 80%; */
    border: 1px solid #ccc;
    letter-spacing: 0.02em;
}

.slogan-wrap h5:before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 25px;
    height: 25px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #333 transparent transparent #333;
}

.slogan-wrap h5:after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 25px;
    height: 25px;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: transparent #333 #333 transparent;
}

.slogan-wrap h5 span:before {
    left: -65px;
    background-image: url(/public/img/sub/quote-left.png);
}

.slogan-wrap h5 span:after {
    right: -65px;
    background-image: url(/public/img/sub/quote-right.png);
}

.profile-wrap {
    margin-bottom: 80px !important;
    padding-bottom: 80px !important;
    border-bottom: 1px dashed #ddd;
}

.profile-wrap:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none;
}

.profile-wrap .intro p {
    position: relative;
    margin: 0 0 120px;
    /* padding: 30px; */
    /* background: #eee6dc; */
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    color: #6a3a05;
    letter-spacing: -0.06em;
}

.profile-wrap .intro p span {
    display: inline-block;
    position: relative;
    font-family: 'Nanum Myeongjo', serif;
    color: #333;
    letter-spacing: -0.06em;
    padding: 0 60px;
}

.profile-wrap .intro p span:before,
.profile-wrap .intro p span:after {
    content: "";
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.profile-wrap .intro p span:before {
    left: 20px;
    background-image: url(/public/img/sub/quote-left.png);
}

.profile-wrap .intro p span:after {
    right: 20px;
    background-image: url(/public/img/sub/quote-right.png);
}

.content-summary p {
    position: relative;
    margin: 0 0 30px;
    padding: 30px;
    background: #f8f3ed;
    text-align: center;
    font-size: 17px;
}

.content-summary p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border-width: 3px 0 0 3px;
    border-style: solid;
    border-color: #dacec0 transparent transparent #dacec0;
}

.content-summary p:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    border-width: 0 3px 3px 0;
    border-style: solid;
    border-color: transparent #dacec0 #dacec0 transparent;
}


.profile-wrap .inner {
    position: relative;
    padding: 80px 0 0 50px;
    /* border: 1px solid #ddd; */
    min-height: 490px;
}

.profile-wrap .name-left h5 {
    margin: 0 0 30px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.034em;
    color: #111;
    font-family: 'Nanum Myeongjo', serif;
}

.profile-wrap .name-left h5 span {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    margin-left: 5px;
    letter-spacing: -0.034em;
    color: #999;
}

.profile-wrap .name-left h5:after {
    margin-top: 25px;
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    background: #e0e0e0;
    display: none;
}

.profile-wrap .inner .disc-title {
    margin: 0 0 60px;
    position: relative;
    /* padding-left: 10px; */
    font-size: 17px;
    letter-spacing: 0;
    color: #111;
    font-weight: 400;
    letter-spacing: 0em;
}

.profile-wrap .inner .disc-title+ul {
    margin-top: -8px;
}

.profile-wrap .disc-title:before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    background: #111;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: none;
}

.profile-wrap .refer {
    min-height: 160px;
    /* border-right:1px solid #ddd; */
}

.profile-wrap .inner ul {
    margin-bottom: 0;
}

.profile-wrap .refer li,
.profile-wrap .qualify li {
    font-size: 14px;
    color: #333;
    padding-left: 13px;
    position: relative;
    padding-bottom: 7px;
}

.name-right ul {
    text-align: right;
}

.name-right ul li {
    padding-left: 10px;
    display: inline-block;
}

.name-right ul li img {
    width: 30px;
}

.profile-wrap .qualify li {
    letter-spacing: -0.03em;
}

.academy-view {
    position: relative;
    /* margin: 0 0 50px; */
    padding: 50px 70px 100px;
    border: 1px solid #999;
    box-shadow: 5px 5px 0px 0 rgba(0, 0, 0, 0.1);
}

.academy-view:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 4px;
    height: 66px;
    background: #333;
}

.academy-view .txt h5 {
    margin: 0 0 25px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.034em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.academy-view .txt h5 span {
    display: block;
    font-weight: 400;
    font-size: 20px;
}

.academy-view .txt h5 small {
    display: block;
    margin: 15px 0 0;
    font-size: 17px;
    line-height: 1.4;
}

.academy-view .slide-container {
    margin-top: 100px;
}

/* .academy-view .slide-wrap .item {
    position: relative;
    min-height: 400px;
} */

/* .academy-view .slide-wrap .item img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
} */

.slide-wrap .item {
    position: relative;
}

.slide-wrap .item p {
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    margin: 0;
    font-style: italic;
    font-size: 18px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.academy-view .slick-dots {
    bottom: -30px;
}

.academy-view .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.academy-view .slick-dots li button:before {
    color: #fff;
    font-size: 13px;
    opacity: 1;
    content: "";
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
}

.academy-view .slick-dots li.slick-active button:before {
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: #6a3a05;
}

#daumRoughmapContainer1588752386049 {
    width: 100% !important;
}

.table-responsive{
    margin: 50px 0 0;
}

.location-table {
    margin: 0;
    width: 100%;
    border-top: 1px solid #999;
}

.location-table tr th,
.location-table tr td {
    padding: 20px 15px;
    border-bottom: 1px solid #ddd !important;
    letter-spacing: -0.03em;
    word-break: keep-all;
    vertical-align: middle !important;
}

.location-table tr th {
    color: #222;
    background: #f8f8f8;
    text-align: center;
    font-weight: 500;
}

/* notice */
.edu-link .col-sm-6 a {
    border: 1px solid #ddd;
    border-radius: 5px;
    min-height: 200px;
    display: block;
    transition: all ease .3s;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #333;
}

.edu-link .col-sm-6 a .top {
    display: block;
    position: relative;
    text-align: left;
    text-decoration: none;
    padding: 50px 40px 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    transition: all ease .3s;
}

.edu-link .col-sm-6 a .top h3::after {
    content: "〉";
    position: absolute;
    top: -2px;
    right: -35px;
    font-weight: 900;
    color: #333;
    font-size: 17px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #ddd;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all ease .3s;
    text-align: center;
    margin-left: 10px;
}

.edu-link .col-sm-6 a .bottom p {
    font-size: 17px;
    text-align: left;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 40px;
    letter-spacing: -0.06em;
}

.edu-link .col-sm-6 a:hover {
    border-color: #e4963f;
}

/* .edu-link .col-sm-6 a:hover .top {
    background: #dacec0;
} */

.edu-link .col-sm-6 a:hover .top h3::after {
    background: #e4963f;
    color: #fff;
}

.edu-link .col-sm-6 a .top h3 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.03em;
    margin: 0;
    font-family: "NanumSquare";
    display: inline-block;
    position: relative;
}

/* curriculum */
.curriculum-info {
    margin: 30px 0 50px;
}

.curriculum-wrap .item {
    margin: 0 0 15px;
    border: 1px solid #ccc;
    padding: 30px 40px;
    position: relative;
}

.curriculum-wrap h5 {
    margin: 0 0 20px;
    font-size: 20px;
    letter-spacing: -0.06em;
}

.curriculum-wrap h5 span {
    display: inline-block;
    color: #777;
    padding-left: 10px;
    font-size: 15px;
}

.curriculum-wrap ul li {
    display: table;
    position: relative;
    padding-left: 10px;
    line-height: 1.5;
    color: #333;
    font-size: 16px;
    letter-spacing: -0.034em;
}

.curriculum-wrap ul li span {
    display: table-cell;
    min-width: 80px;
    font-weight: 600;
    color: #222;
}

.curriculum-wrap ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d66500;
}

/* certificate */
.list-style {
    margin: 0;
}

.list-style li {
    position: relative;
    padding-left: 27px;
    padding-top: 2px;
    font-size: 15px;
    /* line-height: 1.6; */
}

.list-style li+li {
    margin: 9px 0 0;
}

.list-style li .num {
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: #dca56a;
    border-radius: 50px;
    text-align: center;
    padding-top: 2px;
    /* margin: 0; */
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.txt-detail {
    padding: 10px 0 15px 29px;
}

.txt-detail ul {
    margin: 0;
}

.txt-detail ul li {
    position: relative;
    padding-left: 12px;
    font-size: 15px;
    /* line-height: 1.6; */
    letter-spacing: -0.034em;
    margin-bottom: 5px;
}

.txt-detail ul li span {
    display: block;
    color: #555;
}

.txt-detail ul li:before {
    content: " - ";
    position: absolute;
    left: 0;
    top: 0;
}

/* site */
.site-link .inner {
    display: inline-block;
    width: 100%;
    border: 1px solid #ccc;
    margin: 0 0 30px;
    padding: 30px;
    text-align: center;
    color: #333;
    box-shadow: 4px 4px 0px 0 rgba(0, 0, 0, 0.05);
    border-top: 1px solid;
}

.site-link .inner:hover,
.site-link .inner:focus {
    border-color: #e4963f;
}

.site-link .inner h5 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.06em;
    color: #333;
}

.site-link .inner p {
    /* text-decoration: underline; */
    font-size: 13px;
    font-weight: 700;
    color: #e09d51;
}

.snb ul li:first-child a {
    border-left: none;
}

#about02 .subTitle-wrap,
#about03 .subTitle-wrap,
#about04 .subTitle-wrap,
#about05 .subTitle-wrap {
    display: none;
}

.profile-wrap .refer li::before,
.profile-wrap .qualify li::before {
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    background: #999;
    position: absolute;
    top: 10px;
    left: 1px;
}

.profile-wrap .inner .disc-title:last-child {
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 11px;
    margin-bottom: 20px;
    color: #333;
}

.profile-wrap .inner .disc-title:last-child::before {
    content: '';
    display: block;
    width: 65px;
    height: 1px;
    top: 28px;
    transform: none;
    position: absolute;
    border-radius: 0;
}

.name-mean p:nth-child(3) {
    font-size: 18px;
    font-style: italic;
    color: #c36600;
}

.name-mean p {
    margin-bottom: 15px;
}

.slogan-wrap p {
    font-size: 17px;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    text-align: left;
}

.profile-wrap .intro p::after {
    content: '';
    width: 60px;
    height: 1px;
    background: #999;
    display: block;
    margin: 50px auto;
}

.academy-view .txt p {
    font-size: 17px;
    font-family: "NanumSquare";
    letter-spacing: -0.034em;
    padding-top: 20px;
}

.curriculum-info p,
.subTitle-wrap+p {
    font-size: 17px;
    letter-spacing: -0.04em;
    line-height: 1.6em;
}

.curriculum-wrap .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 25px;
    height: 1px;
    background: #333;
}

#curriculum03 .curriculum-wrap h5,
#curriculum02 .curriculum-wrap h5 {
    letter-spacing: -0.02em;
}

/* #curriculum02 img {
    padding-bottom: 25px;
} */

#curriculum04 .curriculum-wrap h5 span {
    letter-spacing: -0.02em;
}

.site-link .inner:hover h5,
.site-link .inner:focus h5 {
    color: #c36600;
}

.board_wrapper {
    margin-top: 20px;
}

.board_data_view .header_wrap {
    border-bottom: 1px dashed #ddd;
}

.board_data_view .header_wrap .title {
    letter-spacing: -0.06em;
}

.table.table_default tr th,
.table.table_default tr td {
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

.table.table_default tbody .subject a {
    font-size: 16px;
    letter-spacing: -0.06em;
}

.board_wrapper .table.board_write_table tbody tr th {
    font-size: 14px;
}

.checkbox label,
.radio label {
    font-size: 15px;
    letter-spacing: -0.06em;
}

#bbs01 .subpage-content,
#bbs02 .subpage-content {
    padding-bottom: 50px;
}

.board_wrapper .text-center {
    margin-bottom: 50px;
}

.board_wrapper .reply_wrap {
    padding-bottom: 100px;
}

.table_blog2 dd .inner .bottom .title a:hover,
.table_blog2 dd .inner .title a:focus {
    color: #c36600;
}

.table_blog2 dd .inner .bottom .title a {
    font-weight: 500;
}

[id^="certificate0"] h3.subTitle {
    font-size: 22px;
    position: relative;
    padding-left: 10px;
}

[id^="certificate0"] h3.subTitle::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 22px;
    background: #000;
    position: absolute;
    left: 0;
}

[id^="certificate0"] .subTitle-wrap {
    margin-bottom: 20px;
}

[id^="certificate0"] .subpage-content section {
    margin-bottom: 80px;
}

[id^="certificate0"] .subpage-content section:last-child {
    margin-bottom: 0;
}

.list-style li {
    font-size: 16px;
    letter-spacing: -0.034em;
}

.root_daum_roughmap .wrap_map {
    height: 320px !important;
}

.carousel-caption .slide-btn:hover {
    color: #ffcd98;
}

.carousel-caption p {
    font-size: 20px;
    font-weight: 300;
}

.main-curriculum a:hover h5 {
    color: #b55f00;
}

.edu-link .col-sm-6 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f073";
    position: absolute;
    bottom: -30px;
    right: 0;
    font-size: 160px;
    z-index: -1;
    line-height: 1;
    color: #eee;
}

.edu-link .col-sm-6:first-child a::before {
    content: "\f51b";
    color: #eee;
    font-size: 130px;
    bottom: -5px;
    right: -10px;
}

.edu-link .col-sm-6 a:hover::before {
    color: #f9ecde;
}

.edu-link .col-sm-6 a:hover .top h3 {
    color: #c36600;
}

.row>div.col-sm-25 {
    width: 20%;
}

.CSQM-imgs p {
    margin: 10px 0 0;
    text-align: center;
    font-weight: 500;
}


/* =============== 반응형 =============== */

@media (max-width: 767px) {

    /* 메인 - 슬라이드 */
    #mainCarousel .carousel-inner .item {
        height: 450px;
    }

    .carousel-caption {
        left: 15px;
        right: 15px;
    }

    .carousel-caption h1 {
        margin-bottom: 40px;
        margin-top: 15px;
        font-size: 36px;
        line-height: 1.2;
    }

    .carousel-caption p {
        font-size: 18px;
    }

    /* 메인 - 컨텐츠 */
    .main-content section {
        padding: 50px 0;
    }

    .main-curriculum .col-sm-3 {
        width: 100%;
    }

    .main-curriculum .col-sm-10>.clearfix>div+div a {
        margin-top: 30px;
    }

    .main-curriculum h5 {
        margin: 15px 0 0;
    }

    .main-content .main-sec-tit,
    div[class^="board_box_"] .page-header h4 {
        margin: 0 0 75px;
        text-align: center;
    }

    .main-content .main-sec-tit:after,
    div[class^="board_box_"] .page-header h4:before {
        left: 50%;
        transform: translateX(-50%);
    }

    div[class^="board_box_"] .page-header,
    .board_box_blog2>.row {
        width: 100%;
        margin: 0;
    }

    .board_box_blog2>.row>.col-xs-6 {
        padding: 0;
    }

    .main-location dl {
        margin: 30px 0 0;
        padding-left: 30px;
    }

    /* 푸터 */
    .footer-wrap .copy {
        margin: 15px 0 35px;
    }

    /* 서브페이지 */
    .pageheader {
        height: 280px;
    }

    #notice01 .pageheader, .subpage[id^="bbs"] .pageheader, .subpage[id^="site"] .pageheader{
        height: 200px;
    }

    .edu-link > div+div{
        margin-top: 30px;
    }

    .pageheader .container {
        padding-top: 10px;
    }

    .pageheader h2 {
        padding-bottom: 15px;
        font-size: 26px;
    }

    .pageheader p {
        font-size: 14px;
    }

    .snb {
        margin: 0 0 50px;
    }

    .snb ul {
        display: block;
    }

    .snb ul li a {
        border: none;
        border-bottom: 1px solid #d3d3d3;
        border-left: 1px solid #d3d3d3 !important;
        border-right: 1px solid #d3d3d3;
    }

    .snb ul li:first-child a {
        border-top: 1px solid #d3d3d3;
    }

    .subpage-content {
        padding: 50px 0;
    }

    .subpage-content section {
        margin-bottom: 50px !important;
    }

    .subpage-content section article {
        margin-bottom: 30px;
    }

    .subTitle-wrap{
        margin: 0 0 30px;
    }

    h3.subTitle {
        font-size: 25px;
        line-height: 1.4;
    }

    .greeting-wrap h5 {
        font-size: 24px;
    }

    .slogan-wrap h5 {
        padding: 20px;
        font-size: 25px;
    }

    .profile-wrap .intro p {
        margin: 0 0 50px;
        font-size: 18px;
    }

    .profile-wrap .intro p span {
        padding: 0;
    }

    .profile-wrap .intro p span:before,
    .profile-wrap .intro p span:after {
        display: block;
        position: relative;
        margin: 0 auto;
        left: auto;
        top: auto;
        right: auto;
    }

    .profile-wrap .inner {
        padding: 30px 0 0;
    }

    .profile-wrap .name-left h5 {
        font-size: 32px;
    }

    .academy-view {
        padding: 30px 15px 50px;
    }

    .academy-view .txt h5 {
        padding-bottom: 25px;
        font-size: 23px;
    }

    .academy-view .txt h5 span {
        font-size: 18px;
    }

    .academy-view .txt p {
        padding-top: 0;
    }

    .academy-view .slide-container {
        margin-top: 50px;
    }

    .slick-slide img {
        max-height: 200px;
    }

    .subpage[id^="curriculum"] .snb ul li a {
        padding: 15px !important;
        height: auto;
    }

    .subpage[id^="curriculum"] .snb ul li:nth-child(3) a,
    .subpage[id^="curriculum"] .snb ul li:nth-child(4) a,
    .subpage[id^="curriculum"] .snb ul li:nth-child(5) a {
        padding-top: 16px;
    }

    .curriculum-wrap .item {
        padding: 30px;
    }

    .curriculum-wrap .item::before {
        width: 18px;
    }

    .curriculum-info p,
    .subTitle-wrap+p {
        font-size: 15px;
    }

    #curriculum05 .sec3 article.text-center h4{
        border-bottom: none !important;
    }
}