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

* {
    word-break: keep-all;
}

#site {
    padding-top: 90px;
    font-family: 'Roboto', 'notokr', sans-serif;
}

#site>.container {
    width: 100%;
    padding: 0;
}

/*=================================== reset =================================== */

ol,ul,li,dl {
    list-style: none;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

p,h1,h2,h3,h4,h5,h6,dt {
    margin: 0;
    position: relative;
}


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

button {
    border-radius: 0;
    background: transparent;
    border: 1px solid #444;
}

span[class^="material-icons"] {
    transform: translateY(1px);
    vertical-align: middle;
    line-height: 1;
    user-select: none;
    color: #fff;
    background: #9e9e9e;
    border-radius: 50%;
}

br {
    visibility: visible;
    opacity: 0;
}

div.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*=================================== common =================================== */
.li-dash li {
    position: relative;
    padding-left: 15px;
    padding-bottom: 5px;
    line-height: 1.35em;
}
.li-dash li:last-child {
    padding-bottom: 0;
}
.li-dash li::before {
    position: absolute;
    left: 0;
}

.li-dash li::before {
    content: '-';
}

/* =================================== navbar =================================== */

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

/* 상단 메뉴 */
.navbar-header,
.navbar>.container {
    display: flex;
}

.navbar-header {
    justify-content: center;
    align-items: center;
}

.navbar>.container {
    justify-content: space-between;
}

.navbar>.container::before,
.navbar>.container::after {
    display: none;
}

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

.navbar-inverse .navbar-right {
    margin-right: 0 !important;
}

.navbar-brand {
    margin-top: 3px;
    margin-left: 0px !important;
    padding: 0;
    height: auto;
}

.navbar-brand:after {
    content: '인공지능 시스템반도체 연구센터';
    display: block;
    color: #0066b3;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
}

/* nav 메뉴 속성 */
.navbar-inverse .navbar-nav>li>a {
    position: relative;
    z-index: 10;
    padding: 35px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* nav 메뉴 클릭 및 후버 시 */
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus,
.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;
    font-weight: 600;
    color: #0f71de;
}

@media (min-width: 768px) {

    /* pc nav 드롭다운 */
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: .25rem;
        border: 0;
        padding: 0;
        text-align: center;
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu>li>a {
        font-size: 14px;
        padding: 15px 25px;
    }

    .nav.navbar-nav li .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        background: rgba(0, 0, 0, 0.75);
        padding: 0;
        margin: 0;
        border: none;
        display: block;
        border-radius: 0;
        overflow: hidden;
        transition: all .35s ease;
        opacity: 0;
        height: 0;
        z-index: 0;
    }

    .nav.navbar-nav li .dropdown-menu>li>a {
        padding: 10px 20px;
        text-align: center;
        border-top: 1px solid rgba(0, 0, 0, 0.3);
        color: #ddd;
        letter-spacing: -0.015em;
    }

    .navbar-inverse .navbar-nav .dropdown-menu li {
        height: 0;
        opacity: 0;
        transition: .25s ease;
        z-index: 0;
    }

    .navbar-inverse .navbar-nav>li:hover .dropdown-menu,
    .navbar-inverse .navbar-nav>li:focus .dropdown-menu {
        opacity: 1;
        height: auto;
        z-index: 99;
    }

    .navbar-inverse .navbar-nav>li:hover .dropdown-menu li,
    .navbar-inverse .navbar-nav>li:focus .dropdown-menu li {
        opacity: 1;
        height: 40px;
    }

    .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu>li>a:focus {
        background: #0f71de !important;
        color: #fff;
    }
}

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

    .navbar-header {
        justify-content: space-between;
        height: 80px;
        border-bottom: 1px solid #ddd;
    }

    .navbar-collapse {
        padding: 0;
        width: 100vw;
    }

    .navbar-nav {
        margin: 0;
        width: 100%;
    }

    .navbar-header::before,
    .navbar-header::after {
        display: none;
    }

    .navbar>.container {
        display: block;
    }

    .navbar-brand {
        order: 1;
        width: 135px;
        margin: 0 0 0 15px !important;
    }

    .navbar-inverse .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 15px 0 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: #444;
    }

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

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

    /* menu */
    .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: 15px;
    }

    .dropdown-menu {
        padding: 0;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 15px 15px 15px 25px;
    }

    /* 드롭다운 배경 */
    .navbar-inverse .navbar-nav .dropdown-menu{
        background: #222;
    }

    /* 드롭다운 폰트 */
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{
        color: #fff;
        font-size: 15px;
    }

    /* 드롭다운 메뉴 클릭시 */
    /* .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:active {
        color: #fff;
        background: #2968d4;
    } */
}

