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

* {
    word-break: keep-all;
}

#site {
    font-family: "Poppins", "notokr", sans-serif;
}

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

/* variables */
:root {
    --gms: "Material Symbols Outlined";
    /* grade */
    --gradLow: "GRAD"-25;
    --gradZero: "GRAD" 0;
    --gradHigh: "GRAD" 200;
    --opsz: "opsz" 48;
    /* fill icon */
    --gms100_Fill: "FILL" 1, "wght" 100, var(--opsz);
    --gms200_Fill: "FILL" 1, "wght" 200, var(--opsz);
    --gms300_Fill: "FILL" 1, "wght" 300, var(--opsz);
    --gms400_Fill: "FILL" 1, "wght" 400, var(--opsz);
    --gms500_Fill: "FILL" 1, "wght" 500, var(--opsz);
    --gms600_Fill: "FILL" 1, "wght" 600, var(--opsz);
    --gms700_Fill: "FILL" 1, "wght" 700, var(--opsz);
    /* outlined icon */
    --gms100_Out: "FILL" 0, "wght" 100, var(--opsz);
    --gms200_Out: "FILL" 0, "wght" 200, var(--opsz);
    --gms300_Out: "FILL" 0, "wght" 300, var(--opsz);
    --gms400_Out: "FILL" 0, "wght" 400, var(--opsz);
    --gms500_Out: "FILL" 0, "wght" 500, var(--opsz);
    --gms600_Out: "FILL" 0, "wght" 600, var(--opsz);
    --gms700_Out: "FILL" 0, "wght" 700, var(--opsz);
    /* nav */
    --navHeight: 90px;
}

/* =================================== material symbol =================================== */
.material-symbols-outlined {
    font-variation-settings: var(--gms300_Out), var(--gradZero);
    user-select: none;
}

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

img {
    flex-shrink: 0;
    image-orientation: from-image;
}

.img-box {
    position: relative;
}

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

:is(p, h1, h2, h3, h4, h5, h6, dt dd, th, td, li) {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-weight: normal;
    letter-spacing: -0.025em;
}

:is(a, a:hover) {
    text-decoration: none;
}

button {
    border-radius: 0;
    background: transparent;
    border: 0;
}

br {
    visibility: visible;
    opacity: 0;
}

:where(.container, .row) {
    position: relative;
}

.row::before,
.row::after,
.container::before,
.container::after {
    content: none;
    display: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row > * {
    float: inherit;
}

/*=================================== common =================================== */
[class$="-dash"] {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin: 0;
    padding: 0;
}

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

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

/* =================================== navbar =================================== */
/* reset start*/
#gnbauth i {
    display: none;
}

.navbar .caret {
    display: none;
}

:where(.navbar-header, .navbar > .container) {
    display: flex;
}

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

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

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

.navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
.navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
    color: inherit;
    background-color: inherit;
}

/* reset end */

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

/* nav 로고 */
.navbar-brand {
    width: 90px;
    height: auto;
    margin: 0 !important;
    padding: 0;
}

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

/* nav 서브메뉴 dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: rgb(0 0 0 / 92%);
}

/* nav 서브메뉴 dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a {
    color: #fff;
}

/* nav 대메뉴&서브메뉴 hover,focus 모바일 제외 */
@media (hover: hover) {
    /* nav 대메뉴 클릭&후버 시 */
    .navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        background: none;
        color: #328acb;
    }

    /* nav 서브메뉴 dropdown-menu hover */
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
        background: #328acb;
        color: #fff;
    }
    .dropdown-menu > li > a:focus,
    .dropdown-menu > li > a:hover {
        background-color: #328acb;
    }
}

