@charset "utf-8";
/* Nesting Css */
/* 폰트 파일 */
/* @import url("/assets/fonts/gmarket/gmarketsans.css"); */
/* @import url("/assets/fonts/pretendard/variable/pretendardvariable.css"); */
/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #035099;
    --page-point-color-light: #146ec3;
    --page-point-color-dark: #023d75;
    --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: #d5d5d5;
    --page-grey-color-hover: #c4c4c4;
    /* swiper */
    --swiper-theme-color: var(--page-point-color) !important;
    /* navbar */
    --navbar-height: clamp(50px, 10vw, 80px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: 64px;
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* board */
    --form-height: 47px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --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);
}
/* 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);
    display: none;
    /* opacity: 0; */
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
    /* FOUC */
}
#site > *:not(#force__wrapper) {
    visibility: hidden;
}
#site.loaded {
    display: block;
    /* opacity: 1; */
}
#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}
#site .hide {
    /* display: none !important; */
    opacity: 1 !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: #000;
}
:is(p, li, dd, small) {
    color: #555;
}
: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, 14px);
    line-height: 1;
    height: var(--form-height);
    padding: 0 1.2em;
    /* border-radius: var(--radius-sm); */
    outline: none;
    white-space: nowrap;
}
.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;
}
.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-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: 1360px) {
    [class*="container"] {
        max-width: 1330px;
    }
}
.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"]) {
    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: 992px) {
    /* // 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: 991.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: 992px) {
    .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: 992px) {
    .modal .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}
@media (min-width: 992px) {
    .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.8em;
}
: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;
}
/* number */
.li-num > li {
    counter-increment: listNum;
    padding-left: 27px;
}
.li-num > li::before {
    content: counter(listNum, decimal-leading-) "";
    position: absolute;
    top: 0.25em;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    width: 18px;
    padding-top: 2px;
    padding-right: 1px;
    line-height: 0;
    color: var(--page-point-color);
    font-size: 11px;
    font-weight: 700;
}
/* check */
.li-check > li {
    position: relative;
    padding-left: 1.3em;
    font-size: 15px;
}
.li-check > li::before {
    content: "\e5ca";
    font-family: var(--gms);
    position: absolute;
    top: 0.1em;
    font-size: 20px;
    line-height: 1;
    left: -0.2em;
    display: block;
    color: var(--page-point-color);
    font-variation-settings: var(--gms-600-out);
}
/* ---------------------------- navbar ---------------------------- */
.brand-desc {
    position: absolute;
    overflow: hidden;
    left: calc((100% - 1470px) / 2);
    bottom: -100px;
    height: 0;
    top: var(--navbar-height);
    transition: 0.3s;
    z-index: 1000;
    text-align: center;
    padding-top: 30px;
    width: 350px;
    font-size: 14px;
}
.brand-desc small {
    color: inherit;
    font-size: 1.2em;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0.7;
}
.brand-desc p {
    color: inherit;
    font-size: 1.4em;
    margin-block: 5px 0px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.7;
}
.brand-desc h4 {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--page-point-color);
}
.TP_L_EN .brand-desc {
    font-size: 12px;
}
.TP_L_EN .brand-desc h4 {
    font-size: 1.5em;
}
.navHover .brand-desc {
    height: var(--drop-height);
}
/* [ navbar-top ] */
.nav-top {
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    /* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
}
@media (min-width: 992px) {
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    .nav-top {
        align-self: center;
        padding: 0;
    }
}
@media (max-width: 991.98px) {
    .nav-top {
        position: absolute;
        top: 0px;
        right: 50px;
        z-index: 100;
    }
}
#site .navbar.navbar-inverse .li-lang {
    display: flex;
    align-items: center;
    margin-right: -5px;
    border-radius: 3px;
    position: relative;
}
#site .navbar.navbar-inverse .li-lang .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 5px 10px 5px 13px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 600;
}
#site .navbar.navbar-inverse .li-lang .dropdown-toggle::after {
    all: unset;
    box-sizing: border-box;
    content: "\e5cf";
    font-family: var(--gms);
    line-height: 1;
    margin-left: 3px;
    font-size: 1.3em;
}
#site .navbar.navbar-inverse .li-lang .dropdown-toggle p {
    display: flex;
    align-items: center;
    gap: 7px;
}
#site .navbar.navbar-inverse .li-lang .dropdown-menu {
    display: none !important;
}
#site .navbar.navbar-inverse .li-lang.open .dropdown-toggle::after {
    content: "\e5ce";
}
#site .navbar.navbar-inverse .li-lang.open .dropdown-menu {
    display: flex !important;
    height: auto !important;
    position: absolute;
    top: 100%;
    flex-direction: column;
    /* gap: 10px; */
    min-width: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 17px;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 991.98px) {
    #site .navbar.navbar-inverse .li-lang.open .dropdown-menu {
        margin-top: 0;
    }
}
#site .navbar.navbar-inverse .li-lang .lang-change-btn {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
    padding: 10px 0;
}
#site .navbar.navbar-inverse .li-lang .lang-change-btn.active + #site .navbar.navbar-inverse .li-lang .lang-change-btn {
    border-top: 0;
}
#site .navbar.navbar-inverse .li-lang .lang-change-btn + #site .navbar.navbar-inverse .li-lang .lang-change-btn {
    border-top: 1px solid #ccc;
}
#site .navbar.navbar-inverse .li-lang button[disabled] {
    /* display: none; */
    pointer-events: none;
    opacity: 0.5;
}
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 2vw, 25px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(15px, 2vw, 19px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(13px, 2vw, 14px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(100px, 15vw, 180px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
    all: unset;
    box-sizing: border-box;
    z-index: 15000;
    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: 40px;
}
/* 로고 */
.navbar .navbar-brand,
.navbar .navbar-brand:is(:hover, :focus) {
    display: block;
    width: var(--navbar-logo-width);
    margin-left: 0;
}
.navbar .navbar-brand img {
    width: var(--navbar-logo-width);
    /* 텍스트 로고 */
}
.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;
}
@media (min-width: 992px) {
    .navbar .navbar-right > li > a::after {
        width: 0;
        transition: all 0.4s ease;
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        height: 3px;
        background: var(--page-point-color);
    }
}
.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); */
}
@media (min-width: 992px) {
    .navbar :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a)::after {
        width: 100%;
    }
}
/* 서브 드롭다운메뉴 */
.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: 400;
    color: #333;
    width: 100%;
}
.navbar :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: var(--page-point-color);
    text-decoration: underline;
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 992px) {
    /* wide */
    .navbar > .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, auto);
        /* max-width: 100%; */
        /* padding-inline: 50px ; */
        /* 메인메뉴 */
    }
    .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: 100%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        border-radius: 6px;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
        margin-top: 0px;
        padding: 25px;
        min-width: 200px;
        gap: 15px;
        opacity: 0;
        transform-origin: center top;
        text-align: center;
    }
    .navbar .navbar-right > li .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 0 0 2px;
        letter-spacing: -0.04em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }
    .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  ] */
    }
    .navbar:is(.navTop) {
        /* --navbar-height: 80px; */
        --navbar-scroll-filter: brightness(1.3);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 400;
        --navbar-scroll-background-color: transparent;
        /* --navbar-logo-width: 170px; */
        background-color: var(--navbar-scroll-background-color);
        border-color: rgba(255, 255, 255, 0.15);
    }
    .navbar:not(.navScroll) {
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:is(:hover, .navScroll) {
        /* --navbar-height: 100px; */
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #111;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 500;
        --navbar-scroll-background-color: rgba(235, 249, 255, 0.95);
        /* --navbar-logo-width: 150px; */
        border-color: rgba(0, 0, 0, 0.07);
    }
    .navbar:is(:hover, .navScroll) .li-lang .dropdown-toggle {
        border: 1px solid #e0e0e0 !important;
    }
    .navbar:where(.navTop, .navScroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:where(.navTop, .navScroll) .navbar-brand img {
        transition: width 0.25s;
        filter: var(--navbar-scroll-filter);
    }
    .navbar:where(.navTop, .navScroll) .navbar-brand span {
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.navTop, .navScroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.navTop, .navScroll) ul.navbar-right > li > a:is(:hover, :focus) {
        color: var(--navbar-scroll-color-hover) !important;
    }
    .navbar:where(.navTop, .navScroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover) !important;
    }
    .navbar:where(.navTop, .navScroll) .nav-top .li-lang .dropdown-toggle span,
    .navbar:where(.navTop, .navScroll) .nav-top .li-lang .dropdown-toggle::after {
        color: var(--navbar-scroll-color) !important;
    }
    #site .navbar.navAllDrop {
        /* 드롭다운 (JS에서 읽음) */
        --drop-nav-item-width: 190px;
        --drop-height: 240px;
        --drop-gap: 12px;
        --drop-blur: 10px;
        --drop-transition-speed: 0.3s;
        --drop-bg-color: rgba(235, 249, 255, 0.95);
        --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 .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 {
        position: static;
        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 {
        transition: 0.3s ease !important;
        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: 1;
        display: block;
        width: 100%;
        height: 0px;
        /* 메인메뉴 */
    }
    #site .navbar.navAllDrop .navbar-header {
        display: flex;
        align-items: center;
    }
    #site .navbar.navAllDrop .navbar-collapse {
        display: block !important;
        height: var(--navbar-height);
        /* 드롭다운 높이 */
    }
    #site .navbar.navAllDrop .navbar-right {
        display: flex;
    }
    #site .navbar.navAllDrop .navbar-right > li {
        transition: 0.5s;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: var(--drop-nav-item-width);
    }
    #site .navbar.navAllDrop .navbar-right > li > a {
        position: relative;
        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:is(#site .navbar.navAllDrop .navbar-right > li:not(#gnbauth):last-child, #site .navbar.navAllDrop .navbar-right > li#gnbauth) {
        /* margin-right: calc(var(--navbar-menu-padding-inline) * -1); */
        /* 데스크탑 서브 드롭다운메뉴 */
    }
    #site .navbar.navAllDrop .navbar-right > li .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;
    }
    #site .navbar.navAllDrop .navbar-right > li .dropdown-menu > li:first-child {
        margin-top: calc(var(--drop-gap) + 10px);
    }
    #site .navbar.navAllDrop .navbar-right > li .dropdown-menu > li + li {
        all: unset;
        display: block;
        /* margin-top: 27px; */
        height: auto;
        padding-block: 0;
    }
    #site .navbar.navAllDrop .navbar-right > li .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 0 0 2px;
        letter-spacing: -0.04em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }
    #site .navbar.navAllDrop .navbar-right > li .dropdown-menu a br {
        /* display: none; */
    }
    #site .navbar.navAllDrop:hover {
        /* --drop-nav-item-width: 200px; */
        /* hover 시 배경 활성화 */
    }
    #site .navbar.navAllDrop:hover > .container::after {
        opacity: 1;
        height: var(--drop-height);
    }
    #site .navbar.navAllDrop:hover .dropdown-menu {
        height: var(--drop-height) !important;
    }
}
/* [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;
    }
    .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: 55px;
        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: #0f1c2b;
    /* background-color: #fff; */
    /* background-color: rgb(235 249 255 / 95%); */
    color: #fff;
}
footer img {
    /* opacity: 0.95; */
    /* filter: grayscale(1) invert(1); */
}
footer li {
    font-size: clamp(13px, 2vw, 14px);
    color: #959595;
}
footer li.corp {
    /* margin-bottom: 18px; */
}
footer li.corp strong {
    color: #eee;
    font-weight: 500;
    /* font-size: 16px; */
}
footer li.copyright {
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}
footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 0 10px;
}
footer .footer-logo {
    flex-shrink: 0;
    width: 180px;
    filter: brightness(1.2);
}
footer .footer-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px 0;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 991.98px) {
    footer .footer-wrap {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
/* 로그인 버튼 */
#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: 992px) {
    #loginBtn {
        margin-left: auto;
        align-self: flex-end;
    }
}
/* 스크롤버튼 */
#scrollTop {
    --width: 40px;
    --bottom: 25px;
    all: unset;
    box-sizing: border-box;
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    right: 25px;
    bottom: var(--bottom);
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--width);
    padding: 0;
    background: var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    text-align: center;
    color: #fff;
}
#scrollTop::before {
    content: "\e5d8";
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 1.75rem;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 991.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ---------------------------- subpage ---------------------------- */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top001.jpg);
    position: relative;
    /* height: 550px; */
    height: 350px;
}
@media (max-width: 991.98px) {
    .subpage-header {
        height: 180px;
    }
}
.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 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* padding-bottom: 180px; */
}
.subpage-header .subpage-title h2 {
    line-height: 1;
    margin-top: 100px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: clamp(36px, 3vw, 60px);
}
@media (max-width: 991.98px) {
    .subpage-header .subpage-title h2 {
        margin-top: 0;
    }
}
.subpage-header .subpage-title h2 small {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(12px, 2vw, 16px);
    font-weight: bold;
    display: block;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    opacity: 0.8;
    line-height: 1.25;
    text-indent: 0.1em;
    text-transform: uppercase;
}
#site.TP_L_EN .subpage-title small {
    display: none;
}
.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 {
    z-index: 1000;
    flex-shrink: 0;
    margin-left: auto;
    /* border-bottom: 1px solid #ddd; */
    background-color: rgba(235, 249, 255, 0.8);
}
@media (max-width: 991.98px) {
    .snb {
        display: none;
    }
}
.snb .snb-dropdown {
    display: flex;
}
.snb .snb-dropdown .toggle {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 300px;
    border-right: 1px solid #ddd;
    align-items: center;
}
.snb .snb-dropdown .toggle::after {
    content: "expand_more" !important;
    font-family: var(--gms) !important;
    font-variation-settings: var(--gms-400-out) !important;
    aspect-ratio: 1;
    flex-shrink: 1;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #888;
    font-size: 17px;
    font-variation-settings: var(--gms-100-out), var(--gms-grad-zero);
    /* padding-top: 2px; */
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.snb .snb-dropdown .toggle.open::after {
    rotate: 180deg;
}
.snb .snb-dropdown > li {
    position: relative;
}
.snb .snb-dropdown > li > :is(a, button.toggle) {
    font-size: 16px;
    color: #333;
    padding-inline: 25px 20px;
    height: var(--snb-height);
    justify-content: space-between;
    /* background: #fff; */
    z-index: 1001;
    position: relative;
    font-weight: 400;
    gap: 20px;
    align-items: center;
}
.snb .snb-dropdown > li > :is(a, button.toggle) br {
    display: none;
}
.snb .snb-dropdown > li.home > a {
    display: flex;
    aspect-ratio: 1;
    justify-content: center;
    align-items: center;
    background-color: #004c93;
    padding-inline: 0;
    color: #fff;
}
.snb .snb-dropdown > li.home > a::before {
    content: "home";
    display: block;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-fill);
    transform: translate(0px, 1px);
    margin-inline: -2px;
    font-size: 22px;
    line-height: 1;
    color: #fff;
}
.snb .snb-dropdown > li.home span.text {
    display: none;
}
.snb .snb-dropdown .dropdown {
    box-sizing: border-box;
    z-index: 1000;
    position: absolute;
    top: 100%;
    left: -1px;
    right: 0px;
    display: none;
    flex-direction: column;
    /* gap: 10px; */
    /* padding: 20px; */
    background-color: #fff;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #ddd;
}
.snb .snb-dropdown .dropdown li + li {
    border-top: 1px solid #eee;
}
.snb .snb-dropdown  .toggle.open + .dropdown {
    display: flex;
}
.snb .snb-dropdown .dropdown a {
    display: block;
    font-size: 15px;
    color: #555;
    padding: 12px 25px;
}
.snb .snb-dropdown .dropdown a br {
    display: none;
}
.active .snb .snb-dropdown .dropdown a {
    color: var(--page-point-color);
    font-weight: 600;
    /* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
}
@media (width <= 575.98px) {
    .snb .snb-dropdown {
        scale: 0.9;
        transform-origin: left;
    }
}
/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
[class*="title-h"] {
    --h-line-height: 1.5;
    --h-letter-spacing: -0.02em;
    --p-font-weight: 400;
    --p-color: #333;
    --p-line-height: 1.6;
}
[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.025em;
    /* 본문+본문 간격 */
}
[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, 44px);
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: clamp(16px, 2vw, 18px);
    --text-between: 10px;
    margin-bottom: 90px;
    text-align: center;
}
.title-h3:has(p) {
    /* padding-bottom: 20px; */
}
.title-h3 + .title-h4 {
    margin-top: 0;
}
.title-h3 h3 {
    line-height: 1.1;
}
.title-h3 h3 span br {
    display: none;
}
.title-h3 h3 small {
    display: inline-block;
    font-weight: 700;
    padding-bottom: 20px;
    font-size: clamp(18px, 2vw, 24px);
    color: #333;
    letter-spacing: 0;
}
.title-h3 h3 + p {
    margin-top: clamp(60px, 5vw, 80px);
}
.title-h3 h3::after,
.title-h3 h3::before {
    position: absolute;
    content: "";
    width: 8px;
    aspect-ratio: 1;
    bottom: -30px;
    border-radius: 50%;
    transform: translate(-50%, 0);
}
.title-h3 h3::before {
    background: #e33037;
    left: 50%;
    box-shadow: 12px 0px 0 0 #c5c5c5;
}
.title-h3 h3::after {
    background: #145693;
    left: calc(50% - 12px);
}
.title-h3 p + p {
    margin-top: 5px;
}
/* h3 end */
/* h4 start */
[id^="ct"] .title-h4:first-child {
    margin-top: 0;
}
.title-h4 {
    --h-font-size: clamp(22px, 3vw, 28px);
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: 15px;
    --text-between: 15px;
    margin-block: clamp(70px, 5vw, 100px) 25px;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 30px;
}
.title-h4::before {
    position: absolute;
    content: "";
    left: 0;
    top: 11px;
    width: 10px;
    border: 5px solid var(--page-point-color-light);
    aspect-ratio: 1;
    background: #fff;
    border-radius: 50%;
}
@media (max-width: 991.98px) {
    .title-h4::before {
        top: 8px;
    }
}
.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: clamp(18px, 3vw, 22px);
    --h-font-weight: 700;
    --h-color: var();
    --h-color: var(-a);
    --h-color: var(-);
    --h-color: var(--page-point-color);
    margin-bottom: 20px;
}
.title-h5 + .title-h5 {
    margin-top: 40px;
}
.title-h5:has(p, ul) {
    margin-bottom: 15px;
}
/* h5 end */
/* [ subpage-content ] */
.subpage-content section {
    padding: 100px 0 180px;
    min-height: 300px;
}
@media (max-width: 991.98px) {
    .subpage-content section {
        padding: 70px 0 100px;
    }
}
/* greet */
.greet-wrap {
    /* display: flex; */
    gap: 100px;
    width: 100%;
    margin-inline: auto;
}
.greet-wrap .img-box {
    width: 100%;
    overflow: hidden;
    /* max-width: 500px; */
    height: 500px;
    border-radius: var(--radius-md);
}
@media (max-width: 991.98px) {
    .greet-wrap .img-box {
        height: 200px;
    }
}
.greet-wrap .img-box img {
    width: 100%;
    object-fit: cover;
    object-position: left;
    background: #ccc;
}
.greet-wrap .info {
    padding: 85px 60px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
@media (max-width: 991.98px) {
    .greet-wrap .info {
        padding: 30px 15px 0;
        flex-direction: column;
        gap: 0;
    }
}
.greet-wrap .info .text {
    flex: 1;
}
.greet-wrap .info > span {
    display: block;
    color: var(--page-point-color);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 20px;
}
.greet-wrap .info h5 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 65px;
    line-height: 1.5;
    color: var(--page-point-color);
    flex: 1;
    letter-spacing: -0.015em;
}
@media (max-width: 991.98px) {
    .greet-wrap .info h5 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}