/* =================================== footer =================================== */

#site footer {
    display: block;
    border-top: 1px solid #eee;
    padding: 30px 0 50px;
}

#site footer ul {
    font-size: 15px;
    margin-bottom: 5px;
}

#site footer li {
    display: inline;
}

#site footer li+li {
    margin-left: 5px;
}

#site footer p {
    margin-bottom: 0;
    opacity: 0.7;
}

.logo-img {
    text-align: right;
    opacity: 1;
}

.copy {
    margin-top: 2px;
    font-size: 12px;
}


#scrolltop {
    position: fixed;
    z-index: 1000;
    right: 50px;
    bottom: 50px;
    display: none;
    font-size: 18px;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    background: #0f71de;
}

#scrolltop .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
#scrolltop span{
    background: transparent;
}

/* mobile*/
@media(max-width:767px) {
    footer {
        margin-top: 15px;
    }

    footer li {
        display: block;
        line-height: 1.25;
        margin-bottom: 5px;
        margin-left: 0;
    }

    footer li+li {
        border: 0;
        margin-left: 0 !important;
        padding-left: 0;
    }
    .logo-img{
        margin-top: 30px;
        float: left;
    }
    #scrolltop{
        right: 15px;
        bottom: 20px;
    }
}

/* =================================== mainCarousel =================================== */

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


.carousel-caption {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 30px 20px;
    background: rgba(0, 0, 0, 0.75);
    text-align: center;
    transform: translateX(0);
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-caption h1 {
    position: relative;
    font-size: 17px;
    color: #6ac4ff;
    letter-spacing: .025em;
    font-weight: 500;
    margin-bottom: 7px;
}

.carousel-caption p {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.carousel-control {
    display: none;
}

.carousel-indicators {
    bottom: 15px;
    left: 0;
    right: 0;
    margin-left: 0;
    width: auto;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 0 4px;
}

.carousel-indicators li {
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, .1);
    transition: ease-in-out .15s all;
}

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

.carousel-caption {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .0);
}

/* =================================== mainpage common =================================== */
#main_wrapper {
    background: #f4f4f4;
    padding: 40px 0 40px;
}

#main_wrapper section+section {
    margin-top: 20px;
}

.main-con-wrap,
.main-center-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.main-con-wrap>div,
.main-center-wrap>div {
    padding: 0 10px;
}

section[class^="main-"] a[class^="item"] {
    position: relative;
    display: block;
    overflow: hidden;
}

section[class^="main-"] a[class^="item"] h3 {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.034em;
    margin-top: 25px;
}
section[class^="main-"] .item03 .inner h3 {
    color: #246095;
}

section[class^="main-"] a[class^="item"] .bg {
    position: absolute;
    left: 0;
    top: 0;
}

section[class^="main-"] .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    background: rgba(0, 107, 157, 0.4);
    border-radius: 50%;
}
section[class^="main-"] .item02 .inner .icon {
    background: rgba(0, 247, 247, 0.3);
}
section[class^="main-"] .item03 .inner .icon {
    background: rgba(84, 154, 215, 0.7);
}
section[class^="main-"] .item04 .inner .icon {
    background: rgba(0, 0, 0, 0.12);
}
section[class^="main-"] a[class^="item"] .inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    height: 265px;
}

section[class^="main-"] .item01 .inner {
    background: #0BA1EA;
    margin-bottom: 20px;
}

section[class^="main-"] .item02 .inner {
    background: rgba(32, 142, 123, 0.6);
}

section[class^="main-"] .item03 .inner {
    background: rgba(159, 210, 255, 0.9);
}

section[class^="main-"] .item04 .inner {
    background: url(/public/img/main/m-ic04_bg.jpg) 50% 50%/cover;
}

.main-slick-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 7px 20px;
    background: #fff;
}
.main-slick-wrap img{
    height: 40px;
    margin: 0 auto;
}
.main-slick-wrap>div {
    padding: 0;
}

.main-slick-wrap .partner-slide {
    position: relative;
    flex: 1;
}

.main-slick-wrap .partner-slide a {
    display: block;
    padding: 5px 0;
    border: 1px solid transparent;
}