/* desktop */
@media (min-width: 768px) {
    #site {
        padding-top: vAR(--navHeight);
    }

    /* pc nav 높이 */
    .navbar-inverse {
        height: var(--navHeight);
    }

    .navbar-inverse :is(.container, .navbar-right, .navbar-right > li, .navbar-right > li > a) {
        height: 100%;
    }

    .navbar-inverse :is(.navbar-right, .navbar-right > li) {
        float: inherit !important;
    }

    .navbar-inverse :is(.navbar-right, .navbar-right > li > a) {
        display: flex;
    }

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        justify-content: center;
        align-items: center;
        padding: 0px 25px;
    }

    /* nav 서브메뉴 dropdown-menu  */
    .navbar-inverse .navbar-nav .dropdown-menu {
        top: calc(50% + 39px);
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: 0;
        padding: 0;
        text-align: center;
    }

    .navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        color: #fff;
    }

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 15px 25px;
        font-size: 14px;
        line-height: 1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li:last-child > a {
        border-bottom: 0;
    }

    /* top & scroll */
    /* :is(.navbar-inverse, .navbar-inverse.top) {
        transition: .3s;
        height: 120px;
        background-color: transparent;
    } */

    /* :is(.navbar-inverse, .navbar-inverse.top) .navbar-brand img {
        filter: grayscale(1) invert(0) brightness(10);
    } */

    .navbar-inverse {
        height: var(--navHeight);
        background-color: #fff;
    }

    .navbar-inverse .navbar-brand img {
        filter: inherit;
    }

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

    .navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        opacity: 1;
        color: #222;
    }
}

/* mobile */
@media (max-width: 767px) {
    #site {
        --navHeight: 70px;
        padding-top: var(--navHeight);
    }

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

    .navbar-inverse > .container {
        flex-direction: column;
        padding: 0;
    }

    .navbar-inverse .dropdown-menu {
        float: inherit;
        padding: 0;
    }

    .navbar-inverse :is(.navbar-right, .navbar-collapse) {
        padding: 0;
        margin: 0 !important;
    }

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

    /* nav 메뉴 버튼*/
    .navbar-inverse .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 15px 0 0;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        opacity: 1;
        position: relative;
        transition: ease-in-out 0.15s all;
        background-color: #666;
    }

    .navbar-inverse .navbar-toggle:is(:hover, :focus) {
        background: none;
        border-color: #444;
    }

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

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

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

    /* nav 메뉴*/
    .navbar-inverse .navbar-header {
        justify-content: space-between;
        width: 100%;
        height: var(--navHeight);
        margin: 0 !important;
        border-bottom: 1px solid #ddd;
    }

    /* nav 로고*/
    .navbar-inverse .navbar-brand {
        order: 1;
        width: 65px;
        margin: 0 0 0 15px !important;
    }

    /* nav 대메뉴, 드롭다운 메뉴 공통 */
    .navbar-inverse :is(.navbar-nav > li > a, .navbar-nav > li.open > ul.dropdown-menu > li > a) {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        height: 50px;
        padding: 0 15px;
    }

    /* nav 서브메뉴 */
    .navbar-inverse .navbar-nav > li.open > ul.dropdown-menu > li > a {
        height: 45px;
        padding: 0 20px;
    }

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

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

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

/* =================================== footer =================================== */
#site footer {
    margin-top: 0px;
    padding: 40px 0;
    background-color: #ddd;
}

.footer-wrap {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: min-content;
    align-items: flex-start;
}

/* left logo */
.footer-logo img {
    opacity: 0.25;
    margin-right: 30px;
}

/* default */
.footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    font-size: 13px;
    color: #666;
    gap: 0 10px;
}

.footer-info li.clearfix {
    width: 100%;
}

.footer-info li.corp {
    margin-bottom: 7px;
    color: #555;
}

.footer-info li.copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

.footer-login {
    margin-left: auto;
}

.footer-login .login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 35px;
    background: transparent;
    color: #555;
    border: 1px solid #bbb;
    font-size: 13px;
    line-height: 1;
    background: #fff;
}

.footer-login .login-btn:hover {
    background: #222;
    border-color: #222;
    color: #fff;
    font-weight: 500;
}

#scrolltop {
    padding: 0;
    aspect-ratio: 1;
    position: fixed;
    z-index: 1000;
    right: 50px;
    bottom: 50px;
    width: 50px;
    display: none;
    text-align: center;
    color: #fff;
    background: #000;
}

#scrolltop .inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

#scrolltop .inner :is(i, span) {
    font-size: 24px;
}