.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(15px, 2vw, 17px);
    margin-bottom: 30px;
    line-height: 1.7;
    letter-spacing: -0.025em;
    color: #333;
}
.greet-wrap .info p.name {
    text-align: right;
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
    margin-top: 50px;
}
.greet-wrap .info p.name strong {
    color: #333;
    font-weight: 700;
    letter-spacing: 0px;
    margin-left: 15px;
    font-size: clamp(18px, 3vw, 20px);
}
/* 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;
}
@media (max-width: 991.98px) {
    .partner-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .partner-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.partner-wrap .col {
    flex: 0 1 24%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    border: 1px solid #e3e3e3;
    border-radius: var(--radius-sm);
}
@media (max-width: 991.98px) {
    .partner-wrap .col {
        height: 100px;
    }
}
.partner-wrap .col img {
    height: 48px;
    max-width: 195px;
    object-fit: contain;
}
@media (max-width: 991.98px) {
    .partner-wrap .col img {
        height: 30px;
    }
}
@media (max-width: 767.98px) {
    .partner-wrap .col img {
        height: auto;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.partner-wrap .col:hover {
    /* border-color: var(--page-point-color); */
}
.history-wrap {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
    width: fit-content;
    margin-inline: auto;
    width: 100%;
}
.history-wrap .img-box {
    /* aspect-ratio: 200/50; */
    background-color: #ccc;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .history-wrap .img-box {
        height: 200px;
    }
}
.history-wrap .inner {
    padding-top: 100px;
    position: relative;
    width: fit-content;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
@media (max-width: 991.98px) {
    .history-wrap .inner {
        padding-top: 50px;
        gap: 50px;
    }
}
@media (min-width: 992px) {
    .history-wrap .inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 200px;
        width: 1px;
        height: 100%;
        background: #e3e3e3;
    }
}
.history-wrap .history {
    display: grid;
    gap: 120px;
    align-items: flex-start;
    grid-template-columns: 189px 1fr;
}
@media (max-width: 991.98px) {
    .history-wrap .history {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
.history p {
    color: var(--page-point-color);
    font-size: clamp(32px, 3vw, 45px);
    font-weight: 700;
    line-height: 1.15;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.025em;
}
@media (min-width: 992px) {
    .history p::before {
        content: "";
        position: absolute;
        right: -17px;
        top: 19px;
        width: 5px;
        aspect-ratio: 1;
        border: 3px solid #0b68bf;
        background: #fff;
        z-index: 2;
        border-radius: 50%;
        box-shadow: 0 0 0 5px rgba(89, 173, 251, 0.51);
    }
}
.history p::after {
    /* content: ""; */
    position: absolute;
    right: -13px;
    top: 5px;
    width: 24px;
    aspect-ratio: 1;
    background: #ff641290;
    z-index: 1;
    border-radius: 50%;
}
.history ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 13px;
}
.history ul li {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    display: flex;
    gap: 20px;
    letter-spacing: -0.015em;
    line-height: 1.4;
}
.history ul li b {
    display: inline-block;
    width: 100px;
    color: #333;
    flex-shrink: 0;
}
.TP_L_EN .history ul li b {
    width: 180px;
}
/* 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: 70px;
}
.tech-wrap .col + .tech-wrap .col {
    margin-top: 100px;
}
.tech-wrap .col:nth-child(even) {
    flex-direction: row-reverse;
}
.tech-wrap .col .img-box {
    aspect-ratio: 1;
    max-width: 400px;
    width: 100%;
    background-color: #f7f7f7;
}
.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: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.tech-wrap .col .info dd {
    font-size: 18px;
    margin-bottom: 10px;
}
/* certification */
/* <div class="cert-wrap"><figure class="col"><div class="img-box"><img src="/public/img/sub/ab04-01-01.jpg" alt="인증서2-1" class="img-responsive" /></div></figure></div> */
.cert-wrap {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 991.98px) {
    .cert-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .cert-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 15px;
    }
}
.cert-wrap figure {
    /* padding: 10px; */
    /* max-width: 300px; */
    /* border: 1px solid #ccc; */
}
.cert-wrap figure .img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.8076923077;
    background: #f6f6f6;
    padding: 45px;
}
@media (max-width: 991.98px) {
    .cert-wrap figure .img-box {
        padding: 20px;
    }
}
.cert-wrap figure img {
    /* scale: 1.04; */
    box-shadow: 3px 8px 20px rgba(0, 0, 0, 0.1);
}
.cert-wrap figure figcaption {
    font-size: 15px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.025em;
}
/* map */
.map-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
@media (max-width: 991.98px) {
    .map-wrap {
        display: flex;
        flex-direction: column;
    }
}
.map-wrap .img-box {
    grid-column: span 2;
    grid-row: 1;
}
@media (max-width: 991.98px) {
    .map-wrap .img-box {
        aspect-ratio: 1.6666666667;
    }
}
@media (max-width: 991.98px) {
    .map-wrap .map iframe {
        aspect-ratio: 1.6666666667;
        height: 100%;
    }
}
.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.map-wrap iframe {
    width: 100%;
    height: clamp(300px, 25vw, 450px);
}
.map-wrap .info {
    padding: 50px;
}
.map-wrap .map-info {
    /* margin: 30px; */
    border-top: 2px solid #333;
    /* border-bottom: 1px solid #e5e5e5; */
    grid-column: span 1;
    /* padding: 30px; */
    /* background-color: #f7f7f7; */
    /* padding: 50px 30px; */
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 991.98px) {
    .map-wrap .map-info {
        padding: 20px;
        text-align: center;
    }
}
.map-wrap .map-info li {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 18px 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    align-items: center;
}
@media (max-width: 991.98px) {
    /* border-bottom: 1px solid #e5e5e5; */
    .map-wrap .map-info li {
        padding: 10px 20px;
        display: flex;
        gap: 5px;
        flex-direction: column;
    }
}
.map-wrap .map-info li:nth-child(1) span::before {
    content: "\e0c8";
    /* location_on - 주소 아이콘 */
}
.map-wrap .map-info li:nth-child(2) span::before {
    content: "\e0b0";
    /* phone - 전화 아이콘 */
}
.map-wrap .map-info li:nth-child(3) span::before {
    content: "print";
    /* print - 팩스 아이콘 */
}
.map-wrap .map-info li:nth-child(4) span::before {
    content: "\e158";
    /* email - 이메일 아이콘 */
}
.map-wrap .map-info li:nth-child(5) span::before {
    content: "\e158";
    /* email - 이메일 아이콘 */
}
.map-wrap .map-info li span {
    display: block;
    position: relative;
    padding-left: 40px;
    font-weight: 700;
    color: #222;
}
.map-wrap .map-info li span small {
    font-weight: 400;
    display: block;
}
@media (max-width: 991.98px) {
    .map-wrap .map-info li span small {
        display: inline;
    }
}
.map-wrap .map-info li span::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-family: "material symbols outlined";
    color: var(--page-point-color-light);
    font-size: 25px;
    font-weight: 400;
}
.prod-wrap .text .inner {
    padding: 70px 70px 50px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
}
@media (max-width: 991.98px) {
    .prod-wrap .text .inner {
        padding: 30px;
    }
}
.prod-wrap .text p {
    font-size: clamp(15px, 2vw, 16px);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}
