@charset "utf-8";
/* Nesting Css */
/* 폰트 파일 */
/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #023c61;
    --page-point-color-g: #4fbdb0;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #00273f;
    --page-point-color-hover: var(--page-point-color-dark);
    --page-danger-color: #f32222;
    --page-danger-color-hover: #cc0a0a;
    --page-dark-color: #4f5356;
    --page-dark-color-hover: #333;
    --page-grey-color: #ddd;
    --page-grey-color-hover: #c4c4c4;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 100px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: 60px;
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* board */
    --form-height: 46px;
    --form-height-lg: 50px;
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
    /* swiper */
    --swiper-theme-color: var(--page-point-color) !important;
}
/* svh 미지원 */
@supports not (max-height: 100svh) {
    :root {
        --svh100: 100vh;
    }
}
/* ---------------------------- Reset ---------------------------- */
* {
    box-sizing: border-box;
    word-break: keep-all;
    float: unset;
    -webkit-tap-highlight-color: transparent;
}
*::before,
*::after {
    content: none;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 14px;
}
#site {
    margin: 0;
    padding: 0;
    font-family: var(--page-font-family);
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
    /* FOUC */
}
#site > *:not(#force__wrapper) {
    visibility: hidden;
}
#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}
#site .hide {
    display: none !important;
}
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
select::-ms-expand {
    display: none;
}
form,
fieldset {
    all: unset;
    box-sizing: border-box;
    display: block;
}
/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
.cke_screen_reader_only {
    bottom: 0;
}
.cke_resizer_ltr {
    float: right;
}
.cke_reset_all *,
.cke_reset_all a,
.cke_reset_all textarea {
    white-space: wrap !important;
}
.caret {
    display: none;
}
/* material-symbols */
.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
    user-select: none;
}
figure {
    margin: 0;
}
/* ---------------------------- Paragraph ---------------------------- */
:is(ol, ul, li, dl) {
    all: unset;
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
    all: unset;
    box-sizing: border-box;
    display: block;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.5;
}
:is(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    color: #111;
}
:is(p, li, dd, small) {
    color: #333;
}
:is(small, .small) {
    font-size: 0.8em;
}
br {
    visibility: visible;
    opacity: 0;
}
.big {
    font-size: 1.2em;
}
a:not(.btn) {
    text-decoration: none;
    color: inherit;
}
a:not(.btn):where(:focus, :hover) {
    text-decoration: unset;
    color: unset;
}
.text-danger {
    color: var(--page-danger-color);
}
/* ---------------------------- Button ---------------------------- */
.btn {
    all: unset;
    box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    place-content: center;
    place-items: center;
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1;
    height: var(--form-height);
    padding: 0 1.3em;
    border-radius: var(--radius-sm);
    outline: none;
    white-space: nowrap;
    letter-spacing: -0.025em;
}
.btn:is(.btn-primary) {
    background-color: var(--page-point-color);
    border: 1px solid var(--page-point-color);
    color: #fff;
}
.btn:is(.btn-primary):is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
}
.btn.btn-danger {
    background-color: var(--page-danger-color);
    border: 1px solid var(--page-danger-color);
}
.btn.btn-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color-hover);
}
.btn.btn-outline-primary {
    background: none;
    border: 1px solid var(--page-point-color);
    color: var(--page-point-color);
}
.btn.btn-outline-primary:is(:hover, :focus) {
    background-color: var(--page-point-color);
    color: #fff;
}
.btn.btn-outline-danger {
    background: none;
    border: 1px solid var(--page-danger-color);
    color: var(--page-danger-color);
}
.btn.btn-outline-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color);
    color: #fff;
}
.btn:is(.btn-secondary, .btn-default) {
    background-color: var(--page-grey-color);
    border: 1px solid var(--page-grey-color);
    color: #000;
}
.btn:is(.btn-secondary, .btn-default):is(:hover, :focus) {
    background-color: var(--page-grey-color-hover);
}
.btn.btn-dark {
    background-color: var(--page-dark-color);
    border: 1px solid var(--page-dark-color);
    color: #fff;
}
.btn.btn-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color-hover);
}
.btn.btn-outline-dark {
    border: 1px solid var(--page-dark-color);
    color: var(--page-dark-color);
}
.btn.btn-outline-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color);
    color: #fff;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
    border-radius: 100px;
    font-weight: 500;
}
.btn.btn-danger {
    color: #fff;
    /* <a href="/public/download/2505/" download class="btn btn-down"><b>다운로드</b><span class="material-symbols-outlined">sim_card_download </span></a> */
}
.btn.btn-down {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-inline: clamp(20px, 2vw, 30px) clamp(15px, 2vw, 25px);
    width: fit-content;
    margin-inline: auto;
    color: #fff;
    height: clamp(50px, 5vw, 60px);
    border: 1px solid #333;
    background: #fff;
    color: #222;
}
.btn.btn-down span {
    color: #222;
    font-variation-settings: var(--gms-500-out);
}
.btn.btn-down b {
    color: inherit;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    /* [hover] PC 환경에서만 :hover 효과 적용  */
}
@media (hover: hover) {
    .btn.btn-primary:where(:hover, :focus) {
        background-color: var(--page-point-color-hover);
        border-color: var(--page-point-color-hover);
    }
    .btn.btn-secondary:where(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
    .btn.btn-down:hover {
        background: #222;
        color: #fff;
    }
    .btn.btn-down:hover span {
        color: inherit;
    }
}
/* 버튼 비활성화 */
button[disabled] {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
    filter: grayscale(1);
}
/* ---------------------------- Image ---------------------------- */
.img-box {
    position: relative;
    display: flex;
}
.img-box.border {
    padding: 50px 70px;
    border: 6px solid #f2f2f2;
    border-radius: 20px;
}
@media (max-width: 767.98px) {
    .img-box.border {
        padding: 20px 30px;
    }
}
.img-responsive {
    display: flex;
    max-width: 100%;
    height: auto;
}
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
*:has(> .bg) {
    position: relative;
}
/* ---------------------------- Layout ---------------------------- */
:where(.container, .row) {
    position: relative;
}
/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
}
[class*="container"]::before,
[class*="container"]::after {
    content: none;
    /* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
}
@media (min-width: 1260px) {
    [class*="container"] {
        max-width: 1230px;
    }
}
.row {
    margin: 0;
}
.row::before,
.row::after {
    content: none;
}
:where([class*="row-"], [class*="-row"]) {
    display: flex;
    gap: 30px;
}
.clearfix {
    width: 100%;
}
.col {
    flex: 1;
    padding: 0;
}
.col.auto {
    flex: 0 1 auto;
}
/* 그리드 행 */
[grid-rowspan="1"] {
    grid-row: span 1;
}
[grid-rowspan="2"] {
    grid-row: span 2;
}
[grid-rowspan="3"] {
    grid-row: span 3;
}
[grid-rowspan="4"] {
    grid-row: span 4;
}
[grid-rowspan="5"] {
    grid-row: span 5;
}
[grid-rowspan="6"] {
    grid-row: span 6;
}
[grid-rowspan="7"] {
    grid-row: span 7;
}
[grid-rowspan="8"] {
    grid-row: span 8;
}
[grid-rowspan="9"] {
    grid-row: span 9;
}
[grid-rowspan="10"] {
    grid-row: span 10;
}
[grid-rowspan="11"] {
    grid-row: span 11;
}
[grid-rowspan="12"] {
    grid-row: span 12;
}
/* 그리드 열 */
[grid-colspan="1"] {
    grid-column: span 1;
}
[grid-colspan="2"] {
    grid-column: span 2;
}
[grid-colspan="3"] {
    grid-column: span 3;
}
[grid-colspan="4"] {
    grid-column: span 4;
}
[grid-colspan="5"] {
    grid-column: span 5;
}
[grid-colspan="6"] {
    grid-column: span 6;
}
[grid-colspan="7"] {
    grid-column: span 7;
}
[grid-colspan="8"] {
    grid-column: span 8;
}
[grid-colspan="9"] {
    grid-column: span 9;
}
[grid-colspan="10"] {
    grid-column: span 10;
}
[grid-colspan="11"] {
    grid-column: span 11;
}
[grid-colspan="12"] {
    grid-column: span 12;
}
:is([class*="hidden"]):not(.swiper) {
    display: none;
}
@media (min-width: 320px) {
    /* // Small devices (landscape phones, 576px and up) */
    :is([class*="hidden"])[class*="-xs"] {
        display: inherit;
    }
}
@media (min-width: 576px) {
    /* // Medium devices (tablets, 768px and up) */
    :is([class*="hidden"])[class*="-sm"] {
        display: inherit;
    }
}
@media (min-width: 768px) {
    /* // Large devices (desktops, 992px and up) */
    :is([class*="hidden"])[class*="-md"] {
        display: inherit;
    }
}
@media (min-width: 992px) {
    /* // X-Large devices (large desktops, 1200px and up) */
    :is([class*="hidden"])[class*="-lg"] {
        display: inherit;
    }
}
@media (min-width: 1200px) {
    /* // XX-Large devices (larger desktops, 1400px and up) */
    :is([class*="hidden"])[class*="-xl"] {
        display: inherit;
    }
}
@media (min-width: 1400px) {
    :is([class*="hidden"])[class*="-xxl"] {
        display: inherit;
    }
}
:is([class*="visible"]) {
    display: none;
}
@media (max-width: 319.98px) {
    /* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
    :is([class*="visible"])[class*="-xs"] {
        display: inherit;
    }
}
@media (max-width: 575.98px) {
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    :is([class*="visible"])[class*="-sm"] {
        display: inherit;
    }
}
@media (max-width: 767.98px) {
    /* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
    :is([class*="visible"])[class*="-md"] {
        display: inherit;
    }
}
@media (max-width: 991.98px) {
    /* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
    :is([class*="visible"])[class*="-lg"] {
        display: inherit;
    }
}
@media (max-width: 1199.98px) {
    /* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
    :is([class*="visible"])[class*="-xl"] {
        display: inherit;
    }
}
@media (max-width: 1399.98px) {
    :is([class*="visible"])[class*="-xxl"] {
        display: inherit;
    }
}
.center-block {
    display: block;
    margin-inline: auto;
}
.center-flex {
    display: flex;
    margin-inline: auto;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
/* ---------------------------- Modal, Jquery Ui ---------------------------- */
.ui-widget {
    font-family: inherit;
    z-index: 10000;
}
.ui-widget :is(input, select, textarea, button) {
    font-family: inherit;
}
.ui-widget .ui-datepicker select:is(.ui-datepicker-month, .ui-datepicker-year) {
    -webkit-appearance: none;
    background: none;
    border: 0;
    width: auto;
}
#site.modal-open {
    overflow: unset;
    padding-right: 0;
}
#site.modal-open .navbar {
    padding-right: 0;
}
.modal-backdrop {
    display: none;
}
.modal {
    z-index: 10000;
    display: flex;
    width: 100%;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade {
    opacity: 0;
}
.modal.fade.in {
    animation: modalFade 0.25s 0s forwards;
}
.modal.fade.in .modal-dialog {
    animation: modalPop 0.35s 0.05s forwards;
}
.modal.in {
    z-index: 20000;
    scale: 1;
}
.modal:not(.in) {
    display: none;
    opacity: 0;
    scale: 0;
}
.modal .modal-body {
    position: relative;
    padding: 20px;
}
.modal .modal-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 18px);
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal .modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.2;
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
    appearance: none;
    font-size: 21px;
    font-weight: 700;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal .modal-footer {
    display: flex;
    gap: 5px;
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
    flex: 1;
}
.modal .modal-title {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}
@media (min-width: 768px) {
    .modal .modal-content {
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
    }
}
.modal .modal-dialog {
    position: relative;
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    scale: 0.9;
}
@media (min-width: 768px) {
    .modal .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}
