@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

#site {
    font-family: 'Pretendard Variable', "notokr", sans-serif;
    padding-top: 0;
}
@media (max-width: 767px) {
    #site {
        padding-top: 66px;
    }
}

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

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

:root {
    --page-color: #1496d9;
    --page-t-color: #0066b3;
}

/* ------------ 불필요 항목 삭제 ------------ */
.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; */
    /* top: 0; */
    /* left: 0; */
    /* margin-bottom: 0; */
    /* border: 0; */
    /* box-shadow: 5px 0 3px rgba(0, 0, 0, 0.1); */
    border-bottom: 0;
    background-color: transparent;
    transition: all .3s ease;
}
.navbar.navbar-inverse.on{border-bottom: 0;background-color: #fff;}
.navbar-inverse .navbar-brand img {
    height: 56px;
    margin-top: 4px;
}
.navbar-inverse .navbar-right {
    margin-right: -30px;
}
.navbar-inverse .navbar-nav > li > a {
    padding: 36px 50px 35px;
    color: #fff;
}
.navbar-inverse .navbar-nav > li > a {
    font-size: 18px;
    font-weight: 500;
}
.navbar-inverse.on .navbar-nav > li > a {
    color: #333;
}
.navbar-inverse .navbar-nav > li > a:focus {
    color: #222;
}
.navbar-inverse .navbar-nav > li > a:hover {
    background: transparent;
    color: var(--page-t-color);
}
.navbar-inverse .navbar-nav > li > a::before {
    content: "";
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 3px;
    position: absolute;
    background: #1d9cdb;
    transform: translateX(-50%);
    transition: width 0.3s;
    background: transparent;
}

.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-t-color);
}
@media (max-width: 767px) {
    .navbar-inverse {background: #fff;}
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse {
        max-height: 100%;
    }
    .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 {
        background: #fff;
        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.7);
        -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: 10px 15px;
        text-align: center;
        font-size: 15px;
        color: #fff;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
        transition: all 0.2s;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:focus {
        color: #fff;
        background: var(--page-color);
    }
    .navbar-inverse .navbar-nav > li > a:hover::before,
    .navbar-inverse .navbar-nav > li > a:focus::before,
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle::before,
    .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle::before,
    .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle::before {
        width: 160px;
    }
}

/* ------------  슬라이드 ------------  */
.carousel-control.left,
.carousel-control.right {
    background-image: none;
}
.carousel-control.left .glyphicon::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(225deg);
}
.carousel-control.right .glyphicon::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}
#mainCarousel .carousel-inner .item {
    height: calc(100vh - 92px);
}
#mainCarousel .carousel-inner .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.4;
}
.carousel-indicators {
    bottom: 120px;
    margin: 0;
    max-width: 100%;
    transform: translateX(-50%);
    text-align: left;
    padding-left: 15px;
}
.carousel-indicators li {
    width: 13px;
    height: 13px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    margin: 0 5px 0 0;
    border-radius: 50%;
    transition: all 0.15s ease-in-out;
}
.carousel-indicators li.active {
    width: 13px;
    height: 13px;
    background-color: #fff;
    margin: 0 5px 0 0;
}
.carousel-caption {
    color: #fff;
    text-align: left;
}
.carousel-caption h1 {
    font-family: "Montserrat", sans-serif;
    position: relative;
    font-size: 65px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 50px;
}
.carousel-caption p {
    text-shadow: none;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
}
@media (max-width: 767px) {
    .carousel-control.left .glyphicon::before,
    .carousel-control.right .glyphicon::before {
        width: 15px;
        height: 15px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
    #mainCarousel .carousel-inner .item {
        height: calc(100vh - 66px);
    }
    .carousel-control {
        font-size: 14px;
    }
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
    }
    .carousel-caption h1 {
        font-size: 35px;
        line-height: 45px;
    }
    #mainCarousel .carousel-caption p {
        font-size: 16px;
    }
}

/* ------------ footer ------------ */
#site footer {
    margin-top: 0px;
    background-color: #222;
    color: #ccc;
}
#site footer .footer-info {
    padding: 40px 0 40px;
}
#site footer .footer-info ul {
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 5px;
}
#site footer .footer-info ul li:first-child {
    font-weight: 500;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 7px;
    opacity: 1;
}
#site footer .footer-info ul li {
    list-style: none;
    display: inline-block;
    font-size: 15px;
    margin-right: 15px;
    line-height: 21px;
    font-weight: 300;
    opacity: 0.8;
}
#site footer .footer-info .logo > img {
    opacity: 0.5;
    margin-top: 3px;
    padding-right: 30px;
    width: 125px;
}
#site footer .footer-info .info {
    padding: 0 15px;
}
#site footer .footer-info ul .copy {
    font-size: 12px;
    color: #888;
    letter-spacing: 0;
    margin-top: 12px;
}
@media (max-width: 767px) {
    #site footer .footer-info ul {
        padding-top: 0px;
    }
    #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;
    }
    #site footer .footer-info ul .login-g {
        display: block;
        margin-top: 20px;
        float: none;
    }
}