/* mobile footer*/
@media (max-width: 767px) {
    .footer-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-login {
        margin-left: inherit;
    }

    #scrolltop {
        width: 40px;
        height: 40px;
        right: 0px;
        bottom: 50px;
    }

    #scrolltop .inner :is(i, span) {
        font-size: 18px;
    }
}

/* 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 - var(--navHeight));
    /* height: 100vh; */
}
/* 
#mainCarousel .carousel-inner .item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .15;
} */

/* caption */
.carousel-caption {
    top: 49%;
    padding: 0;
}

.carousel-caption h1 {
    position: relative;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

.carousel-caption p {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

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

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

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

.glyphicon.glyphicon-chevron-right::before,
.glyphicon.glyphicon-chevron-left::before {
    color: rgba(255, 255, 255, 0.71);
    font-family: var(--gms);
    font-weight: 100;
}

.glyphicon.glyphicon-chevron-right::before {
    content: "\e5e1";
}

.glyphicon.glyphicon-chevron-left::before {
    content: "\e2ea";
}

.carousel-control :is(.glyphicon-chevron-left, .glyphicon-chevron-right, .icon-next, .icon-prev) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: 45px;
}

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

.carousel-indicators :is(li, li.active) {
    aspect-ratio: 1/1;
    width: 12px;
    height: auto;
    border: 0;
    border-radius: 50%;
    margin: 0 5px;
    backdrop-filter: blur(10px);
}

.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    transition: ease-in-out 0.15s all;
}

.carousel-indicators li.active {
    background: #fff;
    box-shadow: none;
}

/* =================================== mainpage common =================================== */
/* section */
.mainpage section {
    position: relative;
    padding: 100px 0 110px;
}

/* wrap */

/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 550px;
    /* background: center / cover no-repeat url(/public/img/sub/sub-top01.jpg); */
    /* backdrop-filter: brightness(50%); */
    background-color: #666;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

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

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

.subpage-header.visual04 {
    background-image: url(/public/img/sub/sub-top04-240716.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: .15;
} */

.subpage-header .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    padding: 0px 50px;
    background-color: rgba(30, 52, 97, 0.87);
    backdrop-filter: blur(3px);
}

.subpage-header .subpage-title h2 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    font-weight: 500;
    color: #fff;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    font-size: 13px;
}

.breadcrumb > li {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0;
}

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

.breadcrumb > li + li:before {
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: -24px;
    display: block;
    font-size: 18px;
    line-height: 1;
}

/* =================================== snb =================================== */
.snb {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

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

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

.snb li + li > a {
    border-left: 0;
    position: relative;
}
.snb li + li > a::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 10px;
    background: #ccc;
    left: -21px;
    top: 50%;
    transform: translateY(-50%);
}
.snb li > a {
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #555;
    font-weight: 400;
    letter-spacing: 0;
}

.snb li.active a {
    position: relative;
    background: #fff;
    font-weight: 700;
    color: #1e3461;
    letter-spacing: 0;
}

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

/* =================================== subpage =================================== */
.subpage-content {
    background-color: #f0f0f0;
    padding-bottom: 100px;
}

.subpage-content section {
    min-height: 500px;
}

.subpage-content section .container {
    padding: 60px 60px 100px;
    background-color: #fff;
}

.subpage-content section .container > div + div {
    margin-top: 80px;
}
#bs01 .subpage-content section .area-wrap {
    margin-top: 60px;
    gap: 45px 15px;
}
.subpage-content :where(li, p, dd) {
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    color: #222;
    letter-spacing: -0.035em;
}

.subpage-content .se-title {
    margin-bottom: 70px;
}

.subpage-content .se-title h3 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.subpage-content .se-title h3 + :where(p, li) {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
}

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

.subpage-content h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #000;
    letter-spacing: -0.01em;
    padding-left: 0;
    padding-top: 13px;
    position: relative;
}
.subpage-content h4::before {
    content: "";
    display: block;
    position: absolute;
    width: 23px;
    background: #333;
    height: 4px;
    left: 0;
    top: 0;
}
.board_data_view .header_wrap .title {
    margin: 0;
    font-size: 22px;
    padding: 0;
}
.board_data_view .header_wrap .info {
    margin-top: 12px;
}
.board_data_view .header_wrap .title::before {
    display: none;
}
.subpage-content h5 {
    font-weight: 600;
    font-size: 21px;
    color: #1a3e87;
}
#ab02 .subpage-content h5 {
    font-size: 32px;
    letter-spacing: 0.02em;
}
.subpage-content h6 {
    font-weight: 500;
    font-size: 20px;
    color: #555;
}