@media (min-width: 768px) {
    .modal .modal-sm {
        max-width: 300px;
    }
}
.modal-open .modal {
    z-index: 10000;
    display: flex !important;
    width: 100%;
    justify-content: center;
}
#delete_modal.in + .modal {
    display: none;
}
@keyframes modalFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes modalPop {
    0% {
        scale: 0.9;
    }
    50% {
        scale: 1.015;
    }
    100% {
        scale: 1;
    }
}
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}
/* ---------------------------- iframe ---------------------------- */
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"]
{
    width: auto;
    height: auto;
    aspect-ratio: 1.6666666667;
    margin-bottom: -6px;
    background-color: #e5e3df;
}
/* 외부동영상 */
iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: auto;
    height: auto;
    aspect-ratio: 1.7777777778;
    background-color: #000;
    border-radius: var(--radius-md);
}
#bbsArea .board_video_view iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: 100%;
}
/* [ IFRAME END ] */
/* ---------------------------- common ---------------------------- */
/* list-style */
:where(ol, ul)[class*="li-"] {
    display: flex;
    flex-direction: column;
}
:where(ol, ul)[class*="li-"] > li {
    position: relative;
    padding-left: 0.9em;
}
:where(img) + :where(ol, ul)[class*="li-"] {
    margin-top: 20px;
}
:where(ol, ul)[class*="li-"] small {
    font-size: 0.85em;
}
/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    width: 0.3em;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--page-point-color);
}
/* dash */
.li-dash > li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
    width: 6px;
    height: 3px;
    background: #bbb;
}
/* ---------------------------- navbar ---------------------------- */
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 1vw, 35px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(15px, 1.25vw, 20px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(13px, 1vw, 15px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(100px, 15vw, 230px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
    all: unset;
    box-sizing: border-box;
    z-index: 5000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #fff;
    /* border-bottom: 1px solid #ddd; */
}
.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
.navbar a {
    cursor: pointer;
}
.navbar :where(*):before,
.navbar :where(*):after {
    content: none;
}
.navbar #gnbauth i {
    display: none;
}
.navbar .navbar-header {
    margin-inline: 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: clamp(20px, 2vw, 60px);
}
/* 로고 */
.navbar .navbar-brand,
.navbar .navbar-brand:is(:hover, :focus) {
    display: block;
    width: 230px;
    margin-left: 0;
}
.navbar .navbar-brand img {
    width: 230px;
    /* 텍스트 로고 */
}
.navbar .navbar-brand span {
    position: relative;
    display: block;
    font-size: var(--navbar-logo-font-size);
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}
/* 메인메뉴 */
.navbar .navbar-right > li > a {
    z-index: 100;
    font-size: var(--navbar-menu-font-size);
    color: #000;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0;
}
.navbar :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
    position: relative;
    z-index: 100;
    color: var(--page-point-color);
    /* background-color: transparent; */
    /* text-shadow: 0 0 0.01em var(--page-point-color); */
    /* border-bottom: 3px solid var(--page-point-color); */
}
/* 서브 드롭다운메뉴 */
.navbar :is(.dropdown-menu) {
    z-index: 50;
    background-color: #fff;
}
.navbar :is(.dropdown-menu) a {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: #666;
    width: 100%;
}
.navbar :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: var(--page-point-color);
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-thickness: 1px;
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 992px) {
    #site #gnb_75 {
        position: absolute;
        right: clamp(50px, 5vw, 100px);
        top: 50%;
        transform: translateY(-50%);
    }
    #site #gnb_75 a {
        all: unset;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background-color: #00a19b; */
        background-color: var(--page-point-color);
        color: #fff !important;
        width: 124px;
        height: 42px !important;
        font-size: 17px;
        line-height: 1;
        border-radius: 30px;
        font-weight: 500;
        gap: 10px;
    }
    #site #gnb_75 a:hover {
        color: #fff;
    }
    #site #gnb_75 a::after {
        content: "\e0b7";
        font-family: var(--gms);
        font-variation-settings: var(--gms-400-out);
        font-size: 18px;
        /* wide */
    }
    .navbar > .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
        max-width: 100%;
        padding-inline: clamp(50px, 5.5vw, 100px);
        /* 메인메뉴 */
    }
    .navbar .navbar-collapse {
        display: flex;
        align-self: stretch;
        height: auto !important;
    }
    .navbar .navbar-toggle {
        display: none;
    }
    .navbar .navbar-right {
        display: flex;
        align-self: stretch;
    }
    .navbar .navbar-right > li {
        position: relative;
        display: flex;
    }
    .navbar .navbar-right > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background-color: transparent;
        padding-inline: var(--navbar-menu-padding-inline);
        padding-block: 0;
        font-weight: 500;
        /* 데스크탑 서브 드롭다운메뉴 */
    }
    .navbar .navbar-right > li .dropdown-menu {
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: 50%;
        top: 85%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        border-radius: 20px;
        box-shadow: 7px 7px 28px rgba(0, 0, 0, 0.15);
        margin-top: 0px;
        padding: 30px 0;
        min-width: 190px;
        gap: 15px;
        opacity: 0;
        transform-origin: center top;
        text-align: center;
    }
    .navbar .navbar-right > li .dropdown-menu a {
        display: flex;
        line-height: 1.2;
        padding: 0 0 2px;
        letter-spacing: -0.01em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
        font-weight: 500;
        /* transition: all 0.15s; */
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
        /* margin-right: calc(var(--navbar-menu-padding-inline) * -1); */
        /* [  navbar-custom-scorll-change  ] */
    }
    #site .navbar:is(.navTop) {
        --navbar-height: 120px;
        --navbar-scroll-filter: grayscale(1) brightness(10) invert(0);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color-g);
        --navbar-scroll-font-weight: 600;
        --navbar-scroll-background-color: transparent;
        /* --navbar-logo-width: 170px; */
        background-color: var(--navbar-scroll-background-color);
        border-color: rgba(255, 255, 255, 0.25);
    }
    #site .navbar:not(.navScroll) {
        background-color: var(--navbar-scroll-background-color);
    }
    #site .navbar:is(:hover, .navScroll, .navMain) {
        /* --navbar-height: 100px; */
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #111;
        --navbar-scroll-color-hover: var(--page-point-color-g);
        --navbar-scroll-background-color: #fff;
        border-bottom: 1px solid #eaeaea;
    }
    #site .navbar .navMain {
        background-color: #fff;
    }
    #site .navbar:where(.navTop, .navScroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }
    #site .navbar:where(.navTop, .navScroll) .navbar-brand img {
        transition: width 0.25s;
        filter: var(--navbar-scroll-filter);
    }
    #site .navbar:where(.navTop, .navScroll) .navbar-brand span {
        color: var(--navbar-scroll-color);
    }
    #site .navbar:where(.navTop, .navScroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    #site .navbar:where(.navTop, .navScroll) ul.navbar-right > li > a:where(:hover, :focus) {
        /* color: var(--navbar-scroll-color-hover) !important; */
        font-weight: 600;
    }
    #site .navbar:where(.navTop, .navScroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        /* color: var(--navbar-scroll-color-hover) !important; */
    }
    #site .navbar.navAllDrop {
        /* 드롭다운 (JS에서 읽음) */
        --drop-height: 220px;
        --drop-gap: 18px;
        --drop-blur: 10px;
        --drop-transition-speed: 0.3s;
        --drop-bg-color: #fff;
        --drop-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
        /* 컨테이너/헤더 스타일 전환 (드롭다운 열릴 준비) */
    }
    #site .navbar.navAllDrop > .container,
    #site .navbar.navAllDrop > .container::after,
    #site .navbar.navAllDrop .navbar-header,
    #site .navbar.navAllDrop .navbar-right > li > a,
    #site .navbar.navAllDrop .dropdown-menu {
        transition: var(--drop-transition-speed) !important;
    }
    #site .navbar.navAllDrop > .container,
    #site .navbar.navAllDrop > .container::before,
    #site .navbar.navAllDrop .navbar-header,
    #site .navbar.navAllDrop .navbar-right > li > a {
        height: var(--navbar-height) !important;
    }
    #site .navbar.navAllDrop > .container {
        align-items: flex-start;
        z-index: 100;
    }
    #site .navbar.navAllDrop > .container::before {
        /* scroll fade 사용 시 숨김 */
        height: var(--navbar-height);
        background-color: var(--drop-bg-color);
        /* content: ""; */
        z-index: 1;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        display: block;
        width: 100%;
        /* 드롭다운 아래 배경 (hover 시 확장됨) */
    }
    #site .navbar.navAllDrop > .container::after {
        top: var(--navbar-height);
        background-color: var(--drop-bg-color);
        backdrop-filter: blur(var(--drop-blur));
        box-shadow: var(--drop-shadow);
        content: "";
        z-index: 1;
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: 0;
        display: block;
        width: 100%;
        height: 0px;
        /* 메인메뉴 */
    }
    #site .navbar.navAllDrop .navbar-header {
        display: flex;
        align-items: center;
        /* 드롭다운 높이 */
    }
    #site .navbar.navAllDrop .navbar-right {
        display: flex;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) > a {
        position: relative;
        min-width: 140px;
        padding-inline: var(--navbar-menu-padding-inline);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background-color: transparent;
        padding-block: 0;
        font-weight: 600;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) > a::after {
        content: "";
        width: 0;
        height: 3px;
        background-color: var(--page-point-color);
        position: absolute;
        left: 50%;
        bottom: -1px;
        transform: translateX(-50%);
        transition: all 0.4s;
        opacity: 0;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75):hover > a::after {
        width: 100%;
        opacity: 1;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75):hover .dropdown-menu {
        background: #f8f8f8;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75):is(#site .navbar.navAllDrop .navbar-right > li:not(#gnb_75):not(#gnbauth):last-child, #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75)#gnbauth) {
        margin-right: calc(var(--navbar-menu-padding-inline) * -1);
        /* 데스크탑 서브 드롭다운메뉴 */
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) .dropdown-menu {
        all: unset;
        gap: var(--drop-gap);
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        left: 50%;
        top: 100%;
        /* display: none; */
        display: flex !important;
        flex-direction: column;
        height: 0px;
        padding: 0 15px;
        border-top: 3px solid transparent;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) .dropdown-menu > li:first-child {
        margin-top: calc(var(--drop-gap) + 20px);
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) .dropdown-menu > li + li {
        all: unset;
        display: block;
        /* margin-top: 27px; */
        height: auto;
        padding-block: 0;
    }
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 0 0 2px;
        letter-spacing: -0.034em;
        border-bottom: 1px solid transparent;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
    #site .navbar.navAllDrop:hover {
        /* hover 시 배경 활성화 */
    }
    #site .navbar.navAllDrop:hover > .container::after {
        opacity: 1;
        height: var(--drop-height);
    }
    #site .navbar.navAllDrop:hover .dropdown-menu {
        height: var(--drop-height) !important;
    }
}
@media (min-width: 992px) and (max-width: 1599.98px) {
    .navbar > .container {
        padding-inline: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1599.98px) {
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) > a {
        min-width: unset;
        width: clamp(100px, 9vw, 120px);
    }
}
@media (min-width: 992px) and (max-width: 1599.98px) {
    #site .navbar.navAllDrop .navbar-right > li:not(#gnb_75) .dropdown-menu {
        width: clamp(100px, 9vw, 120px);
        gap: 10px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 991.98px) {
    /* 배경 */
    body::before {
        transition: 0.35s;
        content: "";
        display: block;
        z-index: 1000;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        animation: menuHeight 0s 0.35s forwards;
    }
    body.menu-overlay::before {
        opacity: 1;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        background-color: rgba(0, 0, 0, 0.5);
        animation: none;
    }
    .navbar {
        overflow: hidden;
        animation: menuHidden 0s 0.401s forwards;
    }
    .navbar .navbar-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .navbar-brand {
        order: 1;
        width: 150px !important;
    }
    .navbar .navbar-toggle {
        all: unset;
        box-sizing: border-box;
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0;
        cursor: pointer;
    }
    .navbar .navbar-toggle > * {
        display: none;
    }
    .navbar .navbar-toggle::before {
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 1.8em;
        font-variation-settings: var(--gms-500-out);
    }
    .navbar .navbar-toggle:where(:hover, :focus) {
        background: none;
    }
    .navbar .navbar-toggle.open::before {
        content: "\e5cd";
    }
    .navbar .navbar-collapse {
        transition: 0.4s;
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid #eee;
        max-height: 0;
        height: auto !important;
    }
    .navbar .navbar-collapse .navbar-right {
        display: flex;
        flex-direction: column;
        overflow: hidden auto;
        position: relative;
        width: 100%;
        padding-block: 0px;
    }
    .navbar .navbar-collapse .navbar-right > li {
        transition: inherit;
    }
    .navbar .navbar-collapse .navbar-right > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 45px;
        padding: 0 15px;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
    }
    .navbar .navbar-collapse.open {
        transition: all 0.5s;
        max-height: var(--svh100);
    }
    .navbar .dropdown .dropdown-menu {
        /* transition: 0.75s; */
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #eee;
        padding: 0;
        max-height: 0;
    }
    .navbar .dropdown .dropdown-menu a {
        /* width: 100%; */
        display: block;
        color: #555;
        padding: 10px 15px;
    }
    .navbar .dropdown .dropdown-toggle::after {
        all: unset;
        box-sizing: border-box;
        content: "\e5cf";
        font-family: var(--gms);
        font-variation-settings: var(--gms-300-out);
        margin-left: auto;
        font-size: 1.5em;
    }
    .navbar .dropdown.open .dropdown-menu {
        opacity: 1;
        max-height: var(--svh100);
    }
    .navbar .dropdown.open .dropdown-toggle {
        color: var(--page-point-color);
        font-weight: 600;
    }
    .navbar .dropdown.open .dropdown-toggle::after {
        content: "\e5ce";
        color: var(--page-point-color);
        font-variation-settings: var(--gms-400-out);
    }
}
@keyframes menuOpen {
    0% {
        opacity: 0;
        scale: 1 0.5;
    }
    100% {
        opacity: 1;
        scale: 1 1;
    }
}
@keyframes menuHeight {
    from {
        height: 100%;
    }
    to {
        height: 0;
    }
}
@keyframes menuHidden {
    from {
        overflow: hidden;
    }
    to {
        overflow: visible;
    }
}
/* ---------------------------- footer ---------------------------- */
footer {
    margin-top: 0px;
    background-color: #1c1c1c;
    color: #fff;
}
footer > .container {
    max-width: 100%;
}
@media (min-width: 992px) {
    footer > .container {
        padding-inline: clamp(50px, 5vw, 100px);
    }
}
footer img {
    opacity: 0.5;
    filter: brightness(10) grayscale(1);
}
footer li {
    font-size: clamp(12px, 2vw, 14px);
    color: #aaa;
}
footer li.corp {
    /* margin-bottom: 18px; */
}
footer li.corp strong {
    color: #eee;
    font-weight: 500;
    /* font-size: 16px; */
}
footer li.copyright {
    margin-top: 9px;
    color: #666;
    font-size: 13px;
}
footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 0 15px;
}
footer .footer-logo {
    flex-shrink: 0;
    width: clamp(150px, 15vw, 230px);
    /* display: none; */
}
footer .footer-wrap {
    display: flex;
    align-items: center;
    gap: 120px;
    padding: 65px 0 60px;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 991.98px) {
    footer .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
/* 로그인 버튼 */
#loginBtn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 13px;
    background: transparent;
    color: #7d7d7d;
    line-height: 1;
    border-radius: 0;
    border: none;
    border-radius: 0;
    font-size: clamp(11px, 2vw, 12px);
    background: rgba(255, 255, 255, 0.07);
}
#loginBtn a:hover {
    background: #333;
    color: #fff;
    border-color: var(--backgorund-color);
}
#loginBtn a span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-500-out);
}
html.logined #loginBtn a[href="/member/login"] {
    display: none;
}
html:not(.logined) #loginBtn a[href="/member/logout"] {
    display: none;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    #loginBtn {
        margin-left: 0;
        align-self: flex-start;
    }
}
/* 스크롤버튼 */
#scrollTop {
    --width: 60px;
    --bottom: 50px;
    all: unset;
    box-sizing: border-box;
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    right: 40px;
    bottom: var(--bottom);
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--width);
    padding: 0;
    background: #fff;
    border-radius: 50%;
    aspect-ratio: 1;
    text-align: center;
    color: #222;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.25);
}
#scrollTop::before {
    content: "\e5d8";
    font-family: var(--gms);
    font-variation-settings: var(--gms-700-out);
    font-size: 1.55rem;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ---------------------------- subpage ---------------------------- */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top0.jpg);
    position: relative;
    height: clamp(180px, 35vw, 510px);
    padding-top: var(--navbar-height);
}
@media (max-width: 767.98px) {
    .subpage-header {
        padding-top: 0;
    }
}
.subpage-header .bg {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--background-image) #000 no-repeat center / cover;
    /* filter: brightness(0.6); */
}
.subpage-header .subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.subpage-header .subpage-title h2 {
    line-height: 1;
    margin-top: 5px;
    text-align: center;
    font-weight: 720;
    color: #fff;
    font-size: clamp(36px, 5vw, 62px);
    letter-spacing: -0.02em;
}
.breadcrumb ul {
    background: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-block: 25px 40px;
}
.breadcrumb ul li {
    position: relative;
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
}
.breadcrumb ul li.arrow:before {
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 200;
    display: block;
    font-size: 1.7rem;
    line-height: 0;
}
.breadcrumb ul li.active {
    font-weight: 700;
}
.breadcrumb ul a.home {
    line-height: 1;
}
.breadcrumb ul a.home::before {
    content: "\e88a";
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-fill);
    font-weight: 200;
    display: block;
    font-size: 16px;
    line-height: 0;
}
/* [ subpage-navbar ] */
.snb {
    position: relative;
    z-index: 10;
    background: var(--page-point-color);
}
@media (max-width: 767.98px) {
    .snb {
        display: none;
    }
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
}
.snb ul li {
    flex: 0 1 25%;
}
.snb ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    height: var(--snb-height);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0;
    transition: all 0.3s;
}
.snb ul li.active a,
.snb ul li:hover a {
    background: #fff;
    color: var(--page-point-color);
    font-weight: 500;
}
.snb ul li.active a::after,
.snb ul li:hover a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    width: 100%;
    height: 2px;
    /* background: var(--page-point-color); */
}
/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
[class*="title-h"] {
    --h-line-height: 1.45;
    --h-letter-spacing: -0.034em;
    --p-font-weight: 400;
    --p-color: #444;
    --p-line-height: 1.55;
}
[class*="title-h"]:only-child {
    margin-bottom: 0;
}
[class*="title-h"] a {
    color: #337ab7;
}
[class*="title-h"] a:hover {
    text-decoration: underline;
    color: #1b5c94;
}
[class*="title-h"] p.big {
    font-size: 22px;
}
[class*="title-h"] span.color {
    font-weight: 600;
    color: #000;
    /* 제목 */
}
[class*="title-h"] > :is(h2, h3, h4, h5, h6) {
    font-size: var(--h-font-size);
    font-weight: var(--h-font-weight);
    color: var(--h-color);
    line-height: var(--h-line-height);
    letter-spacing: var(--h-letter-spacing);
    /* 본문 */
}
[class*="title-h"] > :is(p, ul, ol) {
    font-size: var(--p-font-size);
    font-weight: var(--p-font-weight);
    color: var(--p-color);
    line-height: var(--p-line-height);
    letter-spacing: -0.015em;
    /* 본문+본문 간격 */
}
[class*="title-h"] > *:not(:is(h2, h3, h4, h5, h6)) + * {
    margin-top: calc(var(--text-between) + 10px);
}
/* h3 start */
.title-h3 {
    position: relative;
    --h-font-size: clamp(30px, 3vw, 42px);
    --h-font-weight: 700;
    --h-color: #111;
    --p-font-size: clamp(14px, 3vw, 18px);
    --text-between: 15px;
    margin-bottom: clamp(50px, 5vw, 85px);
    text-align: center;
    line-height: 1;
}
.title-h3 h3 {
    line-height: 1;
}
.title-h3 + .title-h4 {
    margin-top: 0;
    /* text-align: center; */
}
.title-h3 h3 + p {
    margin-top: 60px;
}
.title-h3 p {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #444444;
    line-height: 1.64;
}
.title-h3 p.bold {
    font-size: calc(var(--p-font-size) * 1.2);
    font-weight: 700;
    color: var(--page-point-color);
}
/* h3 end */
/* h4 start */
.title-h4 {
    --h-font-size: clamp(24px, 3vw, 34px);
    --h-font-weight: 700;
    --h-color: #111;
    --p-font-size: 15px;
    --text-between: 15px;
    margin-block: 110px 35px;
    letter-spacing: -0.01em;
    position: relative;
}
@media (max-width: 767.98px) {
    .title-h4 {
        margin-block: 60px 20px;
    }
}
.title-h4 h4 {
    padding-left: 25px;
}
.title-h4 h4::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 4px;
    top: 10px;
    border-top: 4px solid var(--page-point-color-g);
    border-right: 4px solid var(--page-point-color-g);
    border-left: 4px solid transparent;
    border-bottom: 4px solid transparent;
    box-sizing: border-box;
}
@media (max-width: 767.98px) {
    .title-h4 h4::before {
        top: 3px;
    }
}
.title-h4 h4::after {
    content: "";
    width: 6px;
    height: 20px;
    background: #23648d;
    position: absolute;
    left: 6px;
    top: 18px;
}
@media (max-width: 767.98px) {
    .title-h4 h4::after {
        top: 12px;
        height: 16px;
    }
}
.title-h4:has(p) {
    margin-bottom: 40px;
}
.title-h4 + .title-h4 {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}
.title-h4 + .title-h5 {
    margin-top: 0px;
}
/* h4 end */
/* h5 start */
.title-h5 {
    --h-font-size: 20px;
    --h-font-weight: 600;
    --h-color: #000;
    --p-font-size: 15px;
    --text-between: 8px;
    margin-top: 50px;
    margin-bottom: 15px;
}
.title-h5 + .title-h5 {
    margin-top: 40px;
}
.title-h5:has(p, ul) {
    margin-bottom: 15px;
}
/* h5 end */
/* [ subpage-content ] */
.subpage-content section {
    padding: 120px 0 150px;
    min-height: 300px;
}
@media (max-width: 767.98px) {
    .subpage-content section {
        padding-block: 70px 80px;
    }
}
/* greet */
/* <div class="greet-wrap"><div class="col img-box"><img src="/public/img/sub/ab01.jpg" class="img-responsive" alt="대표 사진" /></div><div class="col info"><span class="corp"></span><p></p><p class="name"><strong></strong><span></span></p></div></div> */
.greet-wrap {
    display: flex;
    gap: 90px;
    width: 100%;
    margin-inline: auto;
}
@media (max-width: 767.98px) {
    .greet-wrap {
        flex-direction: column;
        gap: 20px;
    }
}
.greet-wrap .img-box {
    width: 100%;
    overflow: hidden;
    /* max-width: 500px; */
    flex-direction: column;
    gap: 20px;
}
.greet-wrap .img-box img {
    border-radius: 20px;
}
.greet-wrap .img-box img.img1 {
    /* width: 100%; */
    /* object-fit: cover; */
    /* object-position: left; */
    background: #fff;
    border: 4px solid #f2f2f2;
    padding: 25px;
}
.greet-wrap .info {
    /* padding-right: 50px; */
    padding-top: 25px;
    padding-bottom: 30px;
}
.greet-wrap .info > span {
    display: block;
    color: var(--page-point-color);
    margin-bottom: clamp(20px, 5vw, 40px);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.034em;
    line-height: 1.5;
}
.greet-wrap .info > span small {
    font-size: 80%;
    color: inherit;
}
.greet-wrap .info h5 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 65px;
    line-height: 1.4;
    color: #222;
}
.greet-wrap .info h5 span {
    display: block;
    font-size: 20px;
    letter-spacing: 0;
    color: #cdcdcd;
    margin-bottom: 20px;
}
.greet-wrap .info h5 b {
    color: var(--page-point-color);
}
.greet-wrap .info h5 small {
    font-size: 30px;
    color: #333;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.35;
    display: block;
    margin-top: 2px;
}
.greet-wrap .info p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 30px;
    line-height: 1.7;
    letter-spacing: -0.034em;
    color: #222;
    font-weight: 500;
}
.greet-wrap .info p.name {
    text-align: right;
    font-size: 17px;
    color: #111;
    margin-bottom: 0;
    margin-top: 30px;
    font-weight: 600;
}
.greet-wrap .info p.name strong {
    color: #222;
    font-weight: 650;
    letter-spacing: 9px;
    margin-left: 15px;
    font-size: 24px;
}
/* vision */
/* <div class="vision-wrap"><div class="col c1"><span class="material-symbols-outlined">cards_star </span><h5></h5></div></div> */
.vision-wrap {
    margin-top: 120px;
    display: flex;
    gap: 30px;
}
.vision-wrap .col {
    position: relative;
    counter-increment: itemNum;
    aspect-ratio: 1;
    border-radius: 9999px;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-top: 140px;
}
.vision-wrap .col::before {
    content: counter(itemNum, decimal-leading-zero) "";
    position: absolute;
    top: 80px;
    font-size: 22px;
    font-weight: 700;
}
.vision-wrap .col span.material-symbols-outlined {
    font-size: 54px;
    margin-bottom: 20px;
}
.vision-wrap .col h5 {
    font-size: 32px;
    font-weight: 500;
}
/* partner */
/* <div class="partner-wrap"><a href="https://www.kgs.or.kr/" class="col" target="_blank"><img src="/public/img/main/m-pt-01.jpg" alt="한국가스안전공사" class="img-responsive" /></a><div class="col"><img src="/public/img/sub/" class="img-responsive" alt="Image" /></div></div> */
/* .col*6>img.img-responsive[src="/public/img/logo$.jpg"][alt="파트너$"] */
.partner-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}
.partner-wrap .col {
    flex: 0 1 24%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid transparent;
}
.partner-wrap .col img {
    height: 80px;
}
.partner-wrap .col:hover {
    border-color: var(--page-point-color);
}
/* history dir*/
.history-wrap {
    position: relative;
    /* max-width: 900px; */
    width: fit-content;
    margin-inline: auto;
}
.history-wrap .col {
    display: grid;
    grid-template-columns: minmax(0, 9fr) minmax(0, 9fr);
    align-items: flex-start;
}
.history-wrap .col .info {
    position: relative;
    padding-bottom: 100px;
    padding-top: 16px;
}
@media (min-width: 768px) {
    .history-wrap .col .info::before {
        content: "";
        position: absolute;
        left: 0;
        display: block;
        width: 5px;
        background-color: #e5e5e5;
        top: 0px;
        bottom: 0;
    }
}
.history-wrap .col .info > li {
    display: grid;
    grid-template-columns: minmax(0, 50px) minmax(0, auto);
    font-size: clamp(16px, 2vw, 18px);
    padding-left: 90px;
    letter-spacing: -0.02em;
    position: relative;
}
@media (max-width: 767.98px) {
    .history-wrap .col .info > li {
        padding-left: 0;
    }
}
.history-wrap .col .info > li + .history-wrap .col .info > li {
    margin-top: 5px;
}
.history-wrap .col .info > li > span {
    font-weight: 700;
    color: #222;
    /* padding-top: 3px; */
    /* &::before {
   content: "";
   box-sizing: content-box;
   position: absolute;
   left: -5px;
   top: 8px;
   display: block;
   width: 5px;
   aspect-ratio: 1;
   border-radius: 50%;
   border: 3px solid var(--page-point-color);
   background: #fff;
   } */
}
.history-wrap .col .info > li li {
    margin-bottom: 6px;
    font-size: clamp(16px, 2vw, 18px);
    letter-spacing: -0.03em;
}
.history-wrap .col:last-child .info {
    padding-bottom: 20px;
}
.history-wrap .col:first-child .info::before {
    top: 23px;
}
.history-wrap h5 {
    line-height: 1;
    font-size: 61px;
    font-weight: 700;
    color: var(--page-point-color);
    margin-block: 0;
    /* padding-right: 100px; */
    padding-bottom: 50px;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) {
    .history-wrap h5::before {
        content: "";
        box-sizing: content-box;
        position: absolute;
        right: -10px;
        top: 21px;
        display: block;
        width: 15px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--page-point-color);
        z-index: 1;
        box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
    }
    .history-wrap h5::after {
        content: "";
        width: 140px;
        height: 2px;
        border-top: 2px dotted #ccc;
        position: absolute;
        right: 0;
        top: 28px;
    }
}
.history-wrap b {
    display: inline-block;
    margin-right: 12px;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    .history-wrap .col {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        gap: 15px;
    }
    .history-wrap .col li {
        padding-left: 15px;
    }
    .history-wrap .col .info {
        margin-top: 0px;
        margin-left: 0;
        padding: 0;
    }
    .history-wrap h5 {
        padding-left: 0;
        padding: 0;
        font-size: 36px;
    }
}
/* number zigzag */
/* <div class="tech-wrap"><div class="col"><div class="img-box"><img src="/public/img/sub/ab03-01.jpg" class="img-responsive" alt="Image" /></div><div class="info"><dl><dt></dt><dd></dd></dl></div></div></div> */
.tech-wrap .col {
    counter-increment: itemNum;
    display: flex;
    align-items: center;
    gap: 80px;
}
@media (max-width: 767.98px) {
    .tech-wrap .col {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
}
.tech-wrap .col + .col {
    margin-top: clamp(70px, 5vw, 100px);
}
.tech-wrap .col:nth-child(even) {
    /* flex-direction: row-reverse; */
}
.tech-wrap .col .img-box {
    flex: 1;
    /* aspect-ratio: 5/4; */
    /* max-width: 400px; */
    /* width: 100%; */
    background-color: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #cecece;
    overflow: hidden;
}
.tech-wrap .col .info {
    flex: 1;
}
.tech-wrap .col .info::before {
    /* content: counter(itemNum, decimal-leading-zero) ""; */
    font-size: 60px;
    font-weight: 900;
    opacity: 0.2;
    display: block;
    margin-bottom: 20px;
    color: var(--page-point-color);
}
.tech-wrap .col .info dt {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
}
.tech-wrap .col .info dd {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 10px;
}
#site .table-wrap tbody.text-left :is(th, td) {
    text-align: left;
}
#site .table-wrap tbody.text-left .text-center {
    text-align: center;
}
#site .table-wrap .mark {
    display: inline-block;
    width: 30px;
    aspect-ratio: 1;
    vertical-align: middle;
    margin-right: 10px;
}
#site .table-wrap .mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/* certification */
.cert-wrap {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 60px 20px;
}
@media (max-width: 991.98px) {
    .cert-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cert-wrap [grid-colspan="3"] {
        grid-column: span 2;
    }
}
@media (max-width: 767.98px) {
    .cert-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 10px;
    }
    .cert-wrap [grid-colspan="3"] {
        grid-column: span 1;
    }
}
.cert-wrap figure .img-box {
    position: relative;
    overflow: hidden;
    justify-content: center;
    padding: 25px;
    background: #f6f6f6;
    border-radius: 20px;
}
@media (max-width: 767.98px) {
    .cert-wrap figure .img-box {
        padding: 15px;
    }
    .cert-wrap figure .img-box img {
        height: 150px;
    }
}
.cert-wrap figure .img-box:has(img:nth-child(2)) {
    justify-content: center;
    margin-inline: auto;
    gap: 20px;
}
@media (max-width: 991.98px) {
    .cert-wrap figure .img-box:has(img:nth-child(2)) {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 767.98px) {
    .cert-wrap figure .img-box:has(img:nth-child(2)) {
        display: flex;
        flex-direction: columnm;
        flex: 1;
    }
    .cert-wrap figure .img-box:has(img:nth-child(2)) img {
        /* display: flex;
     flex-direction: columnm;
     flex: 1; */
    }
    .cert-wrap figure .img-box:has(img:nth-child(2)) img:nth-child(2) {
        position: absolute;
        top: 30px;
        z-index: 3;
    }
    .cert-wrap figure .img-box:has(img:nth-child(2)) img:nth-child(3) {
        position: absolute;
        top: 50px;
        z-index: 4;
    }
}
.cert-wrap figure img {
    object-fit: contain;
    height: 230px;
    aspect-ratio: 0.7070707071;
    /* background: #fff; */
    padding: 0;
}
@media (max-width: 991.98px) {
    .cert-wrap figure img {
        height: 150px;
    }
}
@media (max-width: 767.98px) {
    .cert-wrap figure img {
        height: auto;
    }
}
.cert-wrap figure figcaption {
    font-size: clamp(14px, 3vw, 18px);
    margin-top: 15px;
    text-align: center;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #222;
}
.recruit-wrap {
    /* border-top: 2px solid #222; */
}
.recruit-wrap dl {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
}
@media (max-width: 767.98px) {
    .recruit-wrap dl {
        display: flex;
        flex-direction: column;
    }
}
.recruit-wrap dl dt,
.recruit-wrap dl dd {
    /* padding: 30px; */
    font-size: 18px;
    border-top: 1px solid #e3e3e3;
    padding: 40px 0;
    letter-spacing: -0.015em;
}
.recruit-wrap dl dt {
    border-top: 1px solid #333;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
}
@media (max-width: 767.98px) {
    .recruit-wrap dl dt {
        padding-block: 20px;
        font-size: 20px;
    }
}
.recruit-wrap dl dd {
    padding-inline: 20px;
    padding-top: 43px;
}
@media (max-width: 767.98px) {
    .recruit-wrap dl dd {
        padding: 20px 0;
    }
    .recruit-wrap dl dd:has(.process) {
        overflow-x: scroll;
    }
}
.recruit-wrap dl .btn {
    background-color: var(--page-point-color);
    color: #fff;
    font-size: 18px;
    height: 52px;
    gap: 15px;
    font-weight: 500;
    margin: 0;
}
.recruit-wrap dl .btn .material-symbols-outlined {
    font-size: 19px;
    font-variation-settings: var(--gms-400-out);
}
.recruit-wrap .process {
    display: flex;
    /* gap: 30px; */
    align-items: center;
}
.recruit-wrap .process li.col {
    flex: 1;
    aspect-ratio: 1;
    display: flex;
    gap: 13px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-radius: 20px;
    color: var(--page-point-color);
    font-size: clamp(16px, 2vw, 18px);
    border: 6px solid #f0f0f0;
}
@media (max-width: 767.98px) {
    .recruit-wrap .process li.col {
        flex-shrink: 0;
        flex: 0 1 auto;
        min-width: 140px;
    }
}
.recruit-wrap .process li.col span.material-symbols-outlined {
    font-size: 45px;
    font-variation-settings: var(--gms-500-out);
    color: var(--page-point-color-g);
}
.recruit-wrap .process li.arrow::before {
    content: "\e5cc";
    font-family: var(--gms);
    font-variation-settings: var(--gms-500-out);
    font-size: 32px;
    display: block;
    color: #aaa;
}
/* form */
#site .form-wrap {
    max-width: 1000px;
    margin-inline: auto;
    width: 100%;
    background: #f3f3f3;
    border-radius: 20px;
    padding: 60px;
}
#site .form-wrap .table.board_write_table {
    border: 0;
}
#site .form-wrap .text-center {
    justify-content: center;
}
#site .form-wrap tbody {
    gap: 32px 25px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
