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

#site {
    font-family: 'Montserrat', "notokr", sans-serif;
    padding-top: 92px;
    letter-spacing: -0.03em;
}
@media (max-width: 767px) {
    #site {
        padding-top: 67px;
    }
}

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

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

:root {
    --page-color: #366092;
}

/* ------------ 불필요 항목 삭제 ------------ */
.navbar .caret {
    display: none;
}
.clip {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}

/* ------------ 상단 메뉴 ------------ */
.navbar-inverse {
    background: #fff;
    position: fixed;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}

.navbar-inverse .navbar-brand img {
    height: 52px;
    margin-top: 5px;
}
.navbar-inverse .navbar-right {
    margin-right: -30px;
}
.navbar-inverse .navbar-nav > li > a {
    padding: 36px 25px;
    font-size: 18px;
    font-weight: 500;
    color: #444;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    background: transparent;
    font-weight: 500;
    color: #143d6e;
}

.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: var(--page-color);
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-brand {
        padding: 5px 15px;
        margin: 8px 0;
    }
    .navbar-inverse .navbar-brand img {
        margin-top: 0;
        height: 100%;
    }

    .navbar-inverse .navbar-nav > li > a {
        padding: 15px;
    }
    .navbar-inverse .navbar-nav > li > a,
    .navbar-inverse .navbar-nav > li > a:focus {
        font-size: 17px;
        color: #333;
    }
    .navbar-nav .open .dropdown-menu {
        background-color: #000;
        border-radius: 0;
    }

    .navbar-inverse .navbar-toggle {
        border: 0;
        padding: 18px 0;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #333;
        transition: ease-in-out 0.15s all;
        opacity: 1;
        position: relative;
    }
    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: transparent;
    }
    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #000;
    }
    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: transparent;
        overflow-x: hidden;
    }

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

@media (min-width: 768px) {
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.6);
        -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.125);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.125);
        animation-fill-mode: both;
        animation-duration: 0.4s;
        animation-name: fadeIn;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 12px 15px;
        text-align: center;
        font-size: 14px;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li:last-child > a {
        border-bottom:0;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:focus {
        color: #fff;
        background: #143d6e;
    }
}

/* ------------  슬라이드 ------------  */
.carousel-control.left,
.carousel-control.right {
    background-image: none;
}
.carousel-control.left .glyphicon::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(225deg);
}
.carousel-control.right .glyphicon::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}
#mainCarousel .carousel-inner .item {
    height: 720px;
}
#mainCarousel .carousel-inner .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.3;
}
.carousel-indicators {
    margin: 0;
    max-width: 100%;
    transform: translateX(-50%);
}
.carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid #fff;
    margin: 0 5px 0 0;
    border-radius: 50%;
    transition: ease-in-out 0.15s all;
}
.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 0 5px 0 0;
}
.carousel-caption {
    color: #fff;
    text-align: left;
    top: 49%;
}
.carousel-caption h1 {
    font-size: 65px;
    font-weight: 600;
    margin: 0 0 20px;
    /* font-family: "Roboto", sans-serif; */
    text-shadow: none;
    font-style: italic;
}
.carousel-caption p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0;
    text-shadow: none;
}
@media (max-width: 767px) {
    #mainCarousel .carousel-inner .item {
        height: 300px;
    }
    .carousel-caption h1 {
        font-size: 24px;
    }
    .carousel-caption h1 strong {
        font-size: 25px;
    }
    #mainCarousel .carousel-caption p {
        font-size: 15px;
    }
    .carousel-control {
        display: none;
    }
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 8px;
        height: 8px;
    }
}