.prod-wrap .text p b {
    color: var(--page-point-color);
    font-size: clamp(18px, 3vw, 22px);
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 6px;
    font-weight: 600;
}
.prod-wrap .spec .box {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 8fr);
    gap: 50px;
    align-items: center;
    padding: 50px 50px;
    /* border: 1px solid #ddd; */
    background: #f6f6f6;
    border-radius: var(--radius-md);
}
@media (max-width: 991.98px) {
    .prod-wrap .spec .box {
        display: flex;
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
}
.prod-wrap .spec .box .title-h5 {
    margin-top: 0;
}
.prod-wrap .spec .box + .box {
    margin-top: 70px;
}
.prod-wrap .spec .box .table-item {
    /* position: sticky; */
    /* top: 300px; */
    width: 100%;
}
.prod-wrap .spec .box .img-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-md);
}
.prod-wrap .spec .box .img-item .prod-swiper {
    width: 100%;
    position: relative;
}
.prod-wrap .spec .box .img-item .prod-swiper .swiper-slide:has(.inner) {
    display: flex;
    align-self: center;
}
.prod-wrap .spec .box .img-item .prod-swiper .swiper-slide:has(.inner) .inner {
    /* align-self: center; */
    /* margin: auto; */
    padding-inline: 20px;
}
.prod-wrap .spec .box .img-item .swiper {
    width: 100%;
    /* overflow: visible; */
}
.prod-wrap .spec .box .img-item .swiper-pagination {
    bottom: -20px;
}
.prod-wrap .spec .box .img-item .swiper-button-next,
.prod-wrap .spec .box .img-item .swiper-button-prev {
    font-size: var(--swiper-navigation-size) !important;
    color: #aaa;
    --swiper-navigation-size: 18px;
    /* background-color: #fff; */
    /* padding: 10px; */
    border-radius: 10px;
    /* width: 22px; */
    /* height: 30px; */
}
.prod-wrap .spec .box .img-item .swiper-button-prev {
    left: -10px;
    /* display: block; */
    /* position: absolute; */
}
.prod-wrap .spec .box .img-item .swiper-button-next {
    right: -10px;
}
.prod-wrap .spec .box .img-item .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 7px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 7px));
}
.prod-wrap .spec .box .img-item .swiper-pagination-bullet-active {
    --swiper-theme-color: #222;
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.prod-wrap .spec .box .img-item .inner {
    display: flex;
    text-align: center;
    width: 100%;
    /* background: #fff; */
}
.prod-wrap .spec .box .img-item .inner > div {
    flex: 1;
    background: #fff;
    /* padding-bottom: 20px; */
}
.prod-wrap .spec .box .img-item .inner img {
    /* aspect-ratio: 1; */
}
.prod-wrap .spec .box .img-item .inner p {
    font-size: 18px;
    font-weight: 600;
    /* background: #f3f3f3; */
    color: #1c1c1c;
    padding: 9px 0;
}
.prod-wrap.overview .spec {
    background-color: #f7f7f7;
    padding: 60px;
    border-radius: 12px;
}
.prod-wrap.overview .spec + .spec {
    margin-top: 70px;
}
@media (max-width: 991.98px) {
    .prod-wrap.overview .spec {
        padding: 30px;
    }
}
.prod-wrap.overview .box {
    padding: 0;
    /* background-color: #fff; */
    align-items: flex-start;
    gap: 70px;
}
@media (max-width: 991.98px) {
    .prod-wrap.overview .box {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
.prod-wrap.overview .box .title-h3 {
    text-align: left;
    margin-bottom: 35px;
    padding-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
}
.prod-wrap.overview .box .title-h3 h3 {
    font-size: clamp(25px, 3vw, 34px);
}
.prod-wrap.overview .box .title-h3 h3::after,
.prod-wrap.overview .box .title-h3 h3::before {
    content: none;
}
.prod-wrap.overview .box .title-h3 h3 small {
    padding-bottom: 0;
}
.prod-wrap.overview .box .title-h4 {
    margin-top: 0;
    scale: 0.9;
    transform-origin: left bottom;
}
.prod-wrap.overview .box a {
    width: 240px;
    padding-inline: 20px 15px;
    justify-content: space-between;
    height: clamp(50px, 5vw, 60px);
    margin-top: 20px;
}
.prod-wrap.overview .box a span {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 700;
}
.prod-wrap.overview .box a::after {
    content: "keyboard_arrow_right";
    font-family: var(--gms);
    font-size: 28px;
}
.prod-wrap.overview .text .inner {
    padding: 0;
    border: 0;
}
/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
.m-box-wrap {
    display: none;
}
#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) - var(--navbar-height))); */
    /* 뷰포트가 작을 때 (최소 높이) */
}
@media (max-width: 991.98px) {
    /* 중간 크기일 때 (중간 높이) */
    #mainCarouselSwiper .swiper .swiper-slide {
        height: 650px;
    }
}
@media (min-width: 992px) {
    #mainCarouselSwiper .swiper .swiper-slide {
        height: calc(var(--svh100));
    }
}
@media (min-width: 992px) and (max-height: 900px) {
    #mainCarouselSwiper .swiper .swiper-slide {
        height: 900px;
    }
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
}
#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;
    text-align: center;
    color: #fff;
    margin-bottom: 240px;
}
@media (max-width: 991.98px) {
    #mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
        margin-bottom: 320px;
    }
}
#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;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 25px 0 0;
    color: inherit;
    text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.6);
    /* animation: m-vc 13s 0.5s ease-in forwards; */
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption h1 i {
    font-size: clamp(20px, 3vw, 28px);
    font-style: unset;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption h1 span {
    font-size: clamp(1.3em, 3vw, 2.22em);
    margin-top: clamp(20px, 5vw, 35px);
    display: block;
    font-weight: 750;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption h1 b {
    font-size: 1.15em;
    color: #fff;
    font-weight: 750;
    display: block;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption p {
    margin-top: 25px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: inherit;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption i[lang="en"] {
    font-size: 32px;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption i[lang="en"] span {
    font-size: 1.525em;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption i[lang="en"] b {
    font-size: 1.0325em;
}
#mainCarouselSwiper .m-box-wrap {
    position: absolute;
    width: 100%;
    bottom: 160px;
    left: 0;
    right: 0;
    display: block;
}
@media (max-width: 991.98px) {
    #mainCarouselSwiper .m-box-wrap {
        bottom: 100px;
    }
    #mainCarouselSwiper .m-box-wrap .m-box {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}
#mainCarouselSwiper .m-box {
    position: relative;
    z-index: 1000;
    max-width: 1000px;
    margin-inline: auto;
    /* display: grid; */
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); */
    display: flex;
    gap: 20px;
    /* padding: 25px 20px; */
    /* width: 100%; */
}
#mainCarouselSwiper .m-box .item {
    flex: 1;
    padding: clamp(10px, 1.7vw, 32px);
    color: #fff;
    font-size: clamp(12px, 2vw, 20px);
    font-weight: 600;
    border-radius: var(--radius-lg);
    line-height: 1.4;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    place-content: space-between;
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* background: rgb(7 30 57 / 70%);
   background: rgb(20 117 232 / 60%); */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    box-shadow: 3px 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    aspect-ratio: 1;
    max-width: 235px;
}
@media (max-width: 991.98px) {
    #mainCarouselSwiper .m-box .item {
        aspect-ratio: unset;
        padding: 20px;
        border-width: 1px;
        height: 120px;
        border-radius: 10px;
        aspect-ratio: unset;
        max-width: unset;
    }
    #mainCarouselSwiper .m-box .item span.text {
        font-size: 18px;
    }
}
#mainCarouselSwiper .m-box .item img {
    margin-top: auto;
    display: none;
}
#mainCarouselSwiper .m-box .item span.material-symbols-outlined {
    margin-top: auto;
    font-size: clamp(42px, 5vw, 68px);
    font-variation-settings: var(--gms-200-out), var(--gms-grad-zero);
    color: #339cff;
    margin-right: -6px;
    margin-bottom: -2px;
    margin-left: auto;
}
@media (min-width: 992px) {
    #mainCarouselSwiper .m-box .item:hover {
        background-color: #fff;
    }
    #mainCarouselSwiper .m-box .item:hover .text {
        color: #000;
    }
}
.main-video .video-caption h1 {
    position: relative;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 25px 0 0;
    color: inherit;
    text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.6);
    /* animation: m-vc 13s 0.5s ease-in forwards; */
}
.main-video .video-caption h1 span {
    font-size: 2.22em;
    margin-top: 35px;
    display: block;
    font-weight: 750;
}
.main-video .video-caption h1 b {
    font-size: 1.15em;
    color: #fff;
    font-weight: 750;
    display: block;
}
/* 이미지 arrow ver */
#mainCarouselSwiper [class*="swiper-button"] {
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    width: 10%;
    height: 100%;
}
@media (max-width: 991.98px) {
    #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
}
#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: 64px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    width: 40px;
    aspect-ratio: 0.5333333333;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
}
#mainCarouselSwiper [class*="swiper-button"]:hover::before {
    color: white;
    opacity: 1;
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-next {
    right: 0;
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-next::before {
    content: "";
    background-image: url(/public/img/icons/SVG/arrow/arrow@25.04/arrow_next.svg);
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-prev::before {
    content: "";
    background-image: url(/public/img/icons/SVG/arrow/arrow@25.04/arrow_prev.svg);
}
#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
}
@media (max-width: 991.98px) {
    #mainCarouselSwiper .swiper-pagination-container {
        bottom: 45px;
    }
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 1;
    gap: 15px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
    background-color: #fff;
    width: 8px;
    height: 8px;
    opacity: 0.5;
    border-radius: 50px;
    margin: 0 7px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    width: 50px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
    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;
}
/* [ mainpage ] */
.mainpage :is(.bg) {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    filter: brightness(0.8);
}
.mainpage section {
    position: relative;
    padding-block: 130px 150px;
}
.m-title-h3 {
    margin-bottom: 70px;
    text-align: center;
}
.m-title-h3 h3 {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
}
.m-title-h3 p {
    font-size: 20px;
    margin-top: 10px;
}
.m-title-h3:has(a) {
    display: flex;
    justify-content: space-between;
}
.m-title-h3:has(a) a {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
}
#site .main-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: max(clamp(600px, 70vw, 750px), calc(var(--svh100)));
}
@media (max-width: 991.98px) {
    .main-video {
        aspect-ratio: 1;
        height: auto;
    }
}
.main-video video {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #000;
    filter: brightness(0.8);
}
.main-video .video-caption {
    text-align: center;
    color: #fff;
}
.main-video .video-caption h1 {
    position: relative;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 25px 0 0;
    color: inherit;
    text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.6);
    /* animation: m-vc 13s 0.5s ease-in forwards; */
}
.main-video .video-caption h1 span {
    font-size: 2.22em;
    margin-top: 35px;
    display: block;
    font-weight: 750;
}
.main-video .video-caption h1 b {
    font-size: 1.15em;
    color: #fff;
    font-weight: 750;
    display: block;
}
.TP_L_EN .main-video .video-caption h1 {
    font-size: 32px;
}
.TP_L_EN .main-video .video-caption h1 span {
    font-size: 1.525em;
}
.TP_L_EN .main-video .video-caption h1 b {
    font-size: 1.0325em;
}
@keyframes m-vc {
    0% {
        opacity: 1;
        filter: blur(0px);
    }
    60% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        opacity: 0;
        filter: blur(5px);
    }
}
#site .main-product {
    position: relative;
    height: calc(100vh - var(--navbar-height));
    overflow: hidden;
    padding: 0;
}
#site .main-product .m-product-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* pointer-events: none; */
}
#site .main-product .m-product-wrap .swiper-wrapper {
    height: 100%;
}
#site .main-product .m-product-wrap .swiper-slide {
    height: auto;
}
#site .main-product .m-product-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
    /* scale: 1.02; */
}
#site .main-product .m-product-cap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#site .main-product .m-product-cap .container {
    position: relative;
    z-index: 5000;
    /* overflow: hidden; */
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 80px;
}
#site .main-product .m-product-cap .container .box {
    position: relative;
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    padding: 25px 20px;
}
#site .main-product .m-product-cap .container .box .item {
    padding: clamp(10px, 1.7vw, 32px);
    color: #fff;
    font-size: clamp(12px, 2vw, 20px);
    font-weight: 600;
    border-radius: var(--radius-lg);
    line-height: 1.4;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    place-content: space-between;
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* background: rgb(7 30 57 / 70%);
   background: rgb(20 117 232 / 60%); */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    box-shadow: 3px 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}