#site .form-wrap tbody tr {
    grid-column: span 2;
    border: 0;
    display: flex;
    padding: 0;
    flex-direction: column;
}
#site .form-wrap tbody tr th {
    width: 100%;
    gap: 3px;
    font-size: clamp(15px, 2vw, 17px);
    flex-direction: row-reverse;
    justify-content: flex-end;
}
#site .form-wrap tbody tr th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: static;
    margin-right: 2px;
    color: var(--page-point-color);
}
#site .form-wrap tbody tr td {
    width: 100%;
}
#site .form-wrap tbody tr td .form-control {
    width: 100%;
    height: var(--form-height-lg);
}
#site .form-wrap tbody tr#item_email .text-muted {
    display: none;
}
#site .form-wrap tbody tr:is(#item_captcha, #item_agree) {
    grid-column: span 3;
}
#site .form-wrap tbody tr:is(#item_2, #item_3) {
    grid-column: span 2;
}
#site .form-wrap tbody tr#item_1 {
    grid-column: span 6;
}
#site .form-wrap tbody tr .form-control {
    border-radius: 25px;
    border-color: #fff;
    padding: 1rem 1.5rem;
}
#site .form-wrap tbody tr #captcha {
    border-radius: 25px;
    margin-right: 10px;
    border: 1px solid #e7e7e7 !important;
    height: var(--form-height-lg);
}
@media (max-width: 767.98px) {
    #site .form-wrap {
        display: flex;
        flex-direction: column;
        gap: 70px;
        max-width: 500px;
        margin-inline: auto;
        padding: 30px 25px;
    }
    #site .form-wrap tbody {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
