@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
    /* font */
    --page-font-family: "Ubuntu", "Roboto", "notokr", sans-serif;
    /* nav */
    --navHeight: 95px;
    /* page-color */
    --page-point-color: #0c2c83;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #0c2c83;
    --page-point-color-hover: #0c2c83;
    /* font-size default (desktop / mobile)*/
    --page-font-size: 16px;
    --font-size-3xs: 0.5rem;
    --font-size-2xs: 0.65rem;
    --font-size-1xs: 0.7rem;
    --font-size-sm: 0.85rem;
    --font-size-base: 1rem;
    --font-size-md: 1.25rem;
    --font-size-lg: 1.5rem;
    --font-size-1xl: 1.75rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.5rem;
    --font-size-7xl: 4rem;
    --font-size-8xl: 5rem;
    --font-size-9xl: 6rem;
    --font-size-10xl: 7rem;
    /* grid */
    --grid-1fr: minmax(0, 1fr);
    --grid-2repeat: repeat(2, var(--grid-1fr));
    --grid-3repeat: repeat(3, var(--grid-1fr));
    --grid-4repeat: repeat(4, var(--grid-1fr));
    --grid-5repeat: repeat(5, var(--grid-1fr));
    --grid-6repeat: repeat(6, var(--grid-1fr));
    /* border-radius: ; */
    --radius-sm: 5px;
    --radius-base: 10px;
    --radius-md: 15px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --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);
}

@media (max-width: 767px) {
    :root {
        --navHeight: 80px;
        --grid-2repeat: var(--grid-1fr);
        --grid-3repeat: var(--grid-1fr);
        --grid-4repeat: var(--grid-2fr);
        --grid-5repeat: var(--grid-2fr);
        --grid-6repeat: var(--grid-3fr);
        --page-font-size: 14px;
    }
}

* {
    word-break: keep-all;
}

[v-cloak] {
    display: none;
}

html,
body#site {
    /* 홈페이지 기본 폰트 사이즈 */
    font-size: var(--page-font-size) !important;
}

body#site {
    display: none;
    font-family: var(--page-font-family);
}

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

span.material-symbols-outlined {
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    aspect-ratio: 1;
    font-variation-settings: var(--gms300_Out), var(--gradZero);
    user-select: none;
}

/* input 색상 초기화 */
input:is(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

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

.img-box {
    overflow: hidden;
    position: relative;
    display: flex;
}

.img-box img {
    object-fit: cover;
    object-position: center;
}

: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.45em;
    letter-spacing: -0.02em;
}

small {
    font-size: var(--font-size-1xs);
}

/* default */
p,
dd,
li,
li > a {
    font-size: var(--font-size-base);
}

th,
td {
    font-size: var(--font-size-base);
}

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

button {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
    font-size: var(--font-size-md);
}

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

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

/* 유튜브 iframe */
iframe[title^="YouTube"] {
    aspect-ratio: 16/9;
    background-color: #000;
}

/*=================================== list-type =================================== */
:is(.li-dash, .li-cir) {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

:is(.li-dash, .li-cir) li {
    display: grid;
    grid-template-columns: min-content auto;
    grid-template-rows: min-content;
    font-family: "Roboto";
    letter-spacing: 0;
}

.li-dash li::before {
    content: "-";
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 10px;
}

.li-cir li::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 4px;
    background-color: #333;
    margin-top: 8px;
    margin-left: 0px;
    margin-right: 8px;
}

.li-row {
    display: flex;
    justify-content: center;
}

.li-row li {
    line-height: 1;
    padding: 0 10px;
    font-size: var(--font-size-base);
}

.li-row li + li {
    border-left: 1px solid #ccc;
}

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

/* 상단 메뉴 */
.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;
}

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-weight: 500;
    color: #222;
    font-size: calc(var(--font-size-base) + 0.1rem);
}

/* nav 서브메뉴 dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: rgba(0, 0, 0, 0.75);
}

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

/* nav 대메뉴 클릭&후버 시 */
.navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
.navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
    background: none;
    color: var(--page-point-color);
}

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