.main-slick-wrap .partner-slide a:hover {
    border: 1px solid #aaa;
}

.main-slick-wrap .partner-slide .slick-list {
    border: 0;
}

.main-slick-wrap .partner-slide .slick-slide {
    padding: 0 5px;
}

.main-slick-wrap .btn-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    margin-right: 10px;
    text-align: center;
}

.main-slick-wrap .btn-wrap .prev-btn,
.main-slick-wrap .btn-wrap .next-btn,
.main-slick-wrap .btn-wrap .play-btn {
    line-height: 0;
    border: 0;
    padding: 0;
    color: #001a31;
    opacity: .7;
}

.main-slick-wrap .btn-wrap button:hover {
    opacity: 1;
}

.main-slick-wrap .btn-wrap .prev-btn span,
.main-slick-wrap .btn-wrap .next-btn span {
    color: #fff;
}

.main-slick-wrap .btn-wrap .play-btn {
    margin: 0 5px;
}

.main-bbs .inner {
    position: relative;
    height: 100%;
    padding: 20px 35px;
    text-align: left;
    color: #333;
    background: #fff;
}

.main-bbs .tab-menu {
    border-bottom: 2px solid #eee;
    padding-bottom: 0;
    margin: 0 0 10px;
}

.main-bbs .tab-menu li {
    display: inline-block;
}

.main-bbs .tab-menu li+li {
    margin-left: -2px;
}

.main-bbs .tab-menu li a:focus,
.main-bbs .tab-menu li a:active,
.main-bbs .tab-menu li a {
    text-decoration: none;
    display: block;
    margin-bottom: -1px;
    padding: 10px 20px;
    font-size: 18px;
    color: #888;
    border-bottom: 1px solid transparent;
}

.main-bbs .tab-menu li.active a {
    color: #111;
    font-weight: 700;
    border-bottom: 1px solid #333;
}

.main-bbs .tab-pane>div {
    position: static;
    margin-bottom: 0 !important;
}

.main-bbs .page-header {
    padding: 0;
    margin: 0;
    position: absolute;
    right: 38px;
    top: 40px;
    z-index: 100;
    border: none;
}

.main-bbs .page-header h4 {
    display: none;
}
.board_box_list ul{
    padding: 5px 10px;
}
.board_box_list ul li {
    /* padding: 3px 0; */
}

.board_box_list ul li a:hover {
    color: #337ab7;
}

.board_box_list .info span.writer,
.board_box_list .info span.hits {
    display: none;
}

div[class^="board_box_"] .page-header .pull-right {
    color: #666;
    margin-top: -5px;
}

.board_box_blog2 .row {
    margin-left: -10px;
    margin-right: -10px;
}

.board_box_blog2 .row>div[class^="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.board_box_blog2 .inner {
    margin: 0;
    padding: 0;
    border: 0;
}

.board_box_blog2 .inner .bottom {
    padding: 0 !important;
}

.board_box_blog2 .inner .bottom .title {
    line-height: 1;
    padding: 0;
    margin: 0;
}

.board_box_blog2 .info {
    display: none;
}

.board_box_blog2 .inner .top a .thumb {
    height: 135px;
    border: 1px solid transparent;
}

.board_box_blog2 .inner:hover .top a .thumb {
    border: 1px solid #0f71de;
}

.board_box_blog2 .inner .bottom {
    padding: 12px 10px;
}

.board_box_blog2 .inner .bottom .title {
    font-size: 25px;
    letter-spacing: -0.02em;
}

.board_box_list ul li a,
.board_box_blog2 .inner .bottom .title a {
    font-size: 15px;
}

.board_box_blog2 .inner:hover .bottom .title a {color: #337ab7;}

/* =================================== sub common =================================== */
.subpage-header {
    height: 200px;
    position: relative;
    display: flex;
    flex-flow: wrap;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/public/img/sub/sub-top01.jpg);
}

/* .subpage-header.visual01 {
    background-image: url(/public/img/sub/sub-top01.jpg);
}

.subpage-header.visual02 {
    background-image: url(/public/img/sub/sub-top02.jpg);
}

.subpage-header.visual03 {
    background-image: url(/public/img/sub/sub-top03.jpg);
}

.subpage-header.visual04 {
    background-image: url(/public/img/sub/sub-top04.jpg);
}

.subpage-header.visual05 {
    background-image: url(/public/img/sub/sub-top05.jpg);
} */

