@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=block");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css");

:root {
    /* font */
    --page-font-family: "Pretendard Variable", sans-serif;
    /* --page-font-family: "roboto", "notokr", sans-serif; */
    /* nav */
    --navHeight: 95px;
    /* page-color */
    --page-point-color: #1c54e4;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #0836ac;
    --page-point-color-hover: var(--page-point-color-dark);
    /* font-size default (desktop / mobile)*/
    --page-font-size: 14px;
    /* 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));
    --grid-7repeat: repeat(7, var(--grid-1fr));
    --grid-8repeat: repeat(8, var(--grid-1fr));
    --grid-9repeat: repeat(9, var(--grid-1fr));
    --grid-10repeat: repeat(10, var(--grid-1fr));
    --grid-11repeat: repeat(11, var(--grid-1fr));
    --grid-12repeat: repeat(12, 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;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

* {
    word-break: keep-all;
}

html,
body.body-layout {
    /* 홈페이지 기본 폰트 사이즈 */
    font-size: var(--page-font-size) !important;
}

body.body-layout {
    display: none;
    font-family: var(--page-font-family);
}

body.body-layout > .container {
    width: 100%;
    max-width: inherit;
    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-group-btn {
    width: auto;
}
.input-group .btn {
    line-height: 1;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
    line-height: 1;
}
.btn-group {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}
.btn-group > a {
    border: 0;
}
/* 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.radius {
    border-radius: 5px;
}

.img-box.radius img {
    transform: translate3d(0 0 -1px);
}

.img-box.object-fit img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.img-box.object-fit.cover {
    object-fit: cover;
}

.img-box.object-fit.contain {
    object-fit: contain;
}

: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.5em;
    letter-spacing: -0.025em;
}

small {
    font-size: 13px;
}

/* default */
p,
dt,
dd,
li,
li > a {
    font-size: 16px;
}

th,
td {
    font-size: 16px;
}

:is(a, a:hover) {
    text-decoration: none;
}

button {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
    font-size: 15px;
}

.btn {
    font-size: 15px;
}

br {
    visibility: visible;
    opacity: 0;
}

:where(.container, .row) {
    position: relative;
}

.row::before,
.row::after,
.container::before,
.container::after {
    content: none;
    display: none;
}

.row {
    margin: 0;
}

.col {
    padding: 0;
}

.row > * {
    float: inherit;
    padding: 0;
}

.grid {
    display: grid;
}

.grid > * {
    width: 100%;
}

.grid :where(.col),
.grid .col-span-1 {
    grid-column: span 1;
}
.grid .col-span-2 {
    grid-column: span 2;
}
.grid .col-span-3 {
    grid-column: span 3;
}
.grid .col-span-4 {
    grid-column: span 4;
}
.grid .col-span-5 {
    grid-column: span 5;
}
.grid .col-span-6 {
    grid-column: span 6;
}
.grid .col-span-7 {
    grid-column: span 7;
}
.grid .col-span-8 {
    grid-column: span 8;
}
.grid .col-span-9 {
    grid-column: span 9;
}
.grid .col-span-10 {
    grid-column: span 10;
}
.grid .col-span-11 {
    grid-column: span 11;
}
.grid .col-span-12 {
    grid-column: span 12;
}

.grid.col-temp-2 {
    grid-template-columns: var(--grid-2repeat);
}
.grid.col-temp-3 {
    grid-template-columns: var(--grid-3repeat);
}
.grid.col-temp-4 {
    grid-template-columns: var(--grid-4repeat);
}
.grid.col-temp-5 {
    grid-template-columns: var(--grid-5repeat);
}
.grid.col-temp-6 {
    grid-template-columns: var(--grid-6repeat);
}
.grid.col-temp-7 {
    grid-template-columns: var(--grid-7repeat);
}
.grid.col-temp-8 {
    grid-template-columns: var(--grid-8repeat);
}
.grid.col-temp-9 {
    grid-template-columns: var(--grid-9repeat);
}
.grid.col-temp-10 {
    grid-template-columns: var(--grid-10repeat);
}
.grid.col-temp-11 {
    grid-template-columns: var(--grid-11repeat);
}
.grid.col-temp-12 {
    grid-template-columns: var(--grid-12repeat);
}

.modal.show {
    opacity: 1;
}

.modal .modal-header {
    flex-direction: row-reverse;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-footer {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}
.modal .modal-footer .btn {
    flex: 1;
    min-width: inherit !important;
}
.modal .btn.btn-default {
    background-color: #5d5d5d;
    color: #fff;
}

/* 구글맵 */
iframe[src^="https://www.google.com/"]
{
    background-color: #e5e3df;
    margin-bottom: -6px;
}

/* 유튜브 iframe */
iframe[title^="YouTube"] {
    aspect-ratio: 16/9;
    background-color: #000;
}

/* =================================== old builder css reset =================================== */

.container_slide,
.container_mmenu,
.topmarginLay_a,
.divider-vertical,
.intro-board-widget-layout,
.footer-social-layout,
.navbar-inverse + br,
footer + br {
    margin: 0;
    display: none !important;
}

.footer_copy > div {
    padding: 0;
}

.container_contents {
    width: 100%;
    padding: 0;
}

.navbar .caret,
.navbar .divider-vertical,
.navbar ~ br,
.footer-social-layout,
.footer_copy .text-center > br {
    display: none;
}

/*=================================== list-type =================================== */
.li-cir li {
    --marker-padding: 15px;
    position: relative;
    padding: 1px 0;
    padding-left: var(--marker-padding);
    letter-spacing: 0;
    font-weight: 300;
}

.li-cir li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    background: #666;
    width: 6px;
    height: 2px;
    aspect-ratio: 1;
}

.li-dash li {
    --marker-padding: 15px;
    position: relative;
    padding-left: var(--marker-padding);
}

.li-dash li::before {
    content: "-";
    position: absolute;
    top: -2px;
    left: 0;
}
/* =================================== navbar =================================== */
#gnbauth i {
    display: none;
}

