@charset "utf-8";
/* 10page builder demo site core css */
/* version 24.11 */
/* - css 통합 (bs3, global, etc) */
/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    --poppins: "Poppins", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #81bf30;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #5c9215;
    --page-point-color-hover: var(--page-point-color-dark);
    --page-danger-color: #f32222;
    --page-danger-color-hover: #cc0a0a;
    --page-dark-color: #444;
    --page-dark-color-hover: #222;
    --page-grey-color: #ddd;
    --page-grey-color-hover: #c4c4c4;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 100px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: clamp(47px, 8vw, 75px);
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* board */
    --form-height: 47px;
    --radius-sm: 7px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}
/* svh 미지원 */
@supports not (max-height: 100svh) {
    :root {
        --svh100: 100vh;
    }
}
@media (max-width: 767.89px) {
    :root {
        --container-padding-inline: 20px;
    }
}
/* fouc */
#site > *:not(#force__wrapper) {
    visibility: hidden;
}
#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}
/* ---------------------------- Reset ---------------------------- */
* {
    box-sizing: border-box;
    word-break: keep-all;
    float: unset;
    -webkit-tap-highlight-color: transparent;
}
:where(*::before, *::after) {
    content: none;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 14px;
}
#site {
    margin: 0;
    padding: 0;
    font-family: var(--page-font-family);
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
}
::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;
}
.caret {
    display: none;
}
#site .hide {
    display: none !important;
}
/* material-symbols */
span.material-symbols-outlined {
    font-family: var(--gms) !important;
    font-style: normal;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
    user-select: none;
}
/* ---------------------------- 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, 15px);
    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;
}
.btn.btn-arrow {
    transition: background 0.5s;
    height: 60px;
    padding-inline: 30px;
    border: 1px solid var(--page-point-color);
    color: var(--page-point-color);
    gap: 15px;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    margin-top: clamp(30px, 5vw, 40px);
}
.btn.btn-arrow::after {
    content: "\e5cc";
    font-size: 24px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-400-out);
}
.btn.btn-arrow:hover {
    text-decoration: none;
    background-color: var(--page-point-color);
    color: #fff;
}
/* [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);
    }
}
@media (max-width: 767.98px) {
    .btn.btn-arrow {
        scale: 0.8;
        transform-origin: top;
        margin-top: 25px;
    }
    .se-banner .btn.btn-arrow {
        transform-origin: left top;
    }
}
/* 버튼 비활성화 */
button[disabled] {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
    filter: grayscale(1);
}
.btn-custom {
    transition: 0.25s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 200px;
    width: 100%;
    height: 60px;
    font-size: 15px;
    margin-top: 68px;
    padding-inline: clamp(30px, 3vw, 45px) 10px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: var(--poppins);
    letter-spacing: 0;
}
.main-visual .btn-custom {
    transition: opacity 0.5s, background-color 0.2s;
    margin-inline: auto;
    opacity: 0;
}
.main-visual .swiper-slide-active .btn-custom {
    opacity: 1;
}
.btn-custom span.material-symbols-outlined {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    background-color: var(--page-point-color);
    width: 40px;
    aspect-ratio: 1;
    border-radius: 9999px;
    color: #fff;
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
@media (hover: hover) {
    #site .btn-custom:hover {
        background-color: var(--page-point-color);
    }
}
.firefox .btn-custom {
    backdrop-filter: none !important;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .btn-custom {
        transform-origin: left;
        margin-top: 30px;
        scale: 0.8;
    }
    .main-visual .btn-custom {
        transform-origin: center;
    }
}
/* ---------------------------- 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;
}
img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* ---------------------------- Layout ---------------------------- */
:where(.container, .row) {
    position: relative;
}
/* container */
[class*="container"] {
    /* z-index: 10; */
    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 (width >= 1260px) {
    .subpage.bd_view [class*="container"] {
        max-width: 1230px;
    }
}
/* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
@media (width >= 1360px) {
    [class*="container"] {
        max-width: 1330px;
    }
}
@media (width >= 1460px) {
    :is(.mainpage, footer) [class*="container"] {
        max-width: 1430px;
        z-index: 100;
    }
}
.row {
    margin: 0;
}
:where([class*="row-"], [class*="-row"]) {
    display: flex;
    gap: 30px;
}
.row::before,
.row::after {
    content: none;
}
.clearfix {
    width: 100%;
}
.col {
    flex: 1;
    padding: 0;
}
.col.auto {
    flex: 0 1 auto;
}
.col[rowspan="2"] {
    grid-row: span 2;
}
.col[rowspan="3"] {
    grid-row: span 3;
}
.col[colspan="2"] {
    grid-column: span 2;
}
.col[colspan="3"] {
    grid-column: span 3;
}
:is([class*="hidden"]) {
    display: none;
}
:is([class*="visible"]) {
    display: none;
}
/* 소형 */
@media (min-width: 320px) {
    .hidden-xs {
        display: flex;
    }
}
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hidden-sm {
        display: flex;
    }
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hidden-md {
        display: flex;
    }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hidden-lg {
        display: flex;
    }
}
/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hidden-xl {
        display: flex;
    }
}
/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hidden-xxl {
        display: flex;
    }
}
/* 소형 */
@media (max-width: 319.98px) {
    .visible-xs {
        display: flex;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .visible-sm {
        display: flex;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .visible-md {
        display: flex;
    }
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (max-width: 991.98px) {
    .visible-lg {
        display: flex;
    }
}
/* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
@media (max-width: 1199.98px) {
    .visible-xl {
        display: flex;
    }
}
/* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
@media (max-width: 1399.98px) {
    .visible-xxl {
        display: flex;
    }
}
.center-block {
    display: block;
    margin-inline: auto;
}
/* ---------------------------- Modal, Jquery Ui ---------------------------- */
.ui-widget {
    font-family: inherit;
    z-index: 10000;
}
.ui-widget :is(input, select, textarea, button) {
    font-family: inherit;
}
.ui-datepicker select:is(.ui-datepicker-month, .ui-datepicker-year) {
    -webkit-appearance: none;
    background: none;
    border: 0;
    width: auto;
}
#site.modal-open {
    overflow: unset;
}
#site.modal-open,
#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);
    -webkit-backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal-open .modal {
    z-index: 10000;
    display: flex !important;
    width: 100%;
    justify-content: center;
}
.modal.in {
    z-index: 20000;
    scale: 1;
}
.modal:not(.in) {
    display: none;
    opacity: 0;
    scale: 0;
}
.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.6;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal.fade .modal-dialog {
    transform: translate(0, 0);
    margin: 0;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    /* width: 100%; */
}
.modal .modal-title {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal.fade .modal-dialog {
    position: relative;
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
}
@media (min-width: 768px) {
    .modal-sm {
        max-width: 300px;
    }
}
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}
.modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
    border-radius: 0;
    border: 0;
}
@media (min-width: 768px) {
    .modal .modal-content {
        -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
    }
}
.modal .modal-footer {
    display: flex;
    gap: 5px;
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
    flex: 1;
}
#delete_modal.in + .modal {
    display: none;
}
/* 날짜 */
.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(img) + :where(ol, ul)[class*="li-"] {
    margin-top: 20px;
}
:where(ol, ul)[class*="li-"] > li {
    position: relative;
    padding-left: 0.8em;
}
.li-check > li {
    position: relative;
    padding-left: 1.3em;
    font-size: 15px;
}
: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.25em;
    aspect-ratio: 1;
    border-radius: 50%;
    /* background-color: var(--page-point-color); */
    background-color: #666;
}
/* 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::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 ---------------------------- */
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 2vw, 30px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(16px, 2vw, 18px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(15px, 2vw, 16px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(100px, 15vw, 140px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
}
.navbar [lang="en-US"] {
    display: none;
}
.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
.navbar a {
    cursor: pointer;
}
.navbar .navbar-header {
    margin-inline: 0;
    z-index: 2000;
}
.navbar :where(*):before,
.navbar :where(*):after {
    content: none;
}
.navbar {
    transition: background 0.5s;
    all: unset;
    box-sizing: border-box;
    z-index: 5000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #fff;
    border-bottom: 1px solid transparent;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
}
/* 로고 */
.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.4px;
}
.navbar :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
    position: relative;
    z-index: 100;
    color: var(--page-point-color);
    /* background-color: transparent; */
    text-shadow: 0 0 0.01em var(--page-point-color);
    /* border-bottom: 3px solid var(--page-point-color); */
}
/* 서브 드롭다운메뉴 */
.navbar :is(.dropdown-menu) {
    z-index: 50;
    background-color: var(--page-point-color);
}
.navbar :where(.dropdown-menu) a {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    width: 100%;
}
.navbar :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: #fff;
    text-decoration: underline;
}
.navbar #gnbauth i {
    display: none;
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    /* wide */
    .navbar > .container {
        max-width: 100%;
        padding-inline: clamp(30px, 5vw, 90px);
        /* 메인메뉴 */
    }
    .navbar .navbar-collapse {
        display: flex;
        align-self: stretch;
        height: auto !important;
        margin-left: auto;
        z-index: 2000;
    }
    .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: 600;
    }
    .navbar .navbar-right :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
        /* transform: translateY(1px); */
    }
    .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
        margin-right: calc(var(--navbar-menu-padding-inline) * -1);
        /* 데스크탑 서브 드롭다운메뉴 */
    }
    .navbar .navbar-right .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: 28px 15px;
        min-width: 160px;
        gap: 20px;
        opacity: 0;
        transform-origin: center top;
        text-align: center;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    @keyframes menuOpen {
        0% {
            opacity: 0;
            scale: 1 0.5;
        }
        100% {
            opacity: 1;
            scale: 1 1;
        }
    }
    .navbar .navbar-right .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 0 0 2px;
        letter-spacing: -0.02em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
        /* [  navbar-custom-scorll-change  ] */
    }
    .navbar:not(.scroll) {
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:is(:not(.menu-open):hover, .scroll) {
        /* --navbar-height: 100px; */
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #333;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 600;
        --navbar-scroll-background-color: #fff;
        /* --navbar-logo-width: 150px; */
        border-color: rgba(0, 0, 0, 0.085);
    }
    .navbar:is(.top, .menu-open, .menu-open.scroll) {
        /* --navbar-height: 80px; */
        --navbar-scroll-filter: grayscale(1) brightness(10) invert(0);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 600;
        --navbar-scroll-background-color: transparent;
        /* --navbar-logo-width: 120px; */
        background-color: var(--navbar-scroll-background-color);
        border-color: rgba(255, 255, 255, 0);
    }
    .navbar:where(.top, .scroll, .menu-open) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:where(.top, .scroll, .menu-open) #navbar_side_toggle span {
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll, .menu-open) .navbar-brand img {
        transition: width 0.25s;
        filter: var(--navbar-scroll-filter);
    }
    .navbar:where(.top, .scroll, .menu-open) .navbar-brand span {
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll, .menu-open) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll, .menu-open) ul.navbar-right > li > a:where(:hover, :focus),
    .navbar:where(.top, .scroll, .menu-open) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover);
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .navbar > .container {
        padding-inline: 17px 10px;
    }
    .navbar:where(.menu-open) #navbar_side_toggle span {
        color: #fff;
    }
    .navbar:where(.menu-open) .navbar-brand img {
        filter: grayscale(1) brightness(10) invert(0);
        /* 배경 */
    }
    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;
    }
    @keyframes menuHeight {
        from {
            height: 100%;
        }
        to {
            height: 0;
        }
    }
    .navbar {
        overflow: hidden;
        animation: menuHidden 0s 0.401s forwards;
    }
    @keyframes menuHidden {
        from {
            overflow: hidden;
        }
        to {
            overflow: visible;
        }
    }
    .navbar .navbar-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .navbar-brand {
        order: 1;
    }
    .navbar .navbar-toggle {
        order: 2;
    }
    .navbar .navbar-toggle {
        all: unset;
        box-sizing: border-box;
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0;
        cursor: pointer;
        /* display: none; */
    }
    .navbar .navbar-toggle::before {
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 2em;
        font-variation-settings: var(--gms-500-out);
    }
    .navbar .navbar-toggle > * {
        display: none;
    }
    .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;
    }
    @keyframes menuHeight {
        from {
            height: 100%;
        }
        to {
            height: 0;
        }
    }
    .navbar .navbar-collapse .navbar-right {
        display: flex;
        flex-direction: column;
        overflow: hidden auto;
        position: relative;
        width: 100%;
        padding-block: 0px;
    }
    .navbar .navbar-collapse.open {
        transition: all 0.5s;
        max-height: var(--svh100);
    }
    .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 .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 .navbar-collapse .dropdown.open .dropdown-toggle {
        color: var(--page-point-color);
        font-weight: 600;
    }
    .navbar .navbar-collapse .dropdown.open .dropdown-toggle::after {
        content: "\e5ce";
        color: var(--page-point-color);
        font-variation-settings: var(--gms-400-out);
    }
    .navbar .navbar-collapse .navbar-right .dropdown-menu {
        /* transition: 0.75s; */
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #eee;
        padding: 0;
        max-height: 0;
    }
    .navbar .navbar-collapse .navbar-right .dropdown-menu a {
        /* width: 100%; */
        display: block;
        color: #555;
        padding: 10px 15px;
    }
    .navbar .navbar-collapse .navbar-right > li.open .dropdown-menu {
        opacity: 1;
        max-height: var(--svh100);
    }
}
/* ---------------------------- footer ---------------------------- */
#site footer {
    margin-top: 0px;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
    /* left logo */
}
#site footer img {
    /* opacity: 0.95; */
    /* margin-right: 30px; */
    /* text */
    /* filter: grayscale(1) invert(1); */
}
#site footer li {
    font-size: clamp(13px, 2vw, 15px);
    color: #666;
    letter-spacing: -0.01em;
}
#site footer li b {
    display: inline-block;
    margin-right: 5px;
    font-weight: 600;
    color: #333;
}
footer li.corp {
    margin-bottom: 18px;
}
#site footer li.copyright {
    font-size: 12px;
    margin-top: 20px;
    color: #999;
    font-size: 13px;
}
footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 4px 50px;
}
footer .footer-logo {
    flex-shrink: 0;
    width: 120px;
    margin-bottom: clamp(25px, 5vw, 30px);
}
footer .footer-wrap {
    /* display: flex; */
    align-items: center;
    gap: 50px;
    margin: 65px 0 60px;
}
.footer-family {
    position: absolute;
    right: var(--container-padding-inline);
    top: 0;
}
.family-site {
    /* width: 170px; */
    position: relative;
    margin-left: auto;
}
.family-site #familymenu {
    width: 198px;
    /* min-width: 100%; */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background: #fff;
    border: 1px solid #d7d7d7;
    color: #777;
    font-size: 15px;
    line-height: 1;
    /* margin-top: 10px; */
    font-weight: 500;
    height: 50px;
    border-radius: 0;
}
.family-site.open #familymenu {
    border-color: #aaa;
}
.family-site span {
    margin-left: 5px;
    font-size: 22px;
    line-height: 1;
    font-variation-settings: var(--gms-500-out), var(--gms-grad-zero);
    color: #555;
}
.family-site .dropdown-menu {
    position: absolute;
    display: none;
    width: 100%;
    max-width: 300px;
    margin-block: -1px 0px;
    margin-bottom: 0 !important;
    padding: 0;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 0;
    text-align: left;
}
.family-site.open .dropdown-menu {
    display: block;
    box-shadow: none;
}
.family-site.open .dropdown-menu > li {
    display: block;
    margin: 0;
}
.family-site.open .dropdown-menu > li > a {
    display: block;
    background: transparent;
    padding: 4px 13px;
    color: #333;
    font-size: 13px;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}