#site .main-product .m-product-cap .container .box .item img {
    margin-top: auto;
    display: none;
}
#site .main-product .m-product-cap .container .box .item span.material-symbols-outlined {
    margin-top: auto;
    font-size: 68px;
    font-variation-settings: var(--gms-200-out), var(--gms-grad-zero);
    color: #339cff;
    margin-right: -6px;
    margin-bottom: -2px;
    margin-left: auto;
}
#site .main-product .m-product-cap .container .box .item:hover {
    background-color: #fff;
}
#site .main-product .m-product-cap .container .box .item:hover .text {
    color: #000;
}
#site .main-product .m-product-cap .container h2,
#site .main-product .m-product-cap .container p {
    color: #fff;
    user-select: none;
}
#site .main-product .m-product-cap .container h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.015em;
    text-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
}
#site .main-product .m-product-cap .container h2 small {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    text-indent: 0.05em;
}
#site .main-product .m-product-cap .container p {
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: -0.015em;
    padding-right: 55px;
    /* font-weight: 300; */
}
#site .main-product .m-product-cap .container p br {
    display: none;
}
#site .main-product .m-product-cap .container p[lang="en-US"] {
    font-size: 17px;
    line-height: 1.9;
}
#site .main-product .m-product-cap .container .swiper-slide {
    opacity: 0 !important;
}
#site .main-product .m-product-cap .container .swiper-slide-active {
    opacity: 1 !important;
}
#site .main-product .m-product-cap .container .swiper {
    width: 100%;
    overflow: visible;
    padding-block: 75px;
}
#site .main-product .m-product-cap .container .swiper-wrapper {
    height: 319px;
}
#site .main-product .m-product-cap .container .swiper-pagination {
    position: static;
    display: flex;
    justify-content: flex-start;
    transform: none;
}
#site .main-product .m-product-cap .container .swiper-pagination span {
    background-color: #fff;
    width: 8px;
    height: 8px;
    opacity: 0.5;
    border-radius: 50px;
    margin: 0 7px;
}
#site .main-product .m-product-cap .container .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    width: 50px;
}
#site .main-contact {
    background: url("/public/img/main/main-contact-bg.jpg") no-repeat center / cover;
    padding-block: 100px 100px;
    background: #f7f7f7;
}
#site .main-contact .m-contact-wrap {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 20px;
}
@media (max-width: 991.98px) {
    #site .main-contact .m-contact-wrap {
        display: flex;
        flex-direction: column;
    }
}
#site .main-contact .m-contact-wrap .col {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 40px;
    box-shadow: 5px 10px 18px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
    #site .main-contact .m-contact-wrap .col {
        padding: 25px;
    }
}
#site .main-contact .m-contact-wrap .col.partner {
    display: flex;
    flex-direction: column;
}
#site .main-contact .m-contact-wrap .col .more {
    width: 30px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #222; */
    margin-left: 20px;
}
#site .main-contact .m-contact-wrap .col.support {
    display: flex;
    flex-direction: column;
    background: #00438b;
}
#site .main-contact .m-contact-wrap .col.support * {
    color: #fff;
}
#site .main-contact .m-contact-wrap .col.support .inner {
    display: flex;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