/* 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% + 30px); */
        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: 12px 25px;
        line-height: 1;
        font-family: "Roboto";
        letter-spacing: 0;
        font-size: calc(var(--font-size-base) - 0.0625rem);
    }

    /* 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) brightness(10) invert(0);
    }

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

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

    .navbar-inverse.scroll .navbar-brand {
        width: 180px;
    }

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

/* mobile */
@media (max-width: 767px) {
    #site {
        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: 150px;
        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: #303036;
}

.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: 0.25;
    margin-right: 30px;
}

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

.footer-info li {
    font-size: var(--font-size-sm);
    letter-spacing: 0;
    font-weight: 300;
    line-height: 1.6em;
}

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

.footer-info li.corp {
    margin-bottom: 5px;
    font-size: var(--font-size-base);
}
.footer-info li.corp strong {
    font-weight: 500;
}
.footer-info li.copyright {
    margin-top: 7px;
    color: #aaa;
    font-size: var(--font-size-1xs);
    opacity: 0.6;
}

.footer-login {
    margin-left: auto;
    /* margin-top: auto; */
}

.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 20px;
    background: transparent;
    color: #ddd;
    line-height: 1;
    border: 1px solid #aaa;
    font-size: 0.9rem;
}

.footer-login .login-btn span.material-symbols-outlined {
    font-size: 1.1rem;
    margin-right: 5px;
}

.footer-login .login-btn:hover {
    background-color: #eee;
    color: #222;
    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: 2rem;
}

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

/* no_content */
.maintenance {
    background: #fff;
    padding: 120px 25px;
    text-align: center;
}

.maintenance span.material-symbols-outlined {
    display: inline-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(100dvh - var(--navHeight));
}

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

/* caption */
.carousel-caption {
    top: 47%;
    padding: 0;
    text-shadow: none;
    text-align: left;
}
.carousel-caption h1::before {
    content: "U CHEM";
    font-size: var(--font-size-1xl);
    color: #fff;
    opacity: 0.8;
    display: block;
    margin-bottom: 20px;
    margin-left: 5px;
    line-height: 1;
    font-weight: 500;
    border-bottom: 1px solid #fff;
    width: 106px;
    padding-bottom: 3px;
}
.carousel-caption h1 {
    position: relative;
    /* font-size: var(--font-size-6xl); */
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .carousel-caption h1 {
        white-space: nowrap;
    }
}

.carousel-caption p {
    margin-top: 25px;
    font-size: var(--font-size-lg);
    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[class*="glyphicon-chevron"]::before {
    color: #fff;
    font-family: var(--gms);
    font-variation-settings: var(--gms100_Out);
}

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

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

.carousel-control :is([class*="glyphicon-chevron"], [class*="icon"]) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: var(--font-size-7xl);
}

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

.carousel-indicators :is(li, li.active) {
    aspect-ratio: 1/1;
    width: 0.7rem;
    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;
}

@media (max-width: 767px) {
    #mainCarousel .carousel-inner .item {
        height: 600px;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
    }
    .carousel-caption h1 {
        text-align: center;
    }
    .carousel-caption h1::before {
        margin-inline: auto;
    }
    .carousel-control {
        display: none;
    }

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

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

.mainpage h3 {
    font-size: var(--font-size-5xl);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.service-wrap {
    display: grid;
    grid-template-columns: var(--grid-5repeat);
    gap: 25px;
}

.service-wrap .img-box {
    aspect-ratio: 1;
    background-color: #ccc;
}

.service-wrap .item:hover .img-box {
    transition: all 0.25s;
}

.service-wrap p {
    transition: color 0.25s;
    font-weight: 700;
    font-size: var(--font-size-md);
    margin-top: 15px;
    text-align: center;
    color: #222;
}

.service-wrap .item:hover p {
    color: var(--page-point-color);
}

.mainpage .main-board {
    position: relative;
    background: #f5f5f5;
    padding: 80px 0;
}

.board-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 310px;
}

.board-wrap .item {
    padding: 40px 50px;
    background: #fff;
}

.board-wrap .item.rt {
    background: var(--page-point-color);
    color: #fff;
}

.board-wrap .item .page-header {
    border-color: rgba(255, 255, 255, 0.5);
}

.board-wrap .item li {
    font-size: 17px;
    color: inherit;
}