/* ------------ footer ------------ */
#site footer {
    margin-top: 0px;
    background-color: #212121;
    color: #ccc;
}
#site footer .footer-info {
    padding: 45px 0;
}
#site footer .footer-info ul {
    position: relative;
    margin: 0;
    padding: 0;
}
#site footer .footer-info ul li:first-child {
    font-weight: 700;
    font-size: 13px;
    color: #eee;
    margin-bottom: 2px;
}
#site footer .footer-info ul li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    margin-right: 15px;
    line-height: 21px;
    letter-spacing: 0;
}
#site footer .footer-info .logo > img {
    padding: 0 40px 0 0;
    opacity: 0.5;
    margin-top: 3px;
    filter: grayscale(1);
}
#site footer .footer-info .info {
    flex-direction: column;
    padding: 0 15px;
}
#site footer .footer-info ul .copy {
    font-size: 12px;
    color: #b8b8b8;
    letter-spacing: 0.08em;
    margin-top: 3px;
}
#site footer .footer-info ul .login-g {
    float: right;
}
#site footer .footer-info ul .login-g a {
    color: #fff;
    opacity: 0.4;
    border: 1px solid #aaa;
    padding: 5px 15px;
    font-weight: 300;
    text-decoration: none;
    font-size: 12px;
    transition: opacity 0.2s ease;
}
#site footer .footer-info ul .login-g:hover a {
    opacity: 0.9;
}
@media (max-width: 767px) {
    #site footer .footer-info ul li,
    #site footer .footer-info ul li:first-child {
        font-size: 13px;
    }
    #site footer .footer-info .logo > img {
        width: 30%;
        margin: 0 0 20px;
        padding: 0;
    }
}

/* ------------ sub 헤더 ------------ */
.sub_header {
    height: 270px;
    position: relative;
    color: #fff;
    text-align: center;
    background: #333 url("/public/img/main/sub_header.jpg") no-repeat bottom center;
    background-size: cover;
}
.sub_header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
}
.sub_header h2 {
    font-size: 41px;
    line-height: 1;
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.035em;
    margin-bottom: 0;
}
.sub_header .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
    .sub_header {
        height: 200px;
    }
    .sub_header h2 {
        font-size: 32px;
        margin: 0px 0 0;
    }
}

/* ------------ 서브 메뉴 ------------ */
.sub_menu {
    position: relative;
    z-index: 10;
    /* border-bottom: 1px solid #eee; */
}
.sub_menu ul {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.sub_menu ul > li {
    /* flex: 1; */
    width: 12%;
    text-align: center;
}
.sub_menu ul > li::after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sub_menu ul > li:last-child::after {
    content: none;
}
.sub_menu ul > li > a {
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    color: #777;
    letter-spacing: 0;
    text-decoration: none;
    background: #fff;
}
.sub_menu .nav li.active a,
.sub_menu .nav li:hover a,
.nav>li>a:focus {
    background-color: #fff !important;
    color: #000;
}
@media (max-width: 767px) {
    .sub_menu ul{display: none;}
}

/* 공통  */
.se01 {
    padding-bottom: 130px;
}
.se01 .page-tit {
    position: relative;
    margin: 100px 0;
    text-align: center;
}
#about01 .se01 .page-tit, #about04 .se01 .page-tit{
    margin: 110px 0 40px;
}
.se01 .page-tit h3 {
    margin: 0 0 0;
    font-size: 38px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.035em;
}
.se01 .page-sub-tit {
    color: #111;
    font-size: 25px;
    margin: 0 0 25px;
    position: relative;
    padding-left: 20px;
}
.se01 .page-sub-tit::before {
    content: "";
    width: 3px;
    height: 20px;
    background-color: var(--page-color);
    left: 0;
    position: absolute;
    top: 4px;
}
#support01 .se01 .page-tit,
#recruit02 .se01 .page-tit {
    margin: 90px 0 0;
}

.board_wrapper .text-center .btn.btn-secondary {
    display: none;
}
.btn.btn-primary {
    background-color: var(--page-color);
    border: 1px solid var(--page-color);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: var(--page-color);
}
@media (max-width: 767px) {
    .se01 .page-tit,
    #about01 .se01 .page-tit, 
    #about04 .se01 .page-tit,
    #support01 .se01 .page-tit,
    #recruit02 .se01 .page-tit {
        margin: 70px 0 40px;
    }
    .se01 .page-tit h3 {
        font-size: 32px;
    }
    #support01 .board_wrapper,
    #recruit02 .board_wrapper{
        margin-top: 0;
    } 
    .board_wrapper .table colgroup,
    .board_wrapper .table tr .num,
    .board_wrapper .table tr .hits {
        display: none;
    }
    .board_wrapper .table.table_default tr th,
    .board_wrapper .table.table_default tr td {
        padding: 10px;
        font-size: 12px;
    }
    .board_wrapper .table.board_write_table :where(.input-group, .form-control) {
        width: 100%;
    }
    .table.table_default tbody .subject a {
        font-size: 12px;
    }
    .board_wrapper .table .subject {
        width: 45%;
    }
}