.subpage-content :where(h4, h5, h6) + * {
    margin-top: 15px;
}

/* =================================== subpage content =================================== */
/* 01 */
.com-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    /* align-items: center; */
}

.com-wrap .top-logo {
    /* grid-column: span 2; */
    grid-row: span 4;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 60px 0 70px; */
    padding-right: 30px;
}

.com-wrap h5 {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* border-top: 1px solid #1e3461; */
    color: #111;
}

.com-wrap h5 small {
    line-height: 1.3;
    font-size: 14px;
    text-transform: uppercase;
    color: #328bcb;
    letter-spacing: 0;
}

.com-wrap p small {
    display: block;
    margin-top: 8px;
    color: #555;
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 300;
}

.com-wrap .item {
    display: grid;
    grid-template-columns: 25% minmax(0, auto);
    padding-bottom: 35px;
    border-bottom: 1px solid #ddd;
}
.com-wrap .item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.com-wrap .item p {
    /* border-top: 1px solid #ccc; */
    padding-top: 15px;
    padding-left: 25px;
    margin-top: 0;
    color: #222;
}

.prof-wrap {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 80px 50px;
}

.prof-wrap .item {
    position: relative;
    /* display: grid;
    grid-template-columns: 50% minmax(0, auto); */
}

.prof-wrap .item + .item::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 100%;
    left: -25px;
    top: 0;
    background: #ccc;
}

.prof-wrap .name {
    margin-bottom: 70px;
}

.prof-wrap .name small {
    color: #777;
    margin-left: 5px;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
}

.prof-wrap .name p {
    margin-top: 5px;
    font-size: 14px;
    color: #328bcb;
}
.prof-wrap .name .en small {
    font-size: 14px;
}
.prof-wrap .detail {
}

.prof-wrap .detail h6 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.prof-wrap .detail ul {
    margin-top: 10px;
    gap: 5px;
}

.prof-wrap .detail li {
    font-size: 15px;
    font-weight: 400;
    color: #555;
}

/* map */
:is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    width: 100% !important;
    height: 400px !important;
    padding: 0 !important;
}

iframe[src^="https://www.google.com/"]
{
    background-color: #e5e3df;
    margin-bottom: -6px;
}

/* 02 */
.we-wrap {
}

.we-wrap .text p {
    color: inherit;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
    color: #555;
    margin-top: 40px;
}
.we-wrap .text p b {
    color: #222;
}
.we-wrap .text p.imp {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 600;
    color: #338acb;
    letter-spacing: -0.0455em;
}

.area-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 45px 30px;
}

.area-wrap p {
    padding-top: 12px;
    font-weight: 600;
}

.area-wrap .item {
    text-align: center;
}

.scope-wrap h5 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    background: #328acb;
    padding: 30px 30px 0px;
}
.scope-wrap h5::before {
    content: "";
    display: block;
    position: absolute;
}
.scope-wrap h5 small {
    line-height: 1.3;
    font-size: 14px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.64);
    font-weight: 300;
}

.scope-wrap .wp-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 25px;
}

.scope-wrap .wp-content .item {
    display: grid;
    grid-template-columns: 30% minmax(0, auto);
}

.scope-wrap .wp-content .item ul {
    /* border-top: 1px solid #ccc; */
    padding-top: 30px;
    padding-left: 35px;
    padding-bottom: 30px;
    margin-top: 0;
    background: #2b7ab5;
}

.scope-wrap .wp-content .item ul small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    letter-spacing: 0;
    display: block;
    font-weight: 300;
}

/* 03 */

/* 04 */
.li-map {
    padding: 30px 0;
    display: grid;
    grid-template-columns: auto repeat(3, max-content);
    gap: 15px 14px;
    /* background: linear-gradient(90deg, #328acb 10%, #3775b8 100%); */
}