/* map */
.map-wrap .col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    align-items: center;
}
@media (max-width: 767.98px) {
    .map-wrap .col {
        display: flex;
        align-items: stretch;
        flex-direction: column-reverse;
        gap: 40px;
    }
}
.map-wrap .col iframe {
    width: 100%;
    height: 350px;
    border-radius: 20px;
}
.map-wrap .col .root_daum_roughmap {
    height: 350px;
    border-radius: 20px;
    /* aspect-ratio: 10/4; */
    width: 100% !important;
}
.map-wrap .col .root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 100% !important;
}
.map-wrap .col .root_daum_roughmap .cont {
    display: none;
}
.map-wrap .col + .col {
    margin-top: clamp(50px, 5vw, 100px);
}
.map-wrap .col .info {
    /* padding-bottom: 30px; */
}
.map-wrap .col .info h5 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: clamp(20px, 5vw, 40px);
}
.map-wrap .col .info dl + dl {
    margin-top: 30px;
}
.map-wrap .col .info dt {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}
.map-wrap .col .info dd {
    font-size: 16px;
    letter-spacing: -0.034em;
}
.map-wrap .col .info dd:has(.badge.ic) {
    line-height: 1.8;
}
.map-wrap .col .info dd .badge {
    display: inline-block;
    color: #fff;
    padding: 4px 8px;
    height: 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-right: 3px;
    line-height: 20px;
}
.map-wrap .col .info dd .badge.ic {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 5px;
    color: #0044dc;
    border: 2px solid #0044dc;
    /* margin-top: 3px; */
    /* margin: 3px 5px 0 0; */
    /* line-height: 1.5; */
}
.map-wrap .col .info dd .badge.ic img {
    width: 18px;
    display: inline;
}
#site .sw-wrap {
    display: flex;
    gap: 70px;
    align-items: center;
}
#site .sw-wrap .col {
    flex: 0 1 auto;
    width: 50%;
}
#site .sw-wrap .img-box {
    padding: 50px;
}
#site .sw-wrap th {
    text-align: left;
}
#site .sw-wrap :is(th, td) {
    padding: 10px 15px;
    font-size: clamp(12px, 3vw, 15px);
    line-height: 1.4;
}
#site .sw-wrap .text-center {
    text-align: center;
}
#site .sw-wrap h4 {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    margin-block: 30px 15px;
}
@media (max-width: 991.98px) {
    #site .sw-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 30px;
    }
    #site .sw-wrap .img-box {
        justify-content: center;
        padding: 30px;
    }
    #site .sw-wrap .col {
        width: 100%;
    }
}
.img-wrap {
    display: flex;
    gap: 15px;
}
.img-wrap img {
    aspect-ratio: 1.25;
    background-color: #ccc;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}
.img-wrap p {
    font-size: clamp(14px, 2v, 15px);
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    color: #222;
    letter-spacing: -0.025em;
}
.place-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 30px;
    margin-top: 100px;
}
@media (max-width: 991.98px) {
    .place-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 15px;
        margin-top: 50px;
    }
}
.place-wrap img {
    aspect-ratio: 1.6666666667;
    background-color: #ccc;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
@media (max-width: 991.98px) {
    .place-wrap img {
        border-radius: 10px;
    }
}
.place-wrap p {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    color: #222;
    letter-spacing: -0.02em;
}
/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
    position: relative;
    width: 100%;
}
#mainCarouselSwiper .swiper {
    display: block !important;
}
#mainCarouselSwiper .swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max(clamp(600px, 70vw, 750px), calc(var(--svh100)));
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper .swiper .swiper-slide {
        height: 400px;
    }
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* filter: brightness(0.95); */
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
    /* text-shadow: 0 0px 20px rgba(0, 0, 0, 0.35); */
    /* padding-top: 15px; */
    text-align: left;
    color: #023c61;
    padding-bottom: 40px;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link-btn {
    display: none;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link-btn span::before {
    content: "더보기";
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption h1 {
    position: relative;
    font-size: clamp(42px, 3vw, 70px);
    line-height: 1.5;
    font-weight: 750;
    letter-spacing: 0;
    margin: 0 0 10px;
    color: inherit;
    letter-spacing: -0.02em;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption p {
    margin-top: 15px;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    letter-spacing: 0;
    color: inherit;
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
        margin-bottom: 50px;
        padding-right: 70px;
        padding-left: 40px;
    }
}
#mainCarouselSwiper [class*="swiper-button"] {
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    width: 10%;
    height: 100%;
}
#mainCarouselSwiper [class*="swiper-button"]::after {
    content: none;
}
#mainCarouselSwiper [class*="swiper-button"]::before {
    position: relative;
    right: auto;
    top: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-100-out);
    font-size: 70px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
}
#mainCarouselSwiper [class*="swiper-button"]:hover::before {
    color: white;
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-next {
    right: 0;
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-next::before {
    content: "\e5e1";
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-prev::before {
    content: "\e2ea";
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
}
#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 1;
    gap: 30px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 50px;
    margin: 0 5px;
    backdrop-filter: blur(10px);
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
    transition: ease-in-out 0.2s all;
    margin: 0;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active::after {
    content: "";
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    position: absolute;
    left: -10px;
    top: -10px;
    border-radius: 50%;
}
/* [ mainpage ] */
.mainpage :is(.bg) {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    filter: brightness(0.85) saturate(1.3);
}
.mainpage section {
    position: relative;
    padding-block: 140px;
}
.mainpage section:nth-child(odd) {
    /* background-color: #f7f7f7; */
}
@media (max-width: 767.98px) {
    .mainpage section {
        padding-block: 90px;
    }
}
.m-title-h3 {
    margin-bottom: 80px;
}
.m-title-h3 h3 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 700;
    line-height: 1;
    color: #111;
}
.m-title-h3 p {
    font-size: clamp(16px, 2vw, 18px);
    letter-spacing: -0.034em;
    line-height: 1.5;
    font-weight: 500;
}
.m-title-h3:has(a) {
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-end;
    gap: 40px;
}
@media (max-width: 767.98px) {
    .m-title-h3:has(a) {
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
        margin-bottom: 30px !important;
        text-align: center;
    }
}
.m-title-h3:has(a) a {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-left: auto;
    /* padding: 15px 20px 15px 20px; */
    padding-inline: 40px;
    height: 52px;
    gap: 20px;
    border-radius: 30px;
    border: 3px solid #ddd;
    color: #666;
    text-decoration: none !important;
    letter-spacing: 0.2px;
    transition: all 0.3s;
}
@media (max-width: 767.98px) {
    .m-title-h3:has(a) a {
        margin-left: 0;
    }
}
.m-title-h3:has(a) a:hover {
    background-color: var(--page-point-color-hover);
    border-color: var(--page-point-color-hover);
    color: #fff !important;
}
.m-title-h3:has(a) a::after {
    content: "\e145";
    font-family: var(--gms);
    font-variation-settings: var(--gms-700-out);
    font-size: 17px;
    display: none;
}
#site .m-busi-wrap {
    display: flex;
    gap: 40px;
    position: relative;
}
#site .m-busi-wrap a {
    overflow: hidden;
    padding: 20px 20px 0;
    aspect-ratio: 0.75;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    /* border: 6px solid transparent; */
    transition: all 0.3s;
    border-radius: 20px;
}
@media (min-width: 768px) {
    #site .m-busi-wrap a:hover {
        /* background: var(--page-point-color-g); */
        background: var(--page-point-color);
        color: #fff;
    }
}
#site .m-busi-wrap .img-box {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 0.7407407407;
    background-color: #f6f8f9;
    /* align-items: center; */
    /* justify-content: center; */
    width: 100%;
    background: #fff;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767.98px) {
    #site .m-busi-wrap {
        margin-top: 50px;
        margin-inline: calc(var(--container-padding-inline) * -1);
    }
    #site .m-busi-wrap .swiper {
        padding-inline: 70px;
    }
    #site .m-busi-wrap .swiper-wrapper {
        overflow: visible;
        /* padding-inline: 50px; */
    }
    #site .m-busi-wrap .img-box {
        /* aspect-ratio: 1; */
    }
    #site .m-busi-wrap a {
        /* aspect-ratio: 1/1.1; */
    }
    #site .m-busi-wrap .img-box img {
        width: 60%;
        object-fit: contain;
    }
    #site .m-busi-wrap .info::after {
        content: "VIEW MORE";
        display: block;
        font-size: 0.75em;
        margin-top: 20px;
        font-weight: 400;
        opacity: 0.75;
        padding: 10px 20px;
        border: 1px solid #888;
        border-radius: 20px;
    }
}
#site .m-busi-wrap .img-box img {
    /* width: 100%; */
    /* height: 100%; */
    /* object-fit: cover; */
    /* object-position: center; */
    height: fit-content;
    mix-blend-mode: multiply;
}
#site .m-busi-wrap .info {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 21px);
    /* color: #222; */
    letter-spacing: -0.02em;
    padding: clamp(20px, 5vw, 40px) 0;
}
#site .m-busi-wrap .swiper-button-prev,
#site .m-busi-wrap .swiper-button-next {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 30px;
    height: auto;
    /* border-radius: 9999px; */
    /* background-color: rgb(0 0 0 / 40%); */
    border-radius: 9999px;
    border: 3px solid #ccc;
}
@media (max-width: 767.98px) {
    #site .m-busi-wrap .swiper-button-prev,
    #site .m-busi-wrap .swiper-button-next {
        display: none;
    }
}
#site .m-busi-wrap .swiper-button-prev:after,
#site .m-busi-wrap .swiper-button-next:after {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}
#site .m-busi-wrap .swiper-button-next {
    right: -50px;
    padding-left: 2px;
}
#site .m-busi-wrap .swiper-button-prev {
    left: -50px;
    padding-right: 2px;
}
#site .m-busi-wrap .swiper-pagination {
    bottom: -40px;
}
.main-esg {
    /* padding-block: 100px !important; */
}
.main-esg * {
    color: #fff;
}
.main-esg .bg {
    filter: brightness(0.77);
    /* background-attachment: fixed; */
}
.main-esg .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    /* align-items: center; */
}
@media (max-width: 767.98px) {
    .main-esg .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}