.board-wrap .item.rt :is(li, a) {
    color: inherit;
    font-weight: 400;
}

.board-wrap .item li :is(.writer, .hits) {
    display: none;
}

.board-wrap .page-header a.pull-right i::before {
    color: inherit;
}

/* wrap */

/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    height: clamp(200px, 5vw, 320px);
    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: 0.3;
}

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

.subpage-header .subpage-title h2 {
    line-height: 1;
    text-align: center;
    font-weight: 900;
    color: #fff;
    font-size: calc(var(--font-size-6xl) - 0.35rem);
    margin-top: 15px;
}
#cs01 .subpage-header .subpage-title h2 {
    margin: 0;
}
@media (max-width: 767px) {
    .subpage-header .subpage-title h2 {
        font-size: 32px;
    }
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    gap: 20px;
    display: none;
}

.breadcrumb li.home::before {
    content: "HOME";
}

.breadcrumb > li {
    position: relative;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--font-size-sm);
}

.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: 1.25rem;
    line-height: 1;
}

/* =================================== snb =================================== */
.snb {
    top: var(--navHeight);
    position: sticky;
    height: 62px;
    z-index: 100;
    background: #15224b;
}
.snb .container {
    width: 100%;
}
.snb :where(ul, li > a) {
    display: flex;
}

.snb :is(.container, ul, li, li > a) {
    height: 100%;
}

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

.snb li > a {
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
    text-align: center;
    font-size: calc(var(--font-size-base) + 0.15rem);
    color: #777e97;
    line-height: 1.1em;
    font-weight: 700;
    transition: 0.25s;
    letter-spacing: 0;
}

.snb li.active a,
.snb li > a:hover {
    position: relative;
    color: #fff;
}
[id^="ba0"] .snb ul {
    gap: 40px;
}

[id^="ba0"] .snb ul li a {
    font-size: calc(var(--font-size-base) + 0.05rem);
}
@media (hover: hover) {
    /* 마우스 후버 */
}
.snb li > a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    height: 3px;
    background: #597bff;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    transition: 0.25s;
}

.snb li > a:hover::after {
    width: 100%;
}
.snb li.active a::after {
    width: 100%;
}

@media (max-width: 767px) {
    .snb {
        /* position: static; */
        overflow-x: auto;
        height: auto;
    }
    .snb ul {
        justify-content: flex-start;
        gap: 20px !important;
    }
    .snb ul li{
        flex-shrink: 0;
    }
    .snb ul li a {
        height: 60px !important;
    }
}

/* =================================== subpage =================================== */
.subpage-content section {
    padding: clamp(70px, 6vw, 100px) 0 clamp(80px, 6vw, 120px);
    min-height: 300px;
}

/* .subpage-content section:only-child,
.subpage-content section + section {
    padding-bottom: 120px;
    padding-top: 100px;
} */

.subpage-content section:nth-child(even) {
    background-color: #f3f3f3;
}

.subpage-content .se-title {
    margin-bottom: clamp(60px, 5vw, 80px);
}

.subpage-content .se-title h3 {
    font-weight: 700;
    color: #000;
    text-align: center;
    font-size: clamp(32px, 5vw, var(--font-size-4xl));
    line-height: 1;
    letter-spacing: -0.025em;
}

.subpage-content .se-title h3 + * {
    margin-top: 20px;
}
.subpage-content .se-title h3 + p {
    font-size: var(--font-size-md);
    text-align: center;
}
.subpage-content * + .wp-title {
    margin-top: 60px;
}

.subpage-content .wp-title {
    margin-bottom: 60px;
    text-align: center;
}

.subpage-content .wp-title h4 b {
    font-weight: 700;
    color: var(--page-point-color);
    font-size: 1.1em;
}

.subpage-content .wp-title h4 {
    font-size: var(--font-size-lg);
}
.cons-wrap .wp-title,
.license-wrap .wp-title {
    margin-top: -35px;
}

.subpage-content .wp-title h4 + p {
    margin-top: 10px;
    font-size: var(--font-size-md);
    color: #666;
}
.subpage-content .in-title {
    margin-bottom: 20px;
}

.subpage-content h5 {
    font-size: clamp(26px, 5vw, var(--font-size-2xl));
    line-height: 1;
    font-weight: 700;
    /* margin: 50px 0 30px; */
}