.family-site.open .dropdown-menu > li:last-child > a {
    border-bottom: 0;
}
.family-site.open .dropdown-menu > li > a:hover {
    background-color: #f3f3f3;
    color: #333;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    footer .footer-wrap {
        /* flex-direction: column; */
        /* gap: 20px; */
        margin-block: 40px;
    }
    footer .footer-info {
        /* flex-direction: column; */
        gap: 5px 15px;
    }
    #site footer li.copyright {
        margin-top: 10px;
    }
    .footer-family {
        position: static;
    }
    .family-site.open .dropdown-menu {
        /* top: unset; */
        width: 50%;
        bottom: calc(100% - 1px);
        margin-block: 0 -1px;
    }
    #site .family-site #familymenu {
        margin-top: 20px;
        max-width: 50%;
        width: 100%;
        height: 40px;
        font-size: 12px;
        padding-inline: 15px 10px;
    }
    #familymenu span {
        rotate: 180deg;
    }
    footer .footer-info .clearfix {
        display: none;
    }
}
/* 로그인 버튼 */
#loginBtn {
    margin-left: auto;
    align-self: flex-end;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 767.98px) {
    #loginBtn {
        position: static;
        margin-top: 20px;
    }
}
#loginBtn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 13px;
    background: transparent;
    color: #7d7d7d;
    line-height: 1;
    border-radius: 0;
    border: none;
    border-radius: 0;
    font-size: clamp(11px, 2vw, 12px);
    background: rgba(0, 0, 0, 0.07);
}
html.logined #loginBtn a[href="/member/login"] {
    display: none;
}
html:not(.logined) #loginBtn a[href="/member/logout"] {
    display: none;
}
#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);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #loginBtn a {
        margin-left: inherit;
    }
}
/* 스크롤버튼 */
#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 (width <= 767.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ---------------------------- subpage ---------------------------- */
/* [ subpage-header ] */
.subpage-header {
    z-index: 10;
    position: relative;
    overflow: hidden;
    height: clamp(300px, 50vw, 500px);
    background-color: #000;
}
.subpage-header::before {
    content: "";
    display: block;
    z-index: 10;
    position: absolute;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    opacity: 0.2;
}
.subpage-header .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--background-image) no-repeat center / cover;
    filter: brightness(0.8);
    animation: sp-zoom-in 4s ease forwards;
}
@keyframes sp-zoom-in {
    0% {
        opacity: 0.5;
        scale: 1.25;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}
.subpage-header.visual01 {
    --background-image: url(/public/img/sub/sub-top01.jpg);
}
.subpage-header.visual02 {
    --background-image: url(/public/img/sub/sub-top02.jpg);
}
.subpage-header.visual03 {
    --background-image: url(/public/img/sub/sub-top03.jpg);
}
.subpage-header.visual04 {
    --background-image: url(/public/img/sub/sub-top04.jpg);
}
.subpage-header.visual05 {
    --background-image: url(/public/img/sub/sub-top05.jpg);
}
.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.subpage-title h2 {
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: clamp(30px, 5vw, 40px);
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: clamp(40px, 7vw, 70px);
}
.subpage-title h2 [lang="ko"] {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    margin-bottom: clamp(5px, 2vw, 15px);
    line-height: 1;
    /* animation: st-h-ko 0.5s 0.25s ease forwards; */
    /* opacity: 0; */
}
@keyframes st-h-ko {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.subpage-title h2 [lang="en-US"] {
    font-family: var(--poppins);
    /* animation: st-h-en 1s 0.5s ease forwards; */
    /* opacity: 0; */
}
@keyframes st-h-en {
    0% {
        opacity: 0;
        transform: translateY(clamp(30px, 5vw, 50px));
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #site .subpage-title h2 [lang="en-US"] {
        animation-duration: 0.7s;
        animation-delay: 0.1s;
    }
}
/* [ subpage-navbar ] */
.snb {
    position: sticky;
    top: calc(var(--navbar-height));
    z-index: 1000;
    /* border-bottom: 1px solid #dedede; */
    margin-top: calc(var(--snb-height) * -1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid transparent;
    /* animation: sp-snb 1.25s 0.5s ease forwards; */
    /* opacity: 0; */
}
@keyframes sp-snb {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
}
.snb li {
    flex: 0 1 200px;
}
.snb a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: clamp(14px, 2vw, 18px);
    padding-inline: 7px;
    height: var(--snb-height);
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    font-family: var(--poppins);
    letter-spacing: 0.02em;
}
.snb li.active a {
    /* background: #fff; */
    font-weight: 700;
    color: #fff;
}
.snb a:hover {
    color: #fff;
}
.snb li a::after {
    content: "";
    transition: 0.5s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* bottom: -1px; */
    top: -1px;
    display: block;
    width: 0%;
    height: 2px;
    background: var(--page-point-color);
}
.snb li.active a::after {
    width: 100%;
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
@media (hover: hover) {
    .snb li a:hover::after {
        width: 100%;
    }
}
.snb.stuck {
    --snb-height: clamp(47px, 5vw, 55px);
    background: rgba(255, 255, 255, 0.9);
    /* background-color: var(--page-point-color); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border-color: rgba(0, 0, 0, 0.25); */
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
}
.subpage.bd_view .snb {
    /* display: none; */
    background-color: #fff;
}
.subpage.bd_view .snb a {
    color: #000;
}
.subpage.bd_view .snb.stuck {
    animation: none;
    opacity: 1;
}
.snb.stuck a {
    transition: 0s;
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(14px, 2vw, 17px);
}
.snb.stuck a:hover {
    color: #222;
}
.snb.stuck li.active a {
    color: #222;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .snb {
        animation-delay: 0.25s;
    }
    .snb li {
        flex: 0;
    }
    .snb .container {
        padding-inline: 10px;
    }
    .snb a {
        letter-spacing: -0.035em;
        padding-inline: 12px;
    }
    .snb li a::after {
        height: 1px;
    }
    [id*="se"] .snb li {
        /* flex: 0; */
    }
}
/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
[class*="title-h"] {
    --h-line-height: 1.5;
    --h-letter-spacing: -0.025em;
    --p-font-weight: 400;
    --p-color: #333;
    --p-line-height: 1.6;
}
[class*="title-h"] a {
    color: #337ab7;
}
[class*="title-h"] a:hover {
    text-decoration: underline;
    color: #1b5c94;
}
[class*="title-h"]:only-child {
    margin-bottom: 0;
}
[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.02em;
}
/* 제목+본문 간격 */
/* .subpage [class*="title-h"] > :is(h2, h3, h4, h5, h6) + * {
 margin-top: var(--text-between);
 } */
/* 본문+본문 간격 */
[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(32px, 5vw, 46px);
    --h-font-weight: 700;
    --h-color: #222;
    --p-font-size: 22px;
    --text-between: 10px;
    margin-bottom: clamp(60px, 10vw, 85px);
    text-align: center;
    font-family: var(--poppins);
}
.title-h3 + .title-h4 {
    margin-top: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #site .title-h3 {
        transition-delay: 0.2s;
    }
    #site .title-h3 + .title-h4.active {
        transition-delay: 0.35s;
    }
}
/* h3 end */
/* h4 start */
.title-h4 {
    --h-font-size: clamp(22px, 3vw, 32px);
    --h-font-weight: 600;
    --h-color: #222;
    --p-font-size: clamp(15px, 2vw, 18px);
    --text-between: 15px;
    margin-block: 100px 40px;
    letter-spacing: -0.01em;
    position: relative;
    text-align: center;
    font-family: var(--poppins);
}
.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;
}
.title-h4 h4::before {
    content: "";
    display: block;
    width: 27px;
    height: 1px;
    background-color: #222;
    margin: 0 auto 5px;
}
[id*="se"] .se01 .title-h4:last-child {
    margin-bottom: 0;
}
[id*="se"] .se01 .title-h4 h4::before {
    content: none;
}
[id*="se"] .se03 .title-h4 {
    margin-bottom: clamp(40px, 5vw, 60px);
}
#rc01 .title-h4 {
    text-align: left;
}
#rc01 .title-h4 h4::before {
    margin-left: 0;
}
.title-h4:first-child {
    margin-top: 0;
}
.title-h4 h4 + p {
    margin-top: clamp(20px, 5vw, 35px);
}
#pd03 .title-h4 p:first-child {
    margin-top: -50px;
}
.title-h4 .btn-arrow {
    /* opacity: 0; */
    /* transition: opacity 0.5s 0.5s, background 0.25s; */
}
.title-h4.active .btn-arrow {
    opacity: 1;
}
.title-h4 span.thin {
    font-weight: 300;
}
.title-h4 b {
    font-weight: 600;
}
/* h4 end */
/* h5 start */
.subpage .title-h5 {
    --h-font-size: 20px;
    --h-font-weight: 600;
    --h-color: #000;
    --p-font-size: 15px;
    --text-between: 8px;
    margin-top: 50px;
    margin-bottom: 15px;
}
.subpage .title-h5 + .title-h5 {
    margin-top: 40px;
}
.subpage .title-h5:has(p, ul) {
    margin-bottom: 15px;
}
/* h5 end */
/* [ subpage-content ] */
.subpage section {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 12vw, 120px) 0 clamp(80px, 15vw, 150px);
    min-height: 300px;
}
[id*="se"].subpage section.se01 {
    padding-bottom: clamp(50px, 5vw, 100px);
}
#site .subpage.bd_view section {
    padding-block: 170px clamp(80px, 15vw, 150px);
    background-color: #fff;
}
@media (max-width: 767.98px) {
    #site .subpage.bd_view section {
        padding-top: 90px;
    }
}
.subpage.bd_view :is(.title-h3, .subpage-header) {
    display: none;
}
#pd01.product.bd_view :is(.se01, .se-banner, [id^="pdArea"]) {
    display: none;
}
#pd02.product.bd_view [id^="pdArea"] {
    /* display: block; */
}
.product :is(.badge, .cate) {
    display: none;
}
.product .category_wrap {
    display: none;
}
.subpage .se-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    padding: 0;
}
.subpage .se-banner.active {
    transition-delay: 0.25s;
    transition-timing-function: ease;
}
.subpage section:nth-child(even),
.subpage .se-banner + section {
    background-color: #f8f8f8;
}
.subpage .se-banner .container {
    z-index: 10;
    height: 100%;
}
.se-banner .bg-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #000;
}
.se-banner .bg-img > div {
    position: relative;
    overflow: hidden;
    width: 50%;
    /* flex: 1; */
}
.se-banner .bg-img .left img {
    scale: 2;
    transform-origin: left center;
}
.se-banner .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: unset;
}
.se-banner .bg-color {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5;
}
.firefox .se-banner .bg-color {
    backdrop-filter: none !important;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .se-banner .bg-img > div {
        width: 100%;
        height: 50%;
    }
    .se-banner .bg-img {
        flex-direction: column-reverse;
    }
    .subpage .se-banner {
        height: 550px;
    }
    .se-banner .bg-color {
        width: 100%;
        height: 50%;
        top: unset;
        bottom: 0;
        /* bottom: 0; */
    }
    .se-banner .banner-wrap {
        width: 100%;
        align-items: stretch;
    }
    .se-banner .banner-wrap > .col {
        flex: 0 1 auto;
        margin-top: auto;
        padding-top: 10px;
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .se-banner .banner-wrap > .col:not(:has(.btn-arrow)) {
        padding-top: 0;
        padding-bottom: 10px;
    }
}
/* vision */
.vision-wrap {
    text-align: center;
    /* opacity: 0; */
    /* animation: vi-ani 1s 0.5s forwards; */
}
@keyframes vi-ani {
    0% {
        opacity: 0;
        /* transform: translateY(100px); */
    }
    100% {
        opacity: 1;
        /* transform: translateY(0px); */
    }
}
.vision-wrap h5 {
    position: relative;
    font-size: 65px;
    font-weight: 500;
    font-family: var(--poppins);
    margin-block: 40px 30px;
    color: var(--page-point-color);
    margin-inline: auto;
    line-height: 1;
    opacity: 1;
}
.vision-wrap h5.active {
    scale: 1;
}
.vision-wrap h5 span em {
    all: unset;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    .vision-wrap h5 span {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
        transition: 1s;
        transform: translateY(-250px) scale(1.5);
        height: 220px;
        padding-bottom: 20px;
        animation: vi-curtain-scale 2s 2s forwards ease;
    }
    .vision-wrap h5 span em {
        padding-inline: 10px;
        display: block;
        position: relative;
        clip-path: polygon(0 0%, 0 0, 0 100%, 0% 100%);
        animation: vi-curtain 1.7s 0.5s forwards ease;
        font-size: clamp(22px, 6vw, 48px);
        letter-spacing: 0;
        font-weight: 700;
        line-height: 1.5;
    }
    @keyframes vi-curtain {
        /* .vision-wrap h5.active span {
     transition-delay: 0.15s;
     background-color: rgb(255 255 255 / 0%);
     height: 80px;
     } */
        0% {
            clip-path: polygon(0 0%, 0 0, 0 100%, 0% 100%);
        }
        100% {
            transform: translateX(0px);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }
    @keyframes vi-curtain-scale {
        0% {
            transform: translateY(-250px) scale(1.5);
            height: 220px;
        }
        100% {
            transform: translateY(0) scale(1);
            height: 180px;
        }
    }
    .vision-wrap h5 span::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        filter: blur(20px);
        z-index: -1;
        background-color: #fff;
    }
    .vision-wrap h5.active + p.active {
        transition-delay: 0.5s;
    }
}
.vision-wrap p {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    letter-spacing: -0.025em;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .vision-wrap h5 {
        font-size: 34px;
        /* white-space: nowrap; */
    }
    .vision-wrap h5.ani {
        opacity: 0;
    }
    .vision-wrap h5.ani.active {
        transition-delay: 0.5s;
        opacity: 1;
        font-weight: 600;
    }
    .vision-wrap h5.active + p.active {
        transition-delay: 1.3s;
    }
    .vision-wrap h5 span em {
        padding-inline: 10px;
        display: block;
        position: relative;
        clip-path: polygon(0 0%, 0 0, 0 100%, 0% 100%);
        animation: vi-curtain 1.5s 0.5s forwards ease;
        font-size: clamp(26px, 5vw, 65px);
        line-height: 1.3;
    }
    @keyframes vi-curtain {
        0% {
            clip-path: polygon(0 0%, 0 0, 0 100%, 0% 100%);
        }
        100% {
            transform: translateX(0px);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }
}
/* mission */
.mission-wrap {
    display: flex;
    gap: clamp(20px, 3vw, 50px);
}
.mission-wrap .col {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 20px 20px 50px 0 rgba(0, 0, 0, 0.08);
    padding: 20px;
}
.mission-wrap span.material-symbols-outlined {
    font-size: 74px;
    color: var(--page-point-color);
    font-variation-settings: var(--gms-400-out);
    /* text-shadow: 5px 5px 10px rgba(0,0,0,0.1); */
}
.mission-wrap .col h5 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    margin-block: clamp(12px, 3vw, 20px);
    color: #222;
    letter-spacing: -0.025em;
}
.mission-wrap .col p {
    color: #666;
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.75;
    letter-spacing: -0.025em;
}
/* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
@media (max-width: 1199.98px) {
    .mission-wrap .icon {
        width: 75px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .mission-wrap {
        flex-direction: column;
        max-width: 300px;
        width: 100%;
        margin-inline: auto;
    }
}
/* history */
.history-wrap {
    /* overflow: hidden; */
    /* width: 0%; */
    --overlay-margin: 80px;
    margin-inline: auto;
}
.history-wrap.active {
    width: 100%;
}
.history-wrap .banner {
    position: relative;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ccc;
    text-align: center;
    padding-bottom: var(--overlay-margin);
}
.history-wrap .banner .bg {
    position: absolute;
    left: 0;
    top: 0;
}
.history-wrap .banner h4 {
    color: #fff;
    font-size: clamp(28px, 5vw, 45px);
    font-weight: 600;
    margin-top: 20px;
}
.history-wrap .inner {
    position: relative;
    z-index: 10;
    background-color: #fff;
    max-width: 1000px;
    width: 100%;
    padding: calc(var(--overlay-margin) + 30px) 0 0;
    margin: calc(var(--overlay-margin) * -1) auto 0;
}
.history-wrap .inner::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    top: calc(var(--overlay-margin) + 40px);
    bottom: 0;
    background-color: #d9d9d9;
}
.history-wrap .inner .col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 600px;
    align-items: flex-start;
    width: 100%;
    margin-inline: auto;
    padding-bottom: 90px;
}
.history-wrap .inner .col:last-child {
    padding-bottom: 0;
}
.history-wrap .inner dt {
    position: relative;
    font-family: var(--poppins);
    font-size: clamp(28px, 3vw, 34px);
    font-weight: 300;
    color: #222;
    line-height: 1;
    text-align: center;
}
.history-wrap .inner .col::after {
    content: "";
    box-sizing: content-box;
    z-index: 1000;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 9px;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--page-point-color);
    /* box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.12); */
    /* animation: his-dot 1.5s 1s infinite ease-in-out; */
}
.history-wrap .inner dd {
    padding-left: 60px;
    margin-right: -100px;
}
.history-wrap .inner ul {
    gap: clamp(7px, 2vw, 10px);
}
.history-wrap .inner li {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: -0.025em;
    color: #333;
}
.history-wrap .inner li::before {
    background-color: #222;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .history-wrap .banner {
        height: 200px;
        padding: 0;
    }
    .history-wrap .banner h4 {
        margin-top: 0;
        white-space: nowrap;
    }
    .container:has(.history-wrap) {
        padding-inline: 0;
    }
    .history-wrap .inner {
        width: fit-content;
        /* margin: 0; */
        padding-top: 60px;
        padding-inline: 70px var(--container-padding-inline);
        /* padding-inline: 30px; */
        margin-top: 0;
    }
    .history-wrap .inner .col {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-bottom: 80px;
    }
    .history-wrap .inner dd {
        padding-left: 0;
        margin-right: 0;
    }
    .history-wrap .inner::before {
        left: 29px;
        top: 85px;
        transform: translateX(0);
    }
    .history-wrap .inner .col::after {
        left: -46px;
        transform: translateX(0);
    }
}
/* map */
.map-wrap {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.05);
}
.map-wrap iframe {
    aspect-ratio: 2.7083333333;
    width: 100%;
    height: auto;
}
.map-wrap .info {
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.map-wrap .left .item {
    display: grid;
    grid-template-columns: minmax(0, 30px) minmax(0, 35px) minmax(0, auto);
    gap: 20px;
    align-items: center;
    font-size: clamp(15px, 3vw, 18px);
}
.map-wrap .left .item + .item {
    margin-top: 10px;
}
.map-wrap .left h6 {
    font-weight: 600;
}
.map-wrap .left p {
    color: #333;
}
.map-wrap .left span.material-symbols-outlined {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 9999px;
    aspect-ratio: 1;
    background-color: var(--page-point-color);
    color: #fff;
    font-variation-settings: var(--gms-200-fill);
    font-size: 18px;
    flex-shrink: 0;
    width: 30px;
}
.map-wrap .right {
    display: flex;
    gap: 10px;
}
.map-wrap .right .btn {
    border-radius: 9999px;
    padding-inline: 25px;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 600;
    border: 1px solid #ddd;
    line-height: 1;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .map-wrap iframe {
        aspect-ratio: 1.25;
    }
    .map-wrap .info {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .map-wrap .left .item {
        /* align-items: flex-start; */
        display: flex;
        gap: 15px;
    }
    .map-wrap .info a {
        flex: 1;
    }
    .map-wrap .left span.material-symbols-outlined {
        font-size: 16px;
        font-variation-settings: var(--gms-400-fill);
    }
    .map-wrap h6 {
        display: none;
    }
}
/* banner */
.banner-wrap :is(h4, p, li) {
    color: #fff;
}
#site .banner-wrap.active {
    transition-delay: 0.9s;
}
.banner-wrap {
    transition-delay: 0s;
    display: grid;
    grid-template-columns: repeat(2, minmax(600px, 1fr));
    height: 100%;
    align-items: center;
}
.banner-wrap h4 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    margin-bottom: clamp(10px, 2vw, 30px);
    font-family: var(--poppins);
}
.banner-wrap p {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: -0.025em;
}
.banner-wrap .btn-arrow {
    --page-point-color: #fff;
}
.banner-wrap .btn-arrow:hover {
    color: #000;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .banner-wrap {
        display: flex;
        flex-direction: column;
    }
}
/* icon */
.icon-wrap {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    margin-inline: auto;
}
#se01 .icon-wrap {
    gap: 40px 30px;
}
#se04 .icon-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.icon-wrap .col {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    box-shadow: 20px 20px 30px 0 rgba(0, 0, 0, 0.05);
    padding: 30px;
}
#se03 .icon-wrap .col {
    aspect-ratio: unset;
    height: clamp(150px, 15vw, 200px);
}
#se04 .icon-wrap .col {
    aspect-ratio: unset;
    height: 285px;
}
.icon-wrap .col span.material-symbols-outlined {
    font-size: clamp(42px, 3vw, 54px);
    color: var(--page-point-color);
}
.icon-wrap .col h5 {
    font-size: clamp(20px, 2vw, 22px);
    font-weight: 600;
    margin-block: clamp(12px, 2vw, 20px) 12px;
    color: #222;
    letter-spacing: -0.025em;
}
.icon-wrap .col h5:only-child {
    margin-bottom: 0;
}
.icon-wrap .col p {
    color: #666;
    font-size: clamp(15px, 3vw, 16px);
    line-height: 1.75;
    letter-spacing: -0.025em;
}
/* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
@media (max-width: 1199.98px) {
    .icon-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .icon-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
    #se04 .icon-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .icon-wrap {
        max-width: 300px;
        width: 100%;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    #se01 .icon-wrap {
        gap: 25px;
    }
    #se04 .icon-wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* g-cloud */
