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

* {
    word-break: keep-all;
}

#site {
    font-family: 'Roboto', '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: 85px;
}

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

.img-box.bg{
    background-color: #f7f7f7;
    padding: 60px;
}

#bs04 .img-box.bg img{
    width: 80%;
}

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

[class$="-dash"]>*:not(dt)::before {
    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: 200px; */
    height: auto;
    margin: 0 !important;
    padding: 0;
}

.navbar-brand>span {
    display: grid;
    grid-template-columns: max-content auto;
    align-items: center;
    gap: 13px;
    color: #000;
}

.navbar-brand>span .logo {
    width: 45px;
}

.navbar-brand>span h1 {
    display: flex;
    text-align: justify;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
    font-weight: 700;
    margin-top: 3px;
    line-height: 1;
    letter-spacing: 0;
}

.navbar-brand>span h1 small {
    color: inherit;
    opacity: .7;
    font-size: 13px;
    letter-spacing: 0.025em;
    padding-left: 2px;
    margin-top: 5px;
    line-height: 1;
}

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

/* nav 서브메뉴 dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: #fff;
    color: #09264c;
}

/* nav 서브메뉴 dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu>li>a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    color: #09264c;
    font-weight: 500;
}

.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu>li:last-child>a {
    border-bottom: 0;
}

/* 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: #416db9;
    }

    /* nav 서브메뉴 dropdown-menu hover */
    .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover {
        background: #113573;
        color: #fff !important;
    }

    .dropdown-menu>li>a:focus,
    .dropdown-menu>li>a:hover {
        background: #113573;
    }
}

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

    /* 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% + 35px);
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: 0;
        padding: 0;
        text-align: center;
    }

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar-inverse .navbar-nav .dropdown-menu>li>a {
        padding: 14px 25px;
        font-size: 14px;
        line-height: 1;
    }

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

    :is(.navbar-inverse, .navbar-inverse.top) .navbar-brand h1 {
        color: #fff;
    }

    :is(.navbar-inverse, .navbar-inverse.top) .navbar-brand img {
        transition: .25s;
        /* filter: grayscale(1) invert(1) brightness(1.75); */
    }

    :is(.navbar-inverse, .navbar-inverse.top) .navbar-nav>li>a {
        font-weight: 500;
        color: #fff;
        font-size: 18px;
    }

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

    .navbar-inverse.scroll {
        height: var(--navHeight);
        background-color: #fff;
        /* border-bottom: 1px solid #eee; */
        box-shadow: 4px 0 13px rgba(0, 0, 0, 0.08);
    }

    .navbar-inverse.scroll .navbar-brand h1 {
        color: #000;
    }

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

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

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

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

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

    .navbar-brand>span h1 {
        font-size: 21px;
        white-space: nowrap;
    }

    .navbar-brand>span h1 small {
        font-size: 11px;
        letter-spacing: 0.035em;
    }

    .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 .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: 100px;
        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: #113573;
    }
}

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

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

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

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

.footer-info li {
    letter-spacing: 0;
}

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

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

.footer-info li.copyright {
    margin-top: 6px;
    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: #eee;
    border: 1px solid #888;
    font-size: 13px;
    line-height: 1;
}

.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: #999;
}

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

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

#quick {
    z-index: 1000;
    transition: .6s;
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

#quick ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#quick :is(a, button) {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 62px;
    aspect-ratio: 1;
    background-color: #0e366a;
}

#quick a>span.text {
    display: none;
}

#quick img {
    width: 52%;
}

#quick span:is([class^="fa"], .material-symbols-outlined) {
    color: #fff;
    line-height: 1;
}

#quick .youtube {
    font-size: 26px;
    /* background-color: #FF0000; */
    padding-bottom: 2px;
}

#quick .kakao {
    padding-top: 2px;
    /* background-color: #ffe812; */
}

#quick .blog {
    padding-top: 2px;
    padding-right: 1px;
    /* background-color: #03cf5c; */
}

#quick .blog p {
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
}

#quick li:nth-child(3) .blog {
    /* background-color: #cfa573; */
}

#quick li:nth-child(4) .blog {
    /* background-color: #113573; */
}

#quick .ntalk {
    /* background-color: #03cf5c; */
}

#quick .ntalk img {
    width: 47%;
}

#quick .insta {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

#quick .insta span:is([class^="fa"], .material-symbols-outlined) {
    font-size: 32px;
}