/* ------------ sub 헤더 ------------ */
.sub_header {
    height: 450px;
    position: relative;
    color: #fff;
    text-align: center;
    background: #333 url("/public/img/sub/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.6);
}
.sub_header h2 {
    font-size: 46px;
    line-height: 1;
    margin: 80px 0 0;
    text-align: center;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
}
.sub_header .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.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: 35px;
        margin: 0px 0 0;
    }
}

/* ------------ sub 메뉴 ------------ */
.sub_menu {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #ddd;
}
.sub_menu ul {
    display: flex;
    justify-content: center;
 	gap: 150px;
}
.sub_menu ul > li {
    text-align: center;
}
.sub_menu ul > li::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #ccc;
    position: absolute;
    left: 110px;
    top: 50%;
    transform: translateY(-50%);
}
.sub_menu ul > li:last-child::after {
    content: none;
}
.sub_menu ul > li > a {
    padding: 15px 0;
    font-size: 17px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0;
    line-height: 50px;
    text-decoration: none;
    background: #fff;
    letter-spacing: 0.034em;
}
.sub_menu ul > li > a:hover,
.sub_menu ul > li > a:focus {
    background-color: transparent !important;
}
.sub_menu ul > li > a::after {
    content: "";
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    position: absolute;
    background: var(--page-color);
    transform: translateX(-50%);
    transition: 0.3s;
}
.sub_menu ul > li.active > a::after,
.sub_menu ul > li:hover > a::after {
    width: 100%;
    transform: translateX(-50%);
}
.sub_menu .nav li.active a,
.sub_menu .nav li:hover a {
    background-color: #fff !important;
    color: #333;
}
@media (max-width: 767px) {
    .sub_menu {
        border-bottom: 0px;
        margin-top: 15px;
    }
    .sub_menu ul {
        flex-wrap: wrap;
        gap: 0;
    }
    .sub_menu ul > li {
        flex: 1 1 48%;
        padding: 3px;
    }
    .sub_menu ul > li::after,
    .sub_menu ul > li > a::after {
        content: none;
    }
    .sub_menu ul > li > a {
        height: 42px;
        padding: 10px 15px;
        font-size: 14px;
        line-height: inherit;
        transition: all 0.2s;
        border: 1px solid #ddd;
    }
    .sub_menu .nav li.active a,
    .sub_menu .nav li:hover a {
        background-color: var(--page-color) !important;
        color: #fff;
        border: 1px solid var(--page-color);
    }

}

/* 공통 */
.se01 {
    padding-bottom: 100px;
}
.se01 .page_title {
    position: relative;
    margin: 100px 0 100px;
    text-align: center;
}
.se01 .page_title h3 {
    margin: 0 0 0;
    font-size: 42px;
    font-weight: 800;
    color: #222;
}
section:last-child {
    padding-bottom: 150px;
}
.board_wrapper .text-center .btn.btn-secondary {
    display: none;
}
#notice01 .se01 .page_title,
#notice02 .se01 .page_title {
    margin: 90px 0 0;
}
#write_btn, #login_btn {
    background-color: var(--page-color);
    border: 0;
}
.member_wrapper{
    padding-top: 170px;
    padding-bottom: 260px;
}

@media (max-width: 767px) {
    .se01 .page_title {
        margin: 70px 0 60px;
    }
    .se01 .page_title h3 {
        font-size: 32px;
    }
    section:last-child {
        padding-bottom: 80px;
    }

    .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%;
    }
  
    .member_wrapper{
        padding-top: 100px;
        padding-bottom: 200px;
    }
    .member_wrapper .login_extra ul{
        display: flex;
        flex-direction: column;
        gap: 7px;
    }
    .member_wrapper .login_extra ul li + li::before{
        content: none;
    }
}

/* ------------ common ------------ */
[id^="type"] .com .table-tit {
    letter-spacing: -0.015em;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.com ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: min-content;
    gap: 1px 50px;
    padding: 25px 30px;
    border: 5px solid #eee;
}
.com ul li {
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding-left: 15px;
}
.com ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    background-color: #333;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}
.com ul li strong {
    color: #333;
    font-weight: 500;
}
@media (max-width: 767px) {
    .com ul {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 15px;

    }
    .com ul li {
        font-size: 14px;
    }
}