.subpage-header::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .45);
}

.sub-title {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sub-title h2 {
    margin-top: 20px;
    font-size: 27px;
    color: #fff;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.034em;
}

.breadcrumb {
    position: static;
    padding: 0 0 15px;
    margin: 0;
    line-height: 1;
    font-size: 13px;
    background: none;
}

.breadcrumb>li {
    letter-spacing: -0.015em;
}

.breadcrumb>li,
.breadcrumb>li.active {
    color: #666;
}

.breadcrumb>li+li:before {
    content: '\e5e1';
    font-weight: 900;
    font-size: 10px;
    font-family: 'Material Icons';
    padding: 0 5px 0 2px;
}

.breadcrumb li.home::before {
    content: '\e88a';
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Material Icons Outlined';
    transform: translateY(3px);
    opacity: .85;
}

/* =================================== snb left =================================== */
.snb {
    margin: 50px 0 0 0;
    padding-right: 40px;
    position: relative;
    z-index: 10;
}

.snb-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 91px;
    background: #0f71de;
}

.snb-title h2 {
    font-size: 28px;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.snb ul,
.snb li>a {
    margin: 0;
}

.snb li>a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    padding-left: 15px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-size: 16px;
    line-height: 1;
}

.snb li.active a {
    color: #fff;
    background: #012340;
}

/* =================================== subpage section, title =================================== */
.subpage-content {
    margin-top: 50px
}

.subpage-content .clearfix {
    margin-bottom: 50px;
}

.subpage-content>.title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 41px 0 0;
    border-bottom: 1px solid #ddd;
}

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

.subpage-content section>div+h4,
.subpage-content section>.row+h4,
.subpage-content section>.row+.row {
    margin-top: 75px;
}

.subpage-content .col-sm-12+.col-sm-12 {
    margin-top: 0;
}

.subpage-content h3 {
    font-weight: 500;
    font-size: 34px;
    color: #222;
    margin: 0 0 -1px;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: -0.034em;
    border-bottom: 2px solid #333;
}

.subpage-content section > h4 {
    position: relative;
    padding: 0 0 0 5px;
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 0.93em;
    border-left: 2px solid #333;
    letter-spacing: -0.06em;
}
[id^="field"] .subpage-content h4{
    display: none;
}
/*
.subpage-content h4::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #3176e2;
    box-shadow: 6px 6px 0px #4bd3dc;
    position: absolute;
    left: 0;
    top: 5px;
}
/
/* =================================== subpage content =================================== */
/* p.img-caption,
span.img-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

.sub-img-wrap .clearfix {
    margin-bottom: 30px;
} */

/* 01 */
.sub-greet-wrap .right img {
    float: right;
}

.sub-greet-wrap .top {
    color: #1359cb;
    letter-spacing: -0.035em;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 60px;
}

.sub-greet-wrap .top:after {
    content: '';
    display: block;
    background: #999;
    width: 50px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -20px;
}

.sub-greet-wrap .top small {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
}

.sub-greet-wrap p {
    color: #333;
    line-height: 1.65;
    font-size: 16px;
    letter-spacing: -0.034em;
}

.sub-greet-wrap .top+p {
    margin-top: 40px;
}

.sub-greet-wrap p+p {
    margin-top: 30px;
}

.sub-greet-wrap .name {
    float: right;
    text-align: right;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 16px;
    color: #111;
    font-weight: 400;
}

.sub-greet-wrap .name strong {
    display: inline-block;
    font-size: 21px;
    margin-left: 10px;
}

.sub-map-wrap>div+div {
    margin-top: 30px !important;
}

.sub-map-wrap .map-info {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 30px 0;
    border-top: none;
}

.sub-map-wrap .map-info>div {
    padding: 0;
}

.sub-map-wrap .address {
    display: flex;
    flex-wrap: wrap;
}

.sub-map-wrap .address dt {
    width: 100%;
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.034em;
    padding-left: 2px;
}

.sub-map-wrap .address dd {
    color: #333;
    margin-left: 2px;
    font-size: 17px;
}

.sub-map-wrap .address dd+dd {
    margin-left: 20px;
}