/* ------------ main ------------ */
.main_se01 {
}
.main_se01 .content-area {
    display: flex;
    gap: 40px;
    padding: 100px 0 70px;
}
.main_se01 .left {
    flex: 1;
}
.main_se01 .left .page-header {
    margin: 10px 0 0;
    padding-bottom: 21px;
    border-bottom: 1px solid #666;
}
.main_se01 .left div[class^="board_box_"] .page-header h4 {
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}
div[class^="board_box_"] .page-header .pull-right {
    color: inherit;
    margin-top: -2px;
    font-size: 21px;
}
.main_se01 .left .type_list {
    margin: 0;
    padding: 0;
    margin-top: 13px;
}
.type_list li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 11px 0;
    list-style: none;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-left: 12px;
    position: relative;
}
.type_list li::before {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    background: #333;
    left: 1px;
    top: 21px;
}
.main_se01 .left .type_list .info span.hits,
.main_se01 .left .type_list .info span.writer {
    display: none;
}
.type_list li a:hover {
    text-decoration: none;
}
.main_se01 .right {
    flex: 1;
    display: flex;
    gap: 10px;
}
.main_se01 .right div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    height: 267px;
    position: relative;
    z-index: 1;
}
.main_se01 .right div::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: .8;
    transition: all 0.3s ease;
}
.main_se01 .right div:nth-child(1)::before {
    background: #194477;
}
.main_se01 .right div:nth-child(2)::before {
    background: #585621;
}
.main_se01 .right div:nth-child(3)::before {
    background: #1c7d7f;
}
.main_se01 .right div:nth-child(4)::before {
    background: #151131;
}
.main_se01 .about-box {
    background-image: url(/public/img/main/main04.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main_se01 .product-box {
    /* background-image: url(/public/img/main/main01.jpg); */
    background-image: url(/public/img/main/main03.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main_se01  .support-box {
    background-image: url(/public/img/main/main02.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main_se01  .recruit-box {
    background-image: url(/public/img/main/main05.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main_se01 .right div p {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}
.main_se01 .right div .sub_btn {
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}
.main_se01 .right div .sub_btn span.material-symbols-outlined {
    font-size: 18px;
    position: absolute;
    bottom: 1px;
    margin-left: 4px;
    transition: all 0.3s ease;
}
.main_se01 .right div:hover a span {
    margin-left: 10px !important;
}
.main_se01 .right div:nth-child(1):hover:before {
    background: #366092;
    opacity: .9;
}
.main_se01 .right div:nth-child(2):hover:before {
    background: #6e6c2c;
    opacity: .9;
}
.main_se01 .right div:nth-child(3):hover:before {
    background: #339C9E;
    opacity: .9;
}
.main_se01 .right div:nth-child(4):hover:before {
    background: #221b54;
    opacity: .9;
}
.main_se01 .right div:hover p,
.main_se01 .right div:hover .sub_btn {
    color: #ffffff;
}
@media (max-width: 767px) {
    .main_se01 .content-area{
        flex-direction: column;
        gap: 20px;
        padding: 60px 0 50px;
    }
    .main_se01 .right{
        flex-direction: column;
    }
}

/* ------------ about01 ------------ */
#about01 .greet {
    /* margin-bottom: 150px; */
}
#about01 .greet .greet-txt {
    font-size: 2.5rem;
    font-weight: 400;
    color: #339C9E;
    letter-spacing: -0.02em;
    margin: 0 0 11rem;
    line-height: 1.5;
    text-align: center;
}
#about01 .greet .img-area{
    position: relative;
}
#about01 .greet .img-area img:nth-child(1) {
    z-index: 1;
    position: inherit;
}
#about01 .greet .img-area img:nth-child(2){
    margin: 0;
    position: absolute;
    top: 0;
    z-index: 2;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
#about01 .greet .txt-area {
    margin-top: 10px;
    padding-right: 13px;
}
#about01 .greet .txt-area p {
    font-size: 16px;
    margin: 0 0 15px;
    line-height: 1.5;
    color: #333;
}
#about01 .col-xs-12.col-sm-6.img-area {
    padding-left: 30px;
}
#about01 .col-xs-12.col-sm-6 {
    padding-right: 0;
}
#about01 .greet .txt-area p:first-child {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.6;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 54px;
    color: #222;
}
#about01 .greet .txt-area p:first-child::after {
    content: "";
    display: block;
    position: absolute;
    width: 37px;
    height: 1px;
    background: #555;
    bottom: -19px;
    left: -5px;
    transform: rotate(45deg);
}
@media (max-width: 767px) {
    #about01 .greet .greet-txt{margin: 0 0 7rem;}
    #about01 .greet .txt-area{
        margin-top: 0;
        padding-right: 0;
    }
    #about01 .greet .txt-area p:first-child{font-size: 24px;}
    #about01 .col-xs-12.col-sm-6.img-area{padding-left: 15px;}
    #about01 .col-xs-12.col-sm-6{padding-right: 15px;}
}