.dropdown-toggle::after,
.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: 160px;
    height: auto;
    margin: 0 !important;
    padding: 0;
}

.navbar-brand img {
    margin-top: 0;
}

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-weight: 600;
    color: #222;
    font-size: clamp(16px, 3vw, 18px);
}

/* nav 서브메뉴 dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    position: absolute;
    background: #000;
}

/* nav 서브메뉴 dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a {
    color: #fff;
}

/* nav 대메뉴&서브메뉴 hover,focus 모바일 제외 */
@media (hover: hover) {
    /* nav 대메뉴 클릭&후버 시 */
    .navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        background: none;
        color: var(--page-point-color);
    }

    /* nav 서브메뉴 dropdown-menu hover */
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
        background: var(--page-point-color);
        color: #fff;
    }
}

/* desktop */
@media (min-width: 768px) {
    .body-layout {
        padding-top: var(--navHeight);
    }

    /* navbar BS5 */
    .navbar {
        position: fixed;
        padding: 0;
    }
    .navbar > .container {
        flex-wrap: nowrap;
    }

    .navbar-inverse .navbar-collapse {
        height: 100% !important;
    }
    .navbar-nav {
        height: 100%;
        flex-direction: row;
        justify-content: flex-end;
    }

    /* 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: 0 30px;
        letter-spacing: -0.01em;
    }

    /* nav 서브메뉴 dropdown-menu  */
    .navbar-inverse .navbar-nav .dropdown-menu {
        /* top: calc(50% + 30px); */
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0 !important;
        border: 0;
        padding: 0;
        text-align: center;
        width: 11rem;
    }

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 15px 25px;
        line-height: 1;
        font-size: 16px;
    }

    /* 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) {
    .body-layout {
        padding-top: var(--navHeight);
    }

    .navbar-inverse {
        width: 100%;
        margin: 0;
    }

    .navbar-inverse > .container {
        flex-direction: column;
        padding: 0;
        height: 100%;
    }

    .navbar-inverse .dropdown-menu {
        position: static !important;
        float: inherit;
        padding: 0;
    }

    .navbar-inverse :is(.navbar-right, .navbar-collapse) {
        padding: 0;
        margin: 0 !important;
    }

    .navbar-inverse .navbar-right,
    .navbar-collapse {
        width: 100%;
    }

    .navbar-inverse .navbar-collapse {
        transition: 0.3s !important;
        position: relative;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
        max-height: 0px;
    }

    .navbar-inverse.open .navbar-collapse.collapsing,
    .navbar-inverse.open .navbar-collapse.in {
        display: block !important;
        max-height: 300px !important;
        overflow-y: auto;
    }

    .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(2) {
        transform: rotate(45deg);
        top: 6px;
    }

    .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(3) {
        opacity: 0;
    }

    .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(4) {
        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 {
        border-radius: 0;
    }
    .navbar-inverse .navbar-nav > li.open > ul.dropdown-menu > li > a {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
    }

    /* 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 =================================== */
.body-layout footer {
    margin-top: 0px;
    padding: 50px 0 60px;
    border-top: 1px solid #eee;
    background: #3a3d42;
}

.footer-wrap {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 200px);
    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;
    gap: 0 15px;
}

.footer-info li {
    font-size: clamp(13px, 3vw, 14px);
    letter-spacing: 0;
    color: #aaa;
    text-align: left;
}

.footer-info li.clearfix {
    width: 100%;
}

.footer-info li.corp {
    margin-bottom: 5px;
    font-size: 16px;
    color: #afafaf;
    letter-spacing: 0.034em;
}

.footer-info li.copyright {
    margin-top: 10px;
    color: #999;
    font-size: 12px;
    font-weight: 300;
}

.footer-login {
    margin-left: auto;
    margin-top: auto;
}

.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 11px;
    background: transparent;
    color: #444;
    line-height: 1;
    border-radius: 0;
    border: 1px solid #444;
    font-size: 0.8rem;
    border-radius: 0.35rem;
}

.footer-login .login-btn span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms500_Out);
}

.footer-login .login-btn:hover {
    background-color: #333;
    color: #fff;
    font-weight: 500;
}

#scrollTop {
    padding: 0;
    aspect-ratio: 1;
    position: fixed;
    z-index: 1000;
    right: 30px;
    bottom: 30px;
    width: 50px;
    display: none;
    text-align: center;
    color: #fff;
    background: #000;
    border-radius: 50%;
}

#scrollTop .inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

#scrollTop .inner :is(i, span) {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

/* 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: 15px;
        bottom: 25px;
    }
}

/* no_content */
.maintenance {
    background: #f4f4f4;
    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(100vh - var(--navHeight));
}
#mainCarousel .carousel-inner .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.3;
}

/* caption */
.carousel-caption {
    top: 49%;
    bottom: inherit;
    right: 20%;
    left: 20%;
    padding: 0;
    text-shadow: none;
    text-align: left;
}