.li-map span.material-symbols-outlined {
    font-size: 16px;
    background: #338bcb;
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 26px;
    height: 26px;
}
.li-map li {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 0 5px;
    color: #000;
    font-weight: 500;
    letter-spacing: 0;
}
.li-map li:first-child {
    font-size: 16px;
    font-weight: 400;
}
.li-map li a {
    color: inherit;
}

.li-map li a:hover {
    text-decoration: underline;
}

.li-map li a::after {
    opacity: 0.8;
    display: inline-block;
    content: "\e5cc";
    transform: translateY(4px);
    font-family: var(--gms);
    font-weight: 300;
    font-size: 20px;
    line-height: 0;
    margin-left: 4px;
}

.form-wrap #list_btn {
    display: none;
}

.form-wrap .bbs-area {
    padding: 40px 40px 0;
    border-top: 1px solid #999;
}

/* 05 */

/* table */
.table-style :is(tbody, thead) :is(th, td) {
    border-color: #ddd;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    vertical-align: middle;
}

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

.table-style > tbody > th {
    background: #efefef;
}

/* =================================== board, bbs =================================== */
.page-header h4 {
    display: inline-block;
}

.page-header a.pull-right i::before {
    content: "\e145";
    font-family: var(--gms);
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

:is(.board_wrapper, .pagination_wrap, .search_wrap) {
    content-visibility: hidden;
}

.bbs-area :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    content-visibility: auto;
}

[class^="board_box"] {
    margin-bottom: 0 !important;
}

.category_wrap ul {
    display: flex;
    gap: 0 20px;
}

.category_wrap li {
    margin: 0 !important;
}

.category_wrap li a {
    color: #888;
    font-weight: 500;
    font-size: 15px;
    padding-bottom: 0;
    border-bottom: 0;
}

.category_wrap li a:hover {
    color: #111;
}

.category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}

:is(.table_video, .table_blog2) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 20px;
    margin: 0;
}

:is(.table_video, .table_blog2) > dd {
    width: 100%;
    padding: 0;
}

:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}

:where(.table_video, .table_blog2, .table_pd) .inner .top a .thumb {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    background-size: cover;
}

:is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}

:is(.table_video, .table_blog2) dd .inner .bottom {
    margin-top: 15px;
    padding: 0;
}

:is(.table_video, .table_blog2) dd:not([class]) {
    width: 100%;
    grid-column: span 3;
}

:is(.table_video, .table_blog2) dd .inner .bottom {
    padding: 0;
}

:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 0;
    padding: 0;
}

:is(.table_video, .table_blog2) dd :is(.inner .bottom) .title a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 17px;
}
:where(.table_video, .table_blog2, .table_pd) .inner:hover .bottom a {
    color: #193b85;
}
:where(.table_video, .table_blog2, .table_pd) .inner :where(.bottom .title a, .title a) :where(:hover, :focus) {
    color: #193b85;
}
:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
    display: none;
}

:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info span {
    padding: 0;
}

.bbs-area .reply_wrap h4 {
    font-size: 22px;
    text-align: left;
}

.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 5px;
    margin-top: 60px;
}

.board_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0;
}

.board_wrapper .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 17px !important;
    font-weight: 400;
}

.board_wrapper .text-center :is(.btn.btn-lg, .btn + .btn) {
    min-width: 160px;
    font-size: 14px;
}

.board_wrapper .text-center .btn + .btn {
    margin: 0;
}

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