/* =================================== subpage content =================================== */
/* grid-system */
.subpage-content :where([class*="-wrap"] + [class*="-wrap"]) {
    margin-top: 100px;
}

.subpage-content :where([class*="-wrap"]) {
    display: grid;
    gap: 60px 40px;
}

.subpage-content .col-2 {
    grid-template-columns: var(--grid-2repeat);
}

.subpage-content .col-3 {
    grid-template-columns: var(--grid-3repeat);
}

.subpage-content .col-4 {
    grid-template-columns: var(--grid-4repeat);
}

.subpage-content .col-5 {
    grid-template-columns: var(--grid-5repeat);
}

.subpage-content .col-6 {
    grid-template-columns: var(--grid-6repeat);
}

.row-wrap > div {
    margin: 0;
}
.top-wrap {
    gap: 0;
}
.top-wrap .img-box {
    aspect-ratio: 4/1;
    background-color: #ccc;
}
.top-wrap .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 10;
    padding: 80px 50px 0;
    margin: -100px 100px 0;
    background-color: #fff;
    text-align: center;
}
.top-wrap .info p {
    font-size: calc(var(--font-size-md) - 0.125rem);
    font-weight: 400;
    line-height: 1.6em;
}
@media (max-width: 767px) {
    .top-wrap .img-box {
        margin: 0 -15px;
    }
    .top-wrap .info {
        margin: 50px 0 0;
        padding: 0 30px;
    }
    .top-wrap .info img {
        width: 80%;
    }
}
.icon-wrap {
    grid-template-columns: var(--grid-3repeat);
}
.icon-wrap .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 5.5/5;
    padding: 30px;
    text-align: center;
    border: 5px solid #edeef3;
    color: #182d96;
}
.icon-wrap .item span.material-symbols-outlined {
    font-size: 64px;
    margin-bottom: 20px;
}
#ab01 .se01 .icon-wrap {
    margin: 100px 0 0;
}
@media (max-width: 767px) {
    .icon-wrap{
        gap: 20px;
    }
}
#ab01 .se02 {
    padding: 100px 0 120px;
    background: #efeff3;
}
#ab01 .se02 h3 {
}
.why-wrap {
    grid-template-columns: var(--grid-4repeat);
}
.why-wrap .item {
    background-color: #fff;
    padding: 50px 30px 30px;
    text-align: center;
    box-shadow: 19px 38px 30px 0 rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}
.why-wrap .item h5 {
    margin: 20px 0 50px;
    font-size: var(--font-size-1xl);
    color: #3145a8;
}
.why-wrap .item span.material-symbols-outlined {
    font-size: 60px;
    color: #4d5eb1;
}
@media (max-width: 767px) {
    .why-wrap{
        gap: 20px;
    }
}
#ba01 #se02 {
    background: #eee;
}
#ba01 #se05 {
    background-color: #f7f7f7;
}
#ba01 #se06 {
    background: #f0f1f7;
    background: linear-gradient(359deg, #ffffff 80%, #f0f1f7 100%);
}