.carousel-caption h1 {
    position: relative;
    font-size: 64px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

.carousel-caption p {
    margin-top: 25px;
    font-size: 22px;
    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: 64px;
}

/* indicators */
.carousel-indicators {
    width: auto;
    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;
}

/* =================================== mainpage common =================================== */
/* section */
.mainpage section {
    position: relative;
    padding: 100px 0 110px;
}

.mainpage .main-swiper {
    position: relative;
    padding: 0;
}
.main-swiper .swiper-slide {
    height: clamp(500px, 15vw, 700px);
}

.main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.swiper {
    overflow: hidden !important;
}
.main-swiper .swiper-pagination {
    position: static;
    margin-top: 30px;
}
.main-swiper .swiper-button-next::after,
.main-swiper .swiper-button-prev::after {
    color: #fff;
}
.main-swiper .swiper-button-prev {
    left: 50px;
}
.main-swiper .swiper-button-next {
    right: 50px;
}
.main-swiper .swiper-pagination-bullet-active {
    background-color: #fff !important;
}
.main-swiper .swiper-pagination-bullet {
    aspect-ratio: 1;
    width: 12px;
    height: auto;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
    .main-swiper .swiper-button-prev,
    .main-swiper .swiper-button-next {
        display: none;
    }
}

.swiper-caption {
    z-index: 1;
    position: absolute;
    width: clamp(80%, 3vw, 100%);
    transform: translateX(-50%);
    left: 50%;
    top: clamp(17%, 15vw, 30%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
}
@media (max-width: 767px) {
    .swiper-caption {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}
.swiper-caption h1 {
    font-size: clamp(52px, 3vw, 80px);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0;
}
.swiper-caption h1 b {
    font-weight: 900;
}
.swiper-caption h1 span {
    font-weight: 300;
}
.swiper-caption p {
    font-size: clamp(18px, 3vw, 22px);
}

.swiper-menu {
    z-index: 10;
}
.swiper-menu .menu-wrap {
    flex-wrap: nowrap;
    margin-top: -120px;
    gap: 15px;
}
@media (max-width: 767px) {
    .swiper-menu {
        padding: 0;
    }
    .swiper-menu .menu-wrap {
        margin-top: 0;
        padding: 20px 15px;
        background-color: #eee;
    }
}
.menu-wrap a {
    padding: clamp(25px, 3vw, 30px) clamp(25px, 3vw, 50px);
    background-color: var(--page-point-color);
    background-color: #3048af;
    height: 190px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px 17px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    gap: 20px;
}

.menu-wrap a:nth-child(1) {
    background: #fff;
    color: #001797;
}
.menu-wrap a:nth-child(2) {
    box-shadow: 0px 17px 25px rgba(0, 0, 0, 0.3);
}
.menu-wrap span.material-symbols-outlined {
    font-size: 72px;
}
.menu-wrap span.more {
    display: block;
    font-size: 12px;
    background: #3d54d5;
    padding: 5px 15px;
    white-space: nowrap;
}
.menu-wrap .info {
    height: 100%;
    width: 80%;
    position: relative;
}

.menu-wrap h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0;
}
.menu-wrap p {
    font-size: clamp(15px, 3vw, 17px);
    opacity: 0.85;
}
.menu-wrap a:nth-child(1) span.more {
    background: #e9ebf7;
    color: #1d2f8f;
}

.menu-wrap .icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    width: 20%;
    gap: 15px;
}

@media (max-width: 767px) {
    .menu-wrap {
        flex-direction: column;
    }

    .menu-wrap a {
        flex: 0 1 auto;
        /* flex-direction: column; */
    }
    .menu-wrap .icon {
        width: auto;
    }
}

.mainpage h3 {
    font-size: 50px;
    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: 17px;
    margin-top: 15px;
    text-align: center;
    color: #222;
}

.service-wrap .item:hover p {
    color: var(--page-point-color);
}

.mainpage .main-board {
    position: relative;
    padding: 70px 0 80px;
}

.board-wrap {
    gap: clamp(50px, 3vw, 80px);
    padding: 0 clamp(15px, 3vw, 30px);
}

@media (max-width: 767px) {
    .board-wrap {
        flex-direction: column;
    }
}

.board-wrap .col .page-header {
    border-bottom: 1px solid #999;
    margin-top: 0;
    padding-bottom: 12px;
}

.board-wrap .col .page-header h4 {
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
}
.board-wrap .front-panel > .panel {
    border: 0;
}
.board-wrap .col .panel-body {
    padding: 0;
    border: 0;
}
.board-wrap .intro-boardbox > .page-header > h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.board-wrap .intro-boardbox > .page-header > h4 > .btn {
    font-size: 20px;
    padding: 0;
    height: auto;
    padding-right: 5px;
}
.board-wrap .dh-front-list2-words + .dh-front-list2-words {
    margin-top: 12px;
}
.board-wrap .dh-front-list2-words {
    margin: 0;
    padding: 0;
}

.board-wrap .dh-front-list2-words a {
    display: grid;
    grid-template-columns: minmax(0, 80%) minmax(0, auto);
    font-size: 16px;
    font-weight: 400;
}
.board-wrap .dh-front-list2-words a span {
    font-size: inherit;
    font-weight: inherit;
}
.board-wrap .dh-front-list2-words .list-row-subject {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: clamp(15px, 3vw, 17px);
}
.board-wrap .dh-front-list2-words .row-separator {
    display: none;
}
.board-wrap .dh-front-list2-words .list-row-regdate {
    text-align: right;
    font-weight: 300;
    font-size: 15px;
    color: #777;
}
.board-wrap .dh-front-list2-words small {
    display: none;
}
.board-wrap .col li {
    font-size: 17px;
    color: inherit;
}

.board-wrap .list-row-contents {
    display: none;
}
/* wrap */

/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    height: clamp(200px, 15vw, 260px);
    background: center / cover no-repeat url(/skin/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;
    /* padding-bottom: 55px; */
    height: 100%;
}

.subpage-header .subpage-title h2 {
    line-height: 1;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: clamp(44px, 3vw, 48px);
    letter-spacing: 0.02em;
    margin-top: 10px;
}

.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: 14px;
}