.btn.btn-primary:is(:hover, :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_blog dd::after,
.table_blog dd .right .info {
    display: none;
}

.table_blog dd {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 25px 25px;
}

.table_blog dd a {
    font-weight: 500;
}

.table_blog dd .right {
    width: auto;
    flex-grow: 1;
    padding-top: 10px;
}

.table_blog dd .right .text p {
    padding: 0;
}

.table_blog dd .left a .thumb {
    aspect-ratio: 5/3;
    width: 250px;
    height: auto;
}

.table_blog dd :where(.left, .right) {
    width: auto;
    height: auto;
}

.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 :is(th, 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;
}

.table.table_default tr td:only-child {
    display: table-cell;
}

.text-muted {
    font-size: 14px !important;
    margin-top: 8px !important;
    color: #555;
    font-weight: 500;
}

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

/* wrapper */
.board_wrapper .text-center .btn {
    padding: 14px 0 !important;
}

.board_wrapper .table.board_write_table {
    border-top: 0;
    border-bottom: 0;
}

.board_wrapper .table.board_write_table :is(.input-group.input-group-big, .form-control.form-control-big, .btn, .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 {
    width: 180px;
    font-size: 15px;
    font-weight: 600;
    background-color: #fff;
    padding: 0;
}

.board_wrapper .table.board_write_table tbody tr :where(th, td) {
    padding: 0;
    border: 0;
}

.board_wrapper .table.board_write_table tbody tr + tr :where(th, td) {
    padding-top: 25px;
}

.board_wrapper .table.board_write_table tbody tr th > span.required_text {
    position: static;
    margin: 0;
}

.board_wrapper .checkbox,
.board_wrapper .radio {
    margin-top: 0;
}

.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_box_blog2 .inner .bottom .info {
    display: none;
}

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

:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}

:is(.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;
}

#mainPopup {
    position: relative;
    top: calc(var(--navHeight) - 140px);
}

.main_popup {
    border: 0;
    border-radius: 0;
    background-color: transparent !important;
}

.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
}

.main_popup_optional :is(label, div) {
    opacity: 0.8;
}

.main_popup_optional :is(label, div):is(:hover, :focus) {
    opacity: 1;
}

.main_popup_optional :is(label, div, span) {
    float: inherit !important;
    line-height: 1;
}

.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
}

.main_popup_optional label span.material-symbols-outlined {
    font-size: 18px;
    margin-right: 2px;
}

.main_popup button.close {
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 22px;
}

.main_popup span.material-symbols-outlined {
    font-variation-settings: var(--gms100_Out);
    font-size: inherit;
}

.main_popup_contents {
    overflow: hidden;
    padding: 10px;
    background: #fff;
}

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

/* login */
:is(#find_btn, #login_btn) {
    margin-top: 25px;
}

:is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #f7f7f7;
}

:is(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--navHeight));
}

@media (max-height: 761px) {
    :is(#find_idpw, .login_wrapper) {
        height: auto;
    }
}

:is(#find_idpw, .login_wrapper) .container {
    width: 100%;
}

.join_wrapper .member_wrapper {
    width: auto;
}

:is(#find_idpw, .join_wrapper, .login_wrapper) .member_wrapper {
    padding: 50px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: inherit;
    background: #fff;
}

:is(#find_idpw, .login_wrapper) .member_wrapper {
    width: 400px;
    margin: 0 auto;
}

.member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: #007cbe;
}

.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
}

.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px !important;
}

.member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    transform: translateY(1px);
    font-variation-settings: var(--gms400_Out);
    font-size: 18px;
    color: #000;
}

.member_wrapper .form-group > label:nth-child(1) {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}

.member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}

.member_wrapper :is(#login_form, fieldset) {
    display: flex;
    flex-direction: column;
}

.member_wrapper :is(#login_form, #login_form input) {
    font-size: 13px;
}

.member_wrapper #login_form input {
    border: 0;
    padding-left: 0;
}

.member_wrapper h1 + p {
    line-height: 1.35;
}

.member_wrapper h1 {
    font-size: 30px;
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}

.member_wrapper .login_extra ul li a {
    font-size: 13px;
}

.member_wrapper .login_extra ul li + li {
    margin-left: 0;
}

.member_wrapper .login_extra ul li + li::before {
    content: none;
}

.member_wrapper .login_extra {
    margin-top: 30px;
}

/* =================================== mobile =================================== */
/* mainpage */
@media (max-width: 767px) {
    /* carousel */
    #mainCarousel .carousel-inner .item {
        aspect-ratio: 16/9;
        height: auto;
        /* aspect-ratio: 1; */
    }

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

    .carousel-control {
        font-size: 14px;
        display: none;
    }
    .carousel-indicators {
        bottom: 15px;
    }
    .carousel-indicators :is(li, li.active) {
        aspect-ratio: 1;
        width: 8px;
        margin: 0 4px;
    }
}