/* ------------ about01 ------------ */
#about01 .txt-area .vision {
    display: flex;
    align-items: center;
}

#about01 .txt-area .vision p {
    background: rgb(196, 210, 251, 0.75);
    color: #2e1e69;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 27px;
    display: flex;
    align-items: center;
    margin: 0 -6px;
    font-size: 20px;
}
#about01 .txt-area p.intro {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 70px 0 50px;
    letter-spacing: -0.03em;
    line-height: 1.4;
}
#about01 .txt-area p.intro::after {
    content: "";
    width: 80px;
    height: 1px;
    display: block;
    margin: 30px 0 0;
    background: #ccc;
}
#about01 .txt-area p.intro strong {
    color: var(--page-color);
}
#about01 .txt-area p {
    margin: 0 0 25px;
    font-size: 17px;
    line-height: 1.7;
}
.greet {
    padding-left: 30px;
    margin-top: 70px;
    word-break: keep-all;
}
@media (max-width: 767px) {
    #about01 .txt-area p.intro strong {
        color: var(--page-color);
    }
    #about01 .txt-area p {
        font-size: 16px;
    }
    .greet {
        padding-left: 0px;
        margin-top: 50px;
    }
}

/* ------------ about02 ------------ */
.timeline {
    position: relative;
}
.timeline::before {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background: #eee;
    position: absolute;
    left: 50%;
    /* opacity: 0.1; */
    top: 0;
}
.timeline .row:first-child {
    padding-top: 50px;
}
.timeline .timeline-item {
    float: right;
    padding-left: 0;
    padding-right: 60px;
    margin-bottom: 30px;
    position: relative;
}
.timeline .timeline-item.left-line {
    float: left;
    padding-left: 60px;
    padding-right: 0;
}
.timeline .timeline-item .month {
    right: 0;
    position: absolute;
    font-size: 17px;
    font-weight: 700;
    color: #333;
}
.timeline .timeline-item.left-line .month {
    left: 0;
    right: auto;
}
.timeline .timeline-item h5 {
    color: var(--page-color);
    position: relative;
    text-align: right;
    margin: 0 0 10px;
    font-size: 45px;
    font-weight: 700;
}
.timeline .timeline-item.left-line h5 {
    text-align: left;
}
.timeline .timeline-item h5::after {
    content: "";
    position: absolute;
    top: 50%;
    left: auto;
    right: -102px;
    transform: translate(-50%, -50%);
    display: block;
    width: 27px;
    height: 27px;
    border: 7px solid #e4f2f9;
    border-radius: 50%;
    background: var(--page-color);
}
.timeline .timeline-item.left-line h5::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -75px;
    right: auto;
    transform: translate(-50%, -50%);
    display: block;
    width: 27px;
    height: 27px;
    border: 7px solid #e4f2f9;
    border-radius: 50%;
    background: var(--page-color);
}
.timeline .timeline-list {
    margin: 0;
    padding: 0;
    text-align: right;
}
.timeline .timeline-item.left-line .timeline-list {
    text-align: left;
}
.timeline .timeline-list li {
    padding: 5px 35px;
    position: relative;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .timeline::before {
        left: 25px;
    }

    .timeline .timeline-item{float:none;padding-left: 60px;
        padding-right: 0;}
    .timeline .timeline-item .month {
        right: auto;
        left: 0;
    }
    .timeline .timeline-item.left-line .month {
        left: 0;
        right: auto;
        position: absolute;
    }

    .timeline .timeline-item h5 {
        font-size: 42px;
        text-align: left;
    }
    .timeline .timeline-item h5::after {
        left: -49px;
        right: auto;
    }
    .timeline .timeline-item.left-line h5::after {
        left: -49px;
        right: auto;
    }
    .timeline .timeline-list{
        text-align: left;
    }
    .timeline .timeline-list li {
        font-size: 15px;
        padding-left: 50px;
    }
}

/* ------------ about03 ------------ */
#about03 .txt-area {
    width: 100%;
    display: inline-block;
    margin-top: -5px;
    background: #5d6575;
    padding: 20px 20px;
}
#about03 .txt-area .left {
    font-size: 17px;
    letter-spacing: -0.04em;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0;
    color: #fff;
}
#about03 .txt-area .left span {
    margin-right: 5px;
    color: var(--page-color);
    font-weight: 500;
    color: #fff;
    font-size: 22px;
}
#about03 .txt-area .right {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0;
    text-align: right;
}
#about03 .txt-area .right div {
    display: inline-block;
}
#about03 .txt-area .right div:first-child {
    margin-right: 20px;
}
#about03 .txt-area .right .tit {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #b0dbf1;
}
@media (max-width: 767px) {
    #about03 .txt-area .left {
        font-size: 16px;
        margin-bottom: 10px;
    }
    #about03 .txt-area .left span {
        font-size: 21px;
    }
    #about03 .txt-area .right {
        text-align: left;
        font-size: 15px;
        padding: 0;
    }
    #about03 .txt-area .right .tit {
        font-size: 14px;
    }
}