#quick #scrolltop {
    display: flex;
    flex-direction: column;
    background-color: #bd925e;
    gap: 5px;
}

#quick #scrolltop span {
    font-size: 17px;
}

#quick #scrolltop p {
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

/* mobile footer*/
@media(max-width:767px) {
    #site footer {
        padding-bottom: 110px;
    }

    #quick {
        transition: none;
        width: 100%;
        transform: none;
        right: 0;
        top: inherit;
        bottom: 0;

    }

    #quick ul {
        padding: 1px;
        flex-direction: row;
        justify-content: center;
        gap: 1px;
        background-color: #000;
    }

    #quick ul li {
        flex: 1;
    }

    #quick :is(a, button) {
        width: 100%;
        height: 100%;
        /* width: 70px; */
        /* width: 100%; */
    }

    #quick img {
        width: 48%;
    }

    #quick #scrolltop p {
        font-size: 13px;
    }

    .footer-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

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

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

    #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 {
    position: sticky;
    top: 0;
}

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

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

/* caption */
.carousel-caption {
    top: 52%;
    padding: 0;
    text-shadow: none;
}

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

.carousel-caption p {
    margin-top: 25px;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.04em;
}

/* 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.42);
    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: 54px;
}

/* 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, .5);
    transition: ease-in-out .15s all;
}

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

/* =================================== mainpage common =================================== */
/* section */
.mainpage section {
    position: sticky;
    top: var(--navHeight);
    padding: 180px 0 180px;
    /* height: calc(100vh - var(--navHeight)); */
    height: 100vh;
}

.mainpage section.main-about {
    background: center / cover no-repeat url(/public/img/main/about-bg.jpg);
    padding: 150px 0 180px;
}

.mainpage section.main-business {
    background: center / cover no-repeat url(/public/img/main/business-bg.jpg);
    padding: 230px 0 180px;
}

.mainpage section::before {
    z-index: 1;
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.mainpage section.main-about::before {
    background: #fff;
    opacity: .8;
}

.mainpage section.main-business::before {
    background: #000;
    opacity: .36;
}

.mainpage h3 {
    font-size: 62px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    color: #222;
}

.mainpage .main-about h3 {
    margin-bottom: 40px;
}

.mainpage .main-business h3 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 60px;
}

.about-wrap {
    position: relative;
    z-index: 10;
}

.about-wrap h3+span {
    font-size: 18px;
    color: #888;
}

.about-wrap p {
    margin: 80px 0;
    font-size: 26px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.04em;
}

.more-btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 20px;
    width: 200px;
    height: 59px;
    font-size: 16px;
    line-height: 1;
    color: #333;
    border: 1px solid #888;
    background-color: #fff;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.more-btn:hover,
.more-btn:focus {
    color: #fff;
    border-color: #0e366a;
    background-color: #0e366a;
}

.more-btn::after {
    content: '\e5cc';
    font-family: var(--gms);
    font-weight: 300;
    font-size: 30px;
    line-height: 1;
    color: inherit;
}

.busi-wrap {
    position: relative;
    z-index: 10;
}

.busi-wrap .icon-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 0 0px;
}

.busi-wrap .icon-wrap .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    color: #222;
}

.busi-wrap .icon-wrap .item span {
    font-size: 72px;
    font-variation-settings: var(--gms500_Out);
    color: inherit;
}

.busi-wrap .icon-wrap .item p {
    font-size: 22px;
    font-weight: 700;
}

/* wrap */

/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    height: 420px;
    background: center / cover no-repeat url(/public/img/sub/sub-top01.jpg);
    /* backdrop-filter: brightness(50%); */
}

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

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

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

/* .subpage-header.visual04 {
    background-image: url(/public/img/sub/sub-top04.jpg);
} */

/* .subpage-header.visual05 {
    background-image: url(/public/img/sub/sub-top05.jpg);
} */

/* .subpage-header::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .5;
} */

.subpage-header .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-bottom: 70px; */
    height: 100%;
    /* display: none; */
}

.subpage-header .subpage-title h2 {
    font-size: 55px;
    line-height: 1;
    margin-top: 30px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0px 2px 5px rgb(0 0 0 / 15%);
}

/* grid default layout */
.subpage>.container {
    /* display: grid;
    grid-template-areas:
        "snb sb-connent";
    grid-template-columns: 260px auto;
    grid-template-rows: min-content; */
    gap: 0px 70px;
    padding-bottom: 150px;
    min-height: 500px;
}

