@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 =================================== */

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;
    list-style: none;
    list-style-position: inside;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dt,
dd,
th,
td,
li {
    position: relative;
    letter-spacing: -0.034em;
    margin: 0;
}

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

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

br {
    visibility: visible;
    opacity: 0;
}

/*=================================== common =================================== */
[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 {
    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 {
    margin-left: 0px !important;
    padding: 0;
    height: auto;
}

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

/* 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: #233e81;
}

/* dropdown-menu 배경 */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: #f4f4f4;
}

/* dropdown-menu 메뉴 기본 */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a,
.navbar-inverse .navbar-nav .dropdown-menu > li > a {
    color: #444;
}

/* dropdown-menu 메뉴 후버 */
.navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
    background: transparent;
    color: #274fb4;
    text-decoration: underline;
}

@media (min-width: 768px) {
    /* pc nav 메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 90px;
        padding: 0px 18px;
    }

    /* pc nav 드롭다운 */
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: 0;
        border-top: 2px solid #253c7f;
        padding: 10px 0;
        text-align: center;
        background: #fff;
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 11px 25px;
        font-size: 15px;
        line-height: 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: 140px;
        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 0.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 {
        border-top: 2px solid #233e81;
        background: #f4f4f4;
    }

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

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

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

#site footer {
    margin-top: 0px;
    padding: 45px 0 35px;
    background-color: #fafafa;
    border-top: 1px solid #ddd;
}

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

img.footer-logo {
    opacity: 0.5;
    margin-right: 30px;
}

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

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

.footer-info li.copyright {
    margin-top: 5px;
    font-size: 14px;
    color: #b9b9b9;
}

/* scrolltop */
#scrolltop {
    position: fixed;
    z-index: 1000;
    right: 50px;
    bottom: 50px;
    display: none;
    font-size: 18px;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    background: #233e81;
    box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.19);
}

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

#scrolltop .inner i {
    font-size: 26px;
    color: #fff;
}

/* mobile footer*/
@media (max-width: 767px) {
    #scrolltop {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 30px;
    }

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

    #site footer {
        padding: 30px 0 50px;
    }

    .footer-info {
        margin-top: 15px;
    }

    .footer-info li {
        display: block !important;
        line-height: 1.25;
        margin-bottom: 5px;
    }

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

/* 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: calc(100vh - 90px);
}

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

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

.carousel-caption h1 {
    position: relative;
    font-size: 82px;
    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: 22px;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: -0.04em;
    /* text-align: left; */
}

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

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

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

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

.more-btn:hover {
    background: #fff !important;
    color: #233e81;
}

/* 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, 0.65);
    transition: ease-in-out 0.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 =================================== */
/* section */
.mainpage section {
    padding: 100px 0 110px;
}

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

.mainpage h3 {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.045em;
}

.main-business h3 {
    font-size: 46px;
    letter-spacing: 0.01em;
}

.mainpage .main-bbs h3 {
    text-align: left;
    font-size: 26px;
}

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

.mainpage .main-bbs h3 + p {
    display: none;
}

.mainpage .con-title {
    margin-bottom: 40px;
}

.mainpage .main-bbs .con-title {
    margin-bottom: 20px;
}

.main-business {
    background: #f5f5f5;
}

.main-busi-wrap p {
    transition: 0.25s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    background: #fff;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.main-busi-wrap p::after {
    content: "\f061";
    font-weight: 900;
    font-size: 22px;
    font-family: "Line Awesome Free";
}

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

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

.main-busi-wrap .item:hover p {
    background: #233e81;
    color: #fff;
}

.main-refer {
    background: #1e3777;
    position: relative;
}

.main-refer::before {
    content: "";
    display: block;
    /* width: 1920px; */
    width: 100%;
    height: 450px;
    background: #fff;
    position: absolute;
    left: 0;
    top: -1px;
}

.main-refer h3 {
    color: #222;
}

.main-refer h3 + p {
    color: #fff;
    opacity: 0.8;
}

.main-refer-wrap .more-btn {
    margin-top: 50px;
}

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

.main-refer-wrap .board_box_blog2 .inner {
    border: 1px solid #ddd;
    background: #fff;
}

.main-refer-wrap .board_box_blog2 .row {
    margin: 0 -15px;
}

.main-refer-wrap .board_box_blog2 .row > div[class^="col-"] {
    padding: 0 15px;
}

.main-refer-wrap .board_box_blog2 .inner .top a .thumb {
    height: auto;
}