/* subpage */
@media (max-width: 767px) {
    :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
    {
        aspect-ratio: 1;
        height: auto !important;
    }
    .li-map {
        display: flex;
        flex-direction: column;
    }

    .snb ul {
        justify-content: flex-start;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .snb li {
        margin: 0;
        white-space: nowrap;
    }

    .snb li > a {
        font-size: 16px;
    }

    .subpage-header {
        height: 250px;
    }
    .subpage-header.visual01 {
        background-position: 68%;
    }
    .subpage-header .subpage-title h2 {
        font-size: 32px;
    }
    .breadcrumb {
        font-size: 12px;
    }
    .subpage-header .subpage-title {
        width: calc(100% - 30px);
        flex-direction: column;
        padding: 30px 40px 25px;
        height: auto;
        gap: 10px;
    }
    .subpage-content {
        padding-bottom: 15px;
    }
    .subpage-content section .container {
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .com-wrap {
        display: flex;
        flex-direction: column;
    }
    .com-wrap .top-logo {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .com-wrap .top-logo img {
        width: 50%;
    }
    .com-wrap h5 {
        font-size: 16px;
    }
    .com-wrap .item p {
        font-size: 14px;
    }
    .prof-wrap {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .prof-wrap .name {
        margin-bottom: 20px;
    }
    .subpage-content .wp-title {
        margin-bottom: 20px;
    }
    .we-wrap .text p {
        margin-top: 0;
    }
    .we-wrap .text p.imp {
        text-align: center;
    }
    .scope-wrap .wp-content {
        display: flex;
        flex-direction: column;
    }
    .scope-wrap .wp-content .item {
        display: flex;
        flex-direction: column;
    }
    .scope-wrap h5 {
        padding: 30px;
    }
    .form-wrap .bbs-area {
        padding: 0;
    }
    .board_wrapper .table.board_write_table tbody tr + tr :where(th, td) {
        padding-top: 10px;
    }
    .board_wrapper .table.board_write_table tbody tr th {
        padding-left: 0 !important;
        padding-bottom: 0 !important;
    }
}

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

    .privacy_body {
        padding: 0 30px;
    }

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

    .table_default .subject {
        width: 100%;
    }

    .member_wrapper #join_form .table :is(.input-group.input-group-big, .form-control.form-control-big),
    .board_wrapper .table.board_write_table :is(.input-group.input-group-big, .form-control.form-control-big, tbody tr td .btn, tbody tr td .form-control, .input-group.input-group-big, .form-control.form-control-big) {
        width: 100%;
    }

    :is(.table_video, .table_blog2) {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 40px 30px;
    }

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

    .board_data_view .download_wrap tr {
        display: flex;
        flex-direction: column;
    }

    .board_data_view .download_wrap tr > * {
        width: 100%;
    }

    .board_data_view .download_wrap tr th {
        padding-bottom: 10px;
    }

    .board_data_view .download_wrap tr li a {
        word-break: break-all;
    }

    .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }

    .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 :is(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }

    .table.board_write_table tbody tr th span:nth-of-type(2) {
        margin-left: 10px;
    }

    .table.board_write_table tbody tr th span:only-child {
        margin: 0;
    }

    .table.table_responsive tbody tr th {
        padding: 15px !important;
        margin-left: 0 !important;
    }

    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        position: relative;
        padding: 30px 0;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) .member_wrapper {
        padding: 40px 20px 40px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) .container {
        width: 100%;
        padding: 0 15px;
    }

    .member_wrapper {
        width: 100% !important;
        margin: 0 !important;
    }

    .member_wrapper .form-group div:last-child {
        width: 100%;
    }

    .member_wrapper {
        padding-top: 50px;
    }

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

    .member_wrapper .login_extra ul li + li::before {
        content: none;
    }
}

/* bbs-reset */
.board_data_view .contents_wrap {
    padding-left: 0px;
    padding-right: 0px;
}

.board_data_view .contents_wrap p {
    font-size: inherit;
}

.board_data_view .contents_wrap :is(li, 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;
}