.snb {
    position: relative;
    z-index: 50;
    grid-area: snb;
    margin-top: -37px;
    background: #ffffff;
    box-shadow: 0px 8px 14px rgb(0 0 0 / 13%);
}

.subpage-content {
    padding-top: 105px;
    grid-area: sb-connent;
}

.se-title {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 100px;
}

.se-title h3 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    letter-spacing: -0.034em;
}

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

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

.se-title .breadcrumb>li {
    position: relative;
    color: #888;
    font-size: 13px;
}

.se-title .breadcrumb>li.active {
    color: #111;
    font-weight: 500;
}

.se-title .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;
}
.subpage-content .cons-wrap *+h3{
    margin-top: 70px;
}
.subpage-content .cons-wrap h3{
    font-size: 32px;
    font-weight: 600;
    color: #000;
    /* text-align: center; */
}
.subpage-content *+h4 {
    margin-top: 50px;
}

.subpage-content h4+* {
    margin-top: 0 !important;
}

.subpage-content h4 {
    font-weight: 600;
    font-size: 21px;
    line-height: 1.7;
    color: #113573;
    letter-spacing: -0.034em;
    padding-left: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

#bs02 .bs02-t {
    margin-top: 30px;
}

.board_data_view .header_wrap .title {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: -0.045em;
    color: #333;
    padding-right: 50px;
}

.subpage-content h4 span.num {
    font-weight: 700;
    background: #113573;
    font-size: 14px;
    line-height: 1.2;
    margin-right: 8px;
    color: #fff;
    padding: 6px 6px 5px;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    letter-spacing: 0;
}

.subpage-content h5 {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.subpage-content h6 {
    font-weight: 500;
    font-size: 20px;
    color: #555;
}

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

.verdict-wrap .text p {
    font-size: 15px;
    margin-top: 15px;
    line-height: 1.6;
}

/* =================================== snb =================================== */
.snb-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -105px;
    height: 180px;
    background: url(/public/img/sub/snb-bg.png) #0b285a no-repeat center / cover;
    display: none;
    border: 1px solid #333;
}

.snb ul {
    display: flex;
    gap: 0;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.05);
}

.snb-title h2 {
    margin-top: 5px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.0015em;
    color: #fff;
}

#co01 .snb ul {
    display: none;
}

#co01 .snb {
    margin-top: 0;
}

.snb li a {
    font-size: 18px;
    color: #555;
    font-weight: 500;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70px;
    /* padding: 21px 0 19px; */
    border-bottom: 3px solid #fff;
}

.snb li a:hover,
.snb li a:focus {
    color: #113573;
}

.snb li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 19px;
    background: #ddd;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.snb li:first-child a::after {
    display: none;
}

[id^="ab"] .snb ul li {
    width: 50%;
}

.snb ul li {
    width: 50%;
    text-align: center;
}

.snb li.active a {
    font-weight: 600;
    color: #113573;
    font-size: 18px;
    border-bottom: 3px solid #113573;
}

.snb li.active a::before {
    content: "";
    display: block;
    position: absolute;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #113573;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
}

/* .snb li a::after {
    content: '\e5cc';
    font-family: var(--gms);
    font-weight: 300;
    font-size: 27px;
    line-height: 1;
    color: #bbb;
}

.snb li.active a::after {
    color: inherit;
} */

/* =================================== subpage content =================================== */
.subpage-content p {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.03em;
}

.cons-wrap .img-box img {
    width: 100%;
}

#bs03 .cons-wrap .text p:nth-child(1) {
    font-size: 23px;
    line-height: 1.6;
    letter-spacing: -0.055em;
    color: #a57e4f;
    margin-top: 50px;
    padding-bottom: 5px;
}
#bs04 .cons-wrap .text p:nth-child(1){
    font-size: 23px;
    line-height: 1.6;
    letter-spacing: -0.055em;
    color: #0e366a;
    margin-top: 50px;
    padding-bottom: 5px;
}
.subpage-content p+p {
    margin-top: 30px;
}

.subpage-content *+.img-box {
    margin-top: 20px;
}

.subpage-content *+.text {
    margin-top: 20px;
}

*+.li-round {
    margin-top: 30px;
}

.cons-wrap .li-round {
    padding: 30px;
    background-color: #fcf9f5;
    border-top: 1px solid #cba372;
}