#ba01 :is(#snb_62, #se04) {
    visibility: hidden;
    position: absolute;
    left: -9999px;
    /* display: none; */
}
.stage-wrap {
    /* overflow-x: auto; */
    gap: 15px;
}
.stage-wrap .item {
    display: flex;
    color: inherit;
}
.stage-wrap .item li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-size: inherit;
    border-radius: 40px;
}
.stage-wrap .item li + li {
    border-left: 1px solid #fff;
}
.stage-wrap .item.i01 {
    color: #fff;
    background-color: #363d81;
    font-size: var(--font-size-md);
    border-radius: 40px;
}
.stage-wrap .item.i02 {
    color: #fff;
    background-color: #f34444;
    font-size: var(--font-size-md);
    border-radius: 40px;
}
.stage-wrap .item.i03 {
    font-size: var(--font-size-sm);
}
.stage-wrap .item.i03 {
    border: 1px solid #ccc;
    border-radius: 40px;
}
.stage-wrap .item.i03 li + li {
    border-color: #ccc;
}
@media (max-width: 767px) {
    .stage-wrap .item {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    .stage-wrap .item li {
        padding: 0;
    }
    .stage-wrap .item li + li {
        border-left: 0;
    }
}
.step-wrap {
    /* overflow-x: auto; */
    grid-template-columns: var(--grid-5repeat);
    grid-template-columns: 1fr 1fr 1fr 1fr 0.7fr;
    gap: 0;
}
.step-wrap .step {
    display: flex;
    flex-direction: column;
}
.step-wrap .step .num {
    opacity: 0.75;
    margin-bottom: 5px;
    display: block;
}
.step-wrap .step .title {
    padding: 25px;
    color: #fff;
    margin-right: 20px;
    clip-path: polygon(calc(100% - 35px) 0%, 100% 50%, calc(100% - 35px) 100%, 0% 100%, 0 50%, 0% 0%);
    border-radius: 10px;
}

.step-wrap .step .title h5 {
    font-weight: 500;
    font-size: var(--font-size-md);
    letter-spacing: 0;
}

.step-wrap .step + .step .title {
    /* margin-left: -35px; */
    /* padding-left: 20px; */
}
.step-wrap .step.i01 .title {
    z-index: 4;
    background-color: #18216b;
}
.step-wrap .step.i02 .title {
    z-index: 3;
    background-color: #293aa5;
}
.step-wrap .step.i03 .title {
    z-index: 2;
    background-color: #3c59dd;
}
.step-wrap .step.i04 .title {
    margin-right: 0;
    background-color: #5e7bfa;
}

.step-wrap .step .info {
    flex: 1;
    margin-top: 0px;
    padding: 25px 20px 25px 15px;
}

.step-wrap .step .info h6 {
    font-size: calc(var(--font-size-base) + 0.0625rem);
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2em;
    font-family: "Roboto";
}
.step-wrap .step .info ul li {
    line-height: 1.35em;
    margin: 2px 0;
    font-family: "Roboto";
    font-size: calc(var(--font-size-base) - 0.0625rem);
    letter-spacing: 0;
    color: #666;
}
.step-wrap .result,
.step-wrap .arrow {
    text-align: center;
    /* grid-column: span 4; */
}
.step-wrap .arrow {
    margin: 0;
    display: none;
}
.step-wrap .arrow span.material-symbols-outlined {
    font-size: 60px;
    line-height: 1;
}
.step-wrap .result {
    padding: 20px 25px;
    border-radius: 10px;
    height: 100px;
    border: 5px solid #aab2df;
    margin-left: 20px;
}
.step-wrap .result p {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3em;
    color: #00179a;
}
@media (max-width: 767px) {
    .step-wrap {
        display: flex;
        flex-direction: column;
    }
    .step-wrap .result {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
    }
}
.partner-wrap {
    grid-template-columns: var(--grid-5repeat);
    gap: 12px;
}

.partner-wrap .item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    /* margin-left: -1px; */
    /* margin-top: -1px; */
    background-color: #fff;
    padding: 12px 30px;
}
.process {
    display: flex;
    /* gap: 0 35px; */
    position: relative;
    margin: 0 -80px;
}
.process .verses {
    /* border: 5px solid #aab2df; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 58px;
    font-weight: 700;
    color: #15224b;
    padding: 0 30px;
}
.process .verses p {
    font-size: inherit;
}
/* .process::before {
    content: "VS";
    display: block;
    font-size: 44px;
    font-weight: 700;
    position: absolute;
    z-index: 20;
    left: 50%;
    transform: translateX(-50%);
    top: 25px;
    background: #f30000;
    padding: 20px 25px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 8px 8px 11px 0 rgba(0, 0, 0, 0.2);
} */
.process > div {
    margin: 0;
}
.process > div.process-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid #343c7f;
}
.process-wrap .wp-title {
    margin-bottom: 0;
    width: 100%;
}
.process-wrap .info {
    flex: 1;
    padding: 30px;
    border: 1px solid #d6d8dd;
    border-top: 0;
    font-family: "Roboto";
}
.process-wrap .info p + p {
    margin-top: 20px;
}
.process-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0;
}