.gc-wrap {
    margin-top: 100px;
}
.gc-wrap .col {
    counter-increment: itemNum;
    padding: 40px 100px;
    /* display: flex; */
    /* align-items: flex-start; */
    display: grid;
    grid-template-columns: minmax(0, 250px) minmax(0, auto);
    gap: 25px;
    box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.08);
}
.gc-wrap .col + .col {
    margin-top: 30px;
}
.gc-wrap h5 {
    font-size: clamp(20px, 3vw, 22px);
    font-weight: 600;
    display: flex;
    align-self: flex-start;
    gap: 10px;
    letter-spacing: -0.025em;
    color: #222;
}
.gc-wrap h5:before {
    content: counter(itemNum, decimal-leading-zero) "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(30px, 2vw, 35px);
    font-size: clamp(15px, 2vw, 18px);
    aspect-ratio: 1;
    border-radius: 9999px;
    color: #fff;
    background-color: #1f1f1f;
}
.gc-wrap ul {
    gap: 8px;
}
.gc-wrap li {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .gc-wrap {
        margin-top: 0;
    }
    .gc-wrap .col {
        display: flex;
        flex-direction: column;
        padding: 30px;
    }
    .gc-wrap .col + .col {
        margin-top: 20px;
    }
}
/* benefit */
.benefit-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #222;
}
.benefit-wrap .col {
    padding: 40px 60px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    border-bottom: 1px solid #ddd;
}
.benefit-wrap .col .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(60px, 15vw, 90px);
    aspect-ratio: 1;
    border-radius: 9999px;
    background-color: #fff;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}
.benefit-wrap span.material-symbols-outlined {
    color: var(--page-point-color);
    font-size: clamp(36px, 3vw, 48px);
}
.benefit-wrap h5 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}
.benefit-wrap ul {
    gap: 5px;
}
.benefit-wrap li {
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: -0.025em;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .benefit-wrap {
        display: flex;
        flex-direction: column;
    }
    .benefit-wrap .col {
        padding: 30px 10px;
        gap: 25px;
    }
}
.form-wrap {
    display: flex;
    gap: 50px;
    padding: 60px 40px;
    border-block: 1px solid #222;
}
.form-wrap select.form-control {
    max-width: 100%;
}
.form-wrap :is(#item_2, #item_3) {
    /* display: none; */
}
.form-wrap .text {
    flex: 1;
}
.form-wrap .text h4 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: #222;
    letter-spacing: -0.025em;
}
.form-wrap .info {
    max-width: 750px;
    width: 100%;
    margin-top: 10px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 991.98px) {
    .form-wrap {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    #site .form-wrap #bbsArea .table.board_write_table tbody td,
    .form-wrap .info {
        max-width: unset;
        width: 100%;
    }
    .form-wrap .text h4 {
        /* text-align: center; */
    }
    #site .form-wrap #bbsArea .board_wrapper :where(form[id*="form"]) tbody tr {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 20;
}
#mainCarouselSwiper .swiper {
    display: block !important;
    height: 100%;
}
#mainCarouselSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: max(clamp(600px, 70vw, 750px), calc(var(--svh100))); */
    height: 100%;
}
#mainCarouselSwiper .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#site #mainCarouselSwiper .swiper-slide-active .swiper-bg img {
    animation: zoom-in 4s ease forwards;
}
#mainCarouselSwiper .swiper-slide .swiper-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}
@keyframes zoom-in {
    0% {
        scale: 1.1;
    }
    10% {
        scale: 1.1;
    }
    100% {
        scale: 1;
    }
}
#mainCarouselSwiper .swiper-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}
/* #mainCarouselSwiper .swiper-slide:not(.slide1) .swiper-bg img {
 filter: brightness(0.7);
 } */