/* ------------ about02 ------------ */
#about02 .business .business-txt {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 19px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.025em;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
}
#about02 .txt-area {
    display: flex;
    gap: 15px;
}
#about02 .txt-area .txt-box {
    flex: 1;
    border: 0;
    text-align: center;
    padding: 50px 30px;
    border-radius: 10px;
    background: #339C9E;
    color: #fff;
}
#about02 .txt-area .txt-box:nth-child(2n) {
    background: #366092;
}
#about02 .txt-area .txt-box:nth-child(2n) span {
    color: #366092;
}
#about02 .txt-area .txt-box:nth-child(2n) p{
    color: #dce4ee;
}
#about02 .txt-area p.tit {
    color: #fff !important;
}
#about02 .txt-area .txt-box span {
    font-size: 44px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: CENTER;
    margin: 0 auto 25px;
    font-weight: 400;
    color: #339C9E;
    background: #fff;
    border-radius: 100%;
}
#about02 .txt-area p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
#about02 .txt-area p:nth-child(3) {
    font-weight: 400 !important;
    font-size: 16px;
    letter-spacing: 0;
    color: #cee7e7;
    margin-top: 5px;
}
#about02 .txt-area .info {
    font-size: 16px;
    font-weight: 400;
    margin-top: 23px;
    color: #e0f0f0;
}
@media (max-width: 767px) {
    #about02 .txt-area{
        flex-direction: column;
    }
}

/* ------------ about03 ------------ */
#about03 .timeline .timeline-list {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}
#about03 .timeline .timeline-list li {
    display: grid;
    grid-template-columns: 40% auto;
    position: relative;
}
#about03 .timeline .timeline-list li p:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    width: 100px;
    height: 1px;
    left: -167px;
    top: 30%;
    border: 1px dashed #ddd;
}
#about03 .timeline .timeline-list li p {
    padding: 10px 0px 35px 10px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    font-size: 18px;
    position: relative;
}
#about03 .timeline .timeline-list li .date {
    position: relative;
    line-height: 1;
    color: var(--page-color);
    letter-spacing: -0.034em;
    font-weight: 500;
    text-align: left;
    font-size: 30px;
    padding-left: 20px;
    margin: 0;
    font-style: italic;
}
#about03 .timeline .timeline-list li .date::before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% + 25px);
    background: #9999;
    position: absolute;
    right: 63px;
    top: 0px;
}
#about03 .timeline .timeline-list li .date::after {
    z-index: 10;
    content: "";
    display: block;
    box-sizing: content-box;
    width: 7px;
    height: 7px;
    background-color: var(--page-color);
    border: 6px solid #d6e2f1;
    position: absolute;
    border-radius: 50%;
    right: 54px;
    top: 13px;
}
@media (max-width: 767px) {
    #about03 .timeline .timeline-list li{
        grid-template-columns: repeat(1,1fr);
    }
    #about03 .timeline .timeline-list li .date{
        font-size: 28px;
        padding-left: 100px;
    }
    #about03 .timeline .timeline-list li p{
        padding: 10px 15px 15px 100px;
        font-size: 16px;
    }
    #about03 .timeline .timeline-list li .date::before{
        height: calc(100% + 165px);
        left: 35px;
        right: inherit;
    }
    #about03 .timeline .timeline-list li:last-child .date::before{
        height: calc(100% + 100px);
    }
    #about03 .timeline .timeline-list li .date::after{
        left: 27px;
        top: 13px;
        right: inherit;
    }
    #about03 .timeline .timeline-list li p:nth-child(2)::before{
        left: 33px;
        top: -33px;
        right: inherit;
        width: 50px;
    }
}

/* ------------ about04 ------------ */
#about04 .about04-txt {
    font-size: 2.5rem;
    font-weight: 400;
    color: #339C9E;
    letter-spacing: -0.02em;
    margin: 0 0 11rem;
    line-height: 1.5;
    text-align: center;
}