.process-wrap .wp-title h4 {
    text-align: center;
    font-size: calc(var(--font-size-base) + 0.125rem);
    background: #343c7f;
    padding: 30px 0;
    color: #fff;
}
.process-wrap .wp-title h4 strong {
    display: block;
    font-size: var(--font-size-lg);
    /* margin-bottom: 7px; */
}

.process-wrap .arrow {
    display: flex;
    width: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #000;
}
.process-wrap .arrow span.material-symbols-outlined {
    font-size: 34px;
    font-variation-settings: var(--gms500_Out);
}
.process-wrap .arrow p {
    line-height: 1;
}
.process-wrap .chart {
    display: grid;
    grid-template-columns: minmax(0, max-content) min-content max-content min-content minmax(0, max-content);
    align-items: center;
    gap: 15px;
    min-height: 324px;
    grid-template-columns: 110px auto 120px auto 110px;
    background: #f1f2f6;
    padding: 30px 25px;
}
.process-wrap:nth-child(1) .arrow {
    width: 50px;
}

.process-wrap:nth-child(1) .chart {
    grid-template-columns: 110px 50px auto 50px 110px;
}
.process-wrap .list {
    text-align: center;
}
.process-wrap .list ul li {
    font-family: "Roboto";
    line-height: 1.1rem;
    font-size: calc(var(--font-size-base) - 0.0625rem);
    margin: 5px 0;
    color: #4b5474;
}
.process-wrap:nth-child(2) .list {
    background: #fff;
    border-radius: 50%;
    height: 120px;
}

.process-wrap:nth-child(2) .list img {
    width: 62%;
    padding-top: 15px;
}

.process-wrap .list img {
    width: 80%;
    margin: 0 auto;
    mix-blend-mode: multiply;
}