#mainCarouselSwiper .swiper-caption {
    position: relative;
    z-index: 10;
}
#mainCarouselSwiper .swiper-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#mainCarouselSwiper .swiper-link-btn {
    display: none;
}
#mainCarouselSwiper .swiper-link-btn span::before {
    content: "더보기";
}
#mainCarouselSwiper .swiper-caption {
    text-align: center;
    color: #fff;
}
#mainCarouselSwiper .swiper-caption h1 {
    transition: 1s 0.5s;
    position: relative;
    font-size: clamp(32px, 6.5vw, 80px);
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 20px;
    color: inherit;
    /* transform: translateY(80px); */
    opacity: 0;
    font-family: var(--poppins);
}
#mainCarouselSwiper .swiper-slide-active .swiper-caption h1 {
    transform: translateY(0);
    opacity: 1;
    /* animation: upper 1s 0.5s ease forwards; */
}
/* @keyframes upper {
 0% {
 transform: translateY(80px);
 opacity: 0;
 }
 100% {
 transform: translateY(0px);
 opacity: 1;
 }
 }
 */
#mainCarouselSwiper .swiper-caption p {
    transition: 1s 0.75s;
    margin-top: 25px;
    font-size: clamp(15px, 2.15vw, 22px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: inherit;
    opacity: 0;
    line-height: 1.7;
}
#mainCarouselSwiper .swiper-slide-active .swiper-caption p {
    opacity: 1;
}
#mainCarouselSwiper [class*="swiper-button"] {
    display: none;
}
#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(30px, 5vw, 40px);
    max-width: 100%;
    padding-inline: 100px;
    height: auto;
}
#mainCarouselSwiper .swiper-pagination {
    position: static;
    display: flex;
    justify-content: flex-end;
    height: auto;
    line-height: 1;
    gap: 15px;
}
#mainCarouselSwiper .swiper-pagination span {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 0;
    margin: 0 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0);
    transition: ease-in-out 0.2s all;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
    #mainCarouselSwiper .swiper-slide {
        /* height: var(--svh100); */
        /* height: 700px; */
    }
    #mainCarouselSwiper .swiper-pagination {
        justify-content: center;
        transform-origin: center;
        opacity: 0;
        scale: 0.8;
        animation: upper 1s 1s ease forwards;
    }
}
/* [ mainpage ] */
.mainpage .section {
    background-color: #000;
    position: relative;
    height: var(--svh100);
}
@media (max-width: 767.98px) {
    /* 중간 크기일 때 (중간 높이) */
    .mainpage .section {
        min-height: 700px;
        height: auto;
    }
    .mainpage .section.main-visual{
        height: var(--svh100);
    }
}
@media (min-width: 768px) {
    .mainpage .section {
        height: calc(var(--svh100) - var(--navbar-height));
    }
    .mainpage .section.main-visual {
        height: var(--svh100);
    }
}
@media (min-width: 768px) and (max-height: 900px) {
    .mainpage .section {
        height: 700px;
    }
}
.mainpage .section > .container {
    z-index: 100;
    height: 100%;
    display: flex;
    align-items: center;
}
.mainpage [class*="bg"] {
    position: absolute;
    overflow: hidden;
    z-index: 0;
    height: 100%;
    width: 50%;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .mainpage [class*="bg"] {
        height: 50%;
        width: 100%;
    }
}
.mainpage .bg-img {
    /* top: 0; */
    background-color: #000;
    filter: brightness(0.7);
}
.mainpage .bg-img > .inner {
    /* opacity: 0.5; */
    width: 100%;
    height: 100%;
    scale: 1.15;
    transition: 3s 0s ease;
    background: var(--url) no-repeat center / cover;
}
.mainpage .prev_active .bg-img > .inner,
.mainpage .active .bg-img > .inner {
    /* scale: 1; */
    /* opacity: 1; */
}
.mainpage .bg-color {
    z-index: 10;
    /* top: 0; */
    background-color: #1f1f1f;
}
.mainpage h2 {
    font-size: clamp(32px, 5vw, 75px);
    font-weight: 700;
    font-family: var(--poppins);
}
.mainpage h2 + .detail p {
    font-size: clamp(16px, 3vw, 20px);
    letter-spacing: -0.025em;
    font-weight: 400;
    line-height: 1.6;
}
.mainpage h2 + .detail:has(h3) {
    margin-top: clamp(20px, 5vw, 50px);
}
.mainpage h3 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 500;
    font-family: var(--poppins);
}
.mainpage .detail h3 + p {
    margin-top: clamp(15px, 5vw, 30px);
    font-size: clamp(15px, 3vw, 18px);
    font-weight: 300;
}
.mainpage :where(*) {
    color: #fff;
}
.mainpage .board :where(*) {
    color: #222;
}
.m-link-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-right: 150px;
    margin-top: clamp(40px, 10vw, 70px);
    min-height: clamp(350px, 50vw, 395px);
}
.m-link-box .item {
    transition: 0.5s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
    padding-left: clamp(30px, 3vw, 45px);
    padding-block: 0px;
    border-block: 1px solid #404040;
}
.m-link-box .item strong {
    transition: 0.5s;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.m-link-box .item strong::before {
    content: "";
    transition: 0.5s;
    display: block;
    position: absolute;
    left: 0;
    transform: translateY(10px);
    /* top: 25px; */
    width: clamp(6px, 2vw, 14px);
    aspect-ratio: 1;
    border: 1px solid #535353;
    border-radius: 50%;
}
.m-link-box .item strong::after {
    content: "\f8ce";
    transition: 0.25s;
    position: absolute;
    transform: translateY(-7px);
    right: 30px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-400-out);
    font-size: clamp(24px, 3vw, 36px);
    opacity: 0;
}
.m-link-box .item span.exp {
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    display: block;
    height: 0px;
    opacity: 0;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.6;
    color: #6aa300;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    .m-link-box .item.open {
        z-index: 100;
        height: clamp(100px, 15vw, 140px);
        border-top-color: #fff;
        padding-block: clamp(10px, 5vw, 20px);
    }
    .m-link-box .item.open strong {
        color: #fff;
        font-size: clamp(20px, 2vw, 32px);
        margin-bottom: 10px;
        font-weight: 600;
    }
    .m-link-box .item.open strong::before {
        background-color: var(--page-point-color);
        border-color: var(--page-point-color);
    }
    .m-link-box .item.open strong::after {
        opacity: 1;
        right: 0;
    }
    .m-link-box .item.open span.exp {
        height: 20px;
        opacity: 1;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .m-link-box {
        padding-right: 0;
    }
    .m-link-box .item strong::after {
        transform: translateY(-3px);
    }
    .m-link-box .item {
        z-index: 100;
        height: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        padding-block: 20px;
        padding-right: 30px;
    }
    .m-link-box .item strong {
        color: #fff;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
        letter-spacing: -0.03em;
    }
    .m-link-box .item strong::before {
        background-color: var(--page-point-color);
        border-color: var(--page-point-color);
        left: 5px;
        top: 19px;
    }
    .m-link-box .item strong::after {
        opacity: 1;
        right: 0;
    }
    .m-link-box .item span.exp {
        height: 20px;
        opacity: 1;
    }
}
/* .main-content::before{} */
.main-service .bg-img {
    --url: url(/public/img/main/m-se-bg2.jpg);
}
.main-company .bg-img {
    --url: url(/public/img/main/m-cm-bg.jpg);
}
.main-news .bg-img {
    --url: url(/public/img/main/m-ns-bg.jpg);
}
.main-news .bg-color {
    background-color: #fff;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    .main-service .bg-img {
        right: 0;
    }
    .main-service .bg-color {
        left: 0;
    }
    .main-company .bg-img {
        left: 0;
    }
    .main-company .bg-color {
        right: 0;
    }
    .main-news .bg-img {
        left: 0;
        width: 40%;
    }
    .main-news .bg-color {
        right: 0;
        width: 60%;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .main-service .bg-img {
        bottom: 0;
        height: 100%;
        /* height: 200px; */
    }
    .main-service .bg-color {
        top: 0;
        opacity: 0.8;
        height: 100%;
        /* display: none; */
    }
    .main-company .bg-img {
        top: 0;
    }
    .main-company .bg-color {
        bottom: 0;
    }
    .main-news .bg-img {
        z-index: 1;
        top: 0;
        height: 350px;
    }
    .main-news .bg-color {
        bottom: 0;
        height: 500px;
    }
}
.m-inner-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    width: 100%;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .m-inner-wrap {
        grid-template-columns: unset;
        align-items: flex-start;
    }
    .main-service .m-inner-wrap {
        /* grid-template-rows: minmax(0, 580px) minmax(0, 200px); */
        padding-bottom: 80px;
    }
    .main-company .m-inner-wrap {
        grid-template-rows: minmax(0, 350px) minmax(0, 350px);
        overflow: hidden;
    }
    .main-news .m-inner-wrap {
        grid-template-rows: minmax(0, 300px) minmax(0, 500px);
    }
    .m-inner-wrap.company .col.info{
        padding-top: 80px;
    }
    .m-inner-wrap .col.info {
        padding-top: 50px;
    }
    .m-inner-wrap .col.board {
        height: 100%;
        /* margin-top: 50px; */
        padding-block: 40px;
    }
    .m-inner-wrap .col.board .board_box_blog2 {
        overflow-y: auto;
        height: 100%;
    }
}
.m-inner-wrap .detail {
    filter: unset !important;
    margin-right: 100px;
}
.m-inner-wrap .m-meter-box {
    position: relative;
    margin-left: 150px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.m-inner-wrap .m-meter-box::after {
    content: "";
    width: 50px;
    aspect-ratio: 1;
    background-color: #1f1f1f;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.m-inner-wrap .m-meter-box .item {
    height: clamp(180px, 5vw, 220px);
    border: 1px solid #404040;
    margin: -1px 0 0 -1px;
    place-content: center;
}
@media (max-width: 767.98px) {
    .m-inner-wrap .m-meter-box .item {
        height: 150px;
    }
}
.m-inner-wrap .m-meter-box .inner {
    width: fit-content;
    /* margin-inline: auto; */
    padding-left: clamp(20px,3vw,50px);
}
@media (max-width: 767.98px) {
    .m-inner-wrap .m-meter-box .inner {
        /* justify-content: center; */
        padding: 0;
        padding-left: 15px;
        /* margin-inline: auto; */
        /* text-align :center; */
    }
}
.m-inner-wrap .m-meter-box .item:is(:nth-child(1), :nth-child(2)) {
    border-top: 0;
}
.m-inner-wrap .m-meter-box .item:is(:nth-child(2), :nth-child(4)) {
    border-right: 0;
}
.m-inner-wrap .m-meter-box .item:is(:nth-child(3), :nth-child(4)) {
    border-bottom: 0;
}
.m-inner-wrap .m-meter-box .item:is(:nth-child(1), :nth-child(3)) {
    border-left: 0;
}
.m-inner-wrap .m-meter-box .cell {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    /* overflow: hidden; */
}
.m-inner-wrap .m-meter-box h5 {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1;
    margin-bottom: clamp(10px, 5vw, 25px);
}
.m-inner-wrap .m-meter-box .unit {
    font-size: clamp(18px, 3vw, 22px);
    opacity: 0.4;
    line-height: 1;
}
@media (max-width: 767.98px) {
    .m-inner-wrap .m-meter-box .unit {
        transform: translateY(5px);
    }
}
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    height: clamp(38px, 15vw, 60px);
}
/* 트랜지션 */
.m-meter-box .odometer-ribbon-inner {
    --duration: 3s;
    transition-delay: 1s !important;
    -webkit-transition-duration: var(--duration) !important;
    -moz-transition-duration: var(--duration) !important;
    -ms-transition-duration: var(--duration) !important;
    -o-transition-duration: var(--duration) !important;
    transition-duration: var(--duration) !important;
}
#site .m-meter-box .odometer {
    font-size: clamp(36px, 5vw, 65px);
    font-weight: 300;
    line-height: 1;
    /* letter-spacing: -0.05em; */
    color: var(--page-point-color);
    font-family: var(--poppins);
    margin-bottom: -10px;
}
.m-meter-box .odometer * {
    line-height: 1;
    color: inherit;
}
.m-meter-box .odometer-formatting-mark {
    display: none;
}
.m-meter-box .odometer-value {
    width: 100%;
    font-weight: 200;
    color: inherit;
}
.m-meter-box span.unit {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}
/* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
@media (max-width: 1199.98px) {
    .m-inner-wrap .detail,
    .m-link-box {
        margin-right: 20px;
    }
    .m-inner-wrap .m-meter-box {
        margin-left: 20px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .m-inner-wrap .detail,
    .m-link-box {
        margin-right: 0px;
    }
    .m-inner-wrap .m-meter-box {
        margin-left: 0px;
        margin-top: 25px;
    }
    #site .m-meter-box .odometer {
        font-size: 32px;
    }
    .odometer.odometer-auto-theme,
    .odometer.odometer-theme-default {
        height: 38px;
    }
}
/* [ main-widget ] */
[class^="board_box"] {
    margin-bottom: 0;
}
.page-header {
    display: none;
}
.type_thumb {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 60px clamp(20px, 3vw, 50px);
}
.type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
.type_thumb .inner a {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
}
.type_thumb .thumb {
    transition: 0.5s;
    aspect-ratio: 1.6666666667;
    scale: 1.05;
    /* height: auto; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
@media (hover: hover) {
    .type_thumb .inner:hover .thumb {
        scale: 1.15;
    }
}
.type_thumb .bottom {
    padding: 0;
}
.type_thumb .info {
    /* display: none; */
    margin-top: clamp(15px, 2vw, 20px);
    opacity: 0.5;
    font-size: 13px;
}
.type_thumb .info :is(.writer, .hits) {
    display: none;
}
.type_thumb .bottom .title {
    padding: 0;
    margin-top: 15px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.type_thumb .bottom .title a {
    font-size: clamp(15px, 3vw, 18px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.025em;
}
.type_thumb .inner:hover .title span.subject {
    /* color: #000; */
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .type_thumb {
        /* padding-top: 50px; */
        gap: 25px 15px;
    }
}
/* [ main-popup ] */
#mainPopup {
    position: relative;
    top: calc(var(--navbar-height) - 140px);
}
#site .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 .main_popup.show {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.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;
}
.main_popup span.material-symbols-outlined {
    line-height: 0.8;
    font-variation-settings: var(--gms-200-out);
    font-size: inherit;
}
.main_popup .main_popup_contents {
    overflow: hidden;
    /* padding: 10px; */
    background: #fff;
}
.main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
.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;
}
.main_popup_optional label {
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}
.main_popup_optional label input[type="checkbox"] {
    display: none;
}
.main_popup_optional label span {
    padding-left: 3px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.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); */
}
.main_popup_optional :where(label, div) {
    opacity: 0.8;
}
.main_popup_optional :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
.main_popup_optional :where(label, div, span) {
    line-height: 1;
}
.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
}
.main_popup.main_popup_left {
    left: 50px;
}
.main_popup.main_popup_center {
    left: 50%;
    transform: translate(-50%);
}
.main_popup.main_popup_right {
    right: 50px;
}
@media (max-width: 767px) {
    .main_popup.main_popup_left,
    .main_popup.main_popup_center,
    .main_popup.main_popup_right {
        left: 15px;
        right: 15px;
        transform: none;
    }
}
/* ---------------------------- table ---------------------------- */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
}
:where(.table) {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    table-layout: fixed;
    border-spacing: 0;
}
:where(.table) :where(th, td) {
    vertical-align: top;
    line-height: 1.5;
}
.table-style {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
    border-top: 2px solid #222;
    background-color: #fff;
    margin: 0;
}
.table-style :is(th, td) {
    padding: 15px 19px;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid var(--border-color);
    text-align: center;
}
.table-style td {
    color: #444;
}
.table-style thead th {
    border-bottom: 0;
    background-color: #eee;
    border: 1px solid var(--border-color);
    color: #222;
    /* text-align: center; */
    font-weight: 600;
}
.table-style thead,
.table-style tbody:only-child {
    border-top: 2px solid var(--page-point-color);
}
.table-style tbody th {
    background-color: #f7f7f7;
    /* text-align: center; */
    font-weight: 600;
}
.table-number tbody > tr {
    counter-increment: itemNum;
}
.table-number thead > tr > th:first-child {
    text-align: center;
}
.table-number tbody > tr > td:first-child {
    text-align: center;
}
.table-number tbody > tr > td:first-child::before {
    content: counter(itemNum) "";
    text-align: center;
}
/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
    margin-block: 0;
}
/* 게시글 공지사항 */
.board_wrapper tr.notice {
    background-color: #f7f7f7;
}
.board_wrapper tr.notice td.subject a {
    font-weight: 500;
    color: #000;
}
.board_wrapper tr.notice td.cate span {
    display: none;
}
.board_wrapper tr.notice td.cate::before {
    content: "공지";
    color: #222;
}
/* 게시글 아이콘 */
.board_wrapper td.subject .is_secret {
    order: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board_wrapper td.subject span {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 7px;
}
.board_wrapper td.subject small {
    margin-top: 0;
}
/* 잠금 아이콘 */
.board_wrapper td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
}
/* 댓글 아이콘*/
.board_wrapper 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 td.subject small.comment::before {
    content: "[";
}
.board_wrapper td.subject small.comment::after {
    content: "]";
}
.board_wrapper td.subject small.comment i {
    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;
}
:where(.member_wrapper, .board_wrapper) .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
:where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0;
}
/* 게시판/주문폼/회원가입 버튼 */
:where(.member_wrapper, .board_wrapper) :where(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}
/* checkbox, radio */
: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);
}
:where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
:where(.member_wrapper, .board_wrapper) .checkbox label {
    cursor: pointer;
    width: fit-content;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
:where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
    font-weight: 500;
    color: #222;
    text-decoration: underline;
}
: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;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
: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 (width <= 767.98px) {
    #site :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 30px;
        /* margin-bottom: 50px; */
        /* padding-top: 30px; */
        display: flex;
        justify-content: center;
        width: 100%;
    }
    :where(.member_wrapper .text-center .btn + .btn) {
        margin-left: 0;
    }
    :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    :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 8px;
    margin-bottom: 70px;
}
#bbsArea .category_wrap li {
    margin: 0;
}
#bbsArea .category_wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
    background-color: #f4f4f4;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: clamp(14px, 2vw, 15px);
    height: 45px;
    padding-inline: 30px;
    border-radius: 9999px;
    border: 1px solid transparent;
    letter-spacing: -0.02em;
}
#bbsArea .category_wrap a:hover {
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    font-weight: 600;
}
#bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    font-weight: 600;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .category_wrap ul {
        gap: 8px;
        margin-bottom: 40px;
    }
    #bbsArea .category_wrap a {
        padding: 10px 20px;
    }
}
/* 게시판 노출 */
#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 {
    transition: 0.25s;
    width: 120px;
    height: clamp(50px, 5vw, 60px);
    border-radius: 9999px;
    border: 1px solid var(--page-point-color);
    background-color: #fff;
    color: var(--page-point-color);
    /* margin-left: auto; */
    margin-inline: auto;
    font-weight: 600;
}
.form-wrap #bbsArea .btn-lg {
    margin-left: auto;
    margin-right: 0;
}
#bbsArea .btn-lg:hover {
    background-color: var(--page-point-color);
    color: #fff;
}
#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}
#bbsArea .board_wrapper + .search_wrap {
    margin-top: 90px;
}
#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 li + li {
    margin-left: -1px;
}
#bbsArea .pagination_wrap a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    aspect-ratio: 1;
    font-size: 15px;
    border-radius: 9999px;
}
#bbsArea .pagination_wrap li:not(.active) a:hover {
    background-color: #eee;
}
#bbsArea .pagination_wrap li.active a {
    width: 28px;
    background-color: var(--page-point-color);
    color: #fff;
    font-weight: 700;
}
#bbsArea .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* 게시판 목록 하단 */
#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
}
#bbsArea .search_wrap #search_kind {
    cursor: pointer;
    line-height: 1;
}
#bbsArea .search_wrap .write_btn_wrap {
    margin-top: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .search_wrap {
        flex-direction: column;
        max-width: 300px;
        margin-inline: auto;
    }
    #bbsArea .search_wrap .write_btn_wrap {
        position: static;
        display: flex;
        gap: 5px;
        width: 100%;
    }
    #bbsArea select.form-control {
        max-width: 100% !important;
    }
    #bbsArea .search_wrap .write_btn_wrap > .btn {
        width: 100%;
        min-width: auto;
        flex: 1;
    }
}
#bbsArea .badge {
    display: inline-flex;
    background-color: var(--page-point-color);
    border-radius: 3px;
    padding: 3px 7px;
    margin-block: -3px;
    margin-right: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