.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 {
    position: relative;
    height: 68px;
    z-index: 10;
    border-bottom: 1px solid #ddd;
}

.snb :where(ul, li > a) {
    display: flex;
}

.snb :is(.container, ul, li, li > a) {
    height: 100%;
}

.snb ul {
    margin: 0;
    justify-content: left;
}

.snb li {
    padding: 0 30px;
}

.snb li > a {
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 18px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0 5px;
}

.snb li.active a {
    position: relative;
    background: #fff;
    font-weight: 700;
    color: var(--page-point-color);
}

.snb li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    width: 100%;
    height: 3px;
    background: var(--page-point-color);
}
/* =================================== subpage =================================== */
.subpage {
    overflow: hidden;
}
.subpage-content section {
    padding: clamp(70px, 10vw, 100px) 0 80px;
    min-height: 300px;
}
.snb + .subpage-content .se01 {
    padding-top: 80px;
}
.subpage-content section:only-child,
.subpage-content section + section {
    padding-bottom: clamp(100px, 5vw, 140px);
}
@media (max-width: 767px) {
    .subpage-content section + section {
        padding-top: 0;
    }
}
.subpage-content .se-title {
    margin-bottom: clamp(40px, 7vw, 80px);
    text-align: center;
}

.subpage-content .se-title:only-child {
    margin-bottom: 0;
}

.subpage-content .se-title h3 {
    font-weight: 700;
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1em;
}

.subpage-content .se-title p {
    font-weight: 300;
    color: #000;
    letter-spacing: -0.035em;
    font-size: 24px;
}

.subpage-content .se-title * + * {
    margin-top: 15px;
}
.subpage-content .wp-title {
    margin-bottom: 20px;
}
.subpage-content * + .wp-title {
    mask-type: 50px;
}

.subpage-content :where(.col, .wp-title) h4 {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4em;
    margin-top: 25px;
    padding-left: 10px;
}

.subpage-content :where(.col, .wp-title) * + h4 {
    margin-top: 40px;
}

.subpage-content :where(.col, .wp-title) h4 + * {
    margin-top: 40px;
    font-size: 18px;
}

.subpage-content .marker {
    position: relative;
    padding-left: 15px;
    font-size: 26px;
}

.subpage-content .marker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    display: block;
    aspect-ratio: 1;
    width: 4px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--page-point-color);
}
/* =================================== subpage content =================================== */
/* grid-system */
.subpage-content :where(.row, .grid, [class*="wrap"]) + :where(.row, .grid, [class*="wrap"]) {
    margin-top: 50px;
}
.greet-wrap .info {
    padding-left: 110px;
}
.greet-wrap .info h4 {
    font-size: clamp(22px, 3vw, 28px);
    padding: 0;
    font-weight: 500;
    margin-top: 5px;
}
.greet-wrap p {
    font-size: clamp(16px, 3vw, 18px);
}
.greet-wrap p + p {
    margin-top: clamp(15px, 3vw, 25px);
}
.greet-wrap .busi {
    padding: 25px 35px;
    background: #f6f7f8;
    margin-top: 70px;
}
.greet-wrap b {
    color: #2e56e8;
    font-size: 17px;
}
.greet-wrap .busi span {
    display: block;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 700;
    color: #9694b5;
}
.greet-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .greet-wrap {
        display: flex;
        flex-direction: column;
        margin: 0 -15px;
    }
    .greet-wrap > * {
        width: auto;
    }
    .greet-wrap .img-box {
        aspect-ratio: 5/3;
        width: 100%;
    }
    .greet-wrap .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .greet-wrap .info {
        padding-left: 0;
        text-align: center;
        margin: -70px 20px 0;
        padding: 20px;
        background-color: #fff;
        z-index: 100;
    }
}
.pd-wrap {
    display: grid;
    grid-template-columns: var(--grid-4repeat);
    align-items: flex-start;
    gap: 30px;
}
.pd-wrap .col {
    display: flex;
    height: 100%;
    flex-direction: column;
}
.pd-wrap .col.emi {
    grid-column: span 2;
    grid-row: span 2;
}
.pd-wrap .col.custom {
    grid-column: span 2;
}
.pd-wrap .col:not(.emi) .img-box {
    height: 200px;
}
.pd-wrap .col {
    border: 1px solid #ddd;
}
.pd-wrap .col:hover .img-box img {
    filter: brightness(1);
}
.pd-wrap .col .img-box {
    flex: 1 0 auto;
}
.pd-wrap .col .img-box img {
    filter: brightness(0.9);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-wrap .col .info {
    padding: clamp(15px, 3vw, 25px) clamp(25px, 3vw, 30px);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    position: relative;
}
.pd-wrap .col .info > * {
    color: inherit;
    margin-top: 0;
    padding: 0;
}
.pd-wrap .col .info > span {
    position: relative;
    font-size: 14px;
    right: 10px;
    opacity: 0.7;
}
.pd-wrap .col .info > span::after {
    content: "\e409";
    position: absolute;
    font-size: 27px;
    font-family: "Material Symbols Outlined";
    font-variation-settings: "FILL" 1;
    line-height: 1em;
    right: -25px;
    bottom: -3px;
}
.pd-wrap .col:hover {
    border: 1px solid #3a48db;
}

.pd-wrap .col:hover .info > * {
    color: #3127cb;
}
@media (max-width: 767px) {
    .pd-wrap {
        display: flex;
        flex-direction: column;
    }
    .pd-wrap .col {
        width: 100%;
    }
    .pd-wrap .col:not(.emi) .img-box {
        height: auto;
    }
    .pd-wrap .col .img-box {
        aspect-ratio: 5/3;
        overflow: hidden;
    }
    .pd-wrap .col.custom .img-box img {
        object-fit: contain;
        background-color: #fff;
    }
}
.tab-wrap .tabs {
    display: flex;
    justify-content: center;
    /* width: 700px; */
    margin: 0 auto 80px;
}
.tab-wrap .tabs li {
    flex: 0 1 calc(700px / 3);
}

.tab-wrap .tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: clamp(45px, 3vw, 60px);
    color: #333;
    letter-spacing: 0.034em;
    border: 1px solid #ccc;
    border-left: 0;
    font-size: 18px;
    font-weight: 500;
}
.tab-wrap .tabs li:nth-child(1) a {
    border-left: 1px solid #ccc;
}
.tab-wrap .tabs .active a {
    background: #0a00ad;
    color: #fff;
}
.emi-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.emi-wrap h5 {
    order: 1;
    grid-column: span 2;
    font-size: clamp(22px, 3vw, 24px);
    font-weight: 700;
}
.emi-wrap .col {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    padding: 30px 30px 25px;
    background-color: #f7f7f7;
}
.emi-wrap .col > .img-box {
    width: 26%;
    aspect-ratio: 5/3;
    border: 1px solid #eee;
}