.main-esg .m-title-h3 {
    /* padding-right: 150px; */
    margin-bottom: 0;
}
.main-esg .m-title-h3 p {
    font-size: clamp(26px, 3vw, 36px);
    color: #fff;
    font-weight: 700;
    line-height: 1.45;
}
@media (max-width: 767.98px) {
    .main-esg .m-title-h3 p {
        text-align :center;
    }
}

.m-esg-wrap {
    display: flex;
    flex-flow: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    /* border-radius: 20px; */
    /* background: rgb(0 161 155 / 60%); */
    /* backdrop-filter: blur(14px); */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.m-esg-wrap .col {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.75);
    padding: 25px clamp(20px, 3vw, 35px);
    gap: clamp(20px, 3vw, 35px);
}
.m-esg-wrap .col h4 {
    font-size: clamp(42px, 3vw, 60px);
    line-height: 1;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 40px;
    flex-shrink: 0;
}
.m-esg-wrap .info {
    display: grid;
    grid-template-columns: minmax(0, clamp(80px, 3vw, 130px)) minmax(0, 1fr);
    align-items: center;
}
.m-esg-wrap .info h5 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
}
.m-esg-wrap .info p {
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 0;
    font-weight: 500;
}
.m-news-wrap .top {
    display: flex;
    gap: 30px;
    margin-bottom: 70px;
}
@media (max-width: 767.98px) {
    .m-news-wrap .top {
        flex-direction: column;
        margin-bottom: 30px;
        gap: 15px;
    }
}
.m-news-wrap .top .m-title-h3 {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding-block: 10px;
    flex: 0 1 auto;
    width: 30%;
    gap: 25px;
}
@media (max-width: 767.98px) {
    .m-news-wrap .top .m-title-h3 {
        width: 100%;
        align-items: center;
    }
}
.m-news-wrap .top .m-title-h3 a {
    margin-left: 0;
    margin-top: 15px;
}
.m-news-wrap .top .link {
    border-radius: 20px;
    overflow: hidden;
    /* background: #4fbdb0; */
    /* border: 6px solid transparent; */
    transition: all 0.3s;
}
.m-news-wrap .top .link .bg {
    transition: all 0.3s;
}
.m-news-wrap .top .link:hover .bg {
    transform: scale(1.25);
    filter: brightness(1);
}
.m-news-wrap .top .link span.info {
    display: block;
    padding: 40px 40px;
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}
.m-news-wrap .bottom {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
@media (max-width: 767.98px) {
    .m-news-wrap .bottom {
        flex-direction: column;
        gap: 15px;
    }
}
.m-news-wrap .bottom .col {
    flex: 0 1 auto;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: clamp(15px, 3vw, 28px) 0;
    border: 4px solid #f0f0f0;
    border-radius: 20px;
    transition: all 0.3s;
    color: #222;
}
.m-news-wrap .bottom .col:hover {
    border: 4px solid #d4d4d4;
}
.m-news-wrap .bottom .col span.material-symbols-outlined {
    font-size: clamp(42px, 3vw, 56px);
    font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
    color: #9d9d9d;
}
.m-news-wrap .bottom .col .info {
    font-size: 24px;
    margin-top: 3px;
    color: inherit;
}
.m-news-wrap .bottom .col .info * {
    display: block;
}
.m-news-wrap .bottom .col .info strong {
    font-size: 1em;
    line-height: 1;
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 600;
    letter-spacing: -0.03em;
    display: flex;
    gap: 8px;
    align-items: center;
    color: inherit;
}
.m-news-wrap .bottom .col .info strong::after {
    content: "\e5cc";
    font-family: var(--gms);
    font-variation-settings: var(--gms-600-out);
    line-height: 1;
    font-size: 28px;
    color: inherit;
}
.m-news-wrap .bottom .col .info small {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    font-size: 0.6em;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 0.2px;
    font-size: 13px;
    display: none;
}
/* 게시판 탭 + 갤러리 스와이프 */
/* <div class="m-board-wrap"><div class="left"><div role="tabpanel"><ul class="nav nav-tabs" role="tablist"><li role="presentation" class="active"><a href="#bd01" aria-controls="bd01" role="tab" data-toggle="tab" data-href="/board/list?bd_id=bd01">News</a></li><li role="presentation"><a href="#pb01" aria-controls="pb01" role="tab" data-toggle="tab" data-href="/board/list?bd_id=pb01">International Journal</a></li><li role="presentation"><a href="#pb02" aria-controls="pb02" role="tab" data-toggle="tab" data-href="/board/list?bd_id=pb02">Domestic Journal</a></li><li role="presentation"><a href="#re02" aria-controls="re02" role="tab" data-toggle="tab" data-href="/board/list?bd_id=re02">Research Areas</a></li><li class="plus"><a href="/board/list?bd_id=bd01"><span class="material-symbols-outlined">add </span></a></li></ul><div class="tab-content"><div role="tabpanel" class="tab-pane active" data-board="bd01" id="bd01"></div><div role="tabpanel" class="tab-pane" data-board="pb01" id="pb01"></div><div role="tabpanel" class="tab-pane" data-board="pb02" id="pb02"></div><div role="tabpanel" class="tab-pane" data-board="re02" id="re02"></div></div></div></div><div class="right"><div class="col" data-board="bd02"></div></div></div> */
.m-board-wrap {
    --boardNevHeight: 52px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 80px 90px;
}
@media (max-width: 767.98px) {
    .m-board-wrap {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
}
.m-board-wrap .page-header {
    display: none;
}
.m-board-wrap .type_swiper_s1 {
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
}
.m-board-wrap .type_swiper_s1 .swiper {
    border-radius: var(--radius);
    width: 100%;
}
.m-board-wrap .type_swiper_s1 .swiper-indicators-wrap {
    position: static;
    display: flex;
    justify-content: flex-end;
    height: var(--boardNevHeight);
    margin-bottom: 40px;
}
.m-board-wrap .type_swiper_s1 .swiper-indicators-wrap [class*="swiper-button"] {
    position: static;
    display: flex;
    justify-content: center;
    aspect-ratio: 1;
    border: 1px solid #ccc;
    align-items: center;
}
.m-board-wrap .type_swiper_s1 .swiper-indicators-wrap [class*="swiper-button"]::before {
    font-size: 20px;
    color: #444;
}
.m-board-wrap .type_swiper_s1 .swiper-indicators-wrap .swiper-pagination {
    position: static;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 0 20px; */
    width: 70px;
    border-block: 1px solid #ccc;
    gap: 0 5px;
    color: #444;
    font-size: 16px;
    /* tabs */
}
.m-board-wrap [role="tabpanel"] [role="tablist"] {
    display: flex;
    margin-bottom: 40px;
}
.m-board-wrap [role="tabpanel"] [role="tablist"] li {
    flex: 1 1 auto;
}
.m-board-wrap [role="tabpanel"] [role="tablist"] li + .m-board-wrap [role="tabpanel"] [role="tablist"] li {
    margin-left: -1px;
}
.m-board-wrap [role="tabpanel"] [role="tablist"] li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--boardNevHeight);
    font-size: 17px;
    border: 1px solid #ccc;
    color: #666;
    padding-inline: 25px;
}
.m-board-wrap [role="tabpanel"] [role="tablist"] li.active [role="tab"] {
    z-index: 10;
    background-color: var(--page-point-color);
    border-color: var(--page-point-color);
    /* font-weight: 600; */
    color: #fff;
}
.m-board-wrap [role="tabpanel"] [role="tablist"] li.plus {
    flex: 0 0 auto;
}
.m-board-wrap [role="tabpanel"] [role="tablist"] li.plus a {
    aspect-ratio: 1;
    padding: 0;
}
.m-board-wrap [role="tabpanel"] [role="tablist"] li.plus a span {
    font-size: 32px;
    color: var(--page-point-color);
}
.m-board-wrap [role="tabpanel"] .tab-content > :not(.active) {
    display: none;
}
/* 블로그 A 좌:1 우:3 */
/* <div class="m-projects-wrap" data-board="re01"></div> */
.m-projects-wrap .page-header {
    display: none;
}
.m-projects-wrap .table_blog {
    border-top: 2px solid #222;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 50px;
    margin-bottom: 0 !important;
}
.m-projects-wrap .table_blog .right {
    display: flex;
    flex-direction: column;
    gap: 18px 15px;
    align-items: flex-start;
    padding-right: 30px;
}
.m-projects-wrap .table_blog .right a {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: clamp(16px, 2vw, 20px);
    color: #222;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4;
}
.m-projects-wrap .table_blog .right a:hover {
    color: var(--page-point-color);
}
.m-projects-wrap .table_blog .right a:has(.badge) {
    padding-top: 28px;
    margin-top: 5px;
}
.m-projects-wrap .table_blog .right .info {
    margin-bottom: 0;
    margin-top: 0;
    opacity: 1;
    display: block;
    align-self: flex-start;
    margin-left: 2px;
}
.m-projects-wrap .table_blog .right .info .cate {
    padding: 4px 12px;
    border: 1px solid #ddd;
    color: #666;
    margin-right: 10px;
    display: inline-block;
}
.m-projects-wrap .table_blog .right :where(.writer, .hits) {
    display: none;
}
.m-projects-wrap .table_blog .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.m-projects-wrap .table_blog .right p {
    padding: 0;
    font-size: clamp(13px, 2vw, 16px);
    color: #777;
}
.m-projects-wrap .table_blog .left {
    /* height: 100%; */
}
.m-projects-wrap .table_blog .badge {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
}
.m-projects-wrap .table_blog .no_post {
    grid-column: span 2;
}
.m-projects-wrap .table_blog dd {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, auto);
    align-items: center;
    gap: 32px;
    padding-block: 40px;
    border-top: 1px solid #ccc;
    border-bottom: 0;
}
.m-projects-wrap .table_blog dd:last-child {
    border-bottom: 1px solid #ccc;
}
.m-projects-wrap .table_blog dd:first-child {
    grid-row: span 3;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background-color: #fff;
}
.m-projects-wrap .table_blog dd:first-child .right {
    width: 100%;
    padding: 30px;
    flex: 1;
    border-bottom: 1px solid #ccc;
}
.m-projects-wrap .table_blog dd:first-child .right a {
    font-size: clamp(20px, 3vw, 28px);
    letter-spacing: -0.02em;
    line-height: 1.4;
    font-weight: 600;
}
.m-projects-wrap .table_blog dd:not(:first-child) .right p {
    display: none;
}
@media (hover: hover) {
    .m-projects-wrap .table_blog dd:hover {
        cursor: pointer;
    }
    .m-projects-wrap .table_blog dd:hover .right .cate {
        background-color: var(--page-point-color);
        color: #fff;
        border-color: var(--page-point-color);
    }
}
@media (max-width: 768px) {
    .m-projects-wrap .table_blog {
        max-width: 500px;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
    }
    .m-projects-wrap .table_blog dd {
        padding-block: 25px;
        gap: 20px;
        grid-template-columns: minmax(0, 100px) minmax(0, auto);
    }
    .m-projects-wrap .table_blog dd:first-child {
        display: flex;
        flex-direction: column;
    }
    .m-projects-wrap .table_blog dd:first-child .right {
        padding: 20px;
    }
    .m-projects-wrap .table_blog .right {
        padding-right: 0;
    }
}
/* [ main-widget ] */
.mainpage [class^="board_box"] {
    margin-bottom: 0;
}
.mainpage .page-header {
    margin-block: 0 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.mainpage .page-header h4 {
    display: inline-block;
    font-size: clamp(18px, 3vw, 22px);
}
.mainpage .page-header i::before {
    position: relative;
    display: block;
    content: "\e145";
    translate: 0 2px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 500;
    color: #000;
}
.mainpage .type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mainpage .type_list li {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mainpage .type_list li.no_bd_text {
    justify-content: center;
}
.mainpage .type_list li .info {
    opacity: 0.5;
    flex-shrink: 0;
    order: 5;
}
.mainpage .type_list li .info span:not(.regdate) {
    display: none;
}
.mainpage .type_list li .board_status_badge {
    order: 2;
    display: flex;
    line-height: 1;
    margin-right: auto;
    margin-left: 10px;
    background-color: var(--page-point-color) !important;
    color: #fff;
    padding: 5px 8px;
    align-items: center;
    font-size: 12px;
    margin-block: -5px;
    align-self: center;
}
.mainpage .type_list li .board_status_badge.badge_wait {
    background-color: #a0a1a3 !important;
}
.mainpage .type_list li .board_status_badge.badge_complete {
    background-color: #e40000 !important;
}
.mainpage .type_list li span.subject {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.mainpage .type_list li a:hover {
    text-decoration: underline;
}
.mainpage .type_list li :where(li, a) {
    line-height: 1;
    font-size: clamp(14px, 3vw, 16px);
    color: #000;
}
.mainpage .type_thumb {
    display: grid;
    grid-template-columns: repeat(2, minmax(1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}
.mainpage .type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.mainpage .type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
.mainpage .type_thumb .thumb {
    aspect-ratio: 1.6666666667;
    height: auto;
}
.mainpage .type_thumb .bottom {
    padding: 0;
}
.mainpage .type_thumb .bottom .title {
    padding: 0;
    margin-top: 5px;
}
.mainpage .type_thumb .bottom .title a {
    font-size: clamp(15px, 3vw, 17px);
}
.mainpage .type_thumb .info {
    display: none;
}
.mainpage :where(.type_video, [data-board-option="video"]) .top a::before {
    content: "\f144";
    font-family: "font awesome 6 free";
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
}
.mainpage :where(.type_video, [data-board-option="video"]) .inner:hover .top a::before {
    opacity: 1;
}
/* [ main-popup ] */
#site #mainPopup {
    position: relative;
    top: 50px;
    z-index: 10000;
}
#site #mainPopup .main_popup {
    display: none;
    position: absolute;
    top: 100px !important;
    min-width: 300px;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background-color: transparent;
}
#site #mainPopup .main_popup.show {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
#site #mainPopup .main_popup button.close {
    all: unset;
    cursor: pointer;
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#site #mainPopup .main_popup span.material-symbols-outlined {
    line-height: 0.8;
    font-variation-settings: var(--gms-200-out);
    font-size: inherit;
}
#site #mainPopup .main_popup .main_popup_contents {
    overflow: hidden;
    /* padding: 10px; */
    background: #fff;
    margin: 0;
    padding: 0;
}
#site #mainPopup .main_popup .main_popup_contents video {
    margin: 0;
    padding: 0;
    display: block;
}
#site #mainPopup .main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
#site #mainPopup .main_popup .main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding-inline: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 40px;
}
#site #mainPopup .main_popup .main_popup_optional label {
    font-weight: 400;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
}
#site #mainPopup .main_popup .main_popup_optional label input[type="checkbox"] {
    display: none;
}
#site #mainPopup .main_popup .main_popup_optional label span {
    padding-left: 3px;
    display: flex;
    gap: 5px;
    align-items: center;
}
#site #mainPopup .main_popup .main_popup_optional label span::before {
    content: "\e8b5";
    display: inline-block;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(16px, 2vw, 18px);
    /* transform: translateY(3px); */
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div) {
    opacity: 0.8;
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div, span) {
    line-height: 1;
}
#site #mainPopup .main_popup_left {
    left: 50px !important;
}
#site #mainPopup .main_popup_center {
    left: 50% !important;
    transform: translate(-50%);
}
#site #mainPopup .main_popup_right {
    right: 50px !important;
}
@media (max-width: 767px) {
    #site #mainPopup .main_popup_left,
    #site #mainPopup .main_popup_center,
    #site #mainPopup .main_popup_right {
        left: 15px !important;
        right: 15px !important;
        transform: none !important;
    }
}
/* ---------------------------- table ---------------------------- */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
    /* border-top: 2px solid #222; */
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
    .table-responsive .table {
        min-width: 900px;
    }
    .subpage[id*="pd"] .table-responsive .table {
        min-width: 400px;
    }
}
:where(.table) {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    table-layout: fixed;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    border-spacing: 0;
}
:where(.table) :where(th, td) {
    vertical-align: top;
    line-height: 1.5;
}
.table-style {
    --border-color: #e3e3e3;
    /* border: 1px solid var(--border-color); */
    /* border-top: 2px solid #222; */
    background-color: #fff;
    border-right: 2px solid #fff;
    margin: 0;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.table-style :is(th, td) {
    padding: 14px 22px;
    font-size: clamp(14px, 2vw, 17px);
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    letter-spacing: -0.015em;
}
@media (max-width: 767.98px) {
    .table-style :is(th, td) {
        padding: 8px 12px;
    }
}
.table-style :is(th, td).text-left {
    text-align: left;
}
.table-style td {
    color: #555;
}
.table-wrap.cert .table-style td.text-center:has(b) {
    background: #f6f6f6;
}
.table-wrap.cert .table-style td.text-center b {
    color: #222;
    font-weight: 600;
}
.table-style thead th {
    /* border-bottom: 1px solid #444; */
    background-color: #03446d;
    border-right: 1px solid #366989;
    color: #fff;
    /* text-align: center; */
    font-weight: 600;
    padding: 15px;
    font-size: clamp(14px, 3vw, 17px);
    /* background: var(--page-point-color); */
    /* color: #fff; */
    /* border-color: #215475; */
    letter-spacing: 0;
}
.table-style thead,
.table-style tbody:only-child {
    /* border-top: 1px solid var(--page-point-color); */
    /* border-radius: 10px 10px 0 0; */
    /* overflow: hidden; */
}
.table-style tbody th {
    background-color: #f7f7f7;
    /* text-align: center; */
    font-weight: 500;
    border-color: #d7d7d7;
}
.table-number tr {
    counter-increment: table-number;
}
.table-number td:first-child::before {
    content: counter(table-number);
}
/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
    margin-block: 0;
    /* 게시글 공지사항 */
}
.board_wrapper tr.notice {
    background-color: #f9f9f9;
}
.board_wrapper tr.notice td.subject a {
    font-weight: 500;
    color: #222;
    /* 게시글 아이콘 */
}
.board_wrapper tr.notice td.subject .is_secret {
    order: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board_wrapper tr.notice td.subject span {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 8px;
}
.board_wrapper tr.notice td.subject small {
    margin-top: 0;
    /* 잠금 아이콘 */
}
.board_wrapper tr.notice td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
    /* 댓글 아이콘*/
}
.board_wrapper tr.notice td.subject small.comment {
    opacity: 0.8;
    order: 1000;
    translate: 0 -1px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--page-point-color-dark);
    font-weight: 700;
}
.board_wrapper tr.notice td.subject small.comment::before {
    content: "[";
}
.board_wrapper tr.notice td.subject small.comment::after {
    content: "]";
}
.board_wrapper tr.notice td.subject small.comment i {
    display: none;
}
.board_wrapper tr.notice td.cate::before {
    content: "공지";
    color: #222;
}
.board_wrapper tr.notice td.cate span {
    display: none;
}
/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper[id$="_view"] .btn {
    min-width: 60px;
    padding-inline: 10px;
    justify-content: center;
    align-items: center;
}
.board_wrapper :is(.form-caption, .wr_caution) i {
    color: var(--page-point-color);
}
.board_wrapper .wr_caution {
    padding-left: 18px;
}
#site :where(.member_wrapper, .board_wrapper) .text-center:not(td) {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 55px;
}
#site :where(.member_wrapper, .board_wrapper) .text-center:not(td) .btn + .btn {
    margin: 0;
    /* 게시판/주문폼/회원가입 버튼 */
}
#site :where(.member_wrapper, .board_wrapper) .btn.btn-lg,
#site :where(.member_wrapper, .board_wrapper) .btn + .btn:not(.btn-outline-danger) {
    min-width: 180px;
    /* checkbox, radio */
}
#site :where(.member_wrapper, .board_wrapper) tbody td:has(.radio-inline, .checkbox-inline) {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(5px, 2vw, 10px) clamp(15px, 3vw, 20px);
    font-size: clamp(14px, 2vw, 16px);
}
#site :where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
#site :where(.member_wrapper, .board_wrapper) .checkbox label {
    cursor: pointer;
    width: fit-content;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