.main-refer-wrap .board_box_blog2 .inner .top a .thumb::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.main-refer-wrap .board_box_blog2 .inner .bottom {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 0 25px;
}

.main-refer-wrap .board_box_blog2 .inner .bottom .title a {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.main-refer-wrap .board_box_blog2 .inner .bottom .title .cate {
    transform: translateY(-2px);
    background: transparent;
    border: 1px solid #274fb4;
    padding: 5px 10px;
    color: #274fb4;
    font-size: 13px;
}

.main-refer-wrap .slick-dots {
    bottom: -40px;
}

.main-refer-wrap .slick-dots li {
    margin: 0;
}

.main-refer-wrap .next-btn,
.main-refer-wrap .prev-btn {
    z-index: 5;
    border: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 26px;
}

.main-refer-wrap .next-btn {
    right: -50px;
}

.la,
.las {
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 40px;
    color: #1e3777;
}

.main-refer-wrap .prev-btn {
    left: -50px;
}

.main-refer-wrap .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff !important;
}

.main-refer-wrap .slick-dots button::before {
    opacity: 0.5;
    color: #fff !important;
}

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

.main-bbs .con-title i {
    font-size: 28px;
    color: #000;
}

.main-bbs-wrap .more-btn {
    margin-top: 50px;
    background: #233e81;
    border: 1px solid #233e81;
}

.main-bbs .main-bbs-wrap .more-btn {
    margin-top: 30px;
}

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

.main-bbs-wrap .bbs-board {
    width: 100%;
    float: inherit;
    margin: 0 auto;
}

.main-bbs-wrap .board_box_list {
    margin-bottom: 0 !important;
    border-top: 1px solid #333;
    border-bottom: 1px solid #ccc;
}

.main-bbs-wrap .board_box_list ul li a {
    font-size: 16px;
    letter-spacing: -0.035em;
}

.pull-right {
    font-size: 15px;
}

.main-bbs-wrap .board_box_list ul li a:hover {
    color: #233e81;
    text-decoration: underline;
}

.main-bbs-wrap .board_box_list ul li {
    padding: 13px 5px 12px;
    border-bottom: 1px solid #e3e3e3;
}

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

/* default */
.subpage-header {
    position: relative;
    display: flex;
    flex-flow: wrap;
    height: 300px;
    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.visual06 {
    background-image: url(/public/img/sub/sub-top06.jpg);
}

.subpage-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #18191b;
    opacity: 0.5;
}

.subpage-header .sub-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.subpage-header .sub-title h2 {
    margin-top: -35px;
    font-size: 44px;
    text-align: center;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0em;
}

#busi01 .subpage-header .sub-title h2,
#cert01 .subpage-header .sub-title h2,
#cus01 .subpage-header .sub-title h2,
#bbs01 .subpage-header .sub-title h2 {
    margin-top: 9px;
}

.breadcrumb {
    background: none;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb > li {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb > li.active {
    color: #fff;
}

.breadcrumb > li + li:before {
    content: "\f054";
    padding: 0 8px 0 6px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 10px;
}

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

#cert01 .snb {
    display: none;
}

#cus01 .snb {
    display: none;
}

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

.snb ul {
    margin: 0;
    justify-content: center;
    margin-top: -55px;
    background: rgba(0, 0, 0, 0.62);
}

.snb li {
    width: 34%;
}

#refer01 .snb li {
    width: 50%;
}

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

.snb li.active a {
    position: relative;
    color: #233e81;
    font-weight: 600;
    background: #fff;
}

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

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

#cert01 .subpage-content section {
    padding-top: 50px;
}

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

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

.subpage-content h3 {
    margin: 100px 0 10px;
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: #222;
    letter-spacing: -0.05em;
}

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

#cert01 .subpage-content .wrap-title {
    margin-bottom: 40px;
}

.subpage-content h4 {
    margin-bottom: 20px;
    padding-left: 13px;
    font-size: 23px;
    font-weight: 600;
    color: #111;
}

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

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

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

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

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

/* =================================== subpage content =================================== */
/* 01 */
.sub-greet-wrap {
    margin-top: 45px;
}

.sub-greet-wrap h4 {
    font-size: 33px;
    color: #233e81;
    margin-bottom: 25px;
    line-height: 1.35;
    font-weight: 300;
    padding-left: 0;
    letter-spacing: -0.05em;
    margin-top: 13px;
}

.sub-greet-wrap p {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 300;
    color: #000;
}

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

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

.sub-greet-wrap p.name {
    font-weight: 600;
    color: #000;
    text-align: right;
}

