@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: 0px;
    font-family: 'Roboto', 'notokr', sans-serif;
}

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

@media (min-width: 1200px) {
    .container {
        width: 1330px;
    }
}

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

img {
    flex-shrink: 0;
}

.img-box {
    position: relative;
}

.img-box.bordered {
    border: 1px solid #ccc;
    padding: 10px;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
dt dd,
th,
td,
li {
    position: relative;
    font-weight: normal;
    letter-spacing: -0.02em;
}

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

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

br {
    visibility: visible;
    opacity: 0;
}

/*=================================== common =================================== */
[class$="-dash"] {
    margin: 0;
    padding: 0;
}

[class$="-dash"]>*:not(dt) {
    position: relative;
    padding-left: 15px;
}

[class$="-dash"]>*:not(dt)::before {
    position: absolute;
    left: 0;
}

[class$="-dash"]>*:not(dt)::before {
    content: '-';
}

.li-dash li+li {
    margin-top: 5px;
}

.li-box {
    padding: 25px;
    background: #f4f4f4;
}

/* =================================== 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 {
    transition: .25s;
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0px 0px;
    /* box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1); */
    margin-bottom: 0;
    border: 0
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    margin-left: 0px !important;
    padding: 10px 0 0;
    height: auto;
    transition: all .15s ease;
}

.navbar-inverse.after .navbar-brand {
    padding: 0;
}

.navbar-brand::after {
    content: '㈜우진코퍼레이션';
    font-weight: 500;
    font-size: 23px;
    margin-left: 12px;
    white-space: nowrap;
    letter-spacing: -0.015em;
    color: #000;
}


/* nav 메뉴 속성 */
.navbar-inverse .navbar-nav>li>a {
    position: relative;
    z-index: 10;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.02em;
}

/* 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;
    color: #fff;
}

/* dropdown-menu 배경 */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: rgba(0, 0, 0, 0.85);
    background: #0049b7;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
}

/* dropdown-menu 메뉴 기본 */
.navbar-inverse .navbar-nav .open .dropdown-menu>li>a,
.navbar-inverse .navbar-nav .dropdown-menu>li>a {
    color: rgba(255, 255, 255, 0.6);
}

/* dropdown-menu 메뉴 후버 */
.navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,
.navbar-inverse .navbar-nav .dropdown-menu>li>a:focus {
    background: #0049b7;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 768px) {
    .navbar-inverse {
        background: transparent;
        padding-top: 0;
    }

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

    .navbar-inverse.before .navbar-brand::after {
        color: #fff;
    }

    .navbar-inverse.after .navbar-brand::after {
        color: #000;
        font-weight: 600;
    }

    .navbar-inverse.before .navbar-nav>li>a {
        color: #fff;
    }

    .navbar-inverse.after .navbar-nav>li>a {
        color: #333;
    }

    .navbar-inverse.before {
        background: rgba(255, 255, 255, 0.0);
        transition: all .3s ease;
    }

    .navbar-inverse.after {
        background: rgba(255, 255, 255, 1);
        border-bottom: 1px solid #eee;
    }

    .navbar-inverse.after .navbar-nav .dropdown.open:hover .dropdown-toggle,
    .navbar-inverse.after .navbar-nav .dropdown.open:focus .dropdown-toggle,
    .navbar-inverse.after .navbar-nav>li>a:hover,
    .navbar-inverse.after .navbar-nav>li>a:focus {
        color: #0149b7;
    }

    /* pc nav 메뉴 */
    .navbar-inverse .navbar-nav>li>a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 84px;
        padding: 0 30px;
    }

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

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu>li>a {
        padding: 9px 25px;
        font-size: 15px;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .navbar-inverse .navbar-nav>li>a::after,
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle::after {
        transition: .3s;
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 0%;
        opacity: 0;
        height: 2px;
        bottom: 25px;
        background: #fff;
    }

    .navbar-inverse.after .navbar-nav>li>a::after,
    .navbar-inverse.after .navbar-nav .dropdown.open .dropdown-toggle::after {
        background: transparent;
    }

    .navbar-inverse .navbar-nav>li>a:hover::after,
    .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle::after {
        width: calc(100% - 60px);
        opacity: 1;
    }
}

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

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

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

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

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

    .navbar>.container {
        display: block;
    }

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

    .navbar-brand img {
        height: 45px;
    }

    .navbar-brand::after {
        font-weight: 600;
        font-size: 20px;
        margin-left: 10px;
    }

    .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>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 {
        color: #0201fb;
    }

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

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

    /* 드롭다운 메뉴 클릭시 */
    /* .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 {
    margin-top: 0px;
    padding: 55px 0 45px;
    background-color: #323236;
}

/* left logo */
.footer-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