.process-wrap .round {
    aspect-ratio: 1;
    width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.process-wrap .round h5 {
    font-size: var(--font-size-md);
    font-weight: 500;
}
.process-wrap .round:not(.disabled) {
    background-color: #5572c0;
    color: #fff;
}

.process-wrap .arrow:not(.disabled) {
    color: #0c2c83;
}

.process-wrap .arrow.disabled {
    color: #bbb;
}

.process-wrap .round.disabled {
    background-color: #c6cbdf;
    color: #fff;
}

@media (max-width: 767px) {
    .process {
        flex-direction: column;
        margin: 0;
    }
    .process-wrap .chart {
        display: flex;
        flex-direction: column;
    }
    .process-wrap .arrow span.material-symbols-outlined {
        rotate: 90deg;
    }
    .process-wrap .list img {
        width: 70%;
    }
}
.cons-wrap {
    gap: 0;
}
.cons-wrap .wp-title h4 + p {
    font-size: var(--font-size-base);
    font-family: "Roboto";
    letter-spacing: 0;
}
.cons-wrap .adv {
    display: grid;
    grid-template-columns: var(--grid-3repeat);
    gap: 60px 30px;
}
.cons-wrap .info {
    padding: 25px;
}

.cons-wrap .item .col {
    /* border: 1px solid #ccc; */
    background-color: #f3f5f8;
}

.cons-wrap .item .col h5 {
    margin-bottom: 15px;
    font-size: var(--font-size-lg);
}
.license-wrap {
    gap: 0 40px;
    margin: 0 -30px;
}

.license-wrap .wp-title h4 {
    font-size: clamp(17px, 5vw, calc(var(--font-size-lg) - 0.125rem));
}
.license-wrap .korea .info {
    background-color: #3556ae;
}
.license-wrap .china .info {
    background-color: #f23c43;
}
.license-wrap .client {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 0 10px;
}
.license-wrap .info {
    margin-top: -1px;
    background: #343c7f;
    color: #fff;
    padding: 15px 40px;
    font-weight: 300;
    text-align: left;
}

.license-wrap .info p {
    font-size: 17px;
    line-height: 1.45em;
    letter-spacing: 0;
    font-family: "Roboto";
    font-weight: 400;
}
.license-wrap .client .img-box {
    background: #fff;
    /* padding: 10px 0; */
    /* border: 1px solid #eee; */
}
.license-wrap .client .img-box img {
    /* height: 250px; */
    width: 100%;
    height: 100%;
}
.license-wrap .client .col {
    text-align: center;
}
.license-wrap .client .icon {
    background: #f30000;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 110px;
    border-radius: 50%;
    box-shadow: 8px 8px 11px 0 rgba(0, 0, 0, 0.2);
    display: none;
}
.license-wrap .client span.material-symbols-outlined {
    font-size: 70px;
    color: #fff;
}

.license-wrap .item.img-box {
    margin-top: 100px;
    mix-blend-mode: multiply;
}
@media (max-width: 767px) {
    .license-wrap {
        margin: 0;
    }
    .license-wrap .client {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
/* map */
:is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    aspect-ratio: 5/2;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
}
dl.map-info {
    display: grid;
    grid-template-columns: var(--grid-2repeat);
    gap: 70px 80px;
    margin-top: 30px;
}

dl.map-info dt {
    padding-bottom: 19px;
    font-size: 22px;
    font-weight: 700;
    padding-left: 40px;
    letter-spacing: -0.04em;
}

#cs01 span.material-symbols-outlined {
    position: absolute;
    margin-top: 0px;
    font-variation-settings: var(--gms700_Out), var(--gradZero);
    font-size: 32px;
}

dl.map-info :is(dd, li) {
    line-height: 1.6em;
}

dl.map-info .li-contact {
    display: flex;
    gap: 10px;
}
dl.map-info .li-contact b {
    margin-bottom: 5px;
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    color: #333;
}
dl.map-info .li-contact li {
    font-size: clamp(15px, 3vw, 18px);
    font-weight: 400;
    background: #f4f6fb;
    padding: 10px 15px;
    border-radius: 2px;
}
@media (max-width: 767px) {
    :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
    {
        aspect-ratio: 5/3;
    }
    dl.map-info .li-contact {
        flex-direction: column;
    }
    dl.map-info .li-contact li {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    dl.map-info .li-contact b {
        width: 70px;
        margin-bottom: 0;
    }
}
.table-style :is(tbody, thead) tr :is(th, td) {
    border-color: #ddd;
    text-align: center;
    padding: 12px;
    vertical-align: middle;
}

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

/* =================================== widget =================================== */
/* 위젯 */
[class^="board_box"] {
    margin-bottom: 0 !important;
}

.page-header {
    margin-top: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}

.page-header h4 {
    display: inline-block;
    font-size: var(--font-size-lg);
}

.page-header a.pull-right i::before {
    position: relative;
    display: block;
    content: "\e145";
    transform: translateY(2px);
    font-family: var(--gms);
    font-variation-settings: var(--gms300_Out);
    font-size: var(--font-size-1xl);
    font-weight: 500;
    color: #000;
}

.type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.type_list :is(li) {
    padding: 0;
}

.type_list :is(a):hover {
    text-decoration: underline;
}

.type_list :is(li, a) {
    line-height: 1;
    font-size: var(--font-size-base);
    color: #000;
}

.type_list .info span:not(.regdate) {
    display: none;
}

.type_thumb {
    display: grid;
    grid-template-columns: repeat(2, var(--grid-1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}

.type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}

.type_thumb .inner .bottom {
    padding: 0;
}

.type_thumb .inner .bottom .info {
    display: none;
}

.type_thumb .inner .bottom .title {
    padding: 0;
    margin-top: 5px;
}

.type_thumb .bottom .title a {
    font-size: var(--font-size-md);
}

.type_thumb .inner .top a .thumb {
    aspect-ratio: 5/3;
    height: auto;
}

/* =================================== board, bbs =================================== */
:is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: none;
    /* content-visibility: hidden; */
}

#bbsArea {
    gap: 0;
}

#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    /* content-visibility: auto; */
    margin-top: 0;
}

/* 카테고리 / 분류 */
.category_wrap ul {
    justify-content: flex-start;
    display: flex;
    gap: 0 50px;
}

.category_wrap li {
    margin: 0 !important;
}
.category_wrap li + li::before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background: #eee;
    position: absolute;
    left: -25px;
    top: 1px;
}
.category_wrap li a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: calc(var(--font-size-base) + 0.125rem);
}

.category_wrap li a:hover {
    color: var(--page-point-color);
}

.category_wrap li.on :where(a, a:hover, a:focus) {
    color: var(--page-point-color);
    font-weight: 500;
}

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