#site .main-contact .m-contact-wrap .col.support .inner .item {
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 12px 0;
    padding-left: 15px;
    display: flex;
    font-size: clamp(13px, 2vw, 15px);
    align-items: center;
    border-radius: var(--radius-md);
    position: relative;
    gap: 16px;
    font-weight: 300;
}
#site .main-contact .m-contact-wrap .col.support .inner .item span.material-symbols-outlined {
    font-size: 18px;
    width: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    /* box-shadow: 3px 4px 10px rgba(0,0,0,0.08); */
    font-variation-settings: var(--gms-400-fill);
}
#site .main-contact .m-contact-wrap .col.support .inner .item b {
    display: inline-block;
    width: 85px;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
}
#site .main-contact .m-contact-wrap .col.support .inner .item b small {
    display: block;
    white-space: nowrap;
    font-size: 0.7em;
    font-weight: 400;
}
#site .main-contact .m-contact-wrap .col.support .more {
    border-color: #fff;
}
#site .main-contact .m-contact-wrap .header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: clamp(20px, 5vw, 30px);
    position: relative;
}
#site .main-contact .m-contact-wrap .header h5,
#site .main-contact .m-contact-wrap .header strong {
    font-weight: 700;
}
#site .main-contact .m-contact-wrap .swiper {
    padding-inline: 1px;
    flex: 1;
}
#site .main-contact .m-contact-wrap .swiper-wrapper {
    /* transition: 1s linear; */
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}
#site .main-contact .m-contact-wrap .swiper-slide {
    /* aspect-ratio: 200/96; */
    /* padding: 10px 25px;
   border: 1px solid #eaeaea; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding-inline: 6px;
    /* grid-template-rows: repeat(2,minmax(0,1fr)); */
}
@media (max-width: 991.98px) {
    #site .main-contact .m-contact-wrap .swiper-slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
#site .main-contact .m-contact-wrap img {
    display: block;
    object-fit: contain;
    width: 100%;
    /* height: 100%; */
    /* height: 60px; */
    object-fit: contain;
    /* height: 100%; */
    height: 88px;
    /* padding: 10px 25px; */
    padding: 15px 20px;
    border: 1px solid #eaeaea;
}
#site .main-contact .m-contact-wrap img[alt="Philly Shipyard"],
#site .main-contact .m-contact-wrap img[alt="Technip"],
#site .main-contact .m-contact-wrap img[alt="JMU"],
#site .main-contact .m-contact-wrap img[alt="NOV Inc"] {
    /* scale: 0.7; */
    padding: 25px 20px;
}
@media (max-width: 991.98px) {
    #site .main-contact .m-contact-wrap img[alt="Philly Shipyard"],
    #site .main-contact .m-contact-wrap img[alt="Technip"],
    #site .main-contact .m-contact-wrap img[alt="JMU"],
    #site .main-contact .m-contact-wrap img[alt="NOV Inc"] {
        padding: 20px;
    }
}
@media (max-width: 991.98px) {
    #site .main-contact .m-contact-wrap img {
        padding: 10px 20px;
        height: 70px;
    }
}
#site .main-contact .m-contact-wrap .swiper-indicators-wrap {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#site .main-contact .m-contact-wrap .swiper-indicators-wrap > * {
    position: static;
    width: fit-content;
    margin: 0;
}
#site .main-contact .m-contact-wrap .swiper-indicators-wrap [role="button"] {
    width: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50px;
}
#site .main-contact .m-contact-wrap .swiper-indicators-wrap [role="button"]::after {
    font-size: 10px;
    font-weight: 700;
}
#site .main-contact .m-contact-wrap .swiper-indicators-wrap .swiper-pagination {
    width: 65px;
    font-size: 14px;
    color: #666;
}
#site .main-contact .m-contact-wrap .swiper-indicators-wrap .swiper-button-next,
#site .main-contact .m-contact-wrap .swiper-indicators-wrap .swiper-button-prev {
    --swiper-theme-color: #fff;
    background: #aaa;
}
/* [ 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;
}
#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;
}
#site #mainPopup .main_popup .main_popup_contents video {
    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.main_popup_left {
    left: 50px;
}
#site #mainPopup .main_popup.main_popup_center {
    left: 50%;
    transform: translate(-50%);
}
#site #mainPopup .main_popup.main_popup_right {
    right: 50px;
}
@media (max-width: 991.98px) {
    #site #mainPopup .main_popup[class*="main_popup_"] {
        left: 15px;
        right: 15px;
        transform: none;
    }
}
/* ---------------------------- table ---------------------------- */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 991.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;
    }
}
: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: #d1d1d1;
    /* border: 1px solid var(--border-color); */
    border-right: 2px solid #f6f6f6;
    border-top: 1px solid #333;
    /* background-color: #fff; */
    margin: 0;
}
.table-style.text-left * {
    text-align: left;
    padding: 11px 12px;
}
.table-style.text-left th {
    background: #fff;
    color: #222;
    font-weight: 600;
}
.table-style :is(th, td) {
    padding: 12px 3px;
    font-size: 13px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-left: none;
    text-align: center;
    line-height: 1.3;
}
@media (max-width: 991.98px) {
    .table-style :is(th, td) {
        padding: 10px 3px;
    }
}
@media (max-width: 767.98px) {
    .table-style :is(th, td) {
        padding: 5px 3px;
    }
}
.table-style td {
    color: rgba(0, 0, 0, 0.6);
}
.table-style thead th {
    border-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    border-left: none;
    color: #222;
    /* text-align: center; */
    font-weight: 600;
    background: #fff;
}
.table-style thead,
.table-style tbody:only-child {
    border-top: 1px solid #333;
}
.table-style tbody th {
    background-color: #f7f7f7;
    /* text-align: center; */
    font-weight: 600;
}
/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
    margin-block: 0;
    /* 게시글 공지사항 */
}
.board_wrapper tr.notice {
    background-color: #f7f8f9;
}
.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: 7px;
}
.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: 40px;
}
#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: 500;
    color: #1b54e4;
    text-decoration: underline;
}
#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: 991.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: 991.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-light);
    border-radius: 3px;
    padding: 3px 7px;
    margin-block: -3px;
    margin-right: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