.emi-wrap .col .info {
    display: grid;
    grid-template-columns: var(--grid-3repeat);
    gap: 10px 25px;
    position: relative;
    flex: 1;
    padding: 35px 35px 35px 0;
}

.emi-wrap .col .spec {
    width: 100%;
}
.emi-wrap .col .spec table {
    table-layout: fixed;
}
.emi-wrap .col .spec colgroup col:not(.empty) {
    width: 90px;
}
.emi-wrap .col .spec colgroup col.empty {
    width: 15px;
}
.emi-wrap .col .spec :is(th, td) {
    text-align: center;
    white-space: normal !important;
}
.emi-wrap .col .spec .model-number th {
    line-height: 1;
    font-size: clamp(20px, 3vw, 24px);
    padding: 0 0 15px;
    border: 0;
}
.emi-wrap .col .spec .table-header th {
    background-color: #0a00ad;
    border: 1px solid #706ae7;
    color: #fff;
    font-size: clamp(15px, 3vw, 16px);
}
.emi-wrap .col .spec .table-header th.empty {
    background-color: transparent;
}
.emi-wrap .col .spec .table-body td:not(.empty) {
    vertical-align: middle;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
}
.emi-wrap .col .spec :is(th, td).empty {
    border: 0;
}
.emi-wrap .table-img {
    width: 100%;
    margin-top: 50px;
}
.emi-wrap .table-img img {
    mix-blend-mode: multiply;
    margin-left: 0;
    filter: grayscale(1);
}

/* .emi-wrap .col .info::after {
    content: "RoHS";
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    padding: 6px 10px 5px;
    background-color: #fff;
    line-height: 1;
    border: 1px solid #ddd;
} */

.li-cert {
    order: 2;
    display: flex;
    justify-content: flex-end;
    translate: 0 7px;
    gap: 12px;
    /* position: absolute; */
    /* right: 30px; */
    /* top: 30px; */
    mix-blend-mode: multiply;
}
.li-cert li {
    height: clamp(20px, 3vw, 25px);
    background-size: cover;
}

.li-cert .kc {
    aspect-ratio: 19/30;
    background-image: url(/skin/img/sub/kc_mark.jpg);
}

.li-cert .ce {
    aspect-ratio: 43/30;
    background-image: url(/skin/img/sub/ce_mark.jpg);
}

.li-cert .ul {
    aspect-ratio: 75/30;
    background-image: url(/skin/img/sub/ul_mark.jpg);
}

.emi-wrap .li-cir {
    order: 3;
    grid-column: span 3;
}
@media (max-width: 767px) {
    .emi-wrap .col {
        padding: 0 20px 0;
    }
    .emi-wrap .col > .img-box {
        width: auto;
        margin: 0 -20px;
    }
    .emi-wrap .col .info {
        padding: 0 0 20px;
    }
    .table-responsive {
        border: 0;
    }
}
.top-wrap {
    flex-wrap: wrap;
    align-items: stretch;
}

.top-wrap .img-box {
    background-color: #f1f1f1;
}
#pd03 .top-wrap .img-box {
    padding: 50px;
    display: flex;
    align-items: center;
}
.top-wrap .img-box img {
    mix-blend-mode: multiply;
}
.top-wrap .wp-title {
    color: #fff;
    margin-bottom: 0;
    padding: 15px 0 15px 70px;
    background: #4e5162;
}
.top-wrap .wp-title h4 {
    font-size: clamp(24px, 3vw, 28px);
    letter-spacing: 0;
    padding: 0;
    font-weight: 500;
}