/* 블로그 동영상 상품 */

/* 컬럼개수 설정 */
.table_pd {
    --col: 4;
}

:is(.table_video, .table_blog2) {
    --col: 3;
}

:is(.table_video, .table_blog2, .table_pd) {
    display: grid;
    grid-template-columns: repeat(var(--col), var(--grid-1fr));
    margin-left: 0;
    margin-right: 0;
    gap: 70px 30px;
}

/* 등록된 [상품/게시글]이 없습니다 문구 */
:is(.table_video, .table_blog2, .table_pd) dd:not([class]) {
    width: 100%;
    grid-column: span var(--col);
}

:is(.table_video, .table_blog2, .table_pd) > 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 .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;
}

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

/* 댓글 */
#bbsArea .reply_wrap h4 {
    text-align: left;
    font-size: var(--font-size-md);
}

/* 검색 */
#bbsArea .board_wrapper + :is(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}

#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 30px;
}

#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0 !important;
}

/* 게시판 reset */
.board_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0;
}

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

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

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

.btn.btn-primary:is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
    border-color: var(--page-point-color-hover);
}

/* 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 {
    margin-bottom: 0;
}

.table.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: var(--font-size-base);
    color: #333;
}

.table.table_default tr :is(th, td) {
    font-size: var(--font-size-base);
    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;
}

.board_wrapper .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}

.board_wrapper .table.board_write_table tbody tr:first-child > * {
    border-top: 0;
}

.text-muted {
    margin-top: 8px !important;
}

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

.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-weight: 700;
    width: 270px;
}

.board_data_view {
    border-top: 1px solid #333;
}

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
}

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

:is(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}

.custom_checkbox + span a {
    font-weight: 500;
}

.privacy_body {
    font-size: var(--font-size-base);
    line-height: 1.6em;
    padding: 0 100px;
}

/* =================================== popup =================================== */

#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: 0.85rem;
    font-weight: 400;
}

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

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

.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;
    border-radius: var(--radius-base);
}

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

.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}

.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: 1.25rem;
    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: var(--font-size-sm);
}

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

.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: var(--font-size-sm);
}

.member_wrapper h1 {
    font-size: var(--font-size-3xl);
    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: var(--font-size-sm);
}

.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 */

/* subpage */

/* 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(2, var(--grid-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;
    }

    .table.board_write_table tbody tr th span:first-child,
    .table.board_write_table tbody tr th span:nth-of-type(2) {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .board_wrapper .table.board_write_table tbody tr th {
        padding-bottom: 0 !important;
    }
    .board_wrapper .table.board_write_table tbody tr td {
        border-top: 0;
    }
    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 60px 0;
        height: auto;
    }

    :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 */
:is(.form-wrap, form) #list_btn {
    display: none;
}
.form-wrap span.kr {
    display: block;
    font-size: 0.85em;
    font-weight: 500;
    opacity: 0.8;
}
.form-wrap table {
    border-top: 0 !important;
}
.form-wrap form tbody {
    display: grid;
    grid-template-columns: var(--grid-2repeat);
    border-top: 1px solid #444;
    border-bottom: 1px solid #aaa;
}
.form-wrap form thead {
    border: 0;
}
.form-wrap form tbody + thead th {
    margin-top: 40px;
}
.form-wrap form thead th {
    display: flex;
    font-size: 24px;
    padding: 0 0 20px;
    border-top: 0 !important;
}
.form-wrap form tbody tr {
    display: flex !important;
}
.form-wrap form tbody tr :is(th, td) {
    display: block !important;
}
.form-wrap form tbody tr :is(th) {
    width: 190px !important;
}
.form-wrap form tbody tr :is(td) {
    padding: 15px !important;
    flex: 1;
}
.form-wrap form input {
    width: 100% !important;
}
.form-wrap #item_captcha td {
    display: flex !important;
    gap: 10px;
}
.form-wrap #item_captcha br {
    display: none;
}
.form-wrap #item_captcha td > * {
    margin: 0 !important;
}
.form-wrap #item_captcha #captcha {
    width: auto;
    height: 40px;
}
@media (min-width: 768px) {
    #in02 .form-wrap #item_4 {
        grid-column: span 2;
    }
}
.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;
}