#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 #aaa;
}
#bbsArea .header_wrap h4.title {
    font-size: 26px;
    font-weight: 500;
    color: #000;
}
#bbsArea .header_wrap span {
    color: #666;
}
#bbsArea .header_wrap strong {
    color: #000;
    font-weight: 600;
}
#bbsArea .header_wrap .title {
    margin: 0;
    font-size: 24px;
}
#bbsArea .header_wrap .info {
    margin-top: 15px;
    opacity: 0.7;
}
#bbsArea .header_wrap .info span {
    font-size: 14px;
    color: #000;
}
#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: 991.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: 991.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: var(--page-point-color);
    /* textarea 글자수 */
}
#bbsArea .table.board_write_table .frm_textarea_cnt {
    display: none;
    /* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
}
@media (min-width: 992px) {
    /* [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: 991.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.6rem 0.85rem;
    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;
}
.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);
}
.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: 991.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: 5px;
}
.custom_checkbox + span {
    user-select: none;
}
.custom_checkbox + span::before {
    margin: 0;
    font-size: 1.25em;
    color: #555;
    content: "\e835";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
.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: 992px) {
    :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 #ccc;
    font-weight: 600;
    color: #222;
}
: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;
}
: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) :is(th, td) {
    padding: 17px 15px;
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #e1e1e1;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td {
    color: #777;
    text-align: center;
}
: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: 991.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: 991.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: 700;
    display: flex;
    background-color: transparent;
    width: auto;
    border-top: 0;
}
.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: 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: 991.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: 991.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: 991.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: 991.98px) {
    /* 중간 크기일 때 (중간 높이) */
    #find_idpw,
    .login_wrapper {
        height: auto;
    }
}
@media (min-width: 992px) {
    #find_idpw,
    .login_wrapper {
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
@media (min-width: 992px) and (max-height: 900px) {
    #find_idpw,
    .login_wrapper {
        height: 700px;
    }
}
.privacy_container,
.agreement_container,
#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;
}
.privacy_container h1,
.agreement_container h1,
#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;
}
.privacy_container h1 + p,
.agreement_container h1 + p,
#site .member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 15px);
    max-height: 80px;
    /* max-height: 200px; */
    margin-bottom: 30px;
    text-align: center;
    color: #666;
}
.privacy_container .text-center,
.agreement_container .text-center,
#site .member_wrapper .text-center {
    margin-top: 40px;
}
.privacy_container .text-center .btn.btn-lg,
.agreement_container .text-center .btn.btn-lg,
#site .member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.privacy_container #login_form input,
.agreement_container #login_form input,
#site .member_wrapper #login_form input {
    padding-left: 5px;
    font-size: 15px;
}
.privacy_container #login_form .form-group,
.agreement_container #login_form .form-group,
#site .member_wrapper #login_form .form-group {
    overflow: hidden;
    border-radius: 9999px;
}
.privacy_container #login_form .form-group:focus-within label[class*="label-"]::before,
.agreement_container #login_form .form-group:focus-within label[class*="label-"]::before,
#site .member_wrapper #login_form .form-group:focus-within label[class*="label-"]::before {
    color: #000;
}
.privacy_container #login_form .form-group label,
.agreement_container #login_form .form-group label,
#site .member_wrapper #login_form .form-group label {
    position: relative;
}
.privacy_container #login_form .form-group label[class*="label-"],
.agreement_container #login_form .form-group label[class*="label-"],
#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;
}
.privacy_container #login_form .form-group label::before,
.agreement_container #login_form .form-group label::before,
#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;
}
.privacy_container #login_form .form-group label.label-id::before,
.agreement_container #login_form .form-group label.label-id::before,
#site .member_wrapper #login_form .form-group label.label-id::before {
    content: "\e7fd";
}
.privacy_container #login_form .form-group label.label-pw::before,
.agreement_container #login_form .form-group label.label-pw::before,
#site .member_wrapper #login_form .form-group label.label-pw::before {
    content: "\e897";
}
.privacy_container #login_form .form-group label.label-email::before,
.agreement_container #login_form .form-group label.label-email::before,
#site .member_wrapper #login_form .form-group label.label-email::before {
    content: "\e0e6";
}
@media (max-width: 991.98px) {
    .privacy_container,
    .agreement_container,
    #site .member_wrapper {
        padding: 60px 30px;
    }
    .privacy_container :where(#login_form, fieldset),
    .agreement_container :where(#login_form, fieldset),
    #site .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    .privacy_container :where(#login_form, #login_form input),
    .agreement_container :where(#login_form, #login_form input),
    #site .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    .privacy_container #login_form input,
    .agreement_container #login_form input,
    #site .member_wrapper #login_form input {
        border: 0;
        /* padding-left: 0; */
        padding-right: 35px;
    }
}
.privacy_container .join_agree h4,
.agreement_container .join_agree h4,
#site .member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}
.privacy_container .join_agree .join_agree_box,
.agreement_container .join_agree .join_agree_box,
#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;
}
.privacy_container .join_agree .join_agree_box + .checkbox,
.agreement_container .join_agree .join_agree_box + .checkbox,
#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);
}
.privacy_container .join_agree .join_agree_box + .checkbox label,
.agreement_container .join_agree .join_agree_box + .checkbox label,
#site .member_wrapper .join_agree .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
.privacy_container .join_agree .join_agree_box + .checkbox input,
.agreement_container .join_agree .join_agree_box + .checkbox input,
#site .member_wrapper .join_agree .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.privacy_container .join_agree .join_agree_box + .checkbox > a,
.agreement_container .join_agree .join_agree_box + .checkbox > a,
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
.privacy_container .join_agree .join_agree_box + .checkbox > a:hover,
.agreement_container .join_agree .join_agree_box + .checkbox > a:hover,
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    /* [ form ] */
    .privacy_container .join_agree .join_agree_box + .checkbox > a,
    .agreement_container .join_agree .join_agree_box + .checkbox > a,
    #site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