.sub-history-wrap .wrap-title {
    margin-bottom: 60px;
    text-align: center;
}

.sub-history-wrap .wrap-title h4 {
    margin-bottom: 0;
    text-align: center;
    font-size: 38px;
    font-style: italic;
    color: #333;
    display: inline-block;
    padding-left: 0;
    font-weight: 600;
}

.sub-history-wrap .wrap-title h4::before {
    content: "''";
    display: block;
    position: absolute;
    left: -36px;
    opacity: 0.15;
    top: -15px;
    font-size: 65px;
    color: #000;
    font-weight: 500;
}

.sub-history-wrap .wrap-title h4::after {
    content: "''";
    display: block;
    position: absolute;
    right: -25px;
    opacity: 0.15;
    top: -15px;
    font-size: 65px;
    color: #000;
    font-weight: 500;
}

.sub-history-wrap .inner-year {
    position: relative;
    padding-bottom: 40px;
}

.sub-history-wrap div:last-child .inner-year:last-child {
    padding-bottom: 0;
}

.sub-history-wrap .left .inner-year {
    padding-right: 75px;
}

.sub-history-wrap .right .inner-year {
    padding-left: 75px;
}

.inner-year h5 {
    line-height: 0.8;
    position: static;
    font-weight: 500;
    font-size: 25px;
    color: #233e81;
    margin-bottom: 15px;
    padding-left: 0;
}

.inner-year h5::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 1px;
    border: 0;
    background: #bbb;
    top: 11px;
    right: 0;
    left: auto;
}

.inner-year h5::after {
    box-sizing: content-box;
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 4px;
    border-radius: 50%;
    background: #274fb4;
    border: 5px solid #c8d4f3;
}

.left .inner-year h5 {
    text-align: right;
}

.left .inner-year h5::before {
    right: 0;
    left: auto;
}

.left .inner-year h5::after {
    right: -8px;
}

.right .inner-year h5 {
    text-align: left;
}

.right .inner-year h5::before {
    right: auto;
    left: 0;
}

.right .inner-year h5::after {
    left: -10px;
}

.sub-history-wrap .li-year {
    margin: 0;
}

.sub-history-wrap .li-year li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    font-size: 17px;
    color: #444;
}

.sub-history-wrap .li-year li:last-child {
    margin-bottom: 0;
}

.sub-history-wrap .left .li-year li {
    flex-direction: row-reverse;
    padding-right: 40px;
    text-align: right;
}

.sub-history-wrap .right .li-year li {
    padding-left: 40px;
    text-align: left;
}

.sub-history-wrap .left {
    transform: translateX(0.5px);
    border: 0;
    border-right: 1px;
    padding-right: 0;
}

.sub-history-wrap .right {
    transform: translateX(-0.5px);
    border: 0;
    border-left: 1px;
    padding-left: 0;
}

.sub-history-wrap .left,
.sub-history-wrap .right {
    border-color: #274fb4;
    border-style: solid;
}

.sub-history-wrap .li-year span {
    position: absolute;
    height: 100%;
    font-weight: 600;
}

.sub-history-wrap .left .li-year span {
    right: 0;
}

.sub-history-wrap .right .li-year span {
    left: 0;
}

@media (max-width: 767px) {
    .sub-history-wrap {
        padding: 0 15px 0 30px;
    }

    .inner-year h5::before {
        width: 30px;
    }

    .sub-history-wrap .right .inner-year {
        padding-left: 45px;
    }

    .sub-history-wrap .right-img,
    .sub-history-wrap .left-img {
        margin: 0 0 0 45px;
        padding: 0 0 30px 0;
    }
}

/* map */
/* map-kakao */
.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;
}

/* 02 */
.sub-info-wrap .item {
    padding: 70px;
    background: #fbfbfd;
    height: 240px;
    width: 240px;
    border-radius: 50%;
    position: relative;
    border: 1px solid #c1cbe6;
}

#busi01 .sub-info-wrap {
    padding: 0 50px;
}

.sub-info-wrap .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px dashed #6681c0;
    left: 9px;
    top: 9px;
}

.sub-info-wrap .item i {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 50px;
    color: #1a43a1;
}

.sub-info-wrap .item p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.sub-busi-wrap span.num {
    font-weight: 600;
    font-size: 40px;
    color: #dde1ed;
    font-style: italic;
}

.sub-busi-wrap p {
    font-weight: 600;
    font-size: 33px;
    color: #233e81;
    letter-spacing: -0.05em;
    line-height: 1.4;
}