.sub-map-wrap .address dd strong {
    font-size: 15px;
    display: inline-block;
    margin-right: 0;
    font-weight: 600;
    color: #338ed2;
    position: relative;
    width: 80px;
}
.sub-map-wrap .address dd strong::before {
    content: "\f095";
    display: inline-block;
    color: #fff;
    margin-right: 6px;
    background: #5ca9e3;
    width: 22px;
    height: 22px;
    text-align: center;
    padding: 3px;
    border-radius: 50%;
    font-size: 11px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.sub-map-wrap .map-btn {
    display: inline-block;
    padding: 12px 15px;
    background: #fff;
    color: #2e72e1;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.025em;
    border: 1px solid #2e72e1;
}

.sub-map-wrap .map-btn:hover {
    color: #fff;
    background: #2e72e1;
}

.sub-map-wrap .map-btn span {
    font-size: 16px;
    margin-left: 20px;
    transform: translateY(-1px);
}

/* map-google */
.sub-map-wrap .map-google iframe {
    width: 100%;
    height: 450px;
    margin-bottom: -5px;
}

.sub-member-wrap {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

.sub-member-wrap>div {
    padding: 0;
}

.sub-member-wrap>div+div {
    padding: 30px 30px 10px;
}
#about03 .field {
    border: 1px solid #cad7e6;
}

.sub-member-wrap + .sub-member-wrap {
    margin-top: 20px !important;
}
.sub-member-wrap>.wrap-title+div {
    margin-top: 0px !important;
}

.sub-member-wrap .wrap-title {
}

.sub-member-wrap .wrap-title h5 {
    padding: 12px 19px 10px;
    color: #1961af;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    background: #e5f1ff;
}

.sub-member-wrap .member {
    display: flex;
    align-items: flex-start;
}

.sub-member-wrap.field .member {
    border-top: 0;
    padding: 0 0 30px;
    border-bottom: 2px dotted #eee;
}
.sub-member-wrap.field > div:last-child .member {
    border-bottom: 0;
}
.sub-member-wrap .member dl {
    width: 100%;
    padding-left: 35px;
    margin: 0;
}

.sub-member-wrap .member dl dt {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.034em;
    padding: 12px 20px;
    background: #f4f4f4;
    border-top: 1px solid #999;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.sub-member-wrap.field .member dl dt {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.034em;
    padding: 5px 0 15px;
    background: transparent;
    border: 0;
    margin: 0;
}
.sub-member-wrap .member dl dt small {
    color: #777;
    margin-left: 7px;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.sub-member-wrap .member dl dd {
    font-size: 14px;
    position: relative;
    padding: 0 0 0 95px;
    min-height: 27px;
}

.sub-member-wrap .member dl dd.work {
    font-weight: 500;
    color: #004898;
    font-size: 15px;
    letter-spacing: -0.034em;
}

.sub-member-wrap .member dl dd+dd {
    margin-top: 5px;
}

.sub-member-wrap .member dl dd span {
    color: #333;
    display: block;
    width: 70px;
    font-weight: 600;
    position: absolute;
    left: 0;
    padding-left: 14px;
    font-size: 14px;
}

.sub-member-wrap .member dl dd span::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #333;
    position: absolute;
    left: 5px;
    top: 7px;
    border-radius: 50%;
}

.sub-member-wrap .member dl dd a {
    color: #0066B3;
}

.sub-member-wrap .member li {
    letter-spacing: -0.02em;
    line-height: 1.5em;
    padding-bottom: 2px;
}

.sub-member-wrap .member li+li {
    margin-top: 3px;
}
.sub-partner-wrap {
    margin: 0 -5px;
}

.sub-partner-wrap > div {
    padding: 0 5px;
}

.sub-partner-wrap .clearfix {
    margin-bottom: 10px;
}
.sub-partner-wrap h6 {
    margin: 10px 0 20px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.034em;
}

.sub-partner-wrap p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.sub-partner-wrap .inner {
    height: 100%;
    padding: 20px;
    border: 1px solid #eee;
    min-height: 295px;
    border-top: 1px solid #999;
}

/* 02 */
.subpage-content img+img{
    margin-top: 50px;
}
.subpage-content .project {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 50px;
    background: #fff;
    position: relative;
    width: calc(100% - 14px);
    margin-left: 7px;
}
.subpage-content .project::after {
    content: "";
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    position: absolute;
    top: -7px;
    left: -7px;
    background: url(/public/img/sub/ptn.png);
    display: block;
    z-index: -1;
}
.subpage-content .project p {
    line-height: 1;
    color: #006173;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.sub-project-wrap {
    margin-top: 40px;
}
.sub-project-wrap .prof {
    background: #e0f1f4;
    padding: 17px 15px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.sub-project-wrap .prof h5 {
    color: #00697c;
    border: 0;
    height: auto;
    font-size: 17px;
    letter-spacing: 0;
    margin-bottom: 15px;
    font-weight: 500;
}
.sub-project-wrap .prof p {
    text-align: center;
    padding: 15px;
    font-size: 17px;
    font-weight: 500;
    border: 1px solid #d5e2ee;
    background: #fff;
    border-radius: 5px;
}
.sub-project-wrap .member-wrap {
    margin: 0 -7px;
}
.sub-project-wrap .member-wrap > div {
    padding: 0 7px;
}
.sub-project-wrap .top {
    margin-bottom: 30px;
}

.sub-project-wrap .top p {
    text-align: center;
    font-size: 22px;
    color: #0f71de;
}

.sub-project-wrap .inner {
    position: relative;
    height: 100%;
}

.sub-project-wrap h5 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #bddde3;
    border-bottom: 0;
    /* padding: 0 20px; */
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.05em;
    flex-direction: column;
    line-height: 1em;
    border-top: 2px solid #3bb2c8;
}

.sub-project-wrap h5 small {
    color: #008ea8;
    font-size: 14px;
    text-align: center;
    margin-top: 7px;
    line-height: 1.2em;
    display: block;
}
#field03 .sub-project-wrap .member-wrap > div:nth-child(4) small {
    font-size: 13px;
    margin-top: 3px;
}
.sub-project-wrap dt {
    color: #fff;
    background: #2398ad;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.02em;
    line-height: 1.3em;
    padding: 0 20px;
}
#field04 .sub-project-wrap .member-wrap > div:nth-child(3) dt {
    padding: 0;
}
.sub-project-wrap dl dd {
    border: 1px solid #b1cde6;
    padding: 20px 15px;
    border-top: 0;
}
#field02 .sub-project-wrap dl dd {
    min-height: 140px;
}
#field03 .sub-project-wrap dl dd {
    min-height: 165px;
}
#field04 .sub-project-wrap dl dd {
    min-height: 178px;
}
#field05 .sub-project-wrap dl dd {
    min-height: 145px;
}
.sub-project-wrap .mini {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 25px;
    transform: translateY(-1px);
    background: #0f71de;
    padding-right: 1px;
    margin-left: 7px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
}