img.footer-logo {
    opacity: .35;
    margin-right: 50px;
}

/* default */
.footer-info {
    color: #999;
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 1.5;
}

.footer-info strong {
    color: #ccc;
    font-weight: 500;
    font-size: 15px;
}

.footer-info li:first-child {
    margin-bottom: 5px;
}

.footer-info li:not(.copyright) {
    display: inline-block;
    margin-right: 10px;
}

.footer-info li.clearfix {
    display: block;
}

.footer-info li.copyright {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    color: #777;
    letter-spacing: 0;
}

/* scrolltop */
#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: #000;
}

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

#scrolltop .inner i {
    font-size: 24px;
}

/* mobile footer*/
@media(max-width:767px) {
    #site footer{
        padding: 30px 0 50px;
    }
    .footer-info {
        margin-top: 15px;
    }

    .footer-info li {
        display: block;
        line-height: 1.25;
        font-size: 13px !important;
        margin-bottom: 2px;
    }

    .footer-info li+li {
        border: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .footer-info strong{
        font-size: 14px;
    }
}

/* no_content */
.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
}

.maintenance .icon {
    display: block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}

.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}

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

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

#mainCarousel .carousel-inner .item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .3;
}

/* caption */
.carousel-caption {
    top: 50%;
    text-align: left;
}

.carousel-caption h1 {
    position: relative;
    font-size: 78px;
    letter-spacing: 0;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 23px;
}

.carousel-caption h1 span {
    font-weight: 300;
    font-size: 98%;
    letter-spacing: 0;
}

.carousel-caption p {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;

}

.carousel-caption .more-btn {
    margin-top: 60px;
}

.more-btn {
    transition: background .3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 186px;
    height: 51px;
    padding: 2px 24px 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: .8;
    color: #fff;
}

.more-btn i {
    font-size: 20px;
    margin-top: -1px;
    color: #fff;
}

.more-btn:hover i {
    color: #fff;
}

.more-btn:hover {
    background: #0201fb !important;
    color: #fff;
    border-color: #0201fb;
}

/* control */
.carousel-control {
    display: flex;
    align-items: center;
    opacity: 1;
    width: 10%;
}

.carousel-control.right,
.carousel-control.left {
    background: transparent;
    justify-content: center;
}

.carousel-control.right span {
    margin-right: 0;
}

.carousel-control.left span {
    margin-left: 0;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    font-size: 28px;
    left: auto;
    right: auto;
    top: auto;
    position: relative;
}

.glyphicon.glyphicon-chevron-right::before,
.glyphicon.glyphicon-chevron-left::before {
    color: #fff;
    font-family: 'Line Awesome Free';
    font-weight: 900;
}

.glyphicon.glyphicon-chevron-right::before {
    content: '\f105';
}

.glyphicon.glyphicon-chevron-left::before {
    content: '\f104';
}

/* indicators */
.carousel-indicators {
    bottom: 40px;
}

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

.carousel-indicators li {
    border: 0;
    background-color: rgba(255, 255, 255, .65);
    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);
    left: 17%;
}

/* =================================== mainpage common =================================== */
/* section */
.mainpage section {
    padding: 80px 0 150px;
}

.mainpage .main-bbs {
    padding: 85px 0 90px;
}

.mainpage h3 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    margin-bottom: 80px;
}

.mainpage h3::before {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: #999;
    margin: 0 auto 40px;
}

.mainpage h3+p {
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
    color: #666;
    font-weight: 300;
    letter-spacing: -0.04em;
    display: none;
}

.main-busi-wrap p {
    transition: .25s;
}

.main-busi-wrap .item,
.main-busi-wrap .item img {
    transition: 1s;
}


.main-busi-wrap p {




    text-align: center;
    margin: 0;
    padding: 0 20px;
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
    bottom: 15%;
    background: transparent;
}

.main-busi-wrap .item:hover p::before {
    content: '';
    display: block;
    width: 14px;
    height: 3px;
    background: #fff;
    margin: 25px auto;
}