#site :where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-thickness: 2px;
    color: #222;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type="checkbox"], input[type="radio"]) {
    position: static;
    margin: 0 5px 0 0;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .radio-inline) {
    margin-block: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    #site :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 20px;
        /* margin-bottom: 50px; */
        /* padding-top: 30px; */
        display: flex;
        justify-content: center;
        width: 100%;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
        margin-left: 0;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul li {
    margin: 0;
}
#bbsArea .category_wrap ul li a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 16px;
}
#bbsArea .category_wrap ul li a:hover {
    color: #111;
}
#bbsArea .category_wrap ul li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}
/* 게시판 노출 */
#bbsArea {
    position: relative;
}
#bbsArea .board_data_view {
    border-top: 1px solid #333;
    border-bottom: 1px solid #aaa;
}
#bbsArea .write_btn_wrap {
    position: absolute;
    right: 0;
    bottom: 0;
}
#bbsArea .btn-lg {
    width: 200px;
}
#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}
#bbsArea .board_wrapper + .search_wrap {
    margin-top: 50px;
}
#bbsArea .board_wrapper + .pagination_wrap {
    margin-block: 50px;
}
#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 0px;
}
#bbsArea .pagination_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
#bbsArea .pagination_wrap ul li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    aspect-ratio: 1;
    font-size: 15px;
    border-radius: 9999px;
}
#bbsArea .pagination_wrap ul li:not(.active) a:hover {
    background-color: #eee;
}
#bbsArea .pagination_wrap ul li.active a {
    width: 28px;
    background-color: var(--page-point-color);
    color: #fff;
    font-weight: 700;
}
#bbsArea .pagination_wrap ul li + #bbsArea .pagination_wrap ul li {
    margin-left: -1px;
}
#bbsArea .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* 게시판 목록 하단 */
#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
}
#bbsArea .search_wrap #search_kind {
    cursor: pointer;
    line-height: 1;
}
#bbsArea .search_wrap .write_btn_wrap {
    margin-top: 0;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    #bbsArea .search_wrap {
        flex-direction: column;
        max-width: 300px;
        margin-inline: auto;
    }
    #bbsArea .search_wrap .write_btn_wrap {
        position: static;
        display: flex;
        gap: 5px;
        width: 100%;
    }
    #bbsArea .search_wrap .write_btn_wrap > .btn {
        width: 100%;
        min-width: auto;
        flex: 1;
    }
    #bbsArea .search_wrap select.form-control {
        max-width: 100% !important;
    }
}
#bbsArea .badge {
    display: inline-flex;
    background-color: var(--page-point-color-g);
    border-radius: 5px;
    padding: 3px 7px;
    margin-block: -3px;
    margin-right: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