/* 03 */

/* 04 */

/* 05 */

/* table */
.sub-table-wrap {
    margin-top: 30px;
}

.sub-table-wrap:first-child {
    margin-top: 0;
}

.sub-table-wrap .table-style th,
.sub-table-wrap .table-style td {
    border-color: #ddd;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    vertical-align: middle;
}

.sub-table-wrap .table-style thead th {
    border-bottom: 0;
}

.sub-table-wrap .table-style tbody th {
    background: #efefef;
}
/* =================================== board, bbs =================================== */
.bbs-area h4 {
    font-weight: 500;
    font-size: 20px;
    padding: 0;
    color: #222;
}

.bbs-area h4::before,
.bbs-area h4::after {
    content: none !important;
}

.bbs-area h4.title {
    text-align: center;
}

.bbs-area .reply_wrap h4 {
    text-align: left;
    font-size: 18px;
}
#reply_list .media .media-body p {
    font-size: 16px;
}
.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.bbs-area .search_wrap>*+* {
    margin-left: 5px;
}

.board_data_view {
    border-top: 0;
}

.board_data_view .header_wrap .title {
    font-size: 26px;
    letter-spacing: -0.04em;
    border-bottom: 0;
    text-align: left;
    padding-bottom: 9px;
    border: 0;
}
.board_data_view .header_wrap .title::before{
    content: none !important;
}

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 20px 0 30px;
}

.board_data_view .header_wrap .info {
    margin-top: 10px;
    text-align: left;
}

.board_data_view .contents_wrap p {
    font-size: 17px;
}

.board_wrapper .table.board_write_table tbody tr th {
    width: 180px;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
}

.board_data_view {
    border-top: 0;
}

.board_wrapper .text-center .btn.btn-lg,
.board_wrapper .text-center .btn+.btn {
    min-width: 200px;
}


/* member */

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

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    transition: all ease 0.3s
}

.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: #5dae57
}

.table_blog2 dd .inner {
    border: none;
}