#bbsArea .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
#bbsArea .option_wrap .list_btn_wrap {
    position: static;
}
/* 게시글 헤더 */
#bbsArea .header_wrap {
    text-align: center;
    /* padding: 40px 30px 55px; */
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    /* border-bottom: 1px solid #aaa; */
}
#bbsArea .header_wrap h4.title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    color: #000;
}
#bbsArea .header_wrap span {
    color: #666;
}
#bbsArea .header_wrap strong {
    color: #000;
    font-weight: 700;
}
#bbsArea .header_wrap .title {
    margin: 0;
    font-size: 24px;
}
#bbsArea .header_wrap .info {
    margin-top: 0;
    opacity: 0.5;
}
#bbsArea .header_wrap .info span {
    font-size: clamp(12px, 2vw, 16px);
    color: #000;
}
#bbsArea .header_wrap .info span + span {
    margin-left: 9px;
}
/* 게시글 콘텐츠 */
#bbsArea .contents_wrap {
    padding: clamp(50px, 5vw, 80px) 0px;
}
#bbsArea .contents_wrap .contents_inner {
    font-size: 14px;
    overflow: auto;
}
#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) a:hover {
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #bbsArea :is(.download_wrap, .status_wrap) ul {
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr {
        display: flex;
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr > * {
        width: 100%;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr th {
        padding-bottom: 10px;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr a {
        word-break: break-all;
    }
}
/* 게시글 댓글 */
#bbsArea .reply_wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
#bbsArea .reply_wrap h4 {
    position: static;
    text-align: left;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
#bbsArea .reply_wrap > h4 {
    /* order: 1; */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
#bbsArea .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
#bbsArea .reply_wrap .btn_wrap .pull-left {
    display: flex;
    gap: 5px;
}
: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 .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_list {
    /* order: 3; */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ccc;
    margin-block: 20px;
}
#bbsArea #reply_list .media {
    position: relative;
    margin: 0;
    padding: 20px 5px 40px;
}
#bbsArea #reply_list .media + .media {
    border-top: 1px solid #ddd;
}
#bbsArea #reply_list .media .media-left,
#bbsArea #reply_list .media > .pull-left {
    padding-right: 20px;
}
#bbsArea #reply_list .media .media-left img {
    border-radius: 100%;
}
#bbsArea #reply_list .media .media-body {
    position: static;
}
#bbsArea #reply_list .media .media-body .info {
    position: absolute;
    /* right: 0; */
    left: 130px;
    bottom: 15px;
}
#bbsArea #reply_list .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_list .media .media-body .info span {
    color: #aaa;
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}
#bbsArea #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_list .media .media-body p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-all;
}
#bbsArea #reply_write .info .form-control {
    display: inline-block;
    width: 120px;
}
#bbsArea #reply_write .info .form-control + .form-control {
    margin-left: 2px;
}
#bbsArea #reply_write .contents {
    margin-top: 5px;
}
#bbsArea #reply_write .contents .form-control {
    height: 100px;
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
    padding: 10px 15px;
}
#bbsArea #reply_write .btn_wrap {
    margin-top: 5px;
    text-align: right;
}
#bbsArea #reply_write .btn_wrap .btn {
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 539px) {
    #bbsArea #reply_write .info .form-control {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    #bbsArea #reply_write .info .form-control + .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;
    width: 100%;
}
#bbsArea .board_wrapper :where(form[id*="form"]) tbody tr {
    flex-direction: column;
}
.form-wrap #bbsArea .board_wrapper :where(form[id*="form"]) tbody tr {
    flex-direction: row;
}
#bbsArea .board_write_table {
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
}
.form-wrap #bbsArea .table.board_write_table tbody td {
    max-width: 570px;
}
#bbsArea .table.board_write_table .text-muted {
    display: none;
}
#bbsArea .table.board_write_table .text-muted i {
    color: var(--page-point-color);
}
#bbsArea .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
#bbsArea .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
#bbsArea .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}
#bbsArea .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .table.board_write_table .text-muted {
        width: 100%;
    }
}
/* 휴지통 버튼 */
#bbsArea .table.board_write_table :is(.refresh, .delete_attach) {
    display: inline-block;
    color: #999;
    line-height: 40px;
    margin-left: 7px;
    margin-right: 7px;
    cursor: pointer;
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach):hover {
    color: #ec0909;
}
/* 파일 추가 버튼 */
#bbsArea .table.board_write_table .files {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 15px;
    flex: 1;
}
#bbsArea .table.board_write_table #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;
}
/* input 가로 */
/* #bbsArea .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
 width: 100%;
 } */