#bbsArea .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
#bbsArea .option_wrap .list_btn_wrap {
    position: static;
}
/* 게시글 헤더 */
#bbsArea .header_wrap {
    text-align: center;
    padding: 40px var(--container-padding-inline) 55px;
    border-bottom: 1px solid #e3e3e3;
}
#bbsArea .header_wrap h4.title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.025em;
}
#bbsArea .header_wrap span {
    color: #666;
}
#bbsArea .header_wrap strong {
    color: #666;
    font-weight: 600;
}
#bbsArea .header_wrap .title {
    margin: 0;
    font-size: 24px;
}
#bbsArea .header_wrap .info {
    margin-top: 22px;
    opacity: 0.7;
}
#bbsArea .header_wrap .info span {
    font-size: 14px;
}
#bbsArea .header_wrap .info span + #bbsArea .header_wrap .info span {
    margin-left: 9px;
}
/* 게시글 콘텐츠 */
#bbsArea .contents_wrap {
    padding: 50px 0px;
}
#bbsArea .contents_wrap .contents_inner {
    font-size: 14px;
}
#bbsArea .contents_wrap img {
    max-width: 100%;
    height: auto;
}
#bbsArea .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}
#bbsArea .contents_wrap a {
    color: #337ab7;
}
#bbsArea .contents_wrap a:hover {
    color: #1b5a92;
    text-decoration: underline;
}
#bbsArea .contents_wrap a:visited {
    color: #6c368b;
}
#bbsArea .contents_wrap a:visited:hover {
    color: #461b5f;
    text-decoration: underline;
}
#bbsArea .contents_wrap :is(.h1, h1) {
    font-size: 36px;
}
#bbsArea .contents_wrap :is(.h2, h2) {
    font-size: 30px;
}
#bbsArea .contents_wrap :is(.h3, h3) {
    font-size: 24px;
}
#bbsArea .contents_wrap :is(.h4, h4) {
    font-size: 18px;
}
#bbsArea .contents_wrap :is(.h5, h5) {
    font-size: 14px;
}
#bbsArea .contents_wrap :is(.h6, h6) {
    font-size: 12px;
}
#bbsArea .contents_wrap :is(.h1, .h2, .h3, h1, h2, h3) {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 500;
    color: inherit;
}
#bbsArea .contents_wrap :where(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside;
}
#bbsArea .contents_wrap ul li {
    list-style-type: disc;
}
#bbsArea .contents_wrap ol li {
    list-style-type: decimal;
}
/* 게시글 다운로드 */
#bbsArea :is(.download_wrap, .status_wrap) {
    padding: 15px;
    border-top: 1px solid #ddd;
}
#bbsArea :is(.download_wrap, .status_wrap) th {
    text-align: left;
    vertical-align: top;
    width: 100px;
}
#bbsArea :is(.download_wrap, .status_wrap) ul {
    display: flex;
    flex-direction: column;
    gap: 5px 10px;
    flex-wrap: wrap;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a {
    color: #000;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a:hover {
    text-decoration: underline;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    #bbsArea :is(.download_wrap, .status_wrap) ul {
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr {
        display: flex;
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr > * {
        width: 100%;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr th {
        padding-bottom: 10px;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr a {
        word-break: break-all;
    }
}
/* 게시글 댓글 */
#bbsArea .reply_wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
#bbsArea .reply_wrap h4 {
    position: static;
    text-align: left;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
#bbsArea .reply_wrap > h4 {
    /* order: 1; */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
#bbsArea .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
#bbsArea .reply_wrap .btn_wrap .pull-left {
    display: flex;
    gap: 5px;
}
#bbsArea .reply_wrap :is(#bbsArea .reply_wrap #reply_modify_btn, #bbsArea .reply_wrap .text-left + button) {
    margin-left: auto;
}
#bbsArea .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
#bbsArea .reply_wrap #reply_list {
    /* order: 3; */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ccc;
    margin-block: 20px;
}
#bbsArea .reply_wrap #reply_list .info {
    display: flex;
    gap: 7px;
    /* height: 40px; */
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
#bbsArea .reply_wrap #reply_list .media {
    position: relative;
    margin: 0;
    padding: 20px 5px 40px;
}
#bbsArea .reply_wrap #reply_list .media + #bbsArea .reply_wrap #reply_list .media {
    border-top: 1px solid #ddd;
}
#bbsArea .reply_wrap #reply_list .media .media-left,
#bbsArea .reply_wrap #reply_list .media > .pull-left {
    padding-right: 20px;
}
#bbsArea .reply_wrap #reply_list .media .media .media-left img {
    border-radius: 100%;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .media .media-body {
    position: static;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info {
    position: absolute;
    /* right: 0; */
    left: 130px;
    bottom: 15px;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info .btn {
    display: inline-block;
    font-weight: 500;
    /* padding: 0 5px; */
    line-height: 1;
    font-size: 12px;
    vertical-align: middle;
    color: #333;
    height: auto;
    max-width: unset;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info span {
    color: #aaa;
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-all;
}
#bbsArea .reply_wrap #reply_list .media .media-heading .text-muted {
    color: #aaa;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 5px;
    margin-left: 0 !important;
}
#bbsArea .reply_wrap #reply_write .info .form-control {
    display: inline-block;
    width: 120px;
}
#bbsArea .reply_wrap #reply_write .info .form-control + #bbsArea .reply_wrap #reply_write .info .form-control {
    margin-left: 2px;
}
#bbsArea .reply_wrap #reply_write .contents {
    margin-top: 5px;
}
#bbsArea .reply_wrap #reply_write .contents .form-control {
    height: 100px;
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
    padding: 10px 15px;
}
#bbsArea .reply_wrap #reply_write .btn_wrap {
    margin-top: 5px;
    text-align: right;
}
#bbsArea .reply_wrap #reply_write .btn_wrap .btn {
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 539px) {
    #bbsArea .reply_wrap .info .form-control {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    #bbsArea .reply_wrap .info .form-control + #bbsArea .reply_wrap .info .form-control {
        margin-left: 0;
    }
}
/* 게시글 작성 */
#bbsArea .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}
#bbsArea .table.board_write_table tbody td {
    padding: 0px;
    border: 0;
}
#bbsArea .table.board_write_table .text-muted i {
    color: var(--page-point-color);
}
#bbsArea .table.board_write_table .files {
    /* 파일 추가 버튼 */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 15px;
    flex: 1;
}
#bbsArea .table.board_write_table .files #File_add {
    aspect-ratio: 1;
    width: auto;
    padding: 9px 12px;
    margin: 0;
}
#bbsArea .table.board_write_table .files + #File_add {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
}
#bbsArea .table.board_write_table .files + #File_add .fa-plus {
    line-height: 0;
}
#bbsArea .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
#bbsArea .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
#bbsArea .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}
#bbsArea .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    /* 휴지통 버튼 */
    #bbsArea .table.board_write_table .text-muted {
        width: 100%;
    }
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach) {
    display: inline-block;
    color: #999;
    line-height: 40px;
    margin-left: 7px;
    margin-right: 7px;
    cursor: pointer;
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach):hover {
    color: #ec0909;
    /* 필수 입력 항목 */
}
#bbsArea .table.board_write_table th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: static;
    margin-right: 2px;
    color: #00a7a1;
    /* textarea 글자수 */
}
#bbsArea .table.board_write_table .frm_textarea_cnt {
    display: none;
    /* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
}
@media (min-width: 768px) {
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    #bbsArea .table.board_write_table .files_upload_wrap {
        gap: 15px;
        display: flex;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        aspect-ratio: 1;
        height: 40px;
    }
}
@media (max-width: 767.98px) {
    #bbsArea .table.board_write_table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #bbsArea .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100%;
    }
    #bbsArea .table.board_write_table #delete_thumb {
        width: 100%;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .files .fileInput .file_add {
        position: relative;
        right: auto;
    }
}
/* input */
.form-control {
    width: 100%;
    font-family: var(--page-font-family);
    padding: 0.9rem 1.05rem;
    font-size: clamp(14px, 2vw, 15px);
    height: var(--form-height);
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--page-grey-color);
    color: #333;
    letter-spacing: -0.03em;
}
.form-control::placeholder {
    color: #9f9f9f;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border-color: var(--page-grey-color);
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08);
}
.form-control:not([readonly]):focus {
    border-color: var(--page-point-color) !important;
}
.form-control[type="file"] {
    position: relative;
    width: 100%;
    cursor: pointer;
    padding: 0 0.8rem;
    padding-left: 0;
    line-height: calc(var(--form-height) - 2px);
    margin: 0;
}
.form-control[type="file"]::file-selector-button {
    width: 80px;
    margin-right: 10px;
    font-family: inherit;
    position: relative;
    left: 0;
    height: 100%;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
}
.form-control[type="file"]:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #e5e5e5;
}
#search_query.form-control {
    width: 100%;
    max-width: 320px;
    /* background-color: #eee; */
    /* border: 1px solid transparent; */
}
#search_query.form-control:focus {
    background-color: #fff;
    border-color: var(--page-point-color);
}
textarea.form-control {
    padding-block: 0.9rem;
    line-height: 1.5;
}
select.form-control {
    -webkit-appearance: none;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzIiICAgdmlld0JveD0iMCAwIDQ4MCA0ODAiICAgaGVpZ2h0PSI0ODAiICAgd2lkdGg9IjQ4MCI+ICA8bWV0YWRhdGEgICAgIGlkPSJtZXRhZGF0YTEwIj4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzOCIgLz4gIDxwYXRoICAgICBpZD0icGF0aDQiICAgICBkPSJNIDE0MCwxOTAgMjQwLDI5MCAzNDAsMTkwIFoiIC8+PC9zdmc+);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) 11px;
    background-origin: border-box;
    padding-right: 23px;
    max-width: 100px;
}
.wr_add_button select.form-control {
    max-width: 100%;
}
select.form-control#wr_cate {
    max-width: 200px;
}
input.form-control {
    -webkit-appearance: none;
    padding-right: 20px;
}
input.form-control#wr_reply_captcha {
    max-width: 130px;
    width: 100% !important;
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control.vaild-text + .clear-input {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 100%;
    color: #bbb;
    top: 0;
    right: 0;
    border: 1px solid transparent;
}
input.form-control.vaild-text + .clear-input::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control + .clear-input:hover {
    color: var(--page-point-color);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .form-control {
        width: 100%;
    }
}
.wr_form_wrap {
    display: grid;
    grid-template-columns: 1fr 0.5fr 2fr;
    gap: 10px;
    padding: 3px 0 0;
}
.wr_form_wrap label {
    font-size: 13px;
}
@media (max-width: 768px) {
    .wr_form_wrap {
        display: flex;
        flex-direction: column;
    }
}
.wr_form_item {
    position: relative;
}
.wr_form_item input.form-control {
    padding-right: 40px;
    background-color: transparent;
    padding-right: 35px;
}
.wr_form_item :where(.input-group, .form-control) {
    width: 100%;
}
.custom_file {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}
.checkbox-inline + .checkbox-inline {
    margin-left: 20px;
}
:is(.custom_radio, .custom_checkbox) {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}
:is(.custom_radio, .custom_checkbox, .status_wrap input) + span {
    user-select: none;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #444;
    font-size: clamp(14px, 2vw, 16px);
}
.custom_checkbox + span {
    user-select: none;
}
.custom_checkbox + span::before {
    content: "\e834";
    margin: 0;
    font-size: 1.65em;
    color: #bbb;
    /* content: "\e835"; */
    font-family: var(--gms);
    transform: translateY(1px);
    font-variation-settings: var(--gms-700-fill);
    margin-right: 8px;
}
.custom_checkbox:checked + span::before {
    content: "\e834";
    font-weight: 900;
    color: var(--page-point-color);
}
.custom_checkbox[disabled],
.custom_checkbox[disabled] + span {
    opacity: 0.5;
}
.custom_radio[disabled],
.custom_radio[disabled] + span {
    opacity: 0.5;
}
.custom_radio:checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}
.custom_radio + span::before {
    margin: 0;
    font-size: 1.25em;
    color: #555;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
.radio-inline {
    cursor: pointer;
    align-self: center;
    margin-top: 0 !important;
}
.status_wrap [name="wr_status"] {
    display: none;
}
.status_wrap [name="wr_status"][disabled],
.status_wrap [name="wr_status"][disabled] + span {
    opacity: 0.5;
}
.status_wrap [name="wr_status"] + span::before {
    margin: 0;
    font-size: 1.25em;
    color: #555;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
.status_wrap [name="wr_status"]:checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}
/* 자동입력방지 */
#wr_captcha {
    margin-top: 0;
    width: 100%;
    max-width: 220px;
}
#captcha {
    z-index: 10;
    cursor: pointer;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: var(--form-height) !important;
    margin: 0;
    border: 1px solid transparent;
}
#captcha:hover {
    border-color: #222 !important;
}
#captcha + br {
    display: none;
}
#captcha + br + input {
    margin: 0 0 0 -1px !important;
    border-radius: 0;
    margin-left: -1px;
}
#captcha + br + input:focus {
    z-index: 15;
}
td:has(#captcha) {
    display: flex;
    gap: 0;
}
/* [ board-columns ] */
:is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}
:is(.table_video, .table_blog2, .table_pd)::before,
:is(.table_video, .table_blog2, .table_pd)::after {
    content: none;
}
:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
}
:is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}
@media (min-width: 576px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
@media (min-width: 768px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
/* [ board-video ] */
.table_video .top a::before {
    content: "\e1c4";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
}
.table_video .inner:hover .top a::before {
    opacity: 1;
}
.type_video .thumb {
    background-color: #000;
}
/* [ board-list ] */
/* 게시판 리스트, 현황 */
.board_status_list .status_badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}
.board_status_list .status_badge_1 {
    background: #a0a1a3;
    color: #fff;
}
.board_status_list .status_badge_2 {
    background: var(--page-point-color);
    color: #fff;
}
.board_status_list .status_badge_3 {
    background: #e1e1e1;
    color: #888;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default {
    border: 0;
    border-spacing: 0;
    border-top: 1px solid #333;
    margin-bottom: 0;
    width: 100%;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default thead th {
    background: #fff;
    border-bottom: 1px solid #e3e3e3;
    font-weight: 600;
    color: #222;
    font-size: clamp(15px, 2vw, 17px);
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody th.num {
    font-weight: normal;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(15px, 2vw, 17px);
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody.table_responsive th {
    margin-bottom: 0;
    border: 0;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody .text-muted {
    color: #999;
    margin-left: 5px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(th, td) {
    padding: 17px 15px;
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #e3e3e3;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td {
    color: #777;
    text-align: center;
    letter-spacing: -0.02em;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.subject {
    text-align: left;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.text-center {
    display: table-cell;
    text-align: center;
}
/* 반응형 스타일 */
@media (max-width: 767.98px) {
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .subject {
        width: 100%;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .status {
        width: 35%;
    }
}
/* [ board-blog A ] */
.table_blog {
    border-top: 2px solid #222;
}
.table_blog .info {
    display: none;
}
.table_blog dd {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, auto);
    align-items: flex-start;
    gap: 40px;
    padding-block: 40px;
    border-bottom: 1px solid #ddd;
}
.table_blog .no_post {
    grid-column: span 2;
}
.table_blog .right {
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    align-items: flex-start;
    padding-right: 30px;
}
.table_blog .right .info {
    justify-content: flex-end;
    align-items: center;
    align-self: center;
    grid-column: 2;
    grid-row: span 2;
    margin-bottom: 0;
}
.table_blog .right :where(.writer, .hits) {
    display: none;
}
.table_blog .right a {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 22px;
    color: #000;
}
.table_blog .right a:has(.badge) {
    padding-top: 28px;
    margin-top: 5px;
}
.table_blog .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.table_blog .right p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
}
.table_blog .badge {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
}
@media (max-width: 767.98px) {
    .table_blog dd {
        display: flex;
        flex-direction: column;
    }
    .table_blog .right {
        padding-right: 0;
    }
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .badge {
    margin-top: 0px;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .top {
    position: relative;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) dd {
    margin-bottom: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .bottom {
    margin-top: 15px;
    padding: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb + img.thumb {
    display: block;
    aspect-ratio: 1.6666666667;
    object-fit: cover;
    width: 100%;
    height: auto;
    background-color: #ccc;
    border-radius: var(--radius-md);
}
:is(.table_video, .table_blog, .table_blog2, .table_pd).table_pd a span.thumb + img.thumb {
    aspect-ratio: 1;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
    padding: 0;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview {
    margin-top: 10px;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview * {
    all: unset;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    opacity: 0.7;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info span {
    padding: 0;
    font-size: 13px;
    line-height: 1;
}
/* [ board-form ] */
:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
.board_wrapper :where(form[id*="form"]) :where(th, td, table.table) {
    border: 0;
    line-height: 1;
}
.board_wrapper :where(form[id*="form"]) table {
    width: 100%;
    display: flex;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) th {
    padding: 0;
    font-weight: 600;
    display: flex;
    background-color: transparent;
    width: auto;
    border-top: 0;
    letter-spacing: -0.03em;
}
.board_wrapper :where(form[id*="form"]) :where(th, td) {
    font-size: 16px;
}
.board_wrapper :where(form[id*="form"]) tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.board_wrapper :where(form[id*="form"]) tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: flex-start;
    gap: 15px;
    padding: 25px 10px;
    border-bottom: 1px solid #ccc;
}
.board_wrapper :where(form[id*="form"]) #item_agree .checkbox {
    margin-top: 10px;
}
@media (max-width: 767.98px) {
    .board_wrapper :where(form[id*="form"]) #item_agree .checkbox {
        margin: 0;
    }
}
.board_wrapper :where(form[id*="form"]) #item_agree label {
    font-size: clamp(13px, 2vw, 15px);
}
.board_wrapper :where(form[id*="form"]) #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
:where(.form-wrap, form) #list_btn {
    display: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .board_wrapper :where(form[id*="form"]) th {
        margin-bottom: 15px;
    }
    .board_wrapper :where(form[id*="form"]) table.table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}
/* ---------------------------- member ---------------------------- */
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group {
    height: 52px;
}
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group input {
    border: 0;
    padding-left: 0;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .form-group {
    height: 45px;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
    padding: clamp(30px, 4vw, 60px) clamp(20px, 10vw, 60px);
    border-radius: 30px;
    background: #fff;
}
:is(.find_container, .login_container) :is(.member_wrapper) {
    max-width: 500px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) {
        width: 100%;
    }
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
        width: 100%;
        margin: 0 auto;
    }
}
#find_idpw,
.mypage_container,
.join_wrapper,
.login_wrapper {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
}
@media (max-width: 767.98px) {
    #find_idpw,
    .mypage_container,
    .join_wrapper,
    .login_wrapper {
        align-items: flex-start;
        padding-block: calc(var(--navbar-height) / 1.5) calc(var(--navbar-height) * 1.5);
    }
}
#find_idpw,
.login_wrapper {
    height: max(clamp(600px, 70vw, 750px), calc(var(--svh100) - var(--navbar-height)));
}
@media (max-width: 767.98px) {
    #find_idpw,
    .login_wrapper {
        height: auto;
    }
}
#site .member_wrapper {
    max-width: 1140px;
    padding-top: 120px;
    padding-bottom: 200px;
    margin: calc(var(--navbar-height) / 1.5) auto calc(var(--navbar-height) * 1.5);
    background-color: #f7f7f7;
}
#find_idpw #site .member_wrapper,
.login_wrapper #site .member_wrapper {
    max-width: 500px;
    background-color: #fff;
    padding-block: 70px;
    margin-block: 0;
}
.join_wrapper #site .member_wrapper {
    background-color: #fff;
    padding-block: 70px;
}
.mypage_container #site .member_wrapper {
    background-color: #fff;
    padding-block: 70px;
}
#site .member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border: 0;
    margin-bottom: clamp(30px, 5vw, 40px);
    padding-bottom: 0px;
    letter-spacing: -0.03em;
}
#site .member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 15px);
    height: 80px;
    /* max-height: 200px; */
    margin-bottom: 0;
    text-align: center;
    color: #666;
}
#site .member_wrapper .text-center {
    margin-top: 40px;
}
#site .member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
#site .member_wrapper #login_form input {
    padding-left: 5px;
    font-size: 15px;
}
#site .member_wrapper #login_form .form-group {
    overflow: hidden;
    border-radius: 9999px;
}
#site .member_wrapper #login_form .form-group:focus-within label[class*="label-"]::before {
    color: #000;
}
#site .member_wrapper #login_form .form-group label {
    position: relative;
}
#site .member_wrapper #login_form .form-group label[class*="label-"] {
    /* text-indent: -9999px; */
    /* aspect-ratio: 1; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 1 auto;
    padding-inline: 20px 10px;
}
#site .member_wrapper #login_form .form-group label::before {
    /* position: absolute; */
    text-indent: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 22px;
    color: #888;
    /* top: 60%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    line-height: 1;
}
#site .member_wrapper #login_form .form-group label.label-id::before {
    content: "\e7fd";
}
#site .member_wrapper #login_form .form-group label.label-pw::before {
    content: "\e897";
}
#site .member_wrapper #login_form .form-group label.label-email::before {
    content: "\e0e6";
}
@media (max-width: 767.98px) {
    #site .member_wrapper {
        padding: 60px 30px;
    }
    #site .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    #site .member_wrapper #login_form input {
        border: 0;
        /* padding-left: 0; */
        padding-right: 35px;
    }
}
#site .member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}
#site .member_wrapper .join_agree .join_agree_box {
    width: auto;
    height: 250px;
    border: 1px solid var(--page-grey-color);
    padding: 15px;
    overflow-y: scroll;
    line-height: 1.5;
}
#site .member_wrapper .join_agree .join_agree_box + .checkbox {
    margin: 0;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 3vw, 15px);
}
#site .member_wrapper .join_agree .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
#site .member_wrapper .join_agree .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
@media (max-width: 767.98px) {
    /* [ form ] */
    #site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
#site .member_wrapper .form-group {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
#site .member_wrapper .form-group > * {
    width: auto;
    padding: 0;
}
#site .member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
#site .member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
#site .member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px;
    margin-bottom: 7px !important;
}
#site .member_wrapper .form-group:nth-of-type(2) {
    margin-bottom: 0px;
}
#site .member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
#site .member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-400-out);
    font-size: 1.25rem;
    color: #000;
}
#site .member_wrapper .form-group label span.material-symbols-outlinedl:nth-child(1) {
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-3px);
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    /* [ member-login ] */
    #site .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