.sub-busi-wrap p small {
    display: block;
    font-size: 21px;
    font-weight: 300;
}

.sub-busi-wrap {
    margin: 0;
}

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

.sub-busi-wrap .item {
    display: flex;
}

.sub-busi-wrap .text {
    padding-top: 45px;
    flex: 1;
}

.sub-busi-wrap > div:nth-child(odd) .text {
    padding-left: 120px;
}

.sub-busi-wrap > div:nth-child(odd) .text p {
    line-height: 1.2em;
}

.sub-busi-wrap > div:nth-child(even) .text {
    padding-left: 80px;
}

.sub-busi-wrap.row > div.col-sm-12 + div.col-sm-12 {
    margin-top: 75px;
}

.sub-busi-wrap > div:nth-child(odd) .item {
    flex-direction: row-reverse;
}

.sub-busi-wrap .clearfix {
    margin-bottom: 40px;
}

/* 03 */
.sub-blog-wrap .table_blog2 dd .inner .bottom {
    position: relative;
    margin: 20px -5px 0;
    padding: 35px 0 0 0;
}

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

.sub-blog-wrap .table_blog2 .badge {
    position: absolute;
    top: 0;
    left: 5px;
    border: 1px solid #233e81;
    color: #233e81;
    background: transparent;
}

.sub-blog-wrap .category_wrap {
    margin-bottom: 50px;
}

.sub-blog-wrap .category_wrap ul {
    text-align: center;
}

.sub-blog-wrap .category_wrap li a {
    font-size: 17px;
    font-weight: 400;
    position: relative;
    border-bottom: 0;
}

.sub-blog-wrap .category_wrap li a::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 14px;
    background: #ddd;
    left: -22px;
    top: 2px;
}

.sub-blog-wrap .category_wrap li:first-child a::before {
    display: none;
}

.sub-blog-wrap .category_wrap ul li + li {
    margin-left: 45px;
}

.sub-blog-wrap .category_wrap li.on a {
    color: #233e81;
    border-color: #233e81;
    font-weight: 600;
    border-bottom: 2px solid #6376a5;
}

.category_wrap ul li.on a,
.category_wrap ul li.on a:hover,
.category_wrap ul li.on a:focus {
    color: #233e81;
}

.table_video dd .inner .top a .thumb,
.table_blog2 dd .inner .top a .thumb {
    height: auto;
}

.table_blog2 dd .inner .top a .thumb::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

/* 04 */
.sub-cert-wrap .wrap-title p {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.sub-cert-wrap .item p {
    margin-top: 15px;
    text-align: center;
}

/* 05 */
.sub-office-wrap {
    display: flex;
    flex-wrap: wrap;
}

.sub-office-wrap .item {
    height: 100%;
    padding: 42px;
    border: 1px solid #233e81;
    /* border-top: 2px solid #233e81; */
    position: relative;
}

.sub-office-wrap .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 28px;
    height: 1px;
    background: #233e81;
    left: 0;
    top: 52px;
}

.sub-office-wrap h5 {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    color: #233e81;
    letter-spacing: -0.045em;
}

.sub-office-wrap li {
    font-size: 16px;
}

.sub-office-wrap li + li {
    margin-top: 8px;
}

.sub-office-wrap li strong {
    display: inline-block;
    width: 50px;
}

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

.sub-table-wrap h4::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 19px;
    background: #233e81;
}

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

.table-refer th,
.table-refer td {
    font-size: 16px;
}

.table-refer th span {
    font-weight: 400;
    font-size: 15px;
    margin-left: 7px;
}

.table-refer > thead > tr > th,
.table-refer > tbody > tr > td {
    padding: 15px 20px;
    border-left: 0;
    border-right: 0;
}

.table-refer > thead > tr > th {
    background: #fff;
    border-top: 2px solid #000000 !important;
    color: #222;
}

.table-refer > tbody {
    border-bottom: 1px solid #ccc;
}

.table-refer caption {
    text-align: right;
    padding-top: 0;
    font-size: 15px;
}

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

.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: #233e81;
    border: 1px solid #233e81;
    color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #14295e;
    border-color: #233e81;
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
    background-color: #0e73db;
    color: #fff;
}

.btn.btn-outline-primary {
    background: none;
    border: 1px solid #0e73db;
    color: #0e73db;
}

#reply_list span {
    font-size: 16px !important;
}