.subpage-content .wp-title h4::before {
    content: "";
    display: block;
    width: 3px;
    height: 19px;
    background: #333;
    position: absolute;
    top: 5px;
    left: 0;
}

.subpage-content .col h4::before {
    display: none;
}

.top-wrap .wp-title h4 + ul {
    margin-top: clamp(10px, 3vw, 20px);
}

.top-wrap .wp-title ul li:before {
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.top-wrap .wp-title img {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 280px;
    padding: 10px 20px;
    background: #fff;
}
.top-wrap .li-big {
    margin-top: 40px;
}
.top-wrap .li-big > li {
    font-size: 20px;
    margin-bottom: 5px;
}
.top-wrap .li-big > li > ul {
    padding-left: 25px;
}
.table-wrap * + .img-box {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .top-wrap {
        display: flex;
        flex-direction: column;
    }
    .top-wrap .wp-title {
        padding: 30px 25px;
    }
    #pd03 .top-wrap .img-box {
        padding: 15px;
    }
    .top-wrap .li-big {
        margin-top: 10px;
    }
    .top-wrap .wp-title h4 {
        margin-top: 0;
    }
}

/* 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;
}
.map-wrap dl {
    margin-top: 40px;
    display: grid;
    grid-template-columns: var(--grid-2repeat);
    gap: clamp(7px, 3vw, 15px);
}
.map-wrap dl div {
    display: flex;
    align-items: center;
    gap: 15px;
}
.map-wrap dl div + div {
}
.map-wrap dt {
    position: relative;
    /* border-top: 1px solid #222; */
    /* padding-top: 15px; */
    width: 27%;
    padding-left: 32px;
}
.map-wrap dt span.material-symbols-outlined {
    position: absolute;
    transform: translateY(-1px);
    left: 0;
    background: #415bb9;
    color: #fff;
    border-radius: 50%;
    font-size: clamp(14px, 3vw, 16px);
    padding: 4px;
}
.map-wrap dd {
    margin: 0;
    flex: 1;
    font-size: clamp(14px, 3vw, 15px);
}
@media (max-width: 767px) {
    :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
    {
        aspect-ratio: 5/4;
    }
    .map-wrap dl {
        /* display: flex;
        flex-direction: column; */
        gap: 20px 10px;
    }
    .map-wrap dt {
        width: auto !important;
        display: inline-flex;
        white-space: nowrap;
    }
    .map-wrap dl div {
        flex-direction: column;
        align-items: flex-start;
        /* text-align: center !important; */
        gap: 7px !important;
    }
}
.table-style :is(tbody, thead) tr :is(th, td) {
    text-align: center;
    padding: 15px;
    vertical-align: middle;
}

.table-style > thead > tr > th {
    font-size: 18px;
    border: 0;
    padding: 15px;
}
.table-style > tbody > tr > th {
    font-weight: 500;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-left: 0;
}

.table-style {
    border: 0;
}

.table-style :is(tbody, thead, tfoot) tr :is(th:last-child, td:last-child) {
    border-right: 0;
}
.table.tight {
    border: 1px solid #ddd;
    border-top: 1px solid #333;
}

.tight :is(tbody, thead) tr th {
    background: #f8f8f8;
    font-weight: 600;
    border-left: 1px solid #ddd;
    border-top: 1px solid #333 !important;
}

.tight :is(tbody, thead) tr :is(th, td) {
    padding: 10px;
    font-size: 15px;
}
/* =================================== board, bbs =================================== */
.filter-items {
    display: flex;
    gap: 0 8px;
    padding: 0;
    margin: -30px 0 50px;
    justify-content: center;
}

.filter-items .filter-label {
    color: #333;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    margin: 0;
    padding: 5px 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #ddd;
    background: #fff;
}

.filter-items a {
    margin: 0;
}

.filter-items a.on .filter-label,
.filter-label:hover,
.filter-label:focus {
    background: #fff;
    border: 1px solid #0b5e9d;
    color: #0b5e9d;
}

.bbs-area h4 {
    font-weight: 500;
    padding: 0;
    color: #222;
    font-size: 28px;
}

.bbs-area h4::before,
.bbs-area h4::after {
    content: none !important;
}

.bbs-area h4.title {
    text-align: center;
}

.bbs-area .reply_wrap h4 {
    text-align: left;
}

.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.bbs-area .search_wrap > * + * {
    margin-left: 5px;
}

.board_wrapper .text-center .btn.btn-lg,
.board_wrapper .text-center .btn + .btn {
    min-width: 200px;
}

.btn {
    height: 40px;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 0;
}

.btn.btn-primary {
    background-color: #444;
    border: 1px solid #444;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #222;
    border-color: #222;
}
.btn-group a {
    padding-top: 12px;
}
.form-control {
    height: 40px;
    box-shadow: none;
}

.pagination > li > a,
.pagination > li > span {
    color: #333;
    border-radius: 0 !important;
    border-color: #d6d6d6;
    margin: 0 2px;
    line-height: 1.2em;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    color: #333;
    border-color: #d6d6d6;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background: #f6f6f6;
    border-color: transparent;
    color: #333;
}

/* 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.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: 17px;
    color: #333;
}

.table.table_default tr th,
.table.table_default tr 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;
}

.text-muted {
    font-size: 14px !important;
    margin-top: 8px !important;
}

input.form-control {
}

/* wrapper */