#site .member_wrapper :is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px;
    width: 100%;
    border-radius: 9999px;
}
#site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
    z-index: 10;
    width: 100%;
    padding-block: 100px 120px;
    background: #f7f7f7;
}
#site .member_wrapper .mypage_container {
    padding-inline: 15px;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    #site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
        margin-top: 0;
        position: relative;
        padding-block: 30px 100px;
        height: auto;
    }
}
#site .member_wrapper :where(#find_idpw, .login_wrapper, .mypage_container) {
    display: flex;
    justify-content: center;
    align-items: center;
    /* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
}
@media (min-width: 992px) {
    /* [min-lager / tablet] 브라우저 높이 700 이하 */
    #site .member_wrapper :where(#find_idpw, .login_wrapper) {
        padding: 0;
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
@media (height <= 700px) {
    #site .member_wrapper :where(#find_idpw, .login_wrapper, .mypage_container) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
#site .member_wrapper .login_extra {
    margin-top: 30px;
}
#site .member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
#site .member_wrapper .login_extra ul li > a {
    font-size: clamp(13px, 3vw, 14px);
}
#site .member_wrapper .login_extra ul li + #site .member_wrapper .login_extra ul li {
    margin-left: 0;
}
#site .member_wrapper .login_extra ul li + #site .member_wrapper .login_extra ul li::before {
    content: none;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    #site .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #site .member_wrapper .login_extra ul li + li::before {
        content: none;
    }
}
@media (max-width: 767.98px) {
    #site .member_wrapper #join_form tr th {
        padding: 0px;
        margin-bottom: 0;
    }
    #site .member_wrapper #join_form tr td {
        display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    #site .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 0px;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0;
    }
    #site .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100%;
    }
}
#site .member_wrapper .table {
    width: 100%;
}
#site .member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
}
#site .member_wrapper .table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* display: grid; */
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 4fr); */
    margin-bottom: -1px;
}
#site .member_wrapper .table tbody tr th {
    font-size: 16px;
    text-align: left;
    width: auto;
}
#site .member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
#site .member_wrapper .table tbody tr td {
    display: flex;
    gap: 10px;
}
#site .member_wrapper .table tbody tbody tr td {
    padding-inline: 15px;
    display: flex;
    gap: 5px;
}
#site .member_wrapper .table tbody tbody tr :where(th, td) {
    display: block;
    font-size: clamp(13px, 3vw, 15px);
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    #site .member_wrapper .table,
    #site .member_wrapper .table :where(tbody, tbody tr) {
        display: block;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper .table tbody tr :where(th, td) {
        display: block;
        width: 100%;
        font-size: clamp(15px, 2vw, 17px);
    }
    #site .member_wrapper .table tbody tr th {
        padding: 10px 30px;
    }
    #site .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #site .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .files input .file_add {
        position: relative;
        right: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .files input .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}
/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    text-align: left;
}
:is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
:is(.privacy_container, .agreement_container) .privacy_body {
    font-size: 1rem;
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 767.98px) {
    :is(.privacy_container, .agreement_container) .member_wrapper {
        padding: 50px 30px;
    }
}
/* [ componets start ]*/
/* 페이지 준비중 */
.maintenance {
    background: #f3f3f3;
    padding: 100px 25px;
    text-align: center;
    border-radius: 20px;
}
.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 74px;
    margin-bottom: 20px;
    color: var(--page-point-color-g);
    font-variation-settings: var(--gms-300-fill), var(--gms-grad-zero);
}
.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    color: #222;
}
.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}
/* 모바일 이미지 확장 스크롤 */
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 575.98px) {
    .scroll-box-xs {
        position: relative;
    }
    .scroll-box-xs:not(.on)::before {
        cursor: pointer;
        box-sizing: content-box;
        content: "\e145";
        font-family: var(--gms);
        font-variation-settings: var(--gms-500-out);
        background-color: var(--page-point-color);
        border: 3px solid #fff;
        border-top: 0;
        border-right: 0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        font-size: 22px;
        aspect-ratio: 0.9803921569;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 100;
        line-height: 0;
    }
    .scroll-box-xs.on {
        position: relative;
        overflow-x: auto;
    }
    .scroll-box-xs.on img {
        max-width: 900px;
        width: auto;
        height: auto;
    }
}
/* tabs(상품 게시판, 일반 탭) */
[role="tabpanel"] [role="tablist"] {
    display: flex;
    margin-bottom: 60px;
}
[role="tabpanel"] [role="presentation"] {
    flex: 1;
}
[role="tabpanel"] [role="presentation"] + [role="tabpanel"] [role="presentation"] {
    margin-left: -1px;
}
[role="tabpanel"] [role="presentation"] [role="tab"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62px;
    font-size: 20px;
    border: 1px solid #ccc;
    color: #666;
}
[role="tabpanel"] [role="presentation"].active [role="tab"] {
    z-index: 10;
    background-color: var(--page-point-color);
    border-color: var(--page-point-color);
    font-weight: 600;
    color: #fff;
}
[role="tabpanel"] .tab-content > :not(.active) {
    display: none;
}
/* -------------------------------------------------------- */
.catalog-wrap {
    display: flex;
    justify-content: center;
    gap: 80px;
}
@media (max-width: 767.98px) {
    .catalog-wrap {
        flex-direction: column;
        max-width: 280px;
        margin-inline: auto;
        gap: 50px;
    }
}
.catalog-wrap .col {
    flex: 0 1 300px;
}
.catalog-wrap img {
    aspect-ratio: 0.7070707071;
    border-radius: 10px;
    border: 1px solid #cecece;
    margin-inline: auto;
}
.catalog-wrap p {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}
.catalog-wrap .btn-down {
    margin-top: 30px;
    height: 50px;
    width: 60%;
    justify-content: space-between;
    padding-inline: 25px 20px;
}
.catalog-wrap .btn-down b {
    font-size: 16px;
}
@media (max-width: 767.98px) {
    .catalog-wrap .btn-down {
        width: 100%;
        margin-top: 20px;
    }
}