/* 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: 2px 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 0;
}

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

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

#form_history_nologin,
#form_history_list {
    padding-top: 70px;
    padding-bottom: 80px;
}

.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: 600px;
    }

    .carousel-control.right,
    .carousel-control.left {
        display: none;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
    }

    .carousel-caption h1 {
        font-size: 62px;
    }

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

    .carousel-control {
        font-size: 14px;
    }

    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }

    .more-btn {
        font-size: 14px;
    }

    .mainpage section {
        padding: 75px 0 90px;
    }

    .mainpage h2 {
        font-size: 34px;
    }

    .mainpage h3,
    .main-business h3 {
        font-size: 32px;
    }

    .la,
    .las {
        font-family: "Line Awesome Free";
        font-weight: 900;
        font-size: 40px;
        color: #1e3777;
    }

    .main-refer-wrap {
        margin: 0;
    }

    .main-refer-wrap .next-btn {
        right: -0px;
    }

    .main-refer-wrap .prev-btn {
        left: -0px;
    }

    .main-busi-wrap {
        margin: 0;
    }

    .main-refer-wrap > div {
        padding: 0;
    }

    .main-refer-wrap .board_box_blog2 .row {
        margin: 0;
    }

    .main-refer-wrap .slick-slide {
        padding: 0 10px;
    }

    .main-busi-wrap > div {
        width: 50%;
        float: left;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .main-refer-wrap .more-btn {
        margin-top: 80px;
    }

    .main-bbs .container {
        padding: 0 20px;
    }

    .sub-greet-wrap {
        margin-top: 0;
    }
    .sub-greet-wrap h4 {
        margin: 40px 0;
    }
    .sub-greet-wrap .text {
        padding-right: 0;
    }
    .sub-greet-wrap p.name {
        margin-top: 40px;
    }
}

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

    .snb ul {
        background: transparent;
        margin-top: 0;
        flex-wrap: wrap;
    }

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

    .snb li + li {
        margin-top: 0px;
        border-top: 1px solid #fff;
    }

    .snb li.active a {
        border: 1px solid #233e81;
    }

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

    .sub-blog-wrap .category_wrap ul li + li {
        margin-left: 20px;
    }
    .sub-blog-wrap .category_wrap li a::before {
        left: -11px;
    }

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

    .subpage-header {
        height: 170px;
    }

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

    .subpage-header .sub-title h2 {
        margin-top: 20px !important;
        text-align: center;
        font-size: 40px;
    }

    .subpage-content section {
        padding: 50px 0 70px !important;
    }

    .subpage-content h3 {
        margin-top: 60px;
        font-size: 32px;
        margin-bottom: 0;
    }
    .sub-history-wrap .wrap-title h4 {
        font-size: 32px;
    }
    .subpage-content section > .row + .row {
        margin-top: 80px;
    }
    #busi01 .sub-info-wrap {
        padding: 0;
        margin: 0;
    }
    #busi01 .sub-info-wrap > div {
        width: 50%;
        padding: 0;
        margin-bottom: 15px;
        float: left;
    }
    .sub-info-wrap .item i {
        font-size: 36px;
        margin-bottom: 7px;
    }
    .sub-info-wrap .item {
        margin: 0 auto;
        padding: 45px 0 0;
        width: 160px;
        height: 160px;
    }
    .sub-info-wrap .item::before {
        width: 140px;
        height: 140px;
    }
    .sub-busi-wrap .item {
        flex-direction: column !important;
    }
    .sub-busi-wrap .text {
        padding: 30px 15px 0 20px !important;
    }
    .bbs-area .search_wrap > * + * {
        margin-left: 0;
    }
    .sub-cert-wrap {
        margin: 0;
    }
    .sub-cert-wrap > div {
        padding: 0;
    }
    .sub-cert-wrap > .col-sm-3 {
        width: 50%;
        padding: 0 10px;
        float: left;
        margin-bottom: 25px;
    }
    .sub-cert-wrap .wrap-title p {
        font-size: 18px;
    }
    .sub-office-wrap {
        display: block;
    }
}

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

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

.report-wrap {
    display: flex;
    gap: 80px;
}

.report-wrap h5 {
    line-height: 1.5;
}
.report-wrap p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}
.report-box {
    padding: 30px;
    /* border: 1px solid #233e81; */
    background-color: #f7f7f7;
    border-radius: 20px;
}
.report-box dt {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #888;
}
.report-box dd {
    margin-bottom: 10px;
    font-size: 15px;
}
@media (max-width: 767.98px) {
    .report-wrap {
        flex-direction: column;
        gap: 30px;
    }
}