.privacy_container .form-group,
.agreement_container .form-group,
#site .member_wrapper .form-group {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
.privacy_container .form-group > *,
.agreement_container .form-group > *,
#site .member_wrapper .form-group > * {
    width: auto;
    padding: 0;
}
.privacy_container .form-group:focus-within,
.agreement_container .form-group:focus-within,
#site .member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
.privacy_container .form-group:focus-within span.material-symbols-outlined,
.agreement_container .form-group:focus-within span.material-symbols-outlined,
#site .member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
.privacy_container .form-group:nth-of-type(1),
.agreement_container .form-group:nth-of-type(1),
#site .member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px;
    margin-bottom: 7px !important;
}
.privacy_container .form-group:nth-of-type(2),
.agreement_container .form-group:nth-of-type(2),
#site .member_wrapper .form-group:nth-of-type(2) {
    margin-bottom: 0px;
}
.privacy_container .form-group > div:nth-child(2),
.agreement_container .form-group > div:nth-child(2),
#site .member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
.privacy_container .form-group label span.material-symbols-outlined,
.agreement_container .form-group label span.material-symbols-outlined,
#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;
}
.privacy_container .form-group label span.material-symbols-outlinedl:nth-child(1),
.agreement_container .form-group label span.material-symbols-outlinedl:nth-child(1),
#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: 991.98px) {
    /* [ member-login ] */
    .privacy_container .form-group > div:last-child,
    .agreement_container .form-group > div:last-child,
    #site .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