/* 필수 입력 항목 */
#bbsArea .table.board_write_table th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: absolute;
    right: -12px;
    top: -1px;
    /* margin-right: 2px; */
    color: var(--page-point-color);
}
/* textarea 글자수 */
#bbsArea .frm_textarea_cnt {
    display: none;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    #bbsArea .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        aspect-ratio: 1;
        height: 40px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #bbsArea .table.board_write_table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #bbsArea .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100%;
    }
    #bbsArea .table.board_write_table #delete_thumb {
        width: 100%;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    #bbsArea .table.board_write_table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }
}
/* input */
.form-control {
    width: 100%;
    font-family: var(--page-font-family);
    padding: 0.6rem 1.05rem;
    font-size: clamp(13px, 2vw, 15px);
    height: var(--form-height);
    border-radius: 4px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--page-grey-color);
    color: #333;
}
.form-control::placeholder {
    color: #999;
}
#search_query.form-control {
    width: 100%;
    max-width: 320px;
    background-color: #fff;
    border: 1px solid #ddd;
}
#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;
}
.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;
}
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;
}
select.form-control#wr_cate {
    max-width: 250px;
}
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.valid-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.valid-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:hover {
    color: var(--page-point-color);
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control.valid-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.valid-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:hover {
    color: var(--page-point-color);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .form-control {
        width: 100%;
    }
}
.wr_form_wrap {
    display: grid;
    grid-template-columns: 1fr 0.5fr 2fr;
    gap: 10px;
    padding: 3px 0 0;
}
.wr_form_wrap label {
    font-size: 13px;
}
.wr_form_item {
    position: relative;
}
.wr_form_item input.form-control {
    padding-right: 40px;
}
.wr_form_item :where(.input-group, .form-control) {
    width: 100%;
}
@media (max-width: 768px) {
    .wr_form_wrap {
        display: flex;
        flex-direction: column;
    }
}
.wr_form_item .form-control {
    background-color: transparent;
    padding-right: 35px;
}
.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;
    color: #333;
    letter-spacing: -0.025em;
}
.custom_checkbox + span {
    user-select: none;
}
.custom_checkbox + span::before {
    margin: 0 0 0 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;
}
.radio-inline {
    cursor: pointer;
    align-self: center;
    margin-top: 0 !important;
}
.status_wrap [name="wr_status"] {
    display: none;
}
:is(.custom_radio, .status_wrap [name="wr_status"]) + span::before {
    margin: 0 0 0 0;
    font-size: 1.25em;
    color: #898989;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
:is(.custom_radio, .status_wrap [name="wr_status"]):checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}
:is(.custom_radio, .status_wrap [name="wr_status"])[disabled],
:is(.custom_radio, .status_wrap [name="wr_status"])[disabled] + span {
    opacity: 0.5;
}
/* 자동입력방지 */
#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;
    /* border-left: 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(50px, 15vw, 60px) clamp(20px, 3vw, 50px);
}
:is(.table_video, .table_blog2, .table_pd)::before,
:is(.table_video, .table_blog2, .table_pd)::after {
    content: none;
}
/* [min-small / portrait phones] 모바일, 576px 이상 ▲ */
@media (width >= 576px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
    /* 등록된 [상품/게시글]이 없습니다 문구 */
}
:is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}
/* [ 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) :is(th, td) {
    padding: 17px 15px;
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #ddd;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody .cate span {
    color: var(--page-point-color);
    font-weight: 600;
}
: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.text-center {
    display: table-cell;
    text-align: center;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    color: #222;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody th.num {
    font-weight: normal;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.015em;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_responsive tbody th {
    margin-bottom: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .subject {
        width: 100%;
        padding-left: 50px;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .status {
        width: 35%;
    }
    #rc02 :is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody .subject {
        padding-left: 60px;
    }
}
/* [ 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 .badge {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
}
.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);
}
@media (max-width: 768px) {
    .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;
}
:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
:where(.table_video, .table_blog2, .table_pd) .top {
    position: relative;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a {
    display: block;
    overflow: hidden;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) img.thumb {
    transition: 0.5s;
    display: block;
    aspect-ratio: 1.6666666667;
    object-fit: cover;
    width: 100%;
    /* max-width: 400px; */
    height: auto;
    background-color: #ccc;
    /* border-radius: var(--radius-md); */
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) .inner:hover img.thumb {
    scale: 1.1;
}
:is(.table_pd) a span.thumb + img.thumb {
    aspect-ratio: 1;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none !important;
}
:is(.table_video, .table_blog2, .table_pd) dd {
    margin-bottom: 0;
}
:is(.table_video, .table_blog2, .table_pd) .bottom {
    margin-top: clamp(20px, 5vw, 30px);
    padding: 0;
}
:is(.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: clamp(16px, 5vw, 20px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #333;
    letter-spacing: -0.02em;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) .inner:hover a {
    /* text-decoration: underline; */
    /* color: #000; */
}
: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: 20px;
    opacity: 0.7;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info span {
    padding: 0;
    font-size: 13px;
    line-height: 1;
}
/* [ board-form ] */
:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
.board_wrapper :where(form[id*="form"]) :where(th, td, table.table) {
    border: 0;
    line-height: 1;
}
.board_wrapper :where(form[id*="form"]) table {
    width: 100%;
    display: flex;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) th {
    padding: 0;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    width: auto;
    border-top: 0;
    letter-spacing: -0.01em;
    color: #222;
}
.board_wrapper :where(form[id*="form"]) :where(th, td) {
    font-size: clamp(14px, 2vw, 16px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .board_wrapper :where(form[id*="form"]) th {
        margin-bottom: 10px;
        width: fit-content;
    }
}
@media (max-width: 575.98px) {
    :where(.table_video, .table_blog2, .table_pd) .top {
        margin-inline: calc(var(--container-padding-inline) * -1);
    }
}
.board_wrapper :where(form[id*="form"]) tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 35px;
    /* gap: 25px; */
}
.board_wrapper :where(form[id*="form"]) tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.board_wrapper :where(form[id*="form"]) tbody tr:has(textarea) {
    align-items: start;
}
.board_wrapper :where(form[id*="form"]) tbody tr:has(textarea) th {
    /* padding-top: 12px; */
}
.board_wrapper :where(form[id*="form"]) #item_agree .checkbox {
    margin-top: 0;
}
/* 동의 */
.board_wrapper :where(form[id*="form"]) #item_agree label,
.board_wrapper :where(form[id*="form"]) #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
/* 주문내역 숨김 */
:where(.form-wrap, form) #list_btn {
    display: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .board_wrapper :where(form[id*="form"]) table.table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}
/* [ board-goods ] */
.board_pd_view {
    position: relative;
}
.board_pd_view .pd_top_wrap {
    margin-bottom: 100px;
}
.board_pd_view .pd_top_wrap .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}
.board_pd_view .pd_top_wrap .row::before,
.board_pd_view .pd_top_wrap .row::after {
    content: none;
}
.board_pd_view .pd_top_wrap :where(.pd_col_lft, .pd_col_rgt) {
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 768px) {
    .board_pd_view .pd_top_wrap .row {
        gap: 40px;
    }
    .board_pd_view .pd_top_wrap .pd_col_rgt {
        padding-top: 0;
    }
}
@media (min-width: 992px) {
    .board_pd_view .pd_top_wrap .row {
        gap: 60px;
    }
    .board_pd_view .pd_top_wrap :where(.pd_col_lft, .pd_col_rgt) {
        width: 100%;
        overflow: hidden;
    }
    .board_pd_view .pd_top_wrap .pd_col_rgt {
        width: inherit;
        padding-top: 30px;
    }
}
@media (min-width: 1200px) {
    .board_pd_view .pd_top_wrap .row {
        gap: 90px;
    }
}
@media (max-width: 767px) {
    .board_pd_view .pd_top_wrap .row {
        gap: 40px;
    }
    .board_pd_view .pd_top_wrap {
        margin-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .board_pd_view .pd_top_wrap .row {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* 상품게시판 상세페이지 메인이미지 */
.board_pd_view .pd_slider_wrap :where(.pd_img_main, .pd_img_main .thumb, .pd_img_sub .thumb) {
    aspect-ratio: 1;
}
#site .board_pd_view .pd_img_main {
    overflow: hidden;
    position: relative;
    margin: 0;
    border-radius: var(--radius-md);
}
/* 상품게시판 상세페이지 메인이미지 슬라이드 */
.board_pd_view .pd_img_main :where(.next-btn, .prev-btn) {
    z-index: 1010;
    position: absolute;
    top: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 50px;
    height: 100%;
    padding: 0;
    cursor: pointer;
}
.board_pd_view .pd_img_main .next-btn {
    right: 0px;
}
.board_pd_view .pd_img_main .prev-btn {
    left: 0px;
}
.board_pd_view .pd_img_main :where(.next-btn, .prev-btn)::before {
    transition: opacity 0.3s;
    opacity: 0.35;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    aspect-ratio: 1;
    width: 30px;
    border-radius: 50%;
    background: #000;
}
.board_pd_view .pd_img_main :where(.next-btn, .prev-btn):hover::before {
    opacity: 1;
}
.board_pd_view .pd_img_main .next-btn::before {
    content: "\f105";
}
.board_pd_view .pd_img_main .prev-btn::before {
    content: "\f104";
}
.board_pd_view .pd_slider_wrap .pd_img_sub {
    min-height: 82px;
    margin-top: 25px;
}
.board_pd_view .pd_slider_wrap .pd_img_sub > [class^="pd_thumb"] {
    display: none;
}
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-list {
    padding: 0 !important;
}
.board_pd_view .pd_slider_wrap :where(.pd_img_main) .slick-track {
    display: flex;
}
.board_pd_view .pd_slider_wrap :where(.pd_img_main, .pd_img_sub) .slick-slide {
    width: inherit !important;
    background: #f7f7f7;
}
.board_pd_view .pd_slider_wrap .pd_img_main :where(.slick-list, .slick-track) {
    height: 100%;
}
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-slide .thumb {
    transition: 0.075s;
}
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-track {
    width: inherit !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    /* display: grid; */
    /* grid-template-columns: repeat(6, minmax(0, auto)); */
    gap: 4px 5px;
    width: 100%;
}
.board_pd_view .pd_slider_wrap :where(.pd_img_main, .pd_img_sub) .thumb {
    display: block;
    margin: 0;
    padding: 0;
    position: static;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
}
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-slide {
    overflow: hidden;
    aspect-ratio: 1;
    height: 100%;
    flex: 1;
    max-width: 90px;
    border-radius: var(--radius-md);
}
.board_pd_view .pd_slider_wrap .pd_img_sub .thumb {
    cursor: pointer;
    opacity: 0.35;
}
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-current .thumb,
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-slide:where(:hover) .thumb {
    opacity: 1;
    border-color: #ccc;
}
@media (max-width: 767px) {
    .board_pd_view .pd_slider_wrap .pd_img_sub {
        margin-top: var(--container-padding-inline);
        min-height: auto;
    }
    .board_pd_view .pd_top_wrap .pd_slider_wrap {
        margin: 0 calc((var(--container-padding-inline) + 1px) * -1);
    }
}
.board_pd_view .pd_img_main .slick-dots {
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex !important;
    justify-content: center;
    gap: 0 10px;
    width: auto;
    padding: 7px 12px;
    border-radius: 50px;
    bottom: 15px;
    background-color: rgba(0, 0, 0, 0.35);
}
.board_pd_view .pd_img_main .slick-dots li {
    opacity: 0.65;
    width: auto;
    height: auto;
    margin: 0;
}
.board_pd_view .pd_img_main .slick-dots li.slick-active {
    opacity: 1;
}
.board_pd_view .pd_img_main .slick-dots li button {
    width: 8px;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background-color: #fff;
}
.board_pd_view .pd_img_main .slick-dots li button:before {
    content: none;
}
/* 상품게시판 상세페이지 상품 제목 */
.board_pd_view .pd_info_wrap {
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.board_pd_view .pd_title_wrap {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
}
.board_pd_view .pd_title_wrap .badge {
    font-size: 13px;
    padding: 7px 10px 6px;
}
.board_pd_view .pd_title_wrap .title {
    margin: 0;
    letter-spacing: -0.034em;
    line-height: 4rem;
    word-break: break-all;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    color: #111;
}
.board_pd_view .pd_title_wrap .badge + .title {
    margin-top: 15px;
}
.board_pd_view .pd_title_wrap .info {
    display: none !important;
}
.board_pd_view .pd_title_wrap .info {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
    padding-left: 3px;
    font-size: 13px;
    color: #888;
    margin-top: 20px;
}
.board_pd_view .pd_title_wrap .info strong {
    margin-right: 5px;
}
.board_pd_view .pd_preview_wrap {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 250px;
    padding-right: 15px;
    margin-right: 2px;
    margin-bottom: 25px;
    /* -moz- */
    scrollbar-width: thin;
}
.board_pd_view .pd_preview_wrap #pd_preview_text {
    margin: 0;
    font-size: 16px;
    line-height: 2.45rem;
    /* white-space: pre-line; */
    word-break: break-all;
    padding-top: clamp(30px, 5vw, 50px);
}
.board_pd_view .pd_preview_wrap #pd_preview_text #pdView {
    display: none;
}
.board_pd_view .pd_preview_wrap #pd_preview_text #pdForm li {
    margin-bottom: 5px;
}
.board_pd_view .pd_preview_wrap #pd_preview_text * {
    margin: 0;
    padding: 0;
}
.board_pd_view .pd_preview_wrap #pd_preview_text :where(div, section, embed, iframe, img, video, table) {
    max-width: 100%;
    height: auto;
}
.board_pd_view .pd_preview_wrap #pd_preview_text :where(iframe, video) {
    aspect-ratio: 1.7777777778;
}
.board_pd_view .pd_preview_wrap #pd_preview_text :where(table) {
    width: 100%;
}
.board_pd_view .none_button .pd_preview_wrap {
    margin-bottom: 3px;
}
/* chorome, edge, safari */
.board_pd_view .pd_preview_wrap::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
    background: #ddd;
    border-radius: 50px;
}
.board_pd_view .pd_preview_wrap::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 50px;
}
.board_pd_view .pd_preview_wrap::-webkit-scrollbar-track {
    border-radius: var(--radius-md);
    background-color: #eee;
}
.board_pd_view .pd_preview_wrap::-webkit-scrollbar:vertical {
    width: 5px;
}
.board_pd_view .pd_preview_wrap::-webkit-scrollbar:horizontal {
    height: 12px;
}
/* 상품게시판 상세페이지 버튼 */
.board_pd_view .pd_btn_wrap {
    padding-top: 25px;
    border-top: 1px solid #ddd;
    margin-top: auto;
}
.board_pd_view .pd_btn_wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] {
    flex-grow: 1;
    flex-basis: 0;
    min-height: 60px;
}
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    background: #333;
    color: #fff;
    white-space: normal;
    border-radius: var(--radius-sm);
}
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a span {
    text-align: center;
}
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a:where(:hover, :focus) {
    background: #111;
}
/* 상품게시판 상세페이지 탭 */
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs {
    display: flex;
    width: 100%;
}
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs li {
    flex: 1 25%;
}
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs li + li {
    margin-left: -1px;
}
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0px 20px;
    border: 1px solid #ddd;
    border-bottom-color: #888;
    border-radius: 0;
    color: #888;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs li a span {
    overflow: hidden;
    position: relative;
    display: block;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs li.active {
    z-index: 50;
}
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs li.active a {
    z-index: 5;
    border-color: #888;
    border-bottom-color: transparent;
    background-color: #fff;
    color: #333;
    font-weight: 700;
    font-size: 16px;
}
.board_pd_view .pd_tabs_nav_wrap ul.nav-tabs li:not(.active) a:where(:hover, :focus) {
    background: #f7f7f7;
}
.board_pd_view .contents_wrap {
    padding: 80px 0px;
    border-bottom: 1px solid #ccc;
}
.board_pd_view .contents_wrap img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .pd_view_wrapper {
        margin-top: 0;
    }
    .board_pd_view {
        display: flex;
        flex-direction: column;
    }
    .board_pd_view .pd_title_wrap {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .board_pd_view .pd_tabs_nav_wrap {
        display: none;
    }
    .board_pd_view .option_wrap:not(.mobile) {
        order: 3;
    }
    .board_pd_view .option_wrap:not(.mobile) .move_btn_wrap {
        display: none !important;
    }
    ._board_pd_view .option_wrap.mobile {
        order: 1;
        z-index: 2000;
        position: sticky;
        left: 0;
        top: 0;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        height: 45px;
        margin: 0 -15px 0px;
        padding: 0 15px;
        border: 0;
        color: #666;
        background-color: #f7f7f7;
    }
    ._board_pd_view .option_wrap.mobile .list_btn_wrap {
        position: static;
    }
    ._board_pd_view .option_wrap.mobile .list_btn_wrap a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        color: transparent;
        height: 100%;
        padding: 0;
        background-color: transparent;
        border: 0;
    }
    ._board_pd_view .option_wrap.mobile .list_btn_wrap a::before {
        content: "\f060";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #666;
        line-height: 0;
    }
    ._board_pd_view .option_wrap.mobile .btn_wrap {
        display: flex;
        gap: 0 10px;
        flex-direction: row-reverse;
        align-items: center;
    }
    ._board_pd_view .option_wrap.mobile .btn_wrap .btn {
        display: inline-flex;
        align-items: center;
        color: inherit;
        border: 0;
        padding: 0;
        height: 100%;
        font-weight: 700;
        font-size: 14px;
        text-decoration: underline;
        line-height: 1;
    }
    ._board_pd_view .option_wrap.mobile .btn_wrap .btn:where(:focus, :hover) {
        background: inherit;
        border: 0;
    }
    ._board_pd_view .option_wrap.mobile .btn + .btn {
        margin-left: 0px;
    }
    ._board_pd_view .option_wrap.mobile .move_btn_wrap {
        display: flex !important;
        gap: 0 15px;
        padding: 0;
        margin: 0;
    }
    ._board_pd_view .option_wrap.mobile .move_btn_wrap li {
        list-style: none;
    }
    ._board_pd_view .option_wrap.mobile .move_btn_wrap button {
        padding: 0;
        background-color: transparent;
        color: inherit;
        border-radius: 0;
        border: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
    }
    ._board_pd_view .option_wrap.mobile .move_btn_wrap button:where(:hover, :focus, :active) {
        color: #0c60b4;
        font-weight: 700;
    }
    .board_pd_view .pd_top_wrap {
        /* order: 2; */
    }
    .board_pd_view .pd_bottom_wrap {
        /* order: 3; */
    }
    .board_pd_view .reply_wrap {
        /* order: 4; */
    }
    .board_pd_view .pd_preview_wrap #pd_preview_text {
        line-height: 2rem;
        font-size: 15px;
    }
    .board_pd_view .pd_title_wrap .title {
        font-size: 24px;
        line-height: 3.5rem;
        font-weight: 600;
    }
    .board_pd_view .pd_preview_wrap {
        flex: auto;
        /* max-height: 200px; */
    }
    .board_pd_view .pd_slider_wrap :where(.pd_img_main, .pd_img_sub) .thumb {
        width: 100% !important;
    }
    .board_pd_view .pd_btn_wrap li.pd_btn_item {
        flex: 1 49%;
    }
    .board_pd_view .tab-content > .tab-pane {
        display: block;
    }
    .board_pd_view .tab-content > .tab-pane + .tab-pane {
        margin-top: 70px;
        display: flex;
    }
    .board_pd_view .contents_wrap {
        padding-block: 0 !important;
        border: 0;
        width: 100%;
    }
    #site .board_pd_view .contents_wrap .pd_tabs_tp_title {
        display: flex;
        border-bottom: 1px solid #ccc;
        margin: 0 0 30px;
        padding: 0px 0px 15px;
        font-size: 20px;
        font-weight: 600;
    }
    .board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] {
        flex-grow: 0;
        flex: 1;
        min-height: 55px;
    }
    .board_pd_view .pd_btn_wrap li[class^="pd_btn_item"]:only-child {
        flex-grow: 1;
        min-height: 60px;
    }
}
/* 작성 */
.board_wrapper .wr_caution {
    position: relative;
    margin-top: 7px;
    margin-bottom: 0;
    padding-left: 18px;
    font-size: 14px;
    font-weight: 400;
    /* color: #456e98; */
    word-break: keep-all;
    letter-spacing: -0.02em;
    text-align: left;
}
.board_wrapper .wr_caution i {
    position: absolute;
    left: -2px;
    top: 3px;
    font-size: 13px;
    /* color: #77a9db; */
}
.board_wrapper #storage-size {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 3px;
}
.board_wrapper #storage-size .info {
    padding: 2px 10px;
    line-height: 1;
}
.board_wrapper #storage-size span {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}
.board_wrapper #storage-size span.min {
    text-align: right;
    font-weight: 500;
    color: #222;
}
.board_wrapper #storage-size span.max::before {
    content: "/";
    opacity: 0.75;
    margin-right: 2px;
    margin-left: 4px;
}
.board_wrapper #storage-size span:where(.min, .max) {
    display: inline-block;
    min-width: 45px;
}
.board_wrapper #storage-size span.quest {
    margin-left: 5px;
}
.board_wrapper #storage-size span.quest i {
    font-size: 14px;
    color: #bbb;
}
.board_wrapper #storage-size span.quest small {
    z-index: 100;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: var(--page-point-color);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}