/* ------------ bs01 ------------ */
/* ------------ type01 ------------ */
[id^="type"] .sub_menu ul{gap:60px}
[id^="type"] .sub_menu ul > li::after{left: inherit;right: -30px;}
[id^="type"] .row {
    margin-bottom: 100px;
}
[id^="type"] .row .col-md-6 div {
    padding: 40px;
    /* border: 1px solid #eee; */
    height: 400px;
}
[id^="type"] .row .col-md-6 img {
    height: 100%;
}
[id^="type"] .table-tit {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}
[id^="type"] .table-responsive {
    margin-bottom: 80px;
}
[id^="type"] table {
    margin-bottom: 0;
}
[id^="type"] table thead {
    border-top: 1px solid #333;
}
[id^="type"] table thead tr {
    background: #959a9f;
}
[id^="type"] table thead tr th {
    border: 1px solid #ddd;
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding: 12px 10px;
    font-size: 15px;
    vertical-align: inherit;
    line-height: 1.2;
}
[id^="type"] table thead tr th.line {
    line-height: 42px;
}
[id^="type"] table tbody tr:nth-child(odd) td:nth-child(1) {
    background: #f4f4f4;
    font-weight: 700;
}
[id^="type"] table tbody tr td {
    font-weight: 400;
    border: 1px solid rgb(221, 221, 221);
    color: #555;
    text-align: center;
    vertical-align: inherit;
    padding: 8px 12px;
}

.list .list_items {
    display: flex;
    text-align: center;
    margin-bottom: 150px;
}
.list .list_items > li {
    flex: 1;
    position: relative;
}
.list .list_items > li p {
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    background: #3651a1;
    border-radius: 5px 0 0 5px;
    padding: 7px 0;
}

.list .list_items > li:nth-child(2) p,
.list .list_items > li:nth-child(3) p {
    border-radius: 0;
}
.list .list_items > li:nth-child(4) p {border-radius: 0 5px 5px 0;}
.list .list_items > li:nth-child(5) p,
.list .list_items > li:nth-child(6) p {
    border-radius: 5px;
}
.list .list_items > li:nth-child(5),
.list .list_items > li:nth-child(6) {
    margin-left: 40px;
}
.list .list_items > li:nth-child(5)::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #000;
    left: -28px;
    top: 25px;
    position: absolute;
}
.list .list_items > li:nth-child(6)::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #000;
    left: -28px;
    top: 25px;
    position: absolute;
}

.list .list_items > li ul {
    background: #edf4fb;
    border-radius: 0;
    margin: 0 2px;
    padding: 15px;
}
.list .list_items > li li {
    color: #555;
    font-size: 15px;
    margin-bottom: 3px;
    text-align: left;
    margin-left: 10px;
}
.list .list_items > li li.tit {
    color: #333;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    text-align: center;
    margin-left: 0;
    letter-spacing: -0.015em;
}
.list .list_items > li li.tit.line {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    [id^="type"] .sub_menu ul{gap:0px;}
    [id^="type"] .sub_menu ul > li{flex: 1 1 100%;}
    [id^="type"] .row {
        margin-bottom: 70px;
    }
    [id^="type"] .table-tit {
        font-size: 27px;
    }
    [id^="type"] .table-responsive {
        margin-bottom: 70px;
    }
    
    .list .list_items {
        flex-wrap: wrap;
        margin-bottom: 80px;
    }
    .list .list_items > li {
        flex: 1 1 40%;
        margin-bottom: 30px;
    }
    
    .list .list_items > li:nth-child(2) p,
    .list .list_items > li:nth-child(4) p,
    .list .list_items > li:nth-child(6) p{
        border-radius: 0px 5px 5px 0px;
        margin-left: -1px;
    }
    .list .list_items > li:nth-child(1) p,
    .list .list_items > li:nth-child(3) p,
    .list .list_items > li:nth-child(5) p{
        border-radius: 5px 0px 0px 5px;
        margin-right: -1px;
    }
    .list .list_items > li:nth-child(5),
    .list .list_items > li:nth-child(6) {
        margin: 0px;
    }
    .list .list_items > li:nth-child(5)::after,
    .list .list_items > li:nth-child(6)::after {
        content:none;
    }
}