.main-busi-wrap .item:hover p::after {
    content: 'MORE VIEW';
    position: absolute;
    font-weight: 400;


    bottom: 40px;
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.main-busi-wrap .item {
    display: block;

    transition: 0.2s;
    border-radius: 20px;
}

.main-busi-wrap .item .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.main-busi-wrap .item:hover {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
}

.main-busi-wrap .item:hover p {
    background: #0049b7;
    color: #fff;
    height: 100%;
    top: 0;
    font-size: 25px;
    padding-top: 70px;
    border-radius: 20px;
}

.main-busi-wrap .item:hover img {
    transform: scale(1.1);
}

.main-bbs-wrap h4 {
    font-size: 24px;
    font-weight: 500;
}

.main-bbs-wrap .page-header {
    display: none;
}

/* wrap */

/* =================================== subpage header =================================== */

/* default */
.subpage-header {
    position: relative;
    display: flex;
    flex-flow: wrap;
    height: 380px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* background */

.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: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .4;
}

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

.subpage-header .sub-title h2 {

    margin-bottom: 70px;
    font-size: 52px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.breadcrumb {
    display: inline-block;
    position: static;
    background: none;
    margin: 0;
    padding: 0 0 0 3px;
    font-size: 14px;
}

.breadcrumb>li {
    color: #888;
}

.breadcrumb>li.active {
    color: #000;
    font-weight: 500;
}

.breadcrumb>li+li:before {
    content: "\f105";
    padding: 0 5px 0 2px;
    font-weight: 900;
    font-size: 14px;
    font-family: 'Line Awesome Free';
    color: #888;
}


/* =================================== snb =================================== */
.snb {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #ccc;
}

.snb ul,
.snb li>a {
    display: flex;
}

.snb ul {
    margin: 0;
    justify-content: center;
}

.snb li {
    flex: 1;
}

.snb li>a {
    align-items: center;
    width: 100%;
    height: 55px;
    background: #222;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.snb li.active a {
    position: relative;
    background: #fff;
    font-weight: 700;
    color: #222;
}

/* .snb li.active a::after {
    content: '';
    position: absolute;
    display: block;
    background: #222;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -1px;
} */


/* =================================== subpage section, title =================================== */
.subpage-content section.se-title {
    padding: 50px 0 0 0;
}

.subpage-content section:not(.se-title) {
    padding: 80px 0 150px;
}

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

.subpage-content .col-sm-12:not(.wrap-title)+.col-sm-12 {
    margin-top: 40px;
}

.subpage-content .wrap-title {
    margin-bottom: 30px;
}

.subpage-content .se-title h3 {
    margin: 60px 0 0 0;
    font-size: 45px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.034em;
}

.subpage-content .item h4 {
    margin: 0 0 40px;
    font-size: 32px;
    font-weight: 500;
    color: #111;
}

.subpage-content .item h5 {
    margin: 0 0 30px;
    font-weight: 500;
    font-size: 24px;
    color: #333;
}

.subpage-content .item h6 {
    margin: 0 0 15px;
    font-weight: 600;
    font-size: 20px;
}

.subpage-content p {
    font-size: 16px;
    line-height: 1.45;
    color: #444;
}

.subpage-content p+p {
    margin-top: 15px;
}

.subpage-content p+div {
    margin-top: 30px;
}

/* =================================== subpage content =================================== */
/* 01 */

/* map */
/* map-kakao */
.root_daum_roughmap .wrap_map,
.map-kakao .root_daum_roughmap {
    width: 100% !important;
    height: 400px;
    padding: 0 !important;
}

.map-kakao .root_daum_roughmap .map_border {
    display: none !important;
}

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

.greet-wrap .left {
    padding-right: 0;
}

.greet-wrap .text {}

.greet-wrap p {
    /* text-align: justify; */
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

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

.greet-wrap p.top {
    font-size: 36px;

    letter-spacing: -0.034em;
    line-height: 1.45em;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.greet-wrap p.name {
    text-align: right;
    float: right;
    font-weight: 500;
}

.greet-wrap p.name strong {
    font-size: 19px;
    color: #000;
    margin-left: 5px;
}

.greet-wrap img {
    padding-left: 80px;
}

.cert-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.cert-wrap>div {
    width: 20%;
    padding: 0 10px;
}

.cert-wrap .clearfix {
    width: 100%;
    margin-bottom: 30px;
}

.cert-wrap img {
    padding: 5px;
    border: 1px solid #ddd;
}

.cert-wrap p {
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    line-height: 1.3em;
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -5px;
}

.map-wrap h5 {
    margin: 0;
    font-size: 19px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.06em;
    line-height: 1.4em;
}

.map-wrap .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.li-map {
    display: flex;
}

.li-map li {
    font-size: 17px;
    font-weight: 400;
}

.li-map li strong {
    margin-right: 5px;
    color: #fff;
    font-size: 14px;
    background: #3673cf;
    padding: 3px 10px;
    border-radius: 2px;
    font-weight: 500;
}

.li-map li+li {
    margin-left: 25px;
}

.history-wrap .img-box {
    padding-right: 60px;
}

.history-wrap .year {
    position: relative;
}

.history-wrap .year::before {
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background: #eee;
    position: absolute;
    left: 60px;
}

.history-wrap h4 {
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    color: #98bbf1;
    letter-spacing: -0.034em;
    padding-left: 70px;
}

.history-wrap h4::before {
    content: '';
    width: 13px;
    height: 13px;
    background: #3a76d3;
    border-radius: 50px;
    position: absolute;
    left: 41px;
    top: 50%;
    transform: translateY(-50%);
}

.history-wrap .history.w02 {
    margin-top: 50px;
}

.history-wrap ul.li-year {
    border-top: 1px solid #333;

}

.history-wrap li {
    font-size: 16px;
    padding: 10px 0;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
}

.history-wrap li:last-child {
    border-bottom: 0;
}

.history-wrap li strong {
    margin-right: 20px;
    color: #333;
    font-size: 17px;
}

.history-wrap li+li {}

/* 02 */
.img-wrap {
    margin: 0 -10px;
}

.img-wrap>div {
    padding: 0 10px;
}

.img-wrap>.clearfix {
    margin-bottom: 20px;
}

.busi-wrap .text {
    padding-right: 50px;
}

.busi-wrap .text h5 {
    margin-top: 0;
    font-size: 24px;
    text-align: left;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-left: 12px;
    letter-spacing: -0.06em;
    font-weight: 700;
}

.busi-wrap .text h5::before {
    content: '';
    display: block;
    width: 5px;
    height: 22px;
    background: #1769e5;
    position: absolute;
    top: 1px;
    left: 0;
}

.busi-wrap .text p {
    font-size: 17px;
    line-height: 1.65;
}

.ol-num {
    padding: 0;
    margin: 0;
}

.ol-num li {
    color: #000;
    list-style-type: decimal;
    font-size: 17px;

    font-weight: 500;
}

.ol-num li+li {
    margin-top: 6px;
}

.ol-num li::marker {
    font-size: 1.1em;
    color: #333;
}

/* 03 */

/* 04 */

/* 05 */

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

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

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

.table-wrap .table-style {
    border-top: 1px solid #222;

}

.table-wrap .table-style thead th {
    border-bottom: 0;
    background: #868689;
    font-weight: 500;
    color: #fff;
}

.table-wrap .table-style tbody th {
    font-weight: 500;
}

/* =================================== 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;
}

.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

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

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

.btn.btn-primary {
    font-family: 'notokr';
    background-color: #555;
    border: 1px solid #555;
    color: #fff;
}

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

/* 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: 17px;
    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: #fff;
    border-bottom: 1px solid #ccc;
    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;
}

/* wrapper */
.board_wrapper {
    margin: 0 !important;
    font-family: 'notokr';
}

.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;
}

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

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

.board_box_blog2 .inner {
    margin-top: 0;
    margin-bottom: 0;
}

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

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

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

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

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

.board_data_view .contents_wrap p {}

.board_box_blog2 .inner .bottom .info {
    display: none;
}

.board_box_blog2 .inner .top a .thumb {
    height: 180px;
}

.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;
}

.badge {
    padding: 6px 6px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 13px;
    margin-right: 3px;
}

.main_popup {
    border: 0;
}

.main_popup_contents {
    padding: 0;
}

.main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

    /* carousel */
    #mainCarousel .carousel-inner .item {
        /* height: calc(100vh - 170px); */
        height: calc(100vh - 70px);
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
        text-align: center;
    }
    .carousel-caption h1{
        font-size: 52px;
    }
    .carousel-caption p{
        font-size: 18px;
    }
    .carousel-caption p br{
        display: none;
    }
    .carousel-control {
        display: none;
        font-size: 14px;
    }
    .carousel-caption .more-btn{
        margin-left: auto ;
        margin-right: auto ;
    }
    
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }

    .mainpage section {
        padding: 50px 0 60px;
    }

    .mainpage h2 {
        font-size: 32px;
    }
    .mainpage h3::before{
        height: 30px;
        margin: 0 auto 25px;
    }
    .mainpage h3{
        font-size: 36px;
        margin-bottom: 40px;
    }
    .main-busi-wrap{
        margin: 0;
    }
    .main-busi-wrap > div{
        padding: 0 10px;
    }
    .main-busi-wrap > div+div{
        margin-top: 30px;
    }

}