.board_wrapper #storage-size span.quest small b {
    color: #fff;
}
.board_wrapper #storage-size span.quest small::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 13px;
    height: 6px;
    background: var(--page-point-color);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.board_wrapper #storage-size .info:is(:hover, :focus) {
    cursor: help;
}
.board_wrapper #storage-size .info:is(:hover, :focus) span.min {
    color: #0c60b4;
    font-weight: 700;
    text-decoration: underline;
}
.board_wrapper #storage-size .info:is(:hover, :focus) span.quest i {
    color: var(--page-point-color);
}
.board_wrapper #storage-size .info:is(:hover, :focus) span.quest small {
    display: block;
}
.board_wrapper #storage-size .info.over span.min {
    color: var(--page-danger-color);
    font-weight: 700;
    text-decoration: underline;
}
.board_wrapper #storage-size .info.over span.quest i {
    color: var(--page-danger-color);
}
.board_wrapper #storage-size .info.over span.quest small {
    background-color: var(--page-danger-color);
}
.board_wrapper #storage-size .info.over span.quest small::before {
    background-color: var(--page-danger-color);
}
.board_wrapper #storage-size .info.over span.quest::after {
    content: "파일 용량이 최대치에 도달했습니다.";
    margin-left: 3px;
    margin-bottom: 1px;
    line-height: 1;
    font-weight: 700;
    color: #e92424;
}
.board_wrapper.pd_bd_wrapper .table.board_write_table tbody tr th > span {
    position: absolute;
    margin-left: -0.65em;
    font-weight: 700;
    color: var(--page-point-color);
}
@media (max-width: 767px) {
    .board_wrapper #storage-size .info.over span.quest::after {
        font-size: 11px;
    }
}
/* 상품 게시판 작성 이미지 업로드 */
.board_wrapper .wr_upload_img {
    overflow: hidden;
    position: relative;
    display: flex;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
}
.board_wrapper .wr_upload_img_item {
    display: flex;
    aspect-ratio: 1;
    cursor: move;
}
.board_wrapper .wr_upload_img_thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    border: 1px solid #fff;
    border-radius: var(--radius-sm);
}
.board_wrapper .wr_upload_img_thumb::before {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}
.board_wrapper .wr_upload_img_thumb:hover {
    border-color: var(--page-point-color);
}
.board_wrapper .wr_upload_img_thumb:hover::before {
    opacity: 0.5;
}
.board_wrapper .wr_upload_img_item:first-child .wr_upload_img_thumb::after {
    animation: 0.5s ease-in upload_img_mian_up;
    content: "대표 이미지";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    bottom: 0;
    width: 100%;
    background: #222;
    text-align: center;
    font-size: 13px;
    color: #fff;
    padding: 10px 0;
}
@keyframes upload_img_mian_up {
    from {
        bottom: -50px;
    }
    to {
        bottom: 0;
    }
}
.board_wrapper .wr_upload_img_thumb .wr_upload_img_btn_re {
    opacity: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 49.5%;
    border: 0;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
}
.board_wrapper .wr_upload_img_thumb:where(:hover, :focus) .wr_upload_img_btn_re {
    opacity: 0.75;
}
.board_wrapper .wr_upload_img_thumb:hover .wr_upload_img_btn_re:hover {
    opacity: 1;
}
.board_wrapper .wr_upload_img_thumb .wr_upload_img_btn_re i {
    margin: 4px 0 6px;
    font-size: 23px;
}
.board_wrapper .wr_add_button {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}
.board_wrapper .wr_add_button_item {
    width: 100%;
    height: 105px;
    cursor: move;
}
.board_wrapper .wr_add_button_info {
    align-items: center;
    height: 100%;
    gap: 15px;
    padding: 0px 40px 4px 25px;
}
/* 상품 게시판 작성 설명 탭 */
.board_wrapper .wr_tabs_contents {
    display: flex;
    flex-direction: column;
}
#site .board_wrapper .wr_tabs_contents_nav {
    display: flex;
    border-bottom: 0;
    margin-bottom: 1px;
}
.board_wrapper .wr_tabs_contents_nav > li + li {
    margin-left: -1px;
    width: calc(25% + 1px);
}
.board_wrapper .wr_tabs_contents_nav > li {
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 25%;
    padding-bottom: 1px;
    border: 1px solid #ddd;
    border-radius: 0;
    border-bottom: 0;
    background: #f7f7f7;
    font-size: 14px;
    color: #999;
}
.board_wrapper .wr_tabs_contents_nav > li:hover {
    color: #222;
    background: #fff;
}
.board_wrapper .wr_tabs_contents_nav > li.active {
    z-index: 20;
    margin-bottom: -2px;
    padding-bottom: 2px;
    border-color: #ccc;
    background: #fff;
    font-weight: 600;
    color: #333;
}
.board_wrapper .wr_tabs_contents_nav > li > a {
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    width: 0px;
    padding: 0;
    border: 0 !important;
    background: transparent;
    line-height: 1;
    padding-left: 20px;
    margin: 0;
    min-height: 45px;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
}
@media (hover: hover) {
    .board_wrapper .wr_tabs_contents_nav > li > a:hover {
        border: 0;
        background: transparent;
        color: #222;
        font-weight: 600;
    }
}
/* 상품 게시판 작성 추가 버튼 */
.board_wrapper .wr_tabs_contents_nav > li > a span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    min-width: 0;
}
.board_wrapper .wr_tabs_contents_nav_plus {
    padding: 0 !important;
}
.board_wrapper .wr_tabs_contents_nav_plus.only_visible:only-child {
    width: 100%;
    border: 0;
}
.board_wrapper .wr_tabs_contents_nav_plus.only_visible:only-child .wr_add_button_btn {
    flex-direction: column;
    height: 105px;
}
.board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible) {
    flex: 0;
    width: 55px;
}
.board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible):hover {
    border-color: var(--page-point-color);
}
.board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible) .wr_add_button_btn {
    border: 0;
    padding: 0 14px;
}
.board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible) .wr_add_button_btn span {
    display: none;
}
.board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible) .wr_add_button_btn i {
    width: auto;
    font-size: 19px;
    color: inherit;
}
.board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible) .wr_add_button_btn:hover {
    color: var(--page-point-color);
}
.board_wrapper .wr_tabs_contents_item {
    width: 100%;
}
.board_wrapper .wr_tabs_contents_item [role="presentation"] + [role="presentation"] {
    margin-left: 0;
}
.board_wrapper .wr_tabs_contents_info .title_group {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0 15px;
}
.board_wrapper :where(.wr_upload_img_btn, .wr_add_button_btn) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 1px dashed #678eb7;
    color: #9db5cd;
    background: #fff;
    font-weight: 500;
    letter-spacing: -0.034em;
    cursor: pointer;
    border-radius: var(--radius-sm);
}
.board_wrapper :where(.wr_upload_img_btn, .wr_add_button_btn) span {
    font-size: 15px;
}
.board_wrapper :where(.wr_upload_img_btn, .wr_add_button_btn, .wr_tabs_contents_nav_plus:only-child) i {
    font-size: 24px;
    margin: 5px 0 5px;
}
.board_wrapper :where(.wr_upload_img_btn, .wr_add_button_btn):hover {
    border-color: var(--page-point-color) !important;
    border-style: solid;
    color: var(--page-point-color);
}
.board_wrapper .wr_pd_delete_btn {
    z-index: 200;
    opacity: 0.5;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 22px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    color: #000;
}
.board_wrapper .wr_upload_img .wr_pd_delete_btn {
    position: absolute;
    opacity: 0.7;
    right: 3px;
    top: 3px;
    font-size: 16px;
    color: #fff;
    background: transparent;
}
.board_wrapper .wr_add_button .wr_pd_delete_btn {
    position: absolute;
    top: 8px;
    right: 8px;
}
.board_wrapper .wr_tabs_contents .wr_pd_delete_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    margin-right: 5px;
    margin-left: 3px;
    height: auto;
}
.board_wrapper .wr_pd_delete_btn:hover {
    opacity: 1;
}
.board_wrapper :where(.wr_add_button, .wr_tabs_contents) .wr_pd_delete_btn:hover {
    background: #eee;
    color: var(--page-point-color);
    transition: 0.2s;
}
.board_wrapper :where(.wr_pd_form_group, .wr_pd_form_group_item) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.board_wrapper :where(.wr_pd_form_group, .wr_pd_form_group_item) textarea + div {
    width: 100%;
}
.board_wrapper .wr_pd_form_group label {
    width: 100%;
    margin: 0;
    padding-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
}
.board_wrapper .wr_tabs_contents_box [role="tabpanel"] [role="presentation"] + [role="presentation"] {
    margin-left: 0;
}
.board_wrapper .table.board_write_table :is(.wr_pd_form_group, .wr_pd_form_group_item) .form-control {
    width: 100%;
}
.board_wrapper .wr_pd_form_group.name_group {
    width: 25%;
}
.board_wrapper .wr_pd_form_group.type_group {
    width: 15%;
}
/* 상품 게시판 작성 삭제 버튼 */
.board_wrapper #wr_pd_form_type {
    --deleteWidth: 40px;
    width: 60%;
}
.board_wrapper #wr_pd_form_type div[id^="bd_button"] {
    position: absolute;
    display: flex;
    gap: 0 5px;
    align-items: center;
    top: 19px;
    right: 40px;
    font-size: 12px;
    color: #555;
}
.board_wrapper #wr_pd_form_type div[id^="bd_button"] span.name {
    display: inline-block;
    max-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.board_wrapper #wr_pd_form_type input[id^="wr_add_button_download"] {
    width: calc(100% - var(--deleteWidth));
    border-right: 0;
}
.board_wrapper #wr_pd_form_type button[id^="wr_add_button_delete_btn"] {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: var(--deleteWidth);
    border: 1px solid var(--page-grey-color);
    border-left: 0;
    border-radius: 0;
    background: transparent;
}
.board_wrapper #wr_pd_form_type button[id^="wr_add_button_delete_btn"]::after {
    content: "\f056";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #bbb;
}
.board_wrapper #wr_pd_form_type button[id^="wr_add_button_delete_btn"]:hover::after {
    color: var(--page-danger-color);
}
.board_wrapper .wr_tabs_contents .wr_pd_form_group.title_group > div:nth-child(1) {
    width: 90%;
}
.board_wrapper .wr_tabs_contents .wr_pd_form_group.title_group > div:nth-child(2) {
    width: 10%;
}
.board_wrapper :where(.wr_add_button_info, .wr_tabs_contents_info) {
    position: relative;
    overflow: hidden;
    display: flex;
    border: 1px solid var(--page-grey-color);
    background: #fff;
}
.board_wrapper .wr_tabs_contents_info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px 0;
    min-height: 590px;
    padding: 20px 25px 29px;
}
@media (hover: hover) {
    .board_wrapper .wr_add_button_info:where(:hover, :focus, :focus-within),
    .board_wrapper .wr_tabs_contents:is(:hover, :focus, :focus-within) .nav-tabs > li.active,
    .board_wrapper .wr_tabs_contents:is(:hover, :focus, :focus-within) .wr_tabs_contents_info {
        border-color: var(--page-point-color);
    }
    .board_wrapper .wr_add_button_info:is(:hover, :focus, :focus-within),
    .board_wrapper .wr_tabs_contents:is(:hover, :focus, :focus-within) .wr_tabs_contents_info {
        transition: 0.25s;
        box-shadow: 4px 4px 0 rgba(115, 139, 166, 0.1);
    }
}
@media (max-width: 767px) {
    .board_wrapper .wr_upload_img {
        flex-wrap: wrap;
    }
    .board_wrapper .wr_upload_img_item {
        width: calc((100% - 21px) / 3);
    }
    .board_wrapper .wr_add_button_info {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 10px;
    }
    .board_wrapper .wr_pd_form_group.name_group {
        width: calc((100% - 10px) / 3 * 2);
    }
    .board_wrapper .wr_pd_form_group.type_group {
        width: calc((100% - 10px) / 3 * 1);
    }
    .board_wrapper .wr_pd_form_group {
        width: 100%;
    }
    .board_wrapper .table.board_write_table #wr_pd_form_type {
        width: 100%;
    }
    .board_wrapper #wr_pd_form_type div[id^="bd_button"] {
        position: static;
    }
    .board_wrapper .wr_add_button {
        min-height: auto;
    }
    .board_wrapper :where(.wr_upload_img_btn, .wr_add_button_btn) span {
        font-size: 13px;
    }
    .board_wrapper .wr_add_button_item:not(.wr_add_button_item_plus) {
        height: auto;
    }
    .board_wrapper .wr_pd_form_group {
        width: 100%;
    }
    .board_wrapper .wr_tabs_contents_nav_plus.only_visible:only-child .wr_add_button_btn,
    .board_wrapper .wr_add_button_item {
        height: 95px;
    }
    .board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible) {
        width: 100%;
        z-index: 1;
        border: 1px dashed #aaa;
        border-bottom: 0;
    }
    .board_wrapper .wr_tabs_contents_nav_plus:not(.only_visible) .wr_add_button_btn {
        width: 100%;
        height: 100%;
    }
    .board_wrapper .wr_tabs_contents_nav_plus.only_visible:only-child {
        height: auto;
    }
    .board_wrapper .wr_tabs_contents_nav {
        margin-bottom: -1px;
    }
    .board_wrapper .wr_tabs_contents_nav > li {
        flex: 1;
        height: 48px;
        border-bottom: 0;
    }
    .board_wrapper .wr_tabs_contents_nav > li > a {
        height: 100%;
        min-height: auto;
        padding-left: 15px;
        font-size: 13px;
    }
    .board_wrapper .wr_tabs_contents_nav > li .wr_pd_delete_btn {
        display: none;
    }
    .board_wrapper .wr_tabs_contents_nav > li.active .wr_pd_delete_btn {
        display: flex;
    }
    .board_wrapper .wr_tabs_contents_nav > li.active {
        flex: inherit;
        margin-bottom: 0px;
        width: 50%;
    }
    .board_wrapper .wr_tabs_contents_item {
        overflow: hidden;
    }
    .board_wrapper .wr_tabs_contents_item.active {
        height: 100%;
    }
    .board_wrapper .wr_tabs_contents_info {
        padding: 15px 20px;
    }
    .board_wrapper .wr_tabs_contents_info .title_group {
        flex-direction: column;
        gap: 10px;
    }
    .board_wrapper .wr_pd_form_group.title_group .wr_pd_form_group_item {
        width: 100%;
    }
}
/* ---------------------------- 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, 3vw, 60px);
    /* border: 1px solid #ddd; */
    border-radius: 30px;
    background: #fff;
}
:is(.find_container, .join_container, .join_write_container) .member_wrapper {
    /* max-width: 900px; */
}
:is(.find_container, .login_container) :is(.member_wrapper) {
    max-width: 500px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) {
        width: 100%;
    }
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
        width: 100%;
        margin: 0 auto;
    }
}
.member_wrapper {
    max-width: 1140px;
    padding-top: 120px;
    padding-bottom: 200px;
    margin: 0 auto;
}
.member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
    letter-spacing: -0.03em;
}
.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 15px);
    height: 80px;
    /* max-height: 200px; */
    margin-bottom: 0;
    text-align: center;
    color: #666;
}
.member_wrapper .text-center {
    margin-top: 40px;
}
.member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.member_wrapper #login_form input {
    padding-left: 5px;
    font-size: 15px;
}
#login_form .form-group label {
    position: relative;
}
#login_form .form-group label[class*="label-"] {
    /* display: inline-block; */
    text-indent: -9999px;
}
#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;
}
#login_form .form-group:focus-within label[class*="label-"]::before {
    color: #000;
}
#login_form .form-group label.label-id::before {
    content: "\e7fd";
}
#login_form .form-group label.label-pw::before {
    content: "\e897";
}
#login_form .form-group label.label-email::before {
    content: "\e0e6";
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper {
        padding: 60px 30px;
    }
    .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    .member_wrapper #login_form input {
        border: 0;
        /* padding-left: 0; */
        padding-right: 35px;
    }
}
.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;
}
@media (min-width: 768px) {
    .member_wrapper #login_form .control-label {
        /* padding-top: 10px; */
        /* text-align: left; */
    }
}
.member_wrapper .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);
}
.member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
.member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.member_wrapper .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
.member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
/* [ form ] */
.member_wrapper .form-group {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
.member_wrapper .form-group > * {
    width: auto;
    padding: 0;
}
.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px;
}
.member_wrapper .form-group:nth-of-type(2) {
    margin-bottom: 0px;
}
.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;
}
.member_wrapper .form-group > label:nth-child(1) {
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-3px);
}
.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
/* [ member-login ] */
:is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px;
    width: 100%;
    border-radius: 9999px;
}
#site :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
    z-index: 10;
    width: 100%;
    padding-block: 100px 120px;
    background: #f7f7f7;
}
#site .mypage_container {
    padding-inline: 15px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
        margin-top: 0;
        position: relative;
        padding-block: 30px 100px;
        height: auto;
    }
}
:where(#find_idpw, .login_wrapper, .mypage_container) {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
@media (width >= 992px) {
    :where(#find_idpw, .login_wrapper) {
        padding: 0;
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
/* [min-lager / tablet] 브라우저 높이 700 이하 */
@media (height <= 700px) {
    :where(#find_idpw, .login_wrapper, .mypage_container) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
.member_wrapper .login_extra {
    margin-top: 30px;
}
.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
.member_wrapper .login_extra li > a {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .login_extra li + li {
    margin-left: 0;
}
.member_wrapper .login_extra li + li::before {
    content: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .member_wrapper .login_extra li + li::before {
        content: none;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper #join_form tr th {
        padding: 0px;
        margin-bottom: 0;
    }
    .member_wrapper #join_form tr td {
        display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 0px;
    }
    .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0;
    }
    .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100%;
    }
}
.member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}
.member_wrapper .table {
    width: 100%;
}
.member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}
.member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
.member_wrapper .table tbody tr th {
    text-align: left;
    width: auto;
}
.member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
.member_wrapper .table tbody tr td {
    padding-inline: 15px;
    display: flex;
    gap: 5px;
}
.member_wrapper .table tbody tr :where(th, td) {
    display: block;
    font-size: clamp(13px, 3vw, 15px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .member_wrapper .table tbody tr :where(th, td) {
        display: block;
        width: 100%;
        font-size: clamp(15px, 2vw, 17px);
    }
    .member_wrapper .table tbody tr th {
        padding: 10px 30px;
    }
    .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    .member_wrapper .table .files_upload_wrap .files .file_add {
        position: relative;
        right: auto;
    }
    .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}
/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    text-align: left;
}
:is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
:where(.privacy_container, .agreement_container) .privacy_body {
    font-size: 1rem;
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    :where(.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 (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;
        /* touch-action: pan-x; */
        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="presentation"] {
    margin-left: -1px;
}
[role="tabpanel"] [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;
}
/* /* ---------------------------------------- */
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) :where(th, td, table.table) {
    border: 0;
    line-height: 1;
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) select.form-control {
    width: 100%;
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) table {
    width: 100%;
    display: flex;
    border-top: 0;
    border-top: 1px solid #333;
    max-width: 100%;
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) th {
    padding: 0;
    font-weight: 700;
    display: flex;
    background-color: transparent;
    width: auto;
    border-top: 0;
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) :where(th, td) {
    font-size: 16px;
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
}
#site :is(#bd01, .product) .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;
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) #item_agree .checkbox {
    margin-top: 0;
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) #item_agree label {
    font-size: clamp(13px, 2vw, 15px);
}
#site :is(#bd01, .product) .board_wrapper :where(form[id*="form"]) #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
html:not(.is_adm) .product:not(.bd_view) .se-board {
    display: none;
}
html:not(.is_adm) .product:not(.bd_view) #bbsArea {
    display: none;
}
#site .product .se-board {
    padding-block: 0;
    min-height: unset;
}
#site .product .product-wrap .search_wrap {
    margin: 0;
    position: fixed;
    bottom: 50px;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
}
#site .product .product-wrap .search_wrap > :not(.write_btn_wrap) {
    display: none;
}
#site .product .product-wrap .search_wrap .write_btn_wrap {
    position: static;
}
#site .product .product-wrap .search_wrap .write_btn_wrap button {
    width: 250px;
    font-size: 20px;
    height: 60px;
    border-radius: 9999px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.pdSort-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 991.98px) {
    .pdSort-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .pdSort-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
}
.pdSort-wrap dd:hover {
    cursor: pointer;
}
.pdSort-wrap dd:hover .inner {
    border-color: var(--page-point-color);
}
.pdSort-wrap dd:hover .bottom {
    background-color: var(--page-point-color);
}
.pdSort-wrap dd:hover img {
    scale: 0.9;
}
.pdSort-wrap .inner {
    transition: 0.25s;
    display: flex;
    flex-direction: column;
    border: 3px solid #ededef;
}
.pdSort-wrap .top {
    /* aspect-ratio: 1.6666666667; */
    /* aspect-ratio: 5/3; */
    /* flex: 0 1 auto; */
    /* height: 200px; */
    flex-shrink: 0;
}
.pdSort-wrap .top a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    aspect-ratio: 1;
}
.pdSort-wrap .top a span.thumb{
    display: none !important;
}
.pdSort-wrap img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1;
}
.pdSort-wrap .info {
    display: none;
}
.pdSort-wrap .bottom {
    transition: 0.25s;
    background-color: #2a2a2d;
    padding: 20px;
    text-align: center;
    color: #fff;
}
@media (max-width: 767.98px) {
    .pdSort-wrap .bottom {
        padding: 15px;
    }
}
.pdSort-wrap .bottom a {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}
.pdSort-wrap #pd_preview_text:not(:has(#pdView)) {
    display: none;
}
.pdSort-wrap #pd_preview_text .p-view {
    color: inherit;
    opacity: 0.7;
    margin-top: 5px;
}
.pdSort-wrap #pd_preview_text #pdView {
    color: inherit;
    opacity: 0.7;
    margin-top: 5px;
}
.pdSort-wrap #pd_preview_text > *:not(#pdView) {
    display: none;
}
#bbsArea + .pdSort-wrap {
    /* margin-top: 50px; */
}