.li-round {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.li-round li {
    display: grid;
    grid-template-columns: min-content auto;
    font-size: 16px;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.li-round li::before {
    content: '';
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 4px;
    background-color: #333;
    margin-top: 9px;
    margin-left: 5px;
    margin-right: 10px;
}

/* 01 */
.greet-wrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.greet-wrap :is(.img-box, img) {
    width: 100%;
}

.greet-wrap .text {
    position: relative;
    z-index: 10;
    text-align: center;
    margin: -110px 70px 0;
    background-color: #fff;
    padding: 50px 160px 0;
}

.greet-wrap p.top {
    font-size: 30px;
    font-weight: 700;
    color: #0e366a;
    line-height: 1.5;
}

.greet-wrap p.top span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    opacity: .5;
}

.greet-wrap p {
    font-size: 18px;
    letter-spacing: -0.035em;
}

.greet-wrap .img-box {
    margin-top: 0;
}

.year-wrap {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-top: 15px;
}

.year-wrap .li-round {
    margin-top: 0;
}

.year-wrap .li-round li {
    font-weight: 400;
}

.year-wrap .item {
    position: relative;
    display: grid;
    grid-template-columns: 220px auto;
    gap: 30px;
    padding-left: 30px;
    padding-bottom: 70px;
    border-left: 1px solid #dde0e5;
}

.year-wrap .item h5 {
    position: static;
    margin-bottom: 0;
    line-height: 1;
    font-size: 32px;
    color: #0e366a;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.year-wrap .item h5::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 8px;
    box-sizing: content-box;
    display: block;
    aspect-ratio: 1;
    width: 5px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #0e366a;
}

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

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

.ci-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: min-content;
    align-items: flex-start;
    gap: 70px 30px;
}

.ci-wrap .grid img {
    border: 1px solid #ccc;
}

.ci-wrap .des img {
    background-color: #eee;
}

.ci-wrap .color {
    grid-column: span 2;
}

.ci-wrap .signiture {
    grid-column: span 2;
}

.ci-wrap .signiture .inner {
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid #ccc;
    padding: 30px 50px;
}

.ci-wrap .signiture .img-box {
    margin-top: 0;
}

.color-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.color-box :is(.c01, .c02) {
    display: flex;
    padding: 30px;
    color: #fff;
    flex-direction: column;
    gap: 15px;
}

.color-box h5 {
    color: inherit;
}

.color-box h5 span {
    display: block;
}

.color-box li {
    font-size: 16px;
}

.color-box .c01 {
    background-color: #113472;
}

.color-box .c02 {
    background-color: #cfa573;
}

.color-box .info {
    display: flex;
    gap: 15px;
}

.color-box .info .lt {
    margin-top: auto;
}

.color-box .info .rt-rgb {
    margin-left: auto;
}

.ci-wrap .li-btn {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.ci-wrap .li-btn li {
    flex: 1;
}

.ci-wrap .li-btn li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-size: 16px;
    color: #113472;
    border: 1px solid #113472;
}

.ci-wrap .li-btn li:hover a {
    background-color: #113472;
    color: #fff;
}

.ci-wrap .li-btn li a::after {
    line-height: 1;
    display: block;
    content: '\f090';
    font-family: var(--gms);
    font-size: 20px;
    margin-left: 10px;
}

/* 02 */
.verdict-wrap .text {
    padding: 30px 35px;
    background-color: #f5f5f5;
    margin-top: 0;
}

.verdict-wrap .text:nth-child(2) {
    padding-top: 0;
}

.li-step {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px 20px;
}

.li-step li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.li-step li::after {
    content: '\e941';
    font-family: var(--gms);
    position: absolute;
    font-size: 22px;
    right: -20px;
    display: block;
    color: #ccc;
}

.li-step li:last-child::after {
    content: none;
}

/* 03 */
.blog-wrap .table_blog2 .inner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.blog-wrap .table_blog2 .top a {
    width: auto;
    height: 100%;
    padding: 30px;
}

.blog-wrap .table_blog2 .top a .thumb {
    transition: 0.75s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-wrap .table_blog2 .inner .bottom {
    transition: .5s;
    z-index: 5;
    position: absolute;
    right: -400px;
    top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
}

.blog-wrap .table_blog2 .info {
    display: none !important;
}

.blog-wrap .table_blog2 .bottom .title {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    align-items: flex-end !important;
    justify-content: center;
}


.blog-wrap .table_blog2 .bottom .title a {
    opacity: 0;
    transition: .3s;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 60px);
    height: calc(100% - 110px);
    padding: 40px;
    background: rgba(5, 27, 56, 0.8);
    backdrop-filter: blur(10px);
}