/* subpage */
@media(max-width:767px) {
    .snb {
        margin-top: 15px;
        border: 0;
    }

    .snb ul {
        flex-wrap: wrap;
    }

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

    .snb li+li {
        margin-top: 5px;
    }

    .snb li>a {
        background: #eee;
        font-size: 16px;
        height: 50px;
    }

    .breadcrumb {
        margin: 0;
        width: 100%;
        font-size: 12px;
        text-align: center;
    }

    .breadcrumb>li+li:before{
        padding: 0 3px 0 1px!important;
    }

    .subpage-header {
        height: 190px;
    }

    .subpage-header .sub-title {
        align-items: center;
    }

    .subpage-header .sub-title h2 {
        margin: 10px 0 0;
        text-align: center;
        font-size: 36px;
    }

    .subpage-content section.se-title{
        padding: 30px 0 0;
    }
    .subpage-content .se-title h3{
        text-align: center;
        font-size: 40px;
        margin-top: 40px;
    }
    .subpage-content section:not(.se-title){
        padding: 50px 0 70px;
    }
    .subpage-content .se-title h3+p.visible-xs{
        margin-top: 15px;
    }
    .greet-wrap p.top{
        text-align: center;
        font-size: 28px;
    }
    .greet-wrap .left{
        padding-right: 15px;
    }
    .greet-wrap p{
        font-size: 16px;
        text-align: center;
    }
    .greet-wrap img{
        margin-top: 30px;
        padding-left: 0;
    }
    .greet-wrap p.name{
        float: inherit;
    }
    .history-wrap .img-box{
        margin-bottom: 40px;
        padding-right: 15px;
        overflow: hidden;
        position: relative;
        height: 180px;
        display: flex;
        align-items: center;
    }
    .history-wrap h4{
        font-size: 28px;
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .history-wrap .year::before{
        left: 15px;
    }
    .history-wrap h4::before{
        left: -3px;
    }
    .history-wrap ul.li-year{
        margin-left: 20px;
    }
    .history-wrap li{
        font-size: 15px;
    }
    .history-wrap li strong{
        display: block;
        margin-bottom: 5px;
        font-size: 16px;
    }
    .cert-wrap>div{
        width: 50%;
        margin-bottom: 20px;
    }
    .map-wrap h5{
        margin-bottom: 15px;
        font-size: 18px;
    }
    .map-wrap iframe{
        height: 350px;
    }
    .map-wrap .info{
        flex-direction: column;
        align-items: flex-start;
    }
    .li-map{
        flex-direction: column;
    }
    .li-map li+li{
        margin-left: 0;
        margin-top: 10px;
    }
    .busi-wrap .text{
        padding-right: 0;
    }
    .busi-wrap  > div+div{
        margin-top: 60px;
    }
    .img-wrap {
        margin: 0 -5px;
    }
    .img-wrap > div{
        padding: 0 5px;
    }
    .img-wrap .clearfix{
        margin-bottom: 10px;
    }
    .img-wrap > div:not(.clearfix){
        width: 50%;
        float: left;
    }
    .cert-wrap p{
        font-size: 15px;
    }
    .bbs-area .search_wrap>*+*{
        margin-left: 0;
    }
    .table-wrap .table-style th, .table-wrap .table-style td{
        font-size: 14px;
    }
}

/* bbs, etc */
@media(max-width:767px) {
    .member_wrapper {
        padding: 70px 15px;
    }

    .privacy_body {
        padding: 0 30px;
    }

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

    .table_default .subject {
        width: 100%;
    }

    .member_wrapper #join_form .table .input-group.input-group-big,
    .member_wrapper #join_form .table .form-control.form-control-big,
    .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,
    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big {
        width: 100%;
    }

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

    .search_wrap>*+* {
        margin-left: 0;
    }

    .board_wrapper div.text-center {
        margin-top: 0;
        margin-bottom: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .board_wrapper .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
    }

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

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

    .table.table_responsive tbody tr th {
        padding: 15px !important;
    }

    .main_popup_contents {
        padding: 10px;
    }
}

/* bbs-reset */
.board_data_view .contents_wrap p {}

.board_data_view .header_wrap .title {
    text-align: left;
    font-size: 26px;
    font-weight: 500;
}

.board_data_view .header_wrap .info {
    text-align: left;
}

.board_data_view .contents_wrap li,
.board_data_view .contents_wrap dl {
    margin: inherit;
    padding: inherit;
    list-style-position: inside !important;
}

.board_data_view .contents_wrap ul li {
    list-style-type: disc !important;
}

.board_data_view .contents_wrap ol li {
    list-style-type: decimal !important;
}