.table.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: 16px;
    color: #333;
}

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

.table.table_default thead th {
    background: #f6f6f6;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
}

.table_default {
    border-top: 1px solid #333;
}


.table.table_default tr td {
    color: #777;
}

.text-muted {
    font-size: 14px !important;
    margin-top: 8px !important;
}

input.form-control {
    font-family: 'notokr', sans-serif;
}

/* gallery */
.table_video dd .inner .bottom .title a,
.table_blog2 dd .inner .bottom .title a,
.table_video dd .inner .bottom .title a:hover,
.table_blog2 dd .inner .bottom .title a:hover {
    color: #000;
}

.table_video dd .inner .bottom,
.table_blog2 dd .inner .top {
}

.table_video dd .inner .bottom,
.table_blog2 dd .inner .bottom {
    padding: 15px 0;
}

.table_video dd .inner .bottom .title, .table_blog2 dd .inner .bottom .title {
    padding: 0;
}

.table_video dd .inner .bottom .info span, .table_blog2 dd .inner .bottom .info span {
    padding: 0;
}

/* wrapper */
.board_wrapper {
    margin-top: 0;
}

.board_wrapper i::after,
.board_wrapper i::before {
    font-family: 'Font Awesome 5 Free';
}

.board_wrapper .text-center .btn {
    padding: 15px 0 !important;
}

.board_wrapper .table.board_write_table .input-group.input-group-big,
.board_wrapper .table.board_write_table .form-control.form-control-big,
.board_wrapper .table.board_write_table tbody tr td .btn,
.board_wrapper .table.board_write_table tbody tr td .form-control {
    width: 50%;
}

.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}

.board_wrapper .table.board_write_table .files+.sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

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

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

.custom_checkbox+span a {
    font-weight: 500;
}

.privacy_body {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 100px;
}
.table.table_default tbody .subject>span {
    position: relative;
}
.badge {
    padding: 6px 6px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 12px;
    margin-right: 3px;
}
#reply_list .text-center > span {
    font-size: 15px !important;
}
/* =================================== mobile =================================== */

/* mainpage */
@media(max-width:767px) {

    /* carousel */
    #mainCarousel .carousel-inner .item {
        height: 100%;
    }

    .carousel-caption {
    }

    .carousel-control {
        display: none !important;
        font-size: 14px;
    }

    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
    }
    .carousel-caption h1{
        font-size: 14px;
    }
    .carousel-caption p{
        font-size: 20px;
        line-height: 1.25;
    }
    .carousel-indicators{
        bottom: 10px;
    }
    .main-carousel::after{
        content: '';
        display: block;
        padding-bottom: 100%;
    }
    #mainCarousel{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 0 10px;
    }
    .main-con-wrap>div, .main-center-wrap>div{
        width: 100%;
    }
    .main-slick-wrap .partner-slide{
        width: 100%;
    }
    .main-con-wrap, .main-center-wrap{
        display: flex;
    }
    .main-center-wrap > div:first-child{
        order: 3;
        margin-top: 20px;
    }
    .main-center-wrap > div:nth-child(2){
        order: 2;
        margin-top: 0;
    }
    .main-center-wrap > div:last-child{
        order: 1;
        margin-top: 0;
    }
    .main-con-wrap > div+div, .main-center-wrap > div+div{
        margin-top: 20px;
    }
    .main-con-wrap .right {
        display: flex;
        flex-wrap: nowrap;
    }
    .main-con-wrap .right > a{
        width: 50%;
    }
    .main-con-wrap .right > a+a{
        margin-left: 20px;
    }
    .main-center-wrap .col-sm-3{
        width: 50%;
        float: left;
    }
    section[class^="main-"] .icon{
        width: 80px;
        height: 80px;
    }
    section[class^="main-"] .icon img{
        width: 35px;
    }
    section[class^="main-"] a[class^="item"] h3{
        font-size: 18px;
        margin-top: 13px;
    }
    section[class^="main-"] a[class^="item"]::after{
        content: '';
        display: block;
        padding-bottom: 100%;
    }
    section[class^="main-"] a[class^="item"] .inner{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    section[class^="main-"] a[class^="item"] .bg{
        width: 100%;
        height: 100%;
    }
    .main-slick-wrap{
        flex-direction: column-reverse;
    }
    .main-bbs > .inner{
        padding: 20px;
    }
    .board_box_blog2 .row > div+div{
        margin-top: 10px;
    }
}