.blog-wrap .table_blog2 .inner .bottom .title a span {
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.025em;
    text-align: left;
    font-weight: 500;
    padding: 0;
    /* 줄임 */
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-wrap .table_blog2 .badge {
    position: absolute;
    z-index: 10;
    margin: 0 !important;
    left: 25px;
    top: 25px;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.blog-wrap .table_blog2 .inner:hover {
    border: 0;
}

.blog-wrap .table_blog2 .inner:hover .bottom {
    right: 0;
}

.blog-wrap .table_blog2 .inner:hover .bottom .title a {
    opacity: 1;
}

.blog-wrap .table_blog2 .inner:hover .thumb {
    transform: scale(1.12);
}

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

/* 05 */

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

.table-style>thead>tr>th {
    border-bottom: 0;
    background-color: #113573;
    color: #fff;
    border-color: #416db9;
    font-weight: 500;
}

.table-style>tbody>tr>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;
    margin-bottom: 0;
}

[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: 30px;
    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: 5/3;
    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, .table_blog) dd :is(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
}

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

.bbs-area .reply_wrap h4 {
    font-size: 18px;
    text-align: left;
    color: #333;
}

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

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

.board_wrapper .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.board_wrapper .text-center span {
    font-size: 16px !important;
}

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

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

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

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

.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 {
    background-color: transparent;
    font-size: 15px;
    font-weight: 700;
    width: 170px;
    padding-left: 10px;
}

.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;
    text-align: left;
}

.board_data_view .header_wrap .info {
    margin-top: 15px !important;
}

.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: .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: .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) {
    #mainCarousel {
        top: var(--navHeight);
    }

    /* carousel */
    #mainCarousel .carousel-inner .item {
        height: 500px;
    }

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

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

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

    .carousel-caption p br {
        display: none;
    }

    .carousel-control {
        display: none;
    }

    .carousel-indicators :is(li, li.active) {
        aspect-ratio: 1;
        width: 10px;
        margin: 0 6px;
    }

    .mainpage h3 {
        font-size: 42px;
    }

    .mainpage .main-about h3 {
        margin-bottom: 20px;
    }

    .mainpage section {
        height: auto;
    }

    .mainpage section {
        padding: 100px 0 120px !important;
    }

    .about-wrap p {
        margin: 50px 0;
        font-size: 22px;
    }

    .mainpage .main-business h3 {
        text-align: center;
    }

    .busi-wrap .icon-wrap {
        display: flex;
        flex-direction: column;
    }
}

/* subpage */
@media(max-width:767px) {
    .img-box.bg{
        padding: 10px;
    }
    .img-box.bg > img{
        width: 100% !important;
    }
    .snb {
        margin-top: 15px;
        border: 0;
    }

    .snb ul {
        flex-direction: column;
    }

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

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

    .snb li>a {
        width: 100%;
        font-size: 16px;
        height: 55px;
        padding: 0;
    }

    .se-title {
        margin-bottom: 50px;
    }

    .subpage-header {
        height: 170px;
    }

    .subpage-content section {
        min-height: auto;
    }

    .subpage-header .subpage-title h2 {
        margin-top: 0;
        font-size: 46px;
    }

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

    .greet-wrap p br {
        display: none;
    }

    .ci-wrap .signiture .inner,
    .ci-wrap .li-btn,
    .color-box,
    .ci-wrap {
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }

    .year-wrap {
        margin-top: 70px;
    }

    .year-wrap .item {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .li-step {
        display: flex;
        flex-direction: column;
    }

    .li-step li::after {
        content: '\f1e3';
        transform: translateX(-50%);
        left: 50%;
        right: auto;
        font-size: 20px;
        bottom: -20px;
    }

    .blog-wrap .table_blog2 .inner .bottom .title a {
        position: relative;
        margin-top: -25px;
    }

    .blog-wrap .table_blog2 .inner .bottom .title a::after {
        position: absolute;
        bottom: -35px;
        z-index: 10;
        left: 0;
        content: 'VIEW MORE +';
        width: calc(100%);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        background-color: #113573;
        color: #fff;
        font-size: 15px;
        border-bottom-left-radius: 10px;
    }

    .cons-wrap .li-round {
        padding: 20px;
    }

    .cons-wrap .li-round li {
        font-size: 15px;
    }
}

/* 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: 20px 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: 0;
    padding-right: 0;
}

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