.privacy_container :is(#find_btn, #login_btn),
.agreement_container :is(#find_btn, #login_btn),
#site .member_wrapper :is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px;
    width: 100%;
    border-radius: 9999px;
}
.privacy_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
.agreement_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
#site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
    z-index: 10;
    width: 100%;
    padding-block: 100px 120px;
    background: #f7f7f7;
}
.privacy_container .mypage_container,
.agreement_container .mypage_container,
#site .member_wrapper .mypage_container {
    padding-inline: 15px;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
@media (max-width: 991.98px) {
    .privacy_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
    .agreement_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
    #site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
        margin-top: 0;
        position: relative;
        padding-block: 30px 100px;
        height: auto;
    }
}
.privacy_container :where(#find_idpw, .login_wrapper, .mypage_container),
.agreement_container :where(#find_idpw, .login_wrapper, .mypage_container),
#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 이하 */
    .privacy_container :where(#find_idpw, .login_wrapper),
    .agreement_container :where(#find_idpw, .login_wrapper),
    #site .member_wrapper :where(#find_idpw, .login_wrapper) {
        padding: 0;
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
@media (height <= 700px) {
    .privacy_container :where(#find_idpw, .login_wrapper, .mypage_container),
    .agreement_container :where(#find_idpw, .login_wrapper, .mypage_container),
    #site .member_wrapper :where(#find_idpw, .login_wrapper, .mypage_container) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
.privacy_container .login_extra,
.agreement_container .login_extra,
#site .member_wrapper .login_extra {
    margin-top: 30px;
}
.privacy_container .login_extra ul,
.agreement_container .login_extra ul,
#site .member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
.privacy_container .login_extra ul li > a,
.agreement_container .login_extra ul li > a,
#site .member_wrapper .login_extra ul li > a {
    font-size: clamp(13px, 3vw, 14px);
}
.privacy_container .login_extra ul li + .privacy_container .login_extra ul li,
.privacy_container .login_extra ul li + .agreement_container .login_extra ul li,
.privacy_container .login_extra ul li + #site .member_wrapper .login_extra ul li,
.agreement_container .login_extra ul li + .privacy_container .login_extra ul li,
.agreement_container .login_extra ul li + .agreement_container .login_extra ul li,
.agreement_container .login_extra ul li + #site .member_wrapper .login_extra ul li,
#site .member_wrapper .login_extra ul li + .privacy_container .login_extra ul li,
#site .member_wrapper .login_extra ul li + .agreement_container .login_extra ul li,
#site .member_wrapper .login_extra ul li + #site .member_wrapper .login_extra ul li {
    margin-left: 0;
}
.privacy_container .login_extra ul li + .privacy_container .login_extra ul li::before,
.privacy_container .login_extra ul li + .agreement_container .login_extra ul li::before,
.privacy_container .login_extra ul li + #site .member_wrapper .login_extra ul li::before,
.agreement_container .login_extra ul li + .privacy_container .login_extra ul li::before,
.agreement_container .login_extra ul li + .agreement_container .login_extra ul li::before,
.agreement_container .login_extra ul li + #site .member_wrapper .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + .privacy_container .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + .agreement_container .login_extra ul li::before,
#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: 991.98px) {
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    .privacy_container .login_extra ul,
    .agreement_container .login_extra ul,
    #site .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .privacy_container .login_extra ul li + li::before,
    .agreement_container .login_extra ul li + li::before,
    #site .member_wrapper .login_extra ul li + li::before {
        content: none;
    }
}
@media (max-width: 991.98px) {
    .privacy_container #join_form tr th,
    .agreement_container #join_form tr th,
    #site .member_wrapper #join_form tr th {
        padding: 0px;
        margin-bottom: 0;
    }
    .privacy_container #join_form tr td,
    .agreement_container #join_form tr td,
    #site .member_wrapper #join_form tr td {
        display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    .privacy_container #join_form tr td > div:has(textarea),
    .agreement_container #join_form tr td > div:has(textarea),
    #site .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    .privacy_container #join_form tr td[style="vertical-align:middle"],
    .agreement_container #join_form tr td[style="vertical-align:middle"],
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 0px;
    }
    .privacy_container #join_form tr td[style="vertical-align:middle"] span,
    .agreement_container #join_form tr td[style="vertical-align:middle"] span,
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0;
    }
    .privacy_container #join_form tr td input:not(#mb_mailing),
    .agreement_container #join_form tr td input:not(#mb_mailing),
    #site .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100%;
    }
}
.privacy_container .table,
.agreement_container .table,
#site .member_wrapper .table {
    width: 100%;
}
.privacy_container .table tbody,
.agreement_container .table tbody,
#site .member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
}
.privacy_container .table tbody tr,
.agreement_container .table tbody tr,
#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;
}
.privacy_container .table tbody tr th,
.agreement_container .table tbody tr th,
#site .member_wrapper .table tbody tr th {
    font-size: 16px;
    text-align: left;
    width: auto;
}
.privacy_container .table tbody tr th span,
.agreement_container .table tbody tr th span,
#site .member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
.privacy_container .table tbody tr td,
.agreement_container .table tbody tr td,
#site .member_wrapper .table tbody tr td {
    display: flex;
    gap: 10px;
}
.privacy_container .table tbody tbody tr td,
.agreement_container .table tbody tbody tr td,
#site .member_wrapper .table tbody tbody tr td {
    padding-inline: 15px;
    display: flex;
    gap: 5px;
}
.privacy_container .table tbody tbody tr :where(th, td),
.agreement_container .table tbody tbody tr :where(th, td),
#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: 991.98px) {
    .privacy_container .table,
    .agreement_container .table,
    #site .member_wrapper .table,
    .privacy_container .table :where(tbody, tbody tr),
    .agreement_container .table :where(tbody, tbody tr),
    #site .member_wrapper .table :where(tbody, tbody tr) {
        display: block;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .privacy_container .table tbody tr :where(th, td),
    .agreement_container .table tbody tr :where(th, td),
    #site .member_wrapper .table tbody tr :where(th, td) {
        display: block;
        width: 100%;
        font-size: clamp(15px, 2vw, 17px);
    }
    .privacy_container .table tbody tr th,
    .agreement_container .table tbody tr th,
    #site .member_wrapper .table tbody tr th {
        padding: 10px 30px;
    }
    .privacy_container .table .files_upload_wrap,
    .agreement_container .table .files_upload_wrap,
    #site .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    .privacy_container .table .files_upload_wrap .files,
    .agreement_container .table .files_upload_wrap .files,
    #site .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .privacy_container .table .files_upload_wrap .files input,
    .agreement_container .table .files_upload_wrap .files input,
    #site .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    .privacy_container .table .files_upload_wrap .files input .file_add,
    .agreement_container .table .files_upload_wrap .files input .file_add,
    #site .member_wrapper .table .files_upload_wrap .files input .file_add {
        position: relative;
        right: auto;
    }
    .privacy_container .table .files_upload_wrap .files input .btn,
    .agreement_container .table .files_upload_wrap .files input .btn,
    #site .member_wrapper .table .files_upload_wrap .files input .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}
#site :is(#find_idpw, .login_wrapper) .member_wrapper {
    max-width: 500px;
    margin-block: 0;
}
#site :is(#find_idpw, .login_wrapper, .join_wrapper, .mypage_container, .privacy_container, .agreement_container) .member_wrapper {
    background-color: #fff;
    padding-block: 70px;
}
/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    display: flex;
    margin: 0;
    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: 991.98px) {
    :is(.privacy_container, .agreement_container) .member_wrapper {
        padding: 50px 30px;
    }
}
/* [ componets start ]*/
/* 페이지 준비중 */
.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
    border-radius: 20px;
}
.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 74px;
    margin-bottom: 20px;
}
.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}
/* 모바일 이미지 확장 스크롤 */
/* [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;
}
/* -------------------------------------------------------- */