/* subpage */
@media(max-width:767px) {
    .sub-title h2{
        font-size: 24px;
        text-align: center;
    }
    .snb {
        margin-top: 15px;
        border: 0;
        padding: 0 15px;
    }

    .snb ul {
        flex-wrap: wrap;
    }

    .snb li {
        margin: 0;
        flex: auto;
        width: 100%;
    }

    .breadcrumb {
        margin: 0;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    .subpage-content h3{
        border-width: 1px;
    }
    .subpage-content>.title{
        margin-top: 20px;
        align-items: center;
        flex-direction: column;
    }
    .sub-greet-wrap .top{
        text-align: center;
    }
    .sub-greet-wrap .top strong{
        display: block;
        margin-top: 5px;

    }
    .sub-greet-wrap .top small{
        display: block;
        margin-bottom: 5px;
    }
    .sub-greet-wrap p{
        text-align: center;
    }
    .sub-greet-wrap .top:after{
        left: 50%;
        transform: translateX(-50%);
    }
    .leader{
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sub-member-wrap .member{
        flex-wrap: wrap;
    }
    .sub-member-wrap .member img{
        margin: 0 auto 30px;
    }
    .sub-member-wrap .member dl{
        padding-left: 0;
    }
    .sub-member-wrap .member dl dt{
        text-align: center;
    }
    .subpage-content h4{
        display: inline-block;
    }
    .sub-member-wrap .member dl dd{
        padding-left: 0;
        margin-bottom: 10px;
    }
    .sub-member-wrap .member dl dd span{
        position: relative;
        display: block;
        margin-bottom: 7px;
    }
    .sub-member-wrap .member dl dt small{
        display: block;
        margin-top: 3px;
        margin-left: 0;
    }
    .sub-member-wrap>div+div{
        padding: 30px 35px;
    }
    .sub-partner-wrap .inner{
        min-height: inherit;
        margin-bottom: 20px;
    }
    .sub-map-wrap  > div{
        width: 100%;
    }
    .sub-map-wrap .address {
        margin-bottom: 20px;
    }
    .sub-map-wrap .address dt{
        text-align: center;
    }
    .sub-map-wrap .address,
    .sub-map-wrap .map-info{
        flex-wrap: wrap;
        justify-content: center;
    }
    .sub-map-wrap .map-btn{
        width: 100%;
    }
    .sub-map-wrap .map-btn span{
        color: #2e72e1;
        background: transparent;
    }
    .subpage-content .project{
        text-align: center;
        padding: 20px 15px;
    }
    .subpage-content .project p{
        line-height: 1.35;
    }
    [id^="field"] .sub-project-wrap dl dd{
        min-height: inherit !important;
    }
    .sub-project-wrap .member-wrap > div+div{
        margin-top: 20px;
    }
}

/* bbs, etc */
@media(max-width:767px) {

    .table_default colgroup,
    .table_default .num,
    .table_default .regdate,
    .table_default .hits,
    .table_default .writer {
        display: none;
    }

    .table_default .subject {
        width: 100%;
    }

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

    .sub-board-wrap .table_blog dd {
        width: 100%;
        padding: 0;
    }

    .member_wrapper #join_form .table .input-group.input-group-big,
    .member_wrapper #join_form .table .form-control.form-control-big {
        width: 100%;
    }

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

    .member_wrapper .text-center,
    .board_wrapper .text-center {
        display: flex;
        justify-content: center;
    }

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

    .privacy_body {
        padding: 0 15px;
    }

    .member_wrapper {
        padding-bottom: 100px;
    }

    .member_wrapper h1 {
        font-size: 30px;
    }

    .bbs-area .board_wrapper .text-center {
        padding-top: 30px;
        display: flex;
        width: 100%;
    }

    .bbs-area .board_wrapper .text-center .btn.btn-lg,
    .bbs-area .board_wrapper .text-center .btn+.btn {
        flex: 1;
        min-width: inherit;
    }

    .form-horizontal .form-group {
        margin-bottom: 20px !important;
    }

    .member_wrapper {
        padding-top: 50px;
    }

    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .member_wrapper .login_extra ul li+li::before {
        content: none;
    }
    .board_data_view .header_wrap .info{
        text-align: center;
    }
    .bbs-area .search_wrap>*+*{
        margin-left: 0;
    }
    .table_video dd, .table_blog2 dd{
        width: 100%;
    }
}