.dh-board > .table > tbody > tr:hover {
    background: #fff;
}

.dh-board > .table {
    border-top: 2px solid #444;
    border-bottom-color: #ccc;
    margin: 0;
}

.dh-board > .table-hover thead .col-xs-2,
.dh-board > .table-hover thead .col-xs-1 {
    width: 10%;
}

.dh-board > .table-hover thead .col-xs-5 {
    width: 70%;
}

.dh-board table tr th,
.dh-board table tr td {
    padding: 18px 3px;
    border-bottom: 1px solid #ddd;
}

.dh-board table thead tr th {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    border-bottom: 1px solid #afafaf;
    padding: 22px 5px;
}

.dh-board table tbody tr td {
    font-size: 15px;
    padding: 25px 15px;
    color: #777;
    line-height: 1em;
    font-weight: 300;
}

.dh-board table tbody tr td.subject strong a {
    font-size: 17px;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.dh-board table tbody tr td.subject strong a:hover {
    text-decoration: underline;
    text-underline-position: under;
    color: #0b5e9d;
}

.dh-board table tbody tr td.subject .label-danger {
    display: none;
}

.table-hover > tbody > tr:hover {
    background-color: #ffffff; /* Assuming you want the hover color to be white */
}
.bbs-blog2-index-layout .dh-board {
    margin: 0 -15px;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b {
    width: 33.3333%;
    background: transparent;
    padding: 0 15px;
    border: 0;
    margin-bottom: 80px;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b > .row {
    margin: 0;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b > .row > div {
    padding: 0;
}

.dhb-txt-box-type-b-text-layout h4 {
    text-align: center;
    margin: 20px 0 10px;
    font-size: 20px;
    font-weight: 500;
}

.dhb-txt-box-type-b-text-layout h4 strong {
    font-weight: 500;
    letter-spacing: -0.034em;
}

.thumb-hidden > a > img {
    position: relative;
    transform: translateY(-50%);
    top: 50%;
}

.dhb-txt-box-type-b-img-layout .thumb-hidden {
    height: 200px;
    max-height: inherit;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.dhb-txt-box-type-b-text-layout .txt-box-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    float: inherit;
    text-align: center;
    margin-top: 0;
}

.dhb-txt-box-type-b-text-layout .txt-box-footer,
.dhb-txt-box-type-b-text-layout .txt-box-footer .hits {
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 400;
}

.dhb-txt-box-type-b-text-layout .txt-box-footer br {
    display: none;
}

.dhb-txt-box-type-b-text-layout .txt-box-footer em {
    display: none;
}

.dhb-txt-box-type-b-text-layout .txt-box-footer > * {
    margin-right: 10px;
}

.dhb-txt-box-type-b-text-layout .txt-box-footer > *:last-child {
    margin-right: 0;
}

.dh-margin-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-top: 60px;
}

.dh-margin-top .col-md-7 {
    width: 100%;
}

.dh-margin-top > * {
    width: auto;
}

.dh-margin-top > *:first-child {
    margin-top: 28px;
    order: 2;
}

.dh-margin-top > *:nth-child(2) {
    width: 45%;
    order: 1;
}

.dh-view-box {
    margin: 0;
}

.dh-view-box > .row:nth-child(2) > div:nth-child(3) {
    padding: 20px 0 60px !important;
}

.dh-view-box h4 {
    text-align: center;
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.03em;
    font-weight: 600;
}
.dh-view-box > .row {
    margin-top: 0;
}
.dh-view-box > .row > .page-header {
    width: 100%;
    border-top: 2px solid #222;
    border-bottom: none;
    margin: 0;
    padding: 40px 30px 0;
}

.dh-view-box > .row > .dh-view-info {
    padding: 15px 15px 35px;
    margin-bottom: 15px;
    text-align: center;
    background: #fff;
}

.dh-view-box > .row > .dh-view-info .pull-right {
    display: none;
}

.dh-view-box > .row > .dh-view-info > span {
    font-size: 13px;
    color: #777;
    padding: 0 10px 0;
}

.dh-view-box > .row > .dh-view-info > span > strong {
    color: #888;
}

.dh-view-box .dh-attach h6 b {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.dh-view-box .dh-attach h6 {
    padding: 8px 5px;
}

.label-danger {
    transform: translateY(-3px);
}

.label {
    display: inline-flex;
    padding: 0;
    line-height: 0;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 16px;
    margin-left: 3px;
}

.form-horizontal {
    padding: 50px;
    background: #f8f8f8;
}

.form-horizontal h2 {
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: -0.06em;
    font-size: 28px;
    color: #333;
    font-weight: 500;
}

.form-horizontal .form-group {
    display: flex;
    justify-content: center;
}

.form-horizontal .form-group .col-sm-2 {
    width: 120px;
    font-size: 15px;
    font-weight: 600;
}

.form-horizontal .col-sm-offset-2 {
    margin: 0;
}

.btn-group-lg > .btn,
.btn-lg {
    border-radius: 0;
    min-width: 150px;
    font-size: 16px;
    margin-top: 20px;
}
.btn-lg:hover {
    color: #fff;
    background: #333;
}
.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;
}

.badge {
    padding: 6px 6px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 13px;
    margin-right: 3px;
}

label.error,
.text-danger {
    margin-top: 7px;
    font-weight: 400;
    color: #e00000;
    font-size: 14px;
}

.btn-group-sm > .btn,
.btn-sm {
    font-size: 14px;
}

/* login */

.login-layout,
.id-find-layout,
.pw-find-layout {
    background: #f5f5f5;
    padding: 100px 15px;
}

.login-layout .panel,
.id-find-layout .panel,
.pw-find-layout .panel {
    box-shadow: none;
    max-width: 500px;
    padding: 80px 40px 80px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 0px;
}

.login-layout .panel hr,
.id-find-layout .panel hr,
.pw-find-layout .panel hr {
    display: none;
}

.login-layout .panel .panel-body,
.id-find-layout .panel .panel-body,
.pw-find-layout .panel .panel-body {
    padding: 0;
}

.login-layout .panel-body > div.col-sm-12,
.id-find-layout .panel-body > div.col-sm-12,
.pw-find-layout .panel-body > div.col-sm-12 {
    float: none;
}

.login-layout .panel-body > div.col-sm-12 h2,
.id-find-layout .panel-body > div.col-sm-12 h2,
.pw-find-layout .panel-body > div.col-sm-12 h2 {
    text-align: center;
    margin: 0 0 15px;
    line-height: 1;
    color: #222;
    font-size: 32px;
}

.inner-box-msg {
    width: 100%;
    text-align: center;
    float: none;
    margin-bottom: 30px;
    padding: 0;
}

.inner-box-msg p {
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #555;
    margin: 0;
}

.inner-box-form {
    width: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}
.join-agree-area {
    margin-top: 150px;
}

.join-layout,
.login-layout,
.id-find-layout,
.pw-find-layout {
    background-color: transparent;
    min-height: calc(100vh - var(--navHeight));
}
.panel-footer {
    background-color: transparent;
}
.login-layout label,
.id-find-layout label,
.pw-find-layout label {
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #222;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 1;
}

.login-layout .form-control,
.id-find-layout .form-control,
.pw-find-layout .form-control {
    box-shadow: none;
    border-radius: 0px;
    border: 1px solid #ddd;
    height: 40px;
    color: #555;
    font-size: 15px;
    letter-spacing: -0.03em;
}

.login-layout .form-control:focus,
.id-find-layout .form-control:focus,
.pw-find-layout .form-control:focus {
    border-color: #aaa;
}

.login-layout .btn-warning,
.id-find-layout .btn-warning,
.pw-find-layout .btn-warning {
    float: none;
    width: 100%;
    height: 50px;
    background: var(--page-point-color);
    color: #fff;
    border-radius: 0px;
    border: none;
    font-size: 15px;
    letter-spacing: -0.03em;
    box-shadow: none;
    margin-top: 15px;
    transition: all ease 0.3s;
}

.login-layout .btn-warning:hover,
.id-find-layout .btn-warning:hover,
.pw-find-layout .btn-warning:hover {
    background: var(--page-point-color-dark);
}

.login-layout form > div > p,
.id-find-layout form > div > p,
.pw-find-layout form > div > p {
    width: 50%;
    margin: 0;
    float: left;
    text-align: center;
    line-height: 1;
}

.login-layout form > div > p + p,
.id-find-layout form > div > p + p,
.pw-find-layout form > div > p + p {
    border-left: 1px solid #ccc;
}

.login-layout form > div > p > a,
.id-find-layout form > div > p > a,
.pw-find-layout form > div > p > a {
    font-size: 14px;
    color: #555;
    letter-spacing: -0.03em;
    display: block;
    padding: 2px 0;
}

@media (max-width: 768px) {
    .login-layout,
    .id-find-layout,
    .pw-find-layout {
        padding: 20px 15px;
    }

    .login-layout .panel,
    .id-find-layout .panel,
    .id-find-layout .panel {
        padding: 40px;
    }

    .login-layout .panel-body > div.col-sm-12 h2,
    .id-find-layout .panel-body > div.col-sm-12 h2,
    .pw-find-layout .panel-body > div.col-sm-12 h2 {
        font-size: 24px;
    }

    .inner-box-msg p {
        font-size: 12px;
    }

    .login-layout label,
    .id-find-layout label,
    .pw-find-layout label {
        font-size: 14px;
    }

    .login-layout .form-control,
    .id-find-layout .form-control,
    .pw-find-layout .form-control {
        font-size: 13px;
        height: 36px;
    }

    .login-layout form > div > p > a,
    .id-find-layout form > div > p > a,
    .pw-find-layout form > div > p > a {
        font-size: 12px;
    }

    .login-layout .btn-warning,
    .id-find-layout .btn-warning,
    .pw-find-layout .btn-warning {
        height: 45px;
        font-size: 14px;
        margin-top: 10px;
    }

    .table-responsive {
        position: relative;
        touch-action: pan-x;
        overflow-x: auto;
    }
    .table-responsive::before {
        z-index: 10;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        content: "\e9ec";
        font-family: var(--gms);
        font-variation-settings: var(--gms500_Fill);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        font-size: 32px;
        aspect-ratio: 1;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(20px);
        color: #fff;
        text-align: center;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.45);
        animation: 0.5s scrollHide 0.25s ease-in forwards paused;
    }
    @keyframes scrollHide {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    .table-responsive:is(:hover, :focus)::before {
        animation-play-state: running;
    }
    .dh-board table :is(thead, tbody) tr :is(th, td):is(.writer, .regdate) {
        display: none;
    }
    .dh-margin-top > *:nth-child(2) {
        width: 100%;
    }
}