/* ------------ about05 ------------ */
#about05 .txt-area {
    width: 100%;
    display: inline-block;
    margin-top: 25px;
}
#about05 .txt-area .left {
    font-size: 19px;
    letter-spacing: -0.04em;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0;
}
#about05 .txt-area .left p {
    margin: 0;
}
#about05 .txt-area .left span {
    margin-right: 3px;
    color: var(--page-color);
    font-weight: 500;
    font-size: 20px;
    margin-top: -2px;
}
#about05 .txt-area .right {
    color: #000;
    font-size: 18px;
    letter-spacing: 0;
    text-align: right;
    padding: 0;
}
#about05 .txt-area .right div {
    display: inline-block;
}
#about05 .txt-area .right div:first-child {
    margin-right: 20px;
}
#about05 .txt-area .right .tit {
    display: inline-block;
    margin: 0 3px 0 0;
    font-size: 14px;
    font-weight: 900;
    color: #999;
}
@media (max-width: 767px) {
    #about05 .txt-area .left{
        font-size: 18px;
    }
    #about05 .txt-area .right div:first-child{
        margin-top: 20px;
        margin-right: 0;
    }
  #about05 .txt-area .right{
        text-align: left;
    }
    #about05 .txt-area .right div{
        display: block;
    }
}

/* ------------ product01 ------------ */
#product01 .partner_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
#product01 .partner_list ul li {
    border: 1px solid #ddd;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 80px;
}
@media (max-width: 767px) {
    #product01 .partner_list ul {
        grid-template-columns: repeat(1, 1fr);
    }
    #product01 .partner_list ul li {
        padding: 40px 40px;
    }
}

/* ------------ product02 ------------ */
.product_list .product_item {
    margin-bottom: 90px;
}
.product_list .product_item:last-child {
    margin-bottom: 0;
}
.product_list .product_item .product_sub_tit {
    margin: 0;
    margin-bottom: 30px;
    font-size: 24px;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}
.product_list .product_item .product_sub_tit::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #339c9e;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
.product_list .product_item ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}
.product_list .product_item ul li p {
    margin: 15px 0 0px;
    font-size: 15px;
}
@media (max-width: 767px) {
    .product_list .product_item {
        margin-bottom: 60px;
    }
    .product_list .product_item .product_sub_tit {
        font-size: 22px;
    }
    .product_list .product_item ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ------------ recruit01 ------------ */
#recruit01 .txt-area {
    display: flex;
    gap: 15px;
    /* grid-template-columns: repeat(2, 1fr); */
}
#recruit01 .txt-area .txt-box {
    text-align: center;
    background: #366092;
    padding: 100px 30px  40px;
    position: relative;
    flex: 1;
    border-radius: 10px;
    min-height: 220px;
}
#recruit01 .txt-area .txt-box:nth-child(1),
#recruit01 .txt-area .txt-box:nth-child(3) {
    background: #143d6e;
}
#recruit01 .txt-area .txt-box:nth-child(1) span,
#recruit01 .txt-area .txt-box:nth-child(3) span{
    border-color: #143d6e;
    color: #143d6e;
}

#recruit01 .txt-area span {
    display: flex;
    align-items: center;
    margin: -145px auto 70px;
    font-size: 40px;
    font-weight: 600;
    color: #366092;
    justify-content: center;
    background: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #366092;
}
#recruit01 .txt-area .num {
    margin: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.5;
    font-size: 15px;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.01em;
}
#recruit01 .txt-area p {
    line-height: 1.5;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #fff;
}
@media (max-width: 767px) {
    #recruit01 .txt-area{
        flex-direction: column;
        padding-top: 45px;
        gap: 65px;
    }
  #recruit01 .txt-area .txt-box{min-height: 190px;}
}

.table.table_default thead th {
    background-color: #fff;
    border-bottom-color: #aaa;
}
.table.table_default tr td.writer, .table.table_default tr td.regdate, .table.table_default tr td.hits{
    color: #999;
    font-size: 15px;
}
.board_wrapper {
    margin-top: 100px;
    margin-bottom: 0;
}
.board_wrapper .table.board_write_table tbody tr th {
    background-color: #fff;
    padding: 20px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.search_wrap {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
    min-height: 40px;
}
.table.table_default tr td {
    font-size: 16px;
}
.board_wrapper .text-center span {
    font-size: 16px !important;
}
.board_data_view .header_wrap {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #aaa;
}