@charset "UTF-8";
/* Nesting Css */
/* 폰트 파일 */
/* @import url("/assets/fonts/gmarket/gmarketsans.css"); */
/* @import url("/assets/fonts/pretendard/variable/pretendardvariable.css"); */
/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #1798e8;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #0475c7;
    --page-point-color-hover: var(--page-point-color-dark);
    --page-danger-color: #f32222;
    --page-danger-color-hover: #cc0a0a;
    --page-dark-color: #4f5356;
    --page-dark-color-hover: #333;
    --page-grey-color: #d5d5d5;
    --page-grey-color-hover: #c4c4c4;
    /* swiper */
    --swiper-theme-color: var(--page-point-color) !important;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 100px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: clamp(52px, 5vw, 78px);
    /* 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: 991.98px) {
    :root {
        --container-padding-inline: 20px;
    }
}
/* ---------------------------- Reset ---------------------------- */
* {
    box-sizing: border-box;
    word-break: keep-all;
    float: unset;
    -webkit-tap-highlight-color: transparent;
}
*::before,
*::after {
    content: none;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 14px;
}

#site {
    margin: 0;
    padding: 0;
    font-family: var(--page-font-family);
    /* display: none; */
    opacity: 0;
    /* FOUC */
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
}
#site > *:not(#force__wrapper) {
    visibility: hidden;
}
#site.loaded {
    /* display: block; */
    opacity: 1;
}
#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}
#site .hide {
    /* display: none !important; */
    opacity: 1 !important;
}

::selection {
    background-color: var(--page-point-color);
    color: #fff;
}

select::-ms-expand {
    display: none;
}

form,
fieldset {
    all: unset;
    box-sizing: border-box;
    display: block;
}

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

.cke_screen_reader_only {
    bottom: 0;
}

.cke_resizer_ltr {
    float: right;
}

.cke_reset_all *,
.cke_reset_all a,
.cke_reset_all textarea {
    white-space: wrap !important;
}

.caret {
    display: none;
}

/* material-symbols */
.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
    user-select: none;
}

figure {
    margin: 0;
}

/* ---------------------------- Paragraph ---------------------------- */
:is(ol, ul, li, dl) {
    all: unset;
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
    all: unset;
    box-sizing: border-box;
    display: block;
}

:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.5;
}

:is(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;
    transition: all 0.25s;
    /* <a href="/public/download/2505/" download class="btn btn-down"><b>다운로드</b><span class="material-symbols-outlined">sim_card_download </span></a> */
    /* [hover] PC 환경에서만 :hover 효과 적용  */
}
.btn:is(.btn-primary, #btn_modify) {
    background-color: var(--page-point-color);
    border: 1px solid var(--page-point-color);
    color: #fff;
}
.btn:is(.btn-primary, #btn_modify):is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
}
.btn:is(#btn_delete, .btn-danger) {
    background-color: var(--page-danger-color);
    border: 1px solid var(--page-danger-color);
}
.btn:is(#btn_delete, .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-down {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-inline: clamp(20px, 2vw, 30px) clamp(15px, 2vw, 25px);
    width: fit-content;
    margin-inline: auto;
    color: #fff;
    height: clamp(50px, 5vw, 60px);
    border: 1px solid #333;
    background: #fff;
    color: #222;
}
.btn.btn-down span {
    color: #222;
    font-variation-settings: var(--gms-500-out);
}
.btn.btn-down b {
    color: inherit;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
}
@media (hover: hover) {
    .btn.btn-primary:where(:hover, :focus) {
        background-color: var(--page-point-color-hover);
        border-color: var(--page-point-color-hover);
    }
    .btn.btn-secondary:where(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
    .btn.btn-down:hover {
        background: #222;
        color: #fff;
    }
    .btn.btn-down:hover span {
        color: inherit;
    }
}

/* 버튼 비활성화 */
button[disabled] {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
    filter: grayscale(1);
}

/* ---------------------------- Image ---------------------------- */
.img-box {
    position: relative;
    display: flex;
}

.img-responsive {
    display: flex;
    max-width: 100%;
    height: auto;
}

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

.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

*:has(> .bg) {
    position: relative;
}

/* ---------------------------- Layout ---------------------------- */
:where(.container, .row) {
    position: relative;
}

/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
    /* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
}
[class*="container"]::before,
[class*="container"]::after {
    content: none;
}
@media (min-width: 1360px) {
    [class*="container"] {
        max-width: 1330px;
    }
}
@media (max-width: 991.98px) {
    [class*="container"] {
        max-width: 800px;
    }
}

.row {
    margin: 0;
}
.row::before,
.row::after {
    content: none;
}

:where([class*="row-"], [class*="-row"]) {
    display: flex;
    gap: 30px;
}

.clearfix {
    width: 100%;
}

.col {
    flex: 1;
    padding: 0;
}
.col.auto {
    flex: 0 1 auto;
}

/* 그리드 행 */
[grid-rowspan="1"] {
    grid-row: span 1;
}

[grid-rowspan="2"] {
    grid-row: span 2;
}

[grid-rowspan="3"] {
    grid-row: span 3;
}

[grid-rowspan="4"] {
    grid-row: span 4;
}

[grid-rowspan="5"] {
    grid-row: span 5;
}

[grid-rowspan="6"] {
    grid-row: span 6;
}

[grid-rowspan="7"] {
    grid-row: span 7;
}

[grid-rowspan="8"] {
    grid-row: span 8;
}

[grid-rowspan="9"] {
    grid-row: span 9;
}

[grid-rowspan="10"] {
    grid-row: span 10;
}

[grid-rowspan="11"] {
    grid-row: span 11;
}

[grid-rowspan="12"] {
    grid-row: span 12;
}

/* 그리드 열 */
[grid-colspan="1"] {
    grid-column: span 1;
}

[grid-colspan="2"] {
    grid-column: span 2;
}

[grid-colspan="3"] {
    grid-column: span 3;
}

[grid-colspan="4"] {
    grid-column: span 4;
}

[grid-colspan="5"] {
    grid-column: span 5;
}

[grid-colspan="6"] {
    grid-column: span 6;
}

[grid-colspan="7"] {
    grid-column: span 7;
}

[grid-colspan="8"] {
    grid-column: span 8;
}

[grid-colspan="9"] {
    grid-column: span 9;
}

[grid-colspan="10"] {
    grid-column: span 10;
}

[grid-colspan="11"] {
    grid-column: span 11;
}

[grid-colspan="12"] {
    grid-column: span 12;
}

:is([class*="hidden"]) {
    display: none;
    /* // Small devices (landscape phones, 576px and up) */
    /* // Medium devices (tablets, 768px and up) */
    /* // Large devices (desktops, 992px and up) */
    /* // X-Large devices (large desktops, 1200px and up) */
    /* // XX-Large devices (larger desktops, 1400px and up) */
}
@media (min-width: 320px) {
    :is([class*="hidden"])[class*="-xs"] {
        display: inherit;
    }
}
@media (min-width: 576px) {
    :is([class*="hidden"])[class*="-sm"] {
        display: inherit;
    }
}
@media (min-width: 768px) {
    :is([class*="hidden"])[class*="-md"] {
        display: inherit;
    }
}
@media (min-width: 992px) {
    :is([class*="hidden"])[class*="-lg"] {
        display: inherit;
    }
}
@media (min-width: 1200px) {
    :is([class*="hidden"])[class*="-xl"] {
        display: inherit;
    }
}
@media (min-width: 1400px) {
    :is([class*="hidden"])[class*="-xxl"] {
        display: inherit;
    }
}

:is([class*="visible"]) {
    display: none;
    /* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    /* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
    /* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
    /* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
}
@media (max-width: 319.98px) {
    :is([class*="visible"])[class*="-xs"] {
        display: inherit;
    }
}
@media (max-width: 575.98px) {
    :is([class*="visible"])[class*="-sm"] {
        display: inherit;
    }
}
@media (max-width: 767.98px) {
    :is([class*="visible"])[class*="-md"] {
        display: inherit;
    }
}
@media (max-width: 991.98px) {
    :is([class*="visible"])[class*="-lg"] {
        display: inherit;
    }
}
@media (max-width: 1199.98px) {
    :is([class*="visible"])[class*="-xl"] {
        display: inherit;
    }
}
@media (max-width: 1399.98px) {
    :is([class*="visible"])[class*="-xxl"] {
        display: inherit;
    }
}

.center-block {
    display: block;
    margin-inline: auto;
}

.center-flex {
    display: flex;
    margin-inline: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* ---------------------------- Modal, Jquery Ui ---------------------------- */
.ui-widget {
    font-family: inherit;
    z-index: 10000;
}
.ui-widget :is(input, select, textarea, button) {
    font-family: inherit;
}
.ui-widget .ui-datepicker select:is(.ui-datepicker-month, .ui-datepicker-year) {
    -webkit-appearance: none;
    background: none;
    border: 0;
    width: auto;
}

#site.modal-open {
    overflow: unset;
    padding-right: 0;
}
#site.modal-open .navbar {
    padding-right: 0;
}

.modal-backdrop {
    display: none;
}

.modal {
    z-index: 10000;
    display: flex;
    width: 100%;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade {
    opacity: 0;
}
.modal.fade.in {
    animation: modalFade 0.25s 0s forwards;
}
.modal.fade.in .modal-dialog {
    animation: modalPop 0.35s 0.05s forwards;
}
.modal.in {
    z-index: 20000;
    scale: 1;
}
.modal:not(.in) {
    display: none;
    opacity: 0;
    scale: 0;
}
.modal .modal-body {
    position: relative;
    padding: 30px;
}
.modal .modal-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 30px;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 18px);
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal .modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.2;
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
    appearance: none;
    font-size: 21px;
    font-weight: 700;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal .modal-footer {
    display: flex;
    gap: 5px;
    padding: 25px 30px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
    flex: 1;
}
.modal .modal-title {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}
@media (min-width: 768px) {
    .modal .modal-content {
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
    }
}
.modal .modal-dialog {
    position: relative;
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    scale: 0.9;
}
@media (min-width: 768px) {
    .modal .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}
@media (min-width: 768px) {
    .modal .modal-sm {
        max-width: 300px;
    }
}

.modal-open .modal {
    z-index: 10000;
    display: flex !important;
    width: 100%;
    justify-content: center;
    overflow: auto;
}

#delete_modal.in + .modal {
    display: none;
}

@keyframes modalFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes modalPop {
    0% {
        scale: 0.9;
    }
    50% {
        scale: 1.015;
    }
    100% {
        scale: 1;
    }
}
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

#site .bootstrap-timepicker-widget {
    display: none !important;
}

/* ---------------------------- iframe ---------------------------- */
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"]
{
    width: auto;
    height: auto;
    /* aspect-ratio: 5/3; */
    margin-bottom: -6px;
    background-color: #e5e3df;
}

/* 외부동영상 */
iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: auto;
    height: auto;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: var(--radius-md);
}

#bbsArea .board_video_view iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: 100%;
}

/* [ IFRAME END ] */
/* ---------------------------- common ---------------------------- */
/* list-style */
:where(ol, ul)[class*="li-"] {
    display: flex;
    flex-direction: column;
}
:where(ol, ul)[class*="li-"] > li {
    position: relative;
    padding-left: 0.8em;
}
:where(img) + :where(ol, ul)[class*="li-"] {
    margin-top: 20px;
}
:where(ol, ul)[class*="li-"] small {
    font-size: 0.85em;
}

/* circle */
.li-cir {
    gap: 5px;
}
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.56em;
    left: 0;
    display: block;
    width: 0.2em;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #333;
}

/* dash */
.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}

/* number */
.li-num > li {
    counter-increment: listNum;
    padding-left: 27px;
}
.li-num > li::before {
    content: counter(listNum, decimal-leading-) "";
    position: absolute;
    top: 0.25em;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    width: 18px;
    padding-top: 2px;
    padding-right: 1px;
    line-height: 0;
    color: var(--page-point-color);
    font-size: 11px;
    font-weight: 700;
}

/* check */
.li-check > li {
    position: relative;
    padding-left: 1.3em;
    font-size: 15px;
}
.li-check > li::before {
    content: "\e5ca";
    font-family: var(--gms);
    position: absolute;
    top: 0.1em;
    font-size: 20px;
    line-height: 1;
    left: -0.2em;
    display: block;
    color: var(--page-point-color);
    font-variation-settings: var(--gms-600-out);
}

#site .li-box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
@media (max-width: 767.98px) {
    #site .li-box {
        /*md*/
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 575.98px) {
    #site .li-box {
        /*sm*/
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
#site .li-box li {
    padding: 0;
    display: flex;
    padding: 20px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: #f2f5f9;
    color: #1d2088;
    text-align: center;
    font-size: clamp(14px, 2vw, 17px);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

#site .bg-gray .li-box li {
    background-color: #e7edf6;
    color: #1d2088;
}

/* ---------------------------- navbar ---------------------------- */
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 2vw, 30px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(15px, 2vw, 18px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(14px, 2vw, 16px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(150px, 16vw, 290px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
    all: unset;
    box-sizing: border-box;
    z-index: 5000;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
.navbar a {
    cursor: pointer;
}
.navbar :where(*):before,
.navbar :where(*):after {
    content: none;
}
.navbar #gnbauth i {
    display: none;
}
.navbar .navbar-header {
    margin-inline: 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
}

/* 로고 */
.navbar .navbar-brand {
    /* 텍스트 로고 */
}
.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: #fff;
}
.navbar :is(.dropdown-menu) a {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: #333;
    width: 100%;
}
.navbar :is(.dropdown-menu) a:hover {
    color: #fff;
}

/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    /* wide */
    .navbar {
        /* 메인메뉴 */
    }
    .navbar > .container {
        /* display: grid; */
        /* grid-template-columns: minmax(0, 1fr) minmax(0, auto); */
        /* max-width: 100%; */
        /* padding-inline: 50px ; */
    }
    .navbar .navbar-collapse {
        display: flex;
        align-self: stretch;
        height: auto !important;
    }
    .navbar .navbar-toggle {
        display: none;
    }
    .navbar .navbar-right {
        display: flex;
        align-self: stretch;
    }
    .navbar .navbar-right > li {
        position: relative;
        display: flex;
        /* 데스크탑 서브 드롭다운메뉴 */
    }
    .navbar .navbar-right > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background-color: transparent;
        padding-inline: var(--navbar-menu-padding-inline);
        padding-block: 0;
        font-weight: 500;
    }
    .navbar .navbar-right > li .dropdown-menu {
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: 50%;
        top: calc(100% - 10px);
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        margin-top: 0px;
        padding: 25px;
        min-width: 180px;
        gap: 0;
        opacity: 0;
        transform-origin: center top;
        text-align: center;
        border-radius: 16px;
        background: rgb(255, 255, 255);
        border: 1px solid #eee;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
    }
    .navbar .navbar-right > li .dropdown-menu a {
        display: flex;
        line-height: 2.4;
        padding: 0 0 2px;
        letter-spacing: -0.04em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
        color: #333;
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        letter-spacing: -0.5px;
    }
    .navbar .navbar-right > li .dropdown-menu a:hover {
        color: var(--page-point-color);
        text-decoration: underline;
        text-underline-position: under;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
        margin-right: calc(var(--navbar-menu-padding-inline) * -1);
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    /* 배경 */
    body::before {
        transition: 0.35s;
        content: "";
        display: block;
        z-index: 1000;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        animation: menuHeight 0s 0.35s forwards;
    }
    body.menu-overlay::before {
        opacity: 1;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        background-color: rgba(0, 0, 0, 0.5);
        animation: none;
    }
    .navbar {
        overflow: hidden;
        animation: menuHidden 0s 0.401s forwards;
    }
    .navbar .container {
        --container-padding-inline: 15px;
        max-width: 100%;
    }
    .navbar .navbar-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .navbar-brand {
        order: 1;
    }
    .navbar .navbar-toggle {
        all: unset;
        box-sizing: border-box;
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0;
        cursor: pointer;
    }
    .navbar .navbar-toggle > * {
        display: none;
    }
    .navbar .navbar-toggle::before {
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 1.8em;
        font-variation-settings: var(--gms-500-out);
    }
    .navbar .navbar-toggle:where(:hover, :focus) {
        background: none;
    }
    .navbar .navbar-toggle.open::before {
        content: "\e5cd";
    }
    .navbar .navbar-collapse {
        transition: 0.4s;
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid #eee;
        max-height: 0;
        height: auto !important;
    }
    .navbar .navbar-collapse .navbar-right {
        display: flex;
        flex-direction: column;
        overflow: hidden auto;
        position: relative;
        width: 100%;
        padding-block: 0px;
    }
    .navbar .navbar-collapse .navbar-right > li {
        transition: inherit;
    }
    .navbar .navbar-collapse .navbar-right > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 55px;
        padding: 0 15px;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
    }
    .navbar .navbar-collapse.open {
        transition: all 0.5s;
        max-height: var(--svh100);
    }
    .navbar .dropdown .dropdown-menu {
        /* transition: 0.75s; */
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #eee;
        padding: 0;
        max-height: 0;
    }
    .navbar .dropdown .dropdown-menu a {
        /* width: 100%; */
        display: block;
        color: #555;
        padding: 10px 15px;
    }
    .navbar .dropdown .dropdown-toggle::after {
        all: unset;
        box-sizing: border-box;
        content: "\e5cf";
        font-family: var(--gms);
        font-variation-settings: var(--gms-300-out);
        margin-left: auto;
        font-size: 1.5em;
    }
    .navbar .dropdown.open .dropdown-menu {
        opacity: 1;
        max-height: var(--svh100);
    }
    .navbar .dropdown.open .dropdown-toggle {
        color: var(--page-point-color);
        font-weight: 600;
    }
    .navbar .dropdown.open .dropdown-toggle::after {
        content: "\e5ce";
        color: var(--page-point-color);
        font-variation-settings: var(--gms-400-out);
    }
}
@keyframes menuOpen {
    0% {
        opacity: 0;
        scale: 1 0.5;
    }
    100% {
        opacity: 1;
        scale: 1 1;
    }
}
@keyframes menuHeight {
    from {
        height: 100%;
    }
    to {
        height: 0;
    }
}
@keyframes menuHidden {
    from {
        overflow: hidden;
    }
    to {
        overflow: visible;
    }
}
/* ---------------------------- footer ---------------------------- */
footer {
    margin-top: 0px;
    background-color: #181818;
    /* border-top: 1px solid #eee; */
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
footer img {
    /* opacity: 0.95; */
    /* filter: grayscale(1) invert(1); */
}
footer li {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(13px, 2vw, 15px);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
footer li b {
    color: rgba(85, 85, 85, 0.8);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
footer li.corp {
    /* margin-bottom: 5px; */
}
footer li.corp strong {
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: clamp(14px, 2vw, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 175% */
    letter-spacing: -0.32px;
}
footer li.copyright {
    color: #777;
    font-family: Pretendard;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 191.667% */
    margin-top: 10px;
}
footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 0 15px;
}
@media (max-width: 767.98px) {
    footer .footer-info {
        /*md*/
        justify-content: center;
        text-align: center;
    }
}
footer .footer-logo {
    flex-shrink: 0;
    width: 231px;
}
footer .footer-wrap {
    display: flex;
    /* align-items: center; */
    gap: 80px;
    padding: 60px 0 60px;
}
footer .line {
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
@media (max-width: 575.98px) {
    footer .line {
        /*sm*/
        display: none;
    }
}
@media (max-width: 767.98px) {
    footer .footer-wrap {
        flex-direction: column;
        gap: 20px;
    }
}

#loginBtn {
    /* mix-blend-mode: screen; */
    /* background-color: #f7f7f7; */
}
@media (max-width: 575.98px) {
    #loginBtn {
        /*sm*/
        margin-inline: auto;
    }
}
#loginBtn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 13px;
    background: transparent;
    color: #7d7d7d;
    line-height: 1;
    border-radius: 0;
    border: none;
    border-radius: 0;
    font-size: clamp(11px, 2vw, 12px);
    background: rgba(255, 255, 255, 0.07);
}
#loginBtn a:hover {
    background: #333;
    color: #fff;
    /* border-color: var(--backgorund-color); */
}
#loginBtn a span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-500-out);
}
html.logined #loginBtn a[href="/member/login"] {
    display: none;
}
html:not(.logined) #loginBtn a[href="/member/logout"] {
    display: none;
}

/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    #loginBtn {
        margin-left: auto;
        align-self: flex-end;
    }
}
/* ---------------------------- subpage ---------------------------- */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top01.jpg);
    position: relative;
    height: clamp(180px, 40vw, 450px);
}
@media (max-width: 575.98px) {
    .subpage-header {
        /*sm*/
        height: auto;
    }
}
.subpage-header .bg {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--background-image) #000 no-repeat center/cover;
}
.subpage-header .subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}
@media (max-width: 575.98px) {
    .subpage-header .subpage-title {
        /*sm*/
        align-items: center;
        text-align: center;
        padding-block: 70px 60px;
    }
}
.subpage-header .subpage-title h2 {
    line-height: 1;
    /* margin-top: 10px; */
    text-align: center;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    font-size: clamp(32px, 5vw, 57px);
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 79.8px */
    letter-spacing: -0.855px;
}

[data-menu-index="1"] .subpage-header {
    --background-image: url(/public/img/sub/sub-top001.jpg);
}

[data-menu-index="2"] .subpage-header {
    --background-image: url(/public/img/sub/sub-top002.jpg);
}

[data-menu-index="3"] .subpage-header {
    --background-image: url(/public/img/sub/sub-top003.jpg);
}

[data-menu-index="4"] .subpage-header {
    --background-image: url(/public/img/sub/sub-top004.jpg);
}

/* [ subpage-navbar ] */
.snb {
    z-index: 1000;
    flex-shrink: 0;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(5px);
}
@media (max-width: 575.98px) {
    .snb {
        /*sm*/
        position: relative;
        background-color: #1d2088;
        border: 0;
    }
    .snb .container {
        padding-inline: 15px;
    }
}
.snb .snb-dropdown {
    display: flex;
    /* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
}
.snb .snb-dropdown .toggle {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 200px;
    /* border-right: 1px solid #ccc; */
}
.snb .snb-dropdown .toggle::after {
    content: "\e5cf" !important;
    font-family: var(--gms) !important;
    font-size: 24px;
    font-variation-settings: var(--gms-400-out) !important;
}
@media (max-width: 575.98px) {
    .snb .snb-dropdown .toggle {
        /*sm*/
        width: 100%;
        position: static;
        min-width: unset;
    }
}
.snb .snb-dropdown > li {
    position: relative;
}
@media (max-width: 575.98px) {
    .snb .snb-dropdown > li {
        /*sm*/
        flex: 1;
        position: static;
    }
}
.snb .snb-dropdown > li > :is(a, button.toggle) {
    font-size: 15px;
    color: #777777;
    padding-inline: 20px 0px;
    height: var(--snb-height);
    justify-content: space-between;
    /* background: #fff; */
    z-index: 1001;
    position: relative;
    color: #fff;
    font-size: clamp(14px, 2vw, 17px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.68px;
    text-transform: capitalize;
}
.snb .snb-dropdown > li.home {
    flex: 0;
}
.snb .snb-dropdown > li.home > a {
    display: flex;
    /* aspect-ratio: 1; */
    justify-content: center;
    align-items: center;
    padding-inline: 0;
    color: #fff;
    max-width: 20px;
}
.snb .snb-dropdown > li.home > a::before {
    content: "home";
    display: block;
    font-family: var(--gms);
    font-variation-settings: var(--gms-200-out);
    transform: translate(0px, 1px);
    margin-inline: -2px;
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1;
    color: #fff;
}
@media (max-width: 575.98px) {
    .snb .snb-dropdown > li.home > a::before {
        /*sm*/
        transform: translate(0px, -2px);
    }
}
.snb .snb-dropdown > li.home span.text {
    display: none;
}
@media (min-width: 992px) {
    .snb .snb-dropdown > li {
        /*lg*/
    }
    .snb .snb-dropdown > li[data-depth="2"] {
        margin-left: 30px;
    }
    .snb .snb-dropdown > li[data-depth="2"] .toggle {
        display: none;
    }
    .snb .snb-dropdown > li[data-depth="2"] .dropdown {
        all: unset;
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        border: 0;
    }
    .snb .snb-dropdown > li[data-depth="2"] .dropdown a {
        all: unset;
        transition: 0.2s;
        position: relative;
        cursor: pointer;
        display: flex;
        height: var(--snb-height);
        color: rgba(255, 255, 255, 0.6);
        justify-content: center;
        align-items: center;
        padding-inline: 35px;
        font-size: 17px;
    }
    .snb .snb-dropdown > li[data-depth="2"] .dropdown a::before {
        transition: 0.2s;
        content: "";
        display: block;
        width: 0%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
    }
    .snb .snb-dropdown > li[data-depth="2"] .dropdown a:hover {
        color: #fff;
    }
    .snb .snb-dropdown > li[data-depth="2"] .dropdown a:hover::before {
        width: 100%;
    }
    .snb .snb-dropdown > li[data-depth="2"] .dropdown .active a {
        /* border-top: 2px solid #FFF; */
        /* margin-top: -2px; */
        /* right: 0; */
        color: #fff;
    }
    .snb .snb-dropdown > li[data-depth="2"] .dropdown .active a::before {
        width: 100%;
    }
}
.snb .snb-dropdown .dropdown {
    box-sizing: border-box;
    z-index: 5000;
    position: absolute;
    top: 100%;
    left: -20px;
    right: 0px;
    display: none;
    flex-direction: column;
    gap: 10px;
    /* display: flex; */
    max-width: 220px;
    min-width: 180px;
    padding: 25px 35px;
    /* align-items: center; */
    gap: 10px;
    border-radius: 0 0 16px 16px;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.08);
    text-align: left;
    background-color: #fff;
}
@media (max-width: 575.98px) {
    .snb .snb-dropdown .dropdown {
        /*sm*/
        max-width: 100%;
        width: 100%;
        min-width: unset;
        /* left: -40px; */
        /* right: -40px; */
        /* left: -40px; */
        /* top: 10%; */
        left: 0;
        border: 1px solid #ccc;
        padding: 20px 25px;
    }
}
.snb .snb-dropdown .toggle.open + .dropdown {
    display: flex;
}
.snb .snb-dropdown .dropdown a {
    font-size: 15px;
    color: #555;
}
.snb .snb-dropdown .dropdown .active a {
    color: var(--page-point-color);
    font-weight: 500;
}
@media (width <= 575.98px) {
    .snb .snb-dropdown {
        /* scale: 0.9; */
        transform-origin: left;
    }
}

/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
[class*="title-h"] {
    --h-line-height: 1.3;
    --h-letter-spacing: -0.03em;
    --p-font-weight: 400;
    --p-color: #606060;
    --p-line-height: 1.6;
    /* 제목 */
    /* 본문 */
    /* 본문+본문 간격 */
}
[class*="title-h"]:only-child {
    margin-bottom: 0;
}
[class*="title-h"] a {
    color: #337ab7;
}
[class*="title-h"] p.big {
    font-size: 22px;
}
[class*="title-h"] span.color {
    font-weight: 600;
    color: #000;
}
[class*="title-h"] > :is(h2, h3, h4, h5, h6) {
    font-size: var(--h-font-size);
    font-weight: var(--h-font-weight);
    color: var(--h-color);
    line-height: var(--h-line-height);
    letter-spacing: var(--h-letter-spacing);
}
[class*="title-h"] > :is(p, ul, ol) {
    font-size: var(--p-font-size);
    font-weight: var(--p-font-weight);
    color: var(--p-color);
    line-height: var(--p-line-height);
    letter-spacing: -0.015em;
}
[class*="title-h"] > *:not(:is(h2, h3, h4, h5, h6)) + * {
    margin-top: calc(var(--text-between) + 10px);
}

/* h3 start */
.title-h3 {
    position: relative;
    --h-font-size: clamp(32px, 5vw, 44px);
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: 22px;
    --text-between: 10px;
    margin-bottom: clamp(50px, 10vw, 80px);
    text-align: center;
}
.title-h3 + .title-h4 {
    margin-top: 0;
}
.title-h3 h3 {
    color: #111;
    text-align: center;
    font-style: normal;
    line-height: 130%; /* 57.2px */
    letter-spacing: -0.66px;
}

/* h3 end */
/* h4 start */
.title-h4 {
    --h-font-size: clamp(22px, 3vw, 32px);
    --h-font-weight: 600;
    --h-color: #111;
    --p-font-size: clamp(15px, 2vw, 18px);
    margin-block: 80px 25px;
    letter-spacing: -0.01em;
    position: relative;
}
.title-h4:first-child {
    margin-top: 0;
}
.title-h4:has(p) {
    margin-bottom: clamp(50px, 5vw, 80px);
}
.title-h4 + .title-h4 {
    margin-top: clamp(40px, 10vw, 80px);
    /* border-top: 1px solid #eee; */
    /* padding-top: 50px; */
}
.title-h4 + .title-h5 {
    margin-top: 0px;
}
.title-h4 h4 {
    margin-bottom: 25px;
}
.title-h4 p {
    color: #333;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.36px;
}
.title-h4 p + p {
    margin-top: 25px;
}

/* h4 end */
/* h5 start */
.title-h5 {
    --h-font-size: 20px;
    --h-font-weight: 600;
    --h-color: #000;
    --p-font-size: 15px;
    --text-between: 8px;
    margin-top: 60px;
    margin-bottom: 20px;
}
.title-h5 + .title-h5 {
    margin-top: 40px;
}
.title-h5:has(p, ul) {
    margin-bottom: 15px;
}
.title-h5 h5 {
    color: #1d2088;
    font-size: clamp(18px, 3vw, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 36px */
    letter-spacing: -0.8px;
    padding-left: 15px;
}
.title-h5 h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    display: block;
    width: 5px;
    height: 12px;
    background-color: #1babdd;
    border-bottom: 8px solid #1d2088;
}
@media (max-width: 575.98px) {
    .title-h5 h5::before {
        /*sm*/
        top: 4px;
    }
}

.title-bg-h5 + .title-h5 {
    margin-top: 50px;
}

.card-wrap + .title-bg-h5 {
    margin-top: clamp(70px, 10vw, 100px);
}

.title-bg-h5 {
    position: relative;
    overflow: hidden;
    border-radius: 16px 0;
    /* background: #1d2088; */
    padding-inline: 20px 10px;
    height: 65px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: url(/public/img/sub/title-h5-bg.jpg) #1d2088 no-repeat right;
}
@media (max-width: 767.98px) {
    .title-bg-h5 {
        /*md*/
        background-size: cover;
    }
}
@media (max-width: 767.98px) {
    .title-bg-h5 {
        /*md*/
        height: auto;
        padding-block: 10px;
        border-radius: 12px 0;
        padding-left: 15px;
        /* flex-direction: column; */
        flex-wrap: wrap;
        text-align: left;
        align-items: flex-start;
        gap: 5px 10px;
    }
}
.title-bg-h5 .badge {
    color: #fff;
    display: inline-flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #ff3a3a;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 1; /* 24px */
    margin-left: 15px;
    height: 34px;
}
@media (max-width: 767.98px) {
    .title-bg-h5 .badge {
        /*md*/
        margin-left: 0;
        /* margin-top :5px; */
        font-size: 13px;
        padding: 5px 10px;
        border-radius: 10px;
        height: 30px;
    }
}
.title-bg-h5 img {
    /* position: absolute; */
    /* right: 0; */
}
.title-bg-h5 img.wifi {
    margin-left: auto;
    display: inline-flex;
    padding: 7px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background-color: #fff;
    border-radius: 8px;
}
@media (max-width: 767.98px) {
    .title-bg-h5 img.wifi {
        /*md*/
        /* position: absolute;right: 10px; */
        /* bottom: 10px; */
        height: 30px;
        padding: 5px;
    }
}
.title-bg-h5 h5 {
    color: #fff;
    font-size: clamp(16px, 2vw, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
}

/* h5 end */
/* [ subpage-content ] */
.subpage-content section {
    padding: 120px 0 150px;
    min-height: 300px;
}
.subpage-content section:only-child {
    padding-bottom: 170px;
}
@media (max-width: 767.98px) {
    .subpage-content section:only-child {
        /*md*/
        padding-bottom: 100px;
    }
}
.subpage-content section.bg-gray {
    background-color: #f6f7f8;
    padding-bottom: 120px;
}
@media (max-width: 991.98px) {
    .subpage-content section {
        /*lg*/
        padding-block: 70px 90px;
    }
}

/* greet */
/* <div class="greet-wrap"><div class="col img-box"><img src="/public/img/sub/ab01.jpg" class="img-responsive" alt="대표 사진" /></div><div class="col info"><span class="corp"></span><p></p><p class="name"><strong></strong><span></span></p></div></div> */
.greet-wrap {
    display: flex;
    gap: 100px;
    width: 100%;
    margin-inline: auto;
    align-items: center;
}
@media (max-width: 991.98px) {
    .greet-wrap {
        /*lg*/
        flex-direction: column;
    }
}
@media (max-width: 575.98px) {
    .greet-wrap {
        /*sm*/
        gap: 70px;
    }
}
.greet-wrap .img-box {
    /* width: 100%; */
    /* overflow: hidden; */
    /* max-width: 500px; */
    flex: 0 0 auto;
}
@media (max-width: 991.98px) {
    .greet-wrap .img-box {
        /*lg*/
        width: 90%;
    }
}
.greet-wrap .img-box > img {
    max-width: 520px;
    width: 100%;
    border-radius: 16px;
    background: #383838;
}
@media (max-width: 991.98px) {
    .greet-wrap .img-box > img {
        /*lg*/
        height: 300px;
        object-fit: cover;
        max-width: 100%;
    }
}
@media (max-width: 575.98px) {
    .greet-wrap .img-box > img {
        /*sm*/
        height: 200px;
    }
}
.greet-wrap .img-box .logo {
    display: flex;
    max-width: 140px;
    width: 100%;
    aspect-ratio: 1;
    /* height: 140px; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: #1798e8;
    position: absolute;
    right: -20px;
    bottom: -20px;
}
@media (max-width: 575.98px) {
    .greet-wrap .img-box .logo {
        /*sm*/
        max-width: 100px;
        padding: 15px;
    }
}
.greet-wrap .info {
    /* padding-right: 50px; */
    /* padding-top: 60px; */
    /* padding-bottom: 30px; */
}
@media (max-width: 575.98px) {
    .greet-wrap .info {
        /*sm*/
        text-align: center;
    }
    .greet-wrap .info br {
        display: none;
    }
}
.greet-wrap .info > span {
    display: block;
    color: var(--page-point-color);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 20px;
}
.greet-wrap .info h5 {
    color: #333;
    font-size: clamp(22px, 5vw, 34px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 51px */
    letter-spacing: -1.53px;
    margin-bottom: 50px;
}
.greet-wrap .info h5 span {
    color: #1798e8;
}
.greet-wrap .info h5 b {
    color: var(--page-point-color);
}
.greet-wrap .info h5 small {
    font-size: 30px;
    color: #333;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.35;
    display: block;
    margin-top: 2px;
}
.greet-wrap .info p {
    color: #555;
    font-size: clamp(15px, 2vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.36px;
}
.greet-wrap .info p b {
    font-size: 1.1em;
    color: #333;
}
.greet-wrap .info p + p {
    margin-top: 25px;
}

/* vision */
/* <div class="vision-wrap"><div class="col c1"><span class="material-symbols-outlined">cards_star </span><h5></h5></div></div> */
.vision-wrap {
    margin-top: 120px;
    display: flex;
    gap: 30px;
}
.vision-wrap .col {
    position: relative;
    counter-increment: itemNum;
    aspect-ratio: 1;
    border-radius: 9999px;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-top: 140px;
}
.vision-wrap .col::before {
    content: counter(itemNum, decimal-leading-zero) "";
    position: absolute;
    top: 80px;
    font-size: 22px;
    font-weight: 700;
}
.vision-wrap .col span.material-symbols-outlined {
    font-size: 54px;
    margin-bottom: 20px;
}
.vision-wrap .col h5 {
    font-size: 32px;
    font-weight: 500;
}

.card-wrap + .table-wrap {
    margin-top: 30px;
}

.card-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 991.98px) {
    .card-wrap {
        /*lg*/
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575.98px) {
    .card-wrap {
        /*sm*/
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
.card-wrap.col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-wrap.col-2 .col .img-box {
    min-height: 420px;
}
@media (max-width: 991.98px) {
    .card-wrap.col-2 .col .img-box {
        /*lg*/
        min-height: auto;
        border-radius: 8px;
    }
}
@media (max-width: 991.98px) {
    .card-wrap.col-2 {
        /*lg*/
        gap: 15px;
    }
}
.card-wrap .col.row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 991.98px) {
    .card-wrap .col.row {
        /*lg*/
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
}
.card-wrap .col.row > * {
    flex: 1;
}
.card-wrap .col.row .li-box {
    margin-top: 0;
}
.card-wrap .col.row .li-box li {
    min-height: 90px;
    padding: 5px 15px !important;
}
@media (max-width: 767.98px) {
    .card-wrap .col.row .li-box li {
        /*md*/
        min-height: unset;
        padding: 8px 15px !important;
    }
}
.card-wrap .col .img-box {
    display: flex;
    padding: 40px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    background: #fff;
    min-height: 260px;
}
@media (max-width: 991.98px) {
    .card-wrap .col .img-box {
        /*lg*/
        padding: 20px;
        min-height: auto;
    }
}
.card-wrap .col .img-box.fit {
    padding: 0;
    overflow: hidden;
}
.card-wrap .col .img-box.fit img {
    object-fit: cover;
    object-position: center;
}
.card-wrap .col h6 {
    margin-block: 20px 15px;
    color: #111;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
}
@media (max-width: 575.98px) {
    .card-wrap .col h6 {
        /*sm*/
        margin-top: 10px;
        font-size: 18px;
    }
}
.card-wrap .col li {
    color: #555;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
}
.card-wrap .col[colspan="2"] {
    grid-column: span 2;
}
.card-wrap .col[colspan="3"] {
    grid-column: span 3;
}
.card-wrap .col[colspan="3"] .img-box {
    min-height: 350px;
}
@media (max-width: 767.98px) {
    .card-wrap .col[colspan="3"] .img-box {
        /*md*/
        min-height: auto !important;
    }
}
.card-wrap .col .info {
    padding-inline: 10px;
}
.card-wrap .col .li-box {
    margin-top: 30px;
}

#business03 .card-wrap .img-box {
    min-height: 450px;
}

/* partner */
/* <div class="partner-wrap"><a href="https://www.kgs.or.kr/" class="col" target="_blank"><img src="/public/img/main/m-pt-01.jpg" alt="한국가스안전공사" class="img-responsive" /></a><div class="col"><img src="/public/img/sub/" class="img-responsive" alt="Image" /></div></div> */
/* .col*6>img.img-responsive[src="/public/img/logo$.jpg"][alt="파트너$"] */
.partner-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}
.partner-wrap .col {
    flex: 0 1 24%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid transparent;
}
.partner-wrap .col img {
    height: 80px;
}
.partner-wrap .col:hover {
    border-color: var(--page-point-color);
}

/* history dir*/
/* <div class="history-wrap"><div class="col"><h5 class="year"></h5><ul class="info"><li><span>00.</span><ul class="li-dash"><li></li></ul></li></ul></div></div> */
.history-dir-wrap {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.history-dir-wrap .col {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 9fr);
    align-items: flex-start;
}
.history-dir-wrap .col .info {
    position: relative;
    padding-bottom: 100px;
    padding-top: 10px;
}
.history-dir-wrap .col .info::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 1px;
    background-color: #ccc;
    top: 0px;
    bottom: 0;
}
.history-dir-wrap .col .info > li {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 10fr);
    font-size: 18px;
    padding-left: 90px;
    letter-spacing: -0.02em;
    position: relative;
}
.history-dir-wrap .col .info > li + .history-dir-wrap .col .info > li {
    margin-top: 15px;
}
.history-dir-wrap .col .info > li > span {
    font-weight: 700;
    color: #222;
    padding-top: 3px;
}
.history-dir-wrap .col .info > li::before {
    content: "";
    box-sizing: content-box;
    position: absolute;
    left: -5px;
    top: 8px;
    display: block;
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid var(--page-point-color);
    background: #fff;
}
.history-dir-wrap .col .info > li li {
    margin-bottom: 10px;
}
.history-dir-wrap .col:last-child .info {
    padding-bottom: 20px;
}
.history-dir-wrap .col:first-child .info::before {
    top: 23px;
}
.history-dir-wrap h5 {
    line-height: 1;
    font-size: 42px;
    font-weight: 700;
    color: var(--page-point-color);
    margin-block: 0;
    padding-bottom: 50px;
    letter-spacing: -0.03em;
}
.history-dir-wrap b {
    display: inline-block;
    margin-right: 12px;
}
@media (max-width: 767.98px) {
    .history-dir-wrap .col {
        display: flex;
        flex-direction: column;
    }
    .history-dir-wrap .col li {
        padding-left: 30px;
    }
    .history-dir-wrap .col .info {
        margin-top: 30px;
        margin-left: 10px;
    }
    .history-dir-wrap h5 {
        padding-left: 0;
        font-size: 36px;
    }
}

/* history zigzag*/
/* <div class="history-wrap"><div class="top"><h4>HISTORY</h4><p>2024<br />~1986 </p></div><div class="col"><div class="inner"><h5></h5><ul><li><b></b></li></ul></div></div></div> */
.history-zigzag-wrap {
    /* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
}
.history-zigzag-wrap .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--page-point-color);
    color: #fff;
    padding: 20px;
    width: 100%;
    max-width: 130px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-inline: auto;
}
.history-zigzag-wrap .top h4 {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}
.history-zigzag-wrap .top p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.history-zigzag-wrap .col {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.history-zigzag-wrap .col .inner {
    position: relative;
    /* width: 50%; */
    padding-block: 60px 20px;
    padding-left: 55px;
    border-left: 1px solid #888;
}
.history-zigzag-wrap .col h5 {
    /* position: static; */
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 600;
    color: var(--page-point-color);
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -0.03em;
}
.history-zigzag-wrap .col h5::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--page-point-color);
    position: absolute;
    top: 15px;
    left: -55px;
}
.history-zigzag-wrap .col h5::after {
    content: "";
    display: block;
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--page-point-color);
    position: absolute;
    left: -60px;
    top: 10px;
}
.history-zigzag-wrap .col li {
    font-size: clamp(15px, 2vw, 17px);
    display: flex;
    margin-bottom: 5px;
    letter-spacing: -0.03em;
}
.history-zigzag-wrap .col li b {
    flex-shrink: 0;
    width: 50px;
    color: #333;
    font-weight: 600;
}
@media (min-width: 768px) {
    .history-zigzag-wrap .col:nth-child(even) .inner {
        grid-column: 2;
    }
    .history-zigzag-wrap .col:nth-child(odd) .inner {
        border-left: 0;
        border-right: 1px solid #888;
        padding-right: 55px;
        padding-left: 0;
        text-align: right;
        margin-right: -1px;
    }
    .history-zigzag-wrap .col:nth-child(odd) h5::before {
        left: unset;
        right: -55px;
    }
    .history-zigzag-wrap .col:nth-child(odd) h5::after {
        right: -60px;
        left: unset;
    }
    .history-zigzag-wrap .col:nth-child(odd) li {
        flex-direction: row-reverse;
    }
}
@media (max-width: 767.98px) {
    .history-zigzag-wrap {
        max-width: 500px;
        margin-inline: auto;
        margin-top: 0;
    }
    .history-zigzag-wrap .top {
        margin-bottom: 50px;
    }
    .history-zigzag-wrap .col {
        display: flex;
        width: 100%;
    }
    .history-zigzag-wrap .col .inner {
        /* border: 0; */
        padding-top: 0;
        padding-bottom: 40px;
        padding-left: 30px;
        margin-left: 10px;
    }
    .history-zigzag-wrap .col h5::before {
        content: none;
        /* left: -35px; */
        /* width: 20px; */
    }
    .history-zigzag-wrap .col h5::after {
        left: -35px;
    }
}

/* number zigzag */
/* <div class="tech-wrap"><div class="col"><div class="img-box"><img src="/public/img/sub/ab03-01.jpg" class="img-responsive" alt="Image" /></div><div class="info"><dl><dt></dt><dd></dd></dl></div></div></div> */
.tech-wrap .col {
    counter-increment: itemNum;
    display: flex;
    align-items: center;
    gap: 70px;
}
.tech-wrap .col + .tech-wrap .col {
    margin-top: 100px;
}
.tech-wrap .col:nth-child(even) {
    flex-direction: row-reverse;
}
.tech-wrap .col .img-box {
    aspect-ratio: 1;
    max-width: 400px;
    width: 100%;
    background-color: #f7f7f7;
}
.tech-wrap .col .info {
    flex: 1;
}
.tech-wrap .col .info::before {
    content: counter(itemNum, decimal-leading-zero) "";
    font-size: 60px;
    font-weight: 900;
    opacity: 0.2;
    display: block;
    margin-bottom: 20px;
    color: var(--page-point-color);
}
.tech-wrap .col .info dt {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.tech-wrap .col .info dd {
    font-size: 18px;
    margin-bottom: 10px;
}

/* certification */
/* <div class="cert-wrap"><figure class="col"><div class="img-box"><img src="/public/img/sub/ab04-01-01.jpg" alt="인증서2-1" class="img-responsive" /></div></figure></div> */
.cert-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
.cert-wrap figure {
    padding: 10px;
    max-width: 300px;
    border: 1px solid #ccc;
}
.cert-wrap figure .img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 210/297;
}
.cert-wrap figure img {
    scale: 1.04;
}

#site #bbsArea.form-wrap tr {
    grid-template-columns: minmax(0, 240px) minmax(0, auto);
    padding: 0;
    align-items: stretch;
    gap: 0;
}
#site #bbsArea.form-wrap tr th,
#site #bbsArea.form-wrap tr td {
    padding: 15px clamp(15px, 2vw, 20px);
}
#site #bbsArea.form-wrap tr th {
    background-color: #f7f8f9;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 2px;
    padding-inline: clamp(15px, 2vw, 30px);
    font-weight: 600;
}
#site #bbsArea.form-wrap tr th:has(.required_text) > :where(span:first-child, span.required_text) {
    color: #f00;
}
#site #bbsArea.form-wrap tr .form-caption {
    display: none;
}
#site #bbsArea.form-wrap tr .checkbox {
    margin-block: 12px !important;
}
#site #bbsArea.form-wrap tr :is(.custom_radio, .custom_checkbox, .status_wrap input) + span {
    color: #666;
}
#site #bbsArea.form-wrap tr .custom_checkbox + span a {
    color: #333;
}
#site #bbsArea.form-wrap tr .custom_checkbox + span {
    user-select: none;
}
#site #bbsArea.form-wrap tr .custom_checkbox + span::before {
    margin: 0;
    font-size: 1.4em;
    color: #aaa;
    content: "check_circle";
    font-family: var(--gms);
    font-weight: 500;
}
#site #bbsArea.form-wrap tr .custom_checkbox:checked + span::before {
    font-weight: 900;
    color: var(--page-point-color);
    font-variation-settings: var(--gms-600-fill);
}
#site #bbsArea.form-wrap tr .custom_checkbox[disabled],
#site #bbsArea.form-wrap tr .custom_checkbox[disabled] + span {
    opacity: 0.5;
}
#site #bbsArea.form-wrap #write_btn {
    display: flex;
    height: 60px;
    min-width: 160px;
    padding: 0 30px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    border-radius: 9999px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: -0.36px;
}

/* form v2 */
#site .form-wrap-v2 {
    max-width: 900px;
    margin-inline: auto;
    width: 100%;
}
#site .form-wrap-v2 .table.board_write_table {
    border: 0;
}
#site .form-wrap-v2 .text-center {
    justify-content: center;
}
#site .form-wrap-v2 tbody {
    gap: 32px 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
#site .form-wrap-v2 tbody tr {
    /* grid-column: span 2; */
    border: 0;
    display: flex;
    padding: 0;
    flex-direction: column;
}
#site .form-wrap-v2 tbody tr th {
    width: 100%;
    gap: 3px;
    font-size: 16px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
#site .form-wrap-v2 tbody tr th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: static;
    margin-right: 2px;
    color: var(--page-point-color);
}
#site .form-wrap-v2 tbody tr td {
    width: 100%;
}
#site .form-wrap-v2 tbody tr td .form-control {
    width: 100%;
}
#site .form-wrap-v2 tbody tr#item_email .text-muted {
    display: none;
}
#site .form-wrap-v2 tbody tr:is(#item_captcha, #item_agree) {
    grid-column: span 1;
}
#site .form-wrap-v2 tbody tr:is(#item_2, #item_3) {
    grid-column: span 2;
}
@media (max-width: 767.98px) {
    #site .form-wrap-v2 {
        display: flex;
        flex-direction: column;
        gap: 70px;
        max-width: 500px;
        margin-inline: auto;
    }
    #site .form-wrap-v2 tbody {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/* form v3 : no placeholder */
#site .form-wrap-v3 {
    max-width: 900px;
    margin-inline: auto;
    width: 100%;
}
#site .form-wrap-v3 .table.board_write_table {
    border: 0;
}
#site .form-wrap-v3 .text-center {
    justify-content: center;
}
#site .form-wrap-v3 tbody {
    gap: 10px 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
#site .form-wrap-v3 tbody tr {
    position: relative;
    grid-column: span 2;
    border: 0;
    display: flex;
    padding: 0;
    gap: 0px;
    flex-direction: column;
    margin-top: 10px;
    /* 커스텀 항목 */
    /* 기본항목 */
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) {
    margin: 0;
    font-size: 20px;
    /* 커스텀 항목 */
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) th {
    position: absolute;
    transition: 0.25s;
    left: 5px;
    top: 30px;
    z-index: 100;
    /* width: 100%; */
    gap: 3px;
    font-size: inherit;
    font-weight: 500;
    transform-origin: left top;
    pointer-events: none;
    /* input, textarea, select 요소가 포커스 상태이거나 값이 있을 때 */
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) th:has(+ td :is(input, textarea, select):is(:focus, :not(:placeholder-shown))) {
    opacity: 0.5;
    top: 7px;
    scale: 0.7;
    box-shadow: none;
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) .form-control {
    width: 100%;
    height: 65px;
    padding-top: 25px;
    padding-inline: 5px;
    border: 0;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    font-size: inherit;
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) .form-control:hover {
    /* border-color:#bbb; */
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) .form-control::placeholder {
    color: transparent;
    user-select: none;
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) .form-control:focus {
    border-color: var(--page-point-color) !important;
}
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) .form-control:focus,
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) .form-control[type="email"]:invalid:not(:placeholder-shown),
#site .form-wrap-v3 tbody tr:not(:has([type="file"], #captcha, #wr_agree)) .form-control:valid:not(:placeholder-shown) {
    /* background-color:#fff; */
    /* border-color: #ccc; */
}
#site .form-wrap-v3 tbody tr th {
    font-size: 14px;
    margin-bottom: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    /* 필수항목 표시 */
}
#site .form-wrap-v3 tbody tr th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: static;
    margin-right: 2px;
    color: var(--page-point-color);
}
#site .form-wrap-v3 tbody tr td {
    width: 100%;
    font-size: inherit;
}
#site .form-wrap-v3 tbody tr#item_email .text-muted {
    display: none;
}
#site .form-wrap-v3 tbody tr:is(#item_captcha, #item_agree) {
    grid-column: span 1;
}
#site .form-wrap-v3 tbody tr:is(#item_2, #item_3) {
    grid-column: span 2;
}
@media (max-width: 767.98px) {
    #site .form-wrap-v3 {
        display: flex;
        flex-direction: column;
        gap: 70px;
        max-width: 500px;
        margin-inline: auto;
    }
    #site .form-wrap-v3 tbody {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

#site .map-wrap .col + #site .map-wrap .col {
    margin-top: 80px;
}
#site .map-wrap .map-box {
    /* aspect-ratio: 5/2.2; */
    background-color: #ccc;
    overflow: hidden;
    border-radius: 16px;
    background: #ccc;
}
#site .map-wrap .map-box iframe {
    width: 100%;
    height: 460px;
    /* object-fit: cover; */
}
@media (max-width: 575.98px) {
    #site .map-wrap .map-box iframe {
        /*sm*/
        aspect-ratio: 1;
        height: auto;
    }
}
#site .map-wrap .info {
    margin-top: 0px;
    position: relative;
    display: flex;
    justify-content: space-between;
    grid-template-columns: minmax(0, 0.22fr) minmax(0, 1fr);
    padding: 40px 0px 0;
    gap: 0 40px;
}
@media (max-width: 991.98px) {
    #site .map-wrap .info {
        /*lg*/
        flex-direction: column;
        gap: 30px;
    }
    #site .map-wrap .info li {
        padding: 0;
    }
}
#site .map-wrap .info p.addr {
    color: #333;
    font-size: clamp(20px, 3vw, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 36px */
    letter-spacing: -1.08px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 28px;
}
#site .map-wrap .info p.addr span {
    font-size: 32px;
    font-variation-settings: var(--gms-400-out);
    flex-shrink: 0;
}
#site .map-wrap dl:last-child {
    border-right: none;
}
#site .map-wrap dl {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}
#site .map-wrap dl::before {
    content: "";
    width: 3px;
    height: 16px;
    position: absolute;
    left: -1px;
    top: 0px;
}
#site .map-wrap dl dt {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-size: clamp(15px, 2vw, 17px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.51px;
}
#site .map-wrap dl dt span.material-symbols-outlined {
    border-radius: 100px;
    background: #1798e8;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    font-variation-settings: var(--gms-400-fill);
}
#site .map-wrap dl dd {
    color: #555;
    font-size: clamp(15px, 2vw, 17px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 25.5px */
    letter-spacing: -0.51px;
}
#site .map-wrap .detail {
    display: flex;
    gap: 50px;
}
@media (max-width: 767.98px) {
    #site .map-wrap .detail {
        /*md*/
        flex-direction: column;
        gap: 15px;
    }
}
#site .map-wrap .link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    /* background: transparent; */
    /* color: #fff; */
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s;
    color: #333;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 22.5px */
    letter-spacing: -0.15px;
}
#site .map-wrap .link-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}
#site .map-wrap ul.li-btn {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

/* map */
.map2-wrap {
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.map2-wrap iframe {
    width: 100%;
    height: clamp(300px, 25vw, 450px);
}
.map2-wrap .inner {
    display: flex;
    margin-top: 30px;
    gap: 25px;
}
.map2-wrap .email {
    margin-left: auto;
}
.map2-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 2vw, 18px);
    letter-spacing: 0;
    font-weight: 500;
    color: #333;
}
.map2-wrap li.addr {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.map2-wrap li span.material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: var(--gms-500-out), var(--gms-grad-zero);
    color: #fff;
    background: var(--page-point-color);
    border-radius: 50%;
    padding: 7px;
    flex-shrink: 0;
}
@media (max-width: 767.98px) {
    .map2-wrap .info {
        flex-direction: column;
    }
    .map2-wrap .email {
        margin-left: 0;
    }
}

/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
    position: relative;
    width: 100%;
}
#mainCarouselSwiper .swiper {
    display: block !important;
}
#mainCarouselSwiper .swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: max(clamp(600px, 70vw, 750px), calc(var(--svh100) - var(--navbar-height))); */
    /* 뷰포트가 작을 때 (최소 높이) */
    /* 중간 크기일 때 (중간 높이) */
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper .swiper .swiper-slide {
        height: clamp(500px, 80vw, 600px);
    }
}
@media (min-width: 768px) {
    #mainCarouselSwiper .swiper .swiper-slide {
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
@media (min-width: 768px) and (max-height: 900px) {
    #mainCarouselSwiper .swiper .swiper-slide {
        height: 700px;
    }
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* filter: brightness(0.5); */
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
    position: relative;
    z-index: 10;
    /* text-align: center; */
    color: #fff;
    padding-bottom: 50px;
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
        /*md*/
        text-align: center;
    }
}
@media (max-width: 575.98px) {
    #mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
        /*sm*/
    }
    #mainCarouselSwiper .swiper .swiper-slide .swiper-caption br {
        display: none;
    }
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link-btn {
    display: none;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link-btn span::before {
    content: "더보기";
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption h1 {
    position: relative;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    font-size: clamp(26px, 6vw, 50px);
    font-style: normal;
    font-weight: 650;
    line-height: 140%; /* 70px */
    letter-spacing: -0.6px;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption h1 span {
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    display: block;
    margin-bottom: 22px;
    letter-spacing: 0;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption p {
    margin-top: 25px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: inherit;
}

/* 구글아이콘 ver */
#mainCarouselSwiper [class*="swiper-button"] {
    position: static;
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    /* width: 10%; */
    height: 100%;
}
#mainCarouselSwiper [class*="swiper-button"]::after {
    content: none;
}
#mainCarouselSwiper [class*="swiper-button"]::before {
    position: relative;
    right: auto;
    top: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-100-out);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    color: rgb(255, 255, 255);
}
#mainCarouselSwiper [class*="swiper-button"]:hover::before {
    color: rgb(255, 255, 255);
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-next {
    right: 0;
    order: 3;
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-next::before {
    content: "\e5e1";
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-prev {
    order: 1;
}
#mainCarouselSwiper [class*="swiper-button"].swiper-button-prev::before {
    content: "\e2ea";
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
}

#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* bottom: 40px; */
    width: auto;
    margin: 0;
    padding: 0;
    max-width: unset;
    order: 2;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 1;
    gap: 7px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
    transition: ease-in-out 0.2s all;
    margin: 0;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}

#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* bottom: 40px; */
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination {
    position: static;
    display: flex;
    justify-content: flex-start;
    height: auto;
    line-height: 1;
    gap: 12px;
    margin-inline: 32px;
    width: auto;
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
    background-color: #fff;
    /* border: 1px solid #fff; */
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
    transition: ease-in-out 0.2s all;
    margin: 0;
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}

#mainCarouselSwiper .swiper-indicators-wrap {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    max-width: 1300px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media (max-width: 991.98px) {
    #mainCarouselSwiper .swiper-indicators-wrap {
        /*lg*/
        justify-content: center;
        bottom: 30px;
    }
}

/* [ mainpage ] */
.mainpage :is(.bg) {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    /* filter: brightness(0.8); */
}
.mainpage section {
    position: relative;
    padding-block: 160px;
}
@media (max-width: 767.98px) {
    .mainpage section {
        /*md*/
        padding-block: 100px;
    }
}
.mainpage .main-support * {
    color: #fff;
}

.m-title-h3 {
    margin-bottom: 60px;
    text-align: center;
}
.m-title-h3 h3 {
    color: #111;
    text-align: center;
    font-size: clamp(36px, 6vw, 60px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 60px */
    letter-spacing: -1.8px;
}
.m-title-h3 p {
    margin-top: 30px;
    color: #222;
    text-align: center;
    font-size: clamp(16px, 3vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.2px;
}
@media (max-width: 575.98px) {
    .m-title-h3 p {
        /*sm*/
    }
    .m-title-h3 p br {
        display: none;
    }
}
.m-title-h3:has(a) {
    /* display: flex; */
    /* justify-content: space-between; */
}
.m-title-h3:has(a) a {
    /* font-size: clamp(16px, 2vw, 20px); */
    /* font-weight: 600; */
}

#site .btn-more {
    display: inline-flex;
    height: 60px;
    min-width: 190px;
    padding: 15px 20px 15px 30px;
    align-items: center;
    gap: 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: -0.54px;
    margin-top: 30px;
}
@media (max-width: 767.98px) {
    #site .btn-more {
        /*md*/
        font-size: 15px;
        height: 52px;
    }
}
#site .btn-more span.material-symbols-outlined {
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background-color: #1798e8;
    border-radius: 9999px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
}
#site .btn-more:hover {
    background: #fff;
    color: #333;
}

/* works */
.m-busi-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 991.98px) {
    .m-busi-wrap {
        /*lg*/
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}
@media (max-width: 575.98px) {
    .m-busi-wrap {
        /*sm*/
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
.m-busi-wrap .col {
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 50px 40px 40px 50px;
    border-radius: 16px;
    background: #f2f6f9;
}
@media (max-width: 767.98px) {
    .m-busi-wrap .col {
        /*md*/
        padding: 30px;
    }
}
.m-busi-wrap .col .icon {
    border-radius: 16px;
    background: #fff;
    box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.05);
    color: #0087da;
    max-width: 70px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    margin-bottom: 25px;
}
@media (max-width: 767.98px) {
    .m-busi-wrap .col .icon {
        /*md*/
        max-width: 60px;
        font-size: 36px;
    }
}
.m-busi-wrap .col .arrow {
    transition: 0.3s;
    color: #ccc;
    font-size: 52px;
    margin-left: auto;
}
@media (max-width: 767.98px) {
    .m-busi-wrap .col .arrow {
        /*md*/
        margin-top: -45px;
    }
}
.m-busi-wrap .col b {
    transition: 0.3s;
    color: #222;
    font-family: Pretendard;
    font-size: clamp(22px, 2vw, 27px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 34.02px */
    letter-spacing: -0.54px;
}
.m-busi-wrap .col:hover {
    background: transparent;
}
.m-busi-wrap .col:hover b {
    color: #fff;
}
.m-busi-wrap .col:hover .arrow {
    color: #fff;
}
.m-busi-wrap .col:hover .bg {
    opacity: 1;
}
.m-busi-wrap .bg {
    z-index: -1;
    background: url(/public/img/main/m-busi-hover.jpg) no-repeat center/cover;
    opacity: 0;
    transition: 0.3s;
}

.m-board-wrap {
    display: flex;
    gap: 80px;
}
.m-board-wrap .col {
    flex: 1;
}

/* [ main-widget ] */
.mainpage [class^="board_box"] {
    margin-bottom: 0;
}

.mainpage .page-header {
    margin-block: 0 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.mainpage .page-header h4 {
    display: inline-block;
    font-size: clamp(18px, 3vw, 22px);
}
.mainpage .page-header i::before {
    position: relative;
    display: block;
    content: "\e145";
    translate: 0 2px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 500;
    color: #000;
}

.mainpage .type_list {
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}
.mainpage .type_list li {
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding-block: 27px;
    padding-right: 50px;
    justify-content: space-between;
    gap: 17px;
    border-bottom: 1px solid #eee;
}
.mainpage .type_list li:hover a {
    text-decoration: underline;
}
.mainpage .type_list li::after {
    content: "\e145";
    font-family: var(--gms);
    position: absolute;
    right: 0;
    font-size: 36px;
    color: #2ba1ea;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
}
.mainpage .type_list li.no_bd_text {
    justify-content: center;
}
.mainpage .type_list li .info {
    color: #666;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    order: 5;
}
.mainpage .type_list li .info span:not(.regdate) {
    display: none;
}
.mainpage .type_list li .board_status_badge {
    order: 2;
    display: flex;
    line-height: 1;
    margin-right: auto;
    margin-left: 10px;
    background-color: var(--page-point-color) !important;
    color: #fff;
    padding: 5px 8px;
    align-items: center;
    font-size: 12px;
    margin-block: -5px;
    align-self: center;
}
.mainpage .type_list li .board_status_badge.badge_wait {
    background-color: #a0a1a3 !important;
}
.mainpage .type_list li .board_status_badge.badge_complete {
    background-color: #e40000 !important;
}
.mainpage .type_list li span.subject {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1px;
}
.mainpage .type_list li a:hover {
    /* text-decoration: underline; */
}
.mainpage .type_list li :where(li, a) {
    line-height: 1;
    font-size: clamp(14px, 3vw, 16px);
    color: #000;
}

.mainpage .type_thumb {
    display: grid;
    grid-template-columns: repeat(2, minmax(1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}
.mainpage .type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.mainpage .type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
.mainpage .type_thumb .thumb {
    aspect-ratio: 1.6666666667;
    height: auto;
}
.mainpage .type_thumb .bottom {
    padding: 0;
}
.mainpage .type_thumb .bottom .title {
    padding: 0;
    margin-top: 5px;
}
.mainpage .type_thumb .bottom .title a {
    font-size: clamp(15px, 3vw, 17px);
}
.mainpage .type_thumb .info {
    display: none;
}

.mainpage :where(.type_video, [data-board-option="video"]) .top a::before {
    content: "\f144";
    font-family: "font awesome 6 free";
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
}
.mainpage :where(.type_video, [data-board-option="video"]) .inner:hover .top a::before {
    opacity: 1;
}

/* [ main-popup ] */
#site #mainPopup {
    position: relative;
    top: 50px;
}
#site #mainPopup .main_popup {
    display: none;
    position: absolute;
    top: 100px !important;
    min-width: 300px;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background-color: transparent;
}
#site #mainPopup .main_popup.show {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
#site #mainPopup .main_popup button.close {
    all: unset;
    cursor: pointer;
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#site #mainPopup .main_popup span.material-symbols-outlined {
    line-height: 0.8;
    font-variation-settings: var(--gms-200-out);
    font-size: inherit;
}
#site #mainPopup .main_popup .main_popup_contents {
    overflow: hidden;
    /* padding: 10px; */
    background: #fff;
}
#site #mainPopup .main_popup .main_popup_contents video {
    display: block;
}
#site #mainPopup .main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
#site #mainPopup .main_popup .main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding-inline: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 40px;
}
#site #mainPopup .main_popup .main_popup_optional label {
    font-weight: 400;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
}
#site #mainPopup .main_popup .main_popup_optional label input[type="checkbox"] {
    display: none;
}
#site #mainPopup .main_popup .main_popup_optional label span {
    padding-left: 3px;
    display: flex;
    gap: 5px;
    align-items: center;
}
#site #mainPopup .main_popup .main_popup_optional label span::before {
    content: "\e8b5";
    display: inline-block;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(16px, 2vw, 18px);
    /* transform: translateY(3px); */
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div) {
    opacity: 0.8;
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div, span) {
    line-height: 1;
}
#site #mainPopup .main_popup.main_popup_left {
    left: 50px;
}
#site #mainPopup .main_popup.main_popup_center {
    left: 50%;
    transform: translate(-50%);
}
#site #mainPopup .main_popup.main_popup_right {
    right: 50px;
}
@media (max-width: 767.98px) {
    #site #mainPopup .main_popup[class*="main_popup_"] {
        left: 15px;
        right: 15px;
        transform: none;
        width: fit-content;
        margin-inline: auto;
    }
}

/* ---------------------------- 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;
    }
    .table-responsive table {
        min-width: 700px;
    }
    .table-responsive col {
        width: auto;
    }
}
:where(.table) {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    table-layout: fixed;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    border-spacing: 0;
}

:where(.table) :where(th, td) {
    vertical-align: top;
    line-height: 1.5;
}

.table-style {
    --border-color: #e0e0e0;
    border: 1px solid var(--border-color);
    border-inline: 0;
    background-color: #fff;
    margin: 0;
}

.table-style :is(th, td) {
    padding: 20px 19px;
    font-size: clamp(14px, 2vw, 16px);
    vertical-align: middle;
    border: 1px solid var(--border-color);
    text-align: center;
}
@media (max-width: 575.98px) {
    .table-style :is(th, td) {
        /*sm*/
        padding: 15px 10px;
    }
}
.table-style :is(th, td):first-child {
    border-left: 0;
}
.table-style :is(th, td):last-child {
    border-right: 0;
}

.table-style td {
    color: #666;
    font-size: clamp(14px, 2vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.16px;
}
.table-style td.text-left {
    text-align: left;
}

.table-style thead th {
    border-bottom: 0;
    background: #f7f8f9;
    border: 1px solid var(--border-color);
    color: #333;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: -0.32px;
}

.table-style thead,
.table-style tbody:only-child {
    border-top: 2px solid #1d2088;
}

.table-style tbody th {
    color: #333;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: -0.32px;
}

.table-style .badge {
    display: inline-flex;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #ff3a3a;
    color: #fff;
    font-size: 12px;
    margin-left: 5px;
    transform: translateY(-1px);
}

/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
    margin-block: 0;
    /* 게시글 공지사항 */
}
.board_wrapper tr.notice {
    background-color: #f8f8f8;
}
.board_wrapper tr.notice th.num::before {
    content: "공지사항";
    display: flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    background: #4472c4;
    color: #fff;
    position: absolute;
    width: fit-content;
    margin-inline: auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* bottom: 50%; */
}
.board_wrapper tr.notice td.subject {
    /* 게시글 아이콘 */
}
.board_wrapper tr.notice td.subject a {
    font-weight: 500;
    color: #000;
}
.board_wrapper tr.notice td.subject .is_secret {
    order: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board_wrapper tr.notice td.subject span {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 7px;
}
.board_wrapper tr.notice td.subject span .badge {
    display: none !important;
}
.board_wrapper tr.notice td.subject small {
    margin-top: 0;
    /* 잠금 아이콘 */
    /* 댓글 아이콘*/
}
.board_wrapper tr.notice td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
}
.board_wrapper tr.notice td.subject small.comment {
    opacity: 0.8;
    order: 1000;
    translate: 0 -1px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--page-point-color-dark);
    font-weight: 700;
}
.board_wrapper tr.notice td.subject small.comment::before {
    content: "[";
}
.board_wrapper tr.notice td.subject small.comment::after {
    content: "]";
}
.board_wrapper tr.notice td.subject small.comment i {
    display: none;
}
.board_wrapper tr.notice td.cate::before {
    content: "공지";
    color: #222;
}
.board_wrapper tr.notice td.cate span {
    display: none;
}

/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper[id$="_view"] .btn {
    min-width: 60px;
    padding-inline: 10px;
    justify-content: center;
    align-items: center;
}
.board_wrapper :is(.form-caption, .wr_caution) i {
    color: var(--page-point-color);
}
.board_wrapper .wr_caution {
    padding-left: 18px;
}

#site :where(.member_wrapper, .board_wrapper) {
    /* 게시판/주문폼/회원가입 버튼 */
    /* checkbox, radio */
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#site :where(.member_wrapper, .board_wrapper) .text-center:not(td) {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
#site :where(.member_wrapper, .board_wrapper) .text-center:not(td) .btn + .btn {
    margin: 0;
}
#site :where(.member_wrapper, .board_wrapper) .btn.btn-lg,
#site :where(.member_wrapper, .board_wrapper) .btn + .btn:not(.btn-outline-danger) {
    min-width: 180px;
}
#site :where(.member_wrapper, .board_wrapper) tbody td:has(.radio-inline, .checkbox-inline) {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(5px, 2vw, 10px) clamp(15px, 3vw, 20px);
    font-size: clamp(14px, 2vw, 16px);
}
#site :where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
#site :where(.member_wrapper, .board_wrapper) .checkbox label {
    cursor: pointer;
    width: fit-content;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
#site :where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
    font-weight: 500;
    color: #1b54e4;
    text-decoration: underline;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type="checkbox"], input[type="radio"]) {
    position: static;
    margin: 0 5px 0 0;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .radio-inline) {
    margin-block: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
}
@media (max-width: 767.98px) {
    #site :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 20px;
        /* margin-bottom: 50px; */
        /* padding-top: 30px; */
        display: flex;
        justify-content: center;
        width: 100%;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
        margin-left: 0;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}

/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul li {
    margin: 0;
}
#bbsArea .category_wrap ul li a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 16px;
}
#bbsArea .category_wrap ul li a:hover {
    color: #111;
}
#bbsArea .category_wrap ul li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}

#site .list-wrap colgroup .regdate_col,
#site .list-wrap colgroup .num_col {
    width: 150px;
}
#site .list-wrap colgroup .hits_col,
#site .list-wrap colgroup .writer_col {
    width: 130px;
}

/* 게시판 노출 */
#bbsArea {
    position: relative;
}
#bbsArea .board_data_view {
    border-top: 1px solid #333;
    border-bottom: 1px solid #aaa;
}
#bbsArea .write_btn_wrap {
    position: absolute;
    right: 0;
    bottom: 0;
}
#bbsArea .btn-lg {
    width: 200px;
}
#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}
#bbsArea .board_wrapper + .search_wrap {
    margin-top: 50px;
}
#bbsArea .board_wrapper + .pagination_wrap {
    margin-block: 50px;
}

#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 0px;
}
#bbsArea .pagination_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
#bbsArea .pagination_wrap ul li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    aspect-ratio: 1;
    font-size: 15px;
    border-radius: 9999px;
}
#bbsArea .pagination_wrap ul li:not(.active) a:hover {
    background-color: #eee;
}
#bbsArea .pagination_wrap ul li.active a {
    width: 28px;
    background-color: var(--page-point-color);
    color: #fff;
    font-weight: 700;
}
#bbsArea .pagination_wrap ul li + #bbsArea .pagination_wrap ul li {
    margin-left: -1px;
}
#bbsArea .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 게시판 목록 하단 */
#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#bbsArea .search_wrap #search_kind {
    cursor: pointer;
    line-height: 1;
}
#bbsArea .search_wrap .write_btn_wrap {
    margin-top: 0;
}
@media (max-width: 767.98px) {
    #bbsArea .search_wrap {
        flex-direction: column;
        max-width: 300px;
        margin-inline: auto;
    }
    #bbsArea .search_wrap .write_btn_wrap {
        position: static;
        display: flex;
        gap: 5px;
        width: 100%;
    }
    #bbsArea .search_wrap .write_btn_wrap > .btn {
        width: 100%;
        min-width: auto;
        flex: 1;
    }
    #bbsArea .search_wrap select.form-control {
        max-width: 100% !important;
    }
}

#bbsArea .badge {
    display: inline-flex;
    background-color: var(--page-point-color);
    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 var(--container-padding-inline) 55px;
    border-bottom: 1px solid #aaa;
}
#bbsArea .header_wrap h4.title {
    font-size: 26px;
    font-weight: 500;
    color: #000;
}
#bbsArea .header_wrap span {
    color: #666;
}
#bbsArea .header_wrap strong {
    color: #000;
    font-weight: 600;
}
#bbsArea .header_wrap .title {
    margin: 0;
    font-size: 24px;
}
#bbsArea .header_wrap .info {
    margin-top: 15px;
    opacity: 0.7;
}
#bbsArea .header_wrap .info span {
    font-size: 14px;
    color: #000;
}
#bbsArea .header_wrap .info span + #bbsArea .header_wrap .info span {
    margin-left: 9px;
}

/* 게시글 콘텐츠 */
#bbsArea .contents_wrap {
    padding: 50px 0px;
}
#bbsArea .contents_wrap .contents_inner {
    font-size: 14px;
}
#bbsArea .contents_wrap img {
    max-width: 100%;
    height: auto;
}
#bbsArea .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}
#bbsArea .contents_wrap a {
    color: #337ab7;
}
#bbsArea .contents_wrap a:hover {
    color: #1b5a92;
    text-decoration: underline;
}
#bbsArea .contents_wrap a:visited {
    color: #6c368b;
}
#bbsArea .contents_wrap a:visited:hover {
    color: #461b5f;
    text-decoration: underline;
}
#bbsArea .contents_wrap :is(.h1, h1) {
    font-size: 36px;
}
#bbsArea .contents_wrap :is(.h2, h2) {
    font-size: 30px;
}
#bbsArea .contents_wrap :is(.h3, h3) {
    font-size: 24px;
}
#bbsArea .contents_wrap :is(.h4, h4) {
    font-size: 18px;
}
#bbsArea .contents_wrap :is(.h5, h5) {
    font-size: 14px;
}
#bbsArea .contents_wrap :is(.h6, h6) {
    font-size: 12px;
}
#bbsArea .contents_wrap :is(.h1, .h2, .h3, h1, h2, h3) {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 500;
    color: inherit;
}
#bbsArea .contents_wrap :where(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside;
}
#bbsArea .contents_wrap ul li {
    list-style-type: disc;
}
#bbsArea .contents_wrap ol li {
    list-style-type: decimal;
}

/* 게시글 다운로드 */
#bbsArea :is(.download_wrap, .status_wrap) {
    padding: 15px;
    border-top: 1px solid #ddd;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#bbsArea :is(.download_wrap, .status_wrap) th {
    text-align: left;
    vertical-align: top;
    width: 100px;
}
#bbsArea :is(.download_wrap, .status_wrap) ul {
    display: flex;
    flex-direction: column;
    gap: 5px 10px;
    flex-wrap: wrap;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a {
    color: #000;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a:hover {
    text-decoration: underline;
}
@media (max-width: 767.98px) {
    #bbsArea :is(.download_wrap, .status_wrap) ul {
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr {
        display: flex;
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr > * {
        width: 100%;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr th {
        padding-bottom: 10px;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr a {
        word-break: break-all;
    }
}

/* 게시글 댓글 */
#bbsArea .reply_wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
#bbsArea .reply_wrap h4 {
    position: static;
    text-align: left;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
#bbsArea .reply_wrap > h4 {
    /* order: 1; */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
#bbsArea .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
#bbsArea .reply_wrap .btn_wrap .pull-left {
    display: flex;
    gap: 5px;
}
#bbsArea .reply_wrap :is(#bbsArea .reply_wrap #reply_modify_btn, #bbsArea .reply_wrap .text-left + button) {
    margin-left: auto;
}
#bbsArea .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
#bbsArea .reply_wrap #reply_list {
    /* order: 3; */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ccc;
    margin-block: 20px;
}
#bbsArea .reply_wrap #reply_list .info {
    display: flex;
    gap: 7px;
    /* height: 40px; */
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
#bbsArea .reply_wrap #reply_list .media {
    position: relative;
    margin: 0;
    padding: 20px 5px 40px;
}
#bbsArea .reply_wrap #reply_list .media + #bbsArea .reply_wrap #reply_list .media {
    border-top: 1px solid #ddd;
}
#bbsArea .reply_wrap #reply_list .media .media-left,
#bbsArea .reply_wrap #reply_list .media > .pull-left {
    padding-right: 20px;
}
#bbsArea .reply_wrap #reply_list .media .media .media-left img {
    border-radius: 100%;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .media .media-body {
    position: static;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info {
    position: absolute;
    /* right: 0; */
    left: 130px;
    bottom: 15px;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info .btn {
    display: inline-block;
    font-weight: 500;
    /* padding: 0 5px; */
    line-height: 1;
    font-size: 12px;
    vertical-align: middle;
    color: #333;
    height: auto;
    max-width: unset;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info span {
    color: #aaa;
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-all;
}
#bbsArea .reply_wrap #reply_list .media .media-heading .text-muted {
    color: #aaa;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 5px;
    margin-left: 0 !important;
}
#bbsArea .reply_wrap #reply_write .info .form-control {
    display: inline-block;
    width: 120px;
}
#bbsArea .reply_wrap #reply_write .info .form-control + #bbsArea .reply_wrap #reply_write .info .form-control {
    margin-left: 2px;
}
#bbsArea .reply_wrap #reply_write .contents {
    margin-top: 5px;
}
#bbsArea .reply_wrap #reply_write .contents .form-control {
    height: 100px;
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
    padding: 10px 15px;
}
#bbsArea .reply_wrap #reply_write .btn_wrap {
    margin-top: 5px;
    text-align: right;
}
#bbsArea .reply_wrap #reply_write .btn_wrap .btn {
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 539px) {
    #bbsArea .reply_wrap .info .form-control {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    #bbsArea .reply_wrap .info .form-control + #bbsArea .reply_wrap .info .form-control {
        margin-left: 0;
    }
}

/* 게시글 작성 */
#bbsArea .table.board_write_table {
    border-top: 2px solid #1d2088;
    border-collapse: inherit;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    /* 휴지통 버튼 */
    /* 필수 입력 항목 */
    /* textarea 글자수 */
    /* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#bbsArea .table.board_write_table tbody td {
    padding: 0px;
    border: 0;
}
#bbsArea .table.board_write_table .text-muted i {
    color: var(--page-point-color);
}
#bbsArea .table.board_write_table .files {
    /* 파일 추가 버튼 */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 15px;
    flex: 1;
}
#bbsArea .table.board_write_table .files #File_add {
    aspect-ratio: 1;
    width: auto;
    padding: 9px 12px;
    margin: 0;
}
#bbsArea .table.board_write_table .files + #File_add {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
}
#bbsArea .table.board_write_table .files + #File_add .fa-plus {
    line-height: 0;
}
#bbsArea .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
#bbsArea .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
#bbsArea .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}
#bbsArea .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}
@media (max-width: 767.98px) {
    #bbsArea .table.board_write_table .text-muted {
        width: 100%;
    }
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach) {
    display: inline-block;
    color: #999;
    line-height: 40px;
    margin-left: 7px;
    margin-right: 7px;
    cursor: pointer;
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach):hover {
    color: #ec0909;
}
#bbsArea .table.board_write_table th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: static;
    margin-right: 2px;
    color: var(--page-point-color);
}
#bbsArea .table.board_write_table .frm_textarea_cnt {
    display: none;
}
@media (min-width: 768px) {
    #bbsArea .table.board_write_table .files_upload_wrap {
        gap: 15px;
        display: flex;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        aspect-ratio: 1;
        height: 40px;
    }
}
@media (max-width: 767.98px) {
    #bbsArea .table.board_write_table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #bbsArea .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100%;
    }
    #bbsArea .table.board_write_table #delete_thumb {
        width: 100%;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .files .fileInput .file_add {
        position: relative;
        right: auto;
    }
}

/* input */
.form-control {
    /* width: 100%; */
    min-width: clamp(150px, 25vw, 350px);
    font-family: var(--page-font-family);
    padding: 0.6rem 0.85rem;
    font-size: clamp(14px, 2vw, 16px);
    height: var(--form-height);
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--page-grey-color);
    color: #333;
    letter-spacing: -0.03em;
    transition: all 0.2s;
}
.form-control::placeholder {
    color: #999;
}
.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-hover);
}
.form-control[type="file"] {
    position: relative;
    width: 100%;
    cursor: pointer;
    padding: 0 0.8rem;
    padding-left: 0;
    line-height: calc(var(--form-height) - 2px);
    margin: 0;
}
.form-control[type="file"]::file-selector-button {
    width: 80px;
    margin-right: 10px;
    font-family: inherit;
    position: relative;
    left: 0;
    height: 100%;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
}
.form-control[type="file"]:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #e5e5e5;
}

#search_query.form-control {
    width: 100%;
    max-width: 320px;
    border: 1px solid var(--page-grey-color);
}
#search_query.form-control:focus {
    background-color: #fff;
    border-color: var(--page-point-color);
}

textarea.form-control {
    padding-block: 0.9rem;
    line-height: 1.5;
}

select.form-control {
    -webkit-appearance: none;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzIiICAgdmlld0JveD0iMCAwIDQ4MCA0ODAiICAgaGVpZ2h0PSI0ODAiICAgd2lkdGg9IjQ4MCI+ICA8bWV0YWRhdGEgICAgIGlkPSJtZXRhZGF0YTEwIj4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzOCIgLz4gIDxwYXRoICAgICBpZD0icGF0aDQiICAgICBkPSJNIDE0MCwxOTAgMjQwLDI5MCAzNDAsMTkwIFoiIC8+PC9zdmc+);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) 11px;
    background-origin: border-box;
    padding-right: 23px;
    max-width: 100px;
}

.wr_add_button select.form-control {
    max-width: 100%;
}

select.form-control#wr_cate {
    max-width: 200px;
}

input.form-control {
    -webkit-appearance: none;
    padding-right: 20px;
}
input.form-control#wr_reply_captcha {
    max-width: 130px;
    width: 100% !important;
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control.vaild-text + .clear-input {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 100%;
    color: #bbb;
    top: 0;
    right: 0;
    border: 1px solid transparent;
}
input.form-control.vaild-text + .clear-input::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control + .clear-input:hover {
    color: var(--page-point-color);
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .form-control {
        width: 100%;
    }
}
.wr_form_wrap {
    display: grid;
    grid-template-columns: 1fr 0.5fr 2fr;
    gap: 10px;
    padding: 3px 0 0;
}
.wr_form_wrap label {
    font-size: 13px;
}
@media (max-width: 768px) {
    .wr_form_wrap {
        display: flex;
        flex-direction: column;
    }
}

.wr_form_item {
    position: relative;
}
.wr_form_item input.form-control {
    padding-right: 40px;
    background-color: transparent;
    padding-right: 35px;
}
.wr_form_item :where(.input-group, .form-control) {
    width: 100%;
}

.custom_file {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}

.checkbox-inline + .checkbox-inline {
    margin-left: 20px;
}

:is(.custom_radio, .custom_checkbox) {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}

:is(.custom_radio, .custom_checkbox, .status_wrap input) + span {
    user-select: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom_checkbox + span {
    user-select: none;
}
.custom_checkbox + span::before {
    margin: 0;
    font-size: 1.25em;
    color: #555;
    content: "\e835";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
.custom_checkbox:checked + span::before {
    content: "\e834";
    font-weight: 900;
    color: var(--page-point-color);
}
.custom_checkbox[disabled],
.custom_checkbox[disabled] + span {
    opacity: 0.5;
}

.custom_radio[disabled],
.custom_radio[disabled] + span {
    opacity: 0.5;
}
.custom_radio:checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}
.custom_radio + span::before {
    margin: 0;
    font-size: 1.25em;
    color: #555;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}

.radio-inline {
    cursor: pointer;
    align-self: center;
    margin-top: 0 !important;
}

.status_wrap [name="wr_status"] {
    display: none;
}
.status_wrap [name="wr_status"][disabled],
.status_wrap [name="wr_status"][disabled] + span {
    opacity: 0.5;
}
.status_wrap [name="wr_status"] + span::before {
    margin: 0;
    font-size: 1.25em;
    color: #555;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
.status_wrap [name="wr_status"]:checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}

/* 자동입력방지 */
#wr_captcha {
    margin-top: 0;
    width: 100%;
    max-width: 220px;
}

#captcha {
    z-index: 10;
    cursor: pointer;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: var(--form-height) !important;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 4px;
}
#captcha:hover {
    border-color: #222 !important;
}
#captcha + br {
    display: none;
}
#captcha + br + input {
    margin: 0 0 0 5px !important;
    margin-left: -1px;
}
#captcha + br + input:focus {
    z-index: 15;
}

td:has(#captcha) {
    display: flex;
    gap: 0;
}

/* [ board-columns ] */
:is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}
:is(.table_video, .table_blog2, .table_pd)::before,
:is(.table_video, .table_blog2, .table_pd)::after {
    content: none;
}
:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
}
:is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}

@media (min-width: 576px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
@media (min-width: 768px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
/* [ board-video ] */
.table_video .top a::before {
    content: "\e1c4";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
}
.table_video .inner:hover .top a::before {
    opacity: 1;
}

.type_video .thumb {
    background-color: #000;
}

/* [ board-list ] */
/* 게시판 리스트, 현황 */
.board_status_list .status_badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}
.board_status_list .status_badge_1 {
    background: #a0a1a3;
    color: #fff;
}
.board_status_list .status_badge_2 {
    background: var(--page-point-color);
    color: #fff;
}
.board_status_list .status_badge_3 {
    background: #e1e1e1;
    color: #888;
}

:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default {
    border: 0;
    border-spacing: 0;
    border-top: 1px solid #333;
    margin-bottom: 0;
    width: 100%;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    color: #222;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.17px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody th.num {
    font-weight: normal;
    vertical-align: middle;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody td {
    padding-block: 27px;
    vertical-align: middle;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #222;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
    letter-spacing: -0.5px;
    font-size: clamp(15px, 3vw, 18px);
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody.table_responsive th {
    margin-bottom: 0;
    border: 0;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(th, td) {
    padding: 20px 15px;
    font-size: clamp(15px, 3vw, 17px);
    border-bottom: 1px solid #eaeaea;
    text-align: center;
    font-style: normal;
    color: #777;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 21px */
    letter-spacing: -0.15px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td {
    color: #777;
    text-align: center;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.subject {
    text-align: left;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.subject.subject_secret > span {
    display: flex;
    align-items: center;
    gap: 10px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.text-center {
    display: table-cell;
    text-align: center;
}

/* 반응형 스타일 */
@media (max-width: 767.98px) {
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .subject {
        width: 100%;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .status {
        width: 35%;
    }
}
/* [ board-blog A ] */
.table_blog {
    border-top: 2px solid #222;
}
.table_blog .info {
    display: none;
}
.table_blog dd {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, auto);
    align-items: flex-start;
    gap: 40px;
    padding-block: 40px;
    border-bottom: 1px solid #ddd;
}
.table_blog .no_post {
    grid-column: span 2;
}
.table_blog .right {
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    align-items: flex-start;
    padding-right: 30px;
}
.table_blog .right .info {
    justify-content: flex-end;
    align-items: center;
    align-self: center;
    grid-column: 2;
    grid-row: span 2;
    margin-bottom: 0;
}
.table_blog .right :where(.writer, .hits) {
    display: none;
}
.table_blog .right a {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 22px;
    color: #000;
}
.table_blog .right a:has(.badge) {
    padding-top: 28px;
    margin-top: 5px;
}
.table_blog .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.table_blog .right p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
}
.table_blog .badge {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
}

@media (max-width: 767.98px) {
    .table_blog dd {
        display: flex;
        flex-direction: column;
    }
    .table_blog .right {
        padding-right: 0;
    }
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .badge {
    margin-top: 0px;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .top {
    position: relative;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) dd {
    margin-bottom: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .bottom {
    margin-top: 15px;
    padding: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
}

:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb + img.thumb {
    display: block;
    aspect-ratio: 5/3;
    object-fit: cover;
    width: 100%;
    height: auto;
    background-color: #ccc;
    border-radius: var(--radius-md);
}
:is(.table_video, .table_blog, .table_blog2, .table_pd).table_pd a span.thumb + img.thumb {
    aspect-ratio: 1;
}

:where(.table_video, .table_blog2, .table_pd, .table_blog) .title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
    padding: 0;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview {
    margin-top: 10px;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview * {
    all: unset;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    opacity: 0.7;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info span {
    padding: 0;
    font-size: 13px;
    line-height: 1;
}

/* [ board-form ] */
:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}

.board_wrapper :where(form[id*="form"]) :where(th, td, table.table) {
    border: 0;
    line-height: 1;
}
.board_wrapper :where(form[id*="form"]) table {
    width: 100%;
    display: flex;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) th {
    padding: 0;
    font-weight: 700;
    display: flex;
    background-color: transparent;
    width: auto;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) :where(th, td) {
    font-size: 16px;
}
.board_wrapper :where(form[id*="form"]) tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.board_wrapper :where(form[id*="form"]) tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: flex-start;
    gap: 15px;
    padding: 25px 10px;
    border-bottom: 1px solid #e0e0e0;
}
.board_wrapper :where(form[id*="form"]) #item_agree .checkbox {
    margin-top: 0;
}
.board_wrapper :where(form[id*="form"]) #item_agree label {
    font-size: clamp(13px, 2vw, 15px);
}
.board_wrapper :where(form[id*="form"]) #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}

:where(.form-wrap, form) #list_btn {
    display: none;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .board_wrapper :where(form[id*="form"]) th {
        /* margin-bottom: 15px; */
    }
    .board_wrapper :where(form[id*="form"]) table.table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}
/* ---------------------------- member ---------------------------- */
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group {
    height: 52px;
}
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group input {
    border: 0;
    padding-left: 0;
}

:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .form-group {
    height: 45px;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
    padding: clamp(30px, 4vw, 60px) clamp(20px, 10vw, 60px);
    border-radius: 30px;
    background: #fff;
}

:is(.find_container, .login_container) :is(.member_wrapper) {
    max-width: 500px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) {
        width: 100%;
    }
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
        width: 100%;
        margin: 0 auto;
    }
}
#find_idpw,
.mypage_container,
.join_wrapper,
.login_wrapper {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
}
@media (max-width: 767.98px) {
    #find_idpw,
    .mypage_container,
    .join_wrapper,
    .login_wrapper {
        align-items: flex-start;
        padding-block: calc(var(--navbar-height) / 1.5) calc(var(--navbar-height) * 1.5);
    }
}

#find_idpw,
.login_wrapper {
    /* height: max(clamp(600px, 70vw, 750px), calc(var(--svh100) - var(--navbar-height))); */
    /* 뷰포트가 작을 때 (최소 높이) */
    /* 중간 크기일 때 (중간 높이) */
}
@media (max-width: 767.98px) {
    #find_idpw,
    .login_wrapper {
        height: auto;
    }
}
@media (min-width: 768px) {
    #find_idpw,
    .login_wrapper {
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
@media (min-width: 768px) and (max-height: 900px) {
    #find_idpw,
    .login_wrapper {
        height: 700px;
    }
}

.privacy_container,
.agreement_container,
#site .member_wrapper {
    max-width: 1140px;
    padding-top: 120px;
    padding-bottom: 200px;
    margin: calc(var(--navbar-height) / 1.5) auto calc(var(--navbar-height) * 1.5);
    background-color: #f7f7f7;
    /* [ form ] */
    /* [ member-login ] */
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    /* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
    /* [min-lager / tablet] 브라우저 높이 700 이하 */
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container h1,
.agreement_container h1,
#site .member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border: 0;
    margin-bottom: clamp(30px, 5vw, 40px);
    padding-bottom: 0px;
    letter-spacing: -0.03em;
}
.privacy_container h1 + p,
.agreement_container h1 + p,
#site .member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 15px);
    max-height: 80px;
    /* max-height: 200px; */
    margin-bottom: 30px;
    text-align: center;
    color: #666;
}
.privacy_container .text-center,
.agreement_container .text-center,
#site .member_wrapper .text-center {
    margin-top: 40px;
}
.privacy_container .text-center .btn.btn-lg,
.agreement_container .text-center .btn.btn-lg,
#site .member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.privacy_container #login_form input,
.agreement_container #login_form input,
#site .member_wrapper #login_form input {
    padding-left: 5px;
    font-size: 15px;
}
.privacy_container #login_form .form-group,
.agreement_container #login_form .form-group,
#site .member_wrapper #login_form .form-group {
    overflow: hidden;
    border-radius: 9999px;
}
.privacy_container #login_form .form-group:focus-within label[class*="label-"]::before,
.agreement_container #login_form .form-group:focus-within label[class*="label-"]::before,
#site .member_wrapper #login_form .form-group:focus-within label[class*="label-"]::before {
    color: #000;
}
.privacy_container #login_form .form-group label,
.agreement_container #login_form .form-group label,
#site .member_wrapper #login_form .form-group label {
    position: relative;
}
.privacy_container #login_form .form-group label[class*="label-"],
.agreement_container #login_form .form-group label[class*="label-"],
#site .member_wrapper #login_form .form-group label[class*="label-"] {
    /* text-indent: -9999px; */
    /* aspect-ratio: 1; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 1 auto;
    padding-inline: 20px 10px;
}
.privacy_container #login_form .form-group label::before,
.agreement_container #login_form .form-group label::before,
#site .member_wrapper #login_form .form-group label::before {
    /* position: absolute; */
    text-indent: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 22px;
    color: #888;
    /* top: 60%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    line-height: 1;
}
.privacy_container #login_form .form-group label.label-id::before,
.agreement_container #login_form .form-group label.label-id::before,
#site .member_wrapper #login_form .form-group label.label-id::before {
    content: "\e7fd";
}
.privacy_container #login_form .form-group label.label-pw::before,
.agreement_container #login_form .form-group label.label-pw::before,
#site .member_wrapper #login_form .form-group label.label-pw::before {
    content: "\e897";
}
.privacy_container #login_form .form-group label.label-email::before,
.agreement_container #login_form .form-group label.label-email::before,
#site .member_wrapper #login_form .form-group label.label-email::before {
    content: "\e0e6";
}
@media (max-width: 767.98px) {
    .privacy_container,
    .agreement_container,
    #site .member_wrapper {
        padding: 60px 30px;
    }
    .privacy_container :where(#login_form, fieldset),
    .agreement_container :where(#login_form, fieldset),
    #site .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    .privacy_container :where(#login_form, #login_form input),
    .agreement_container :where(#login_form, #login_form input),
    #site .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    .privacy_container #login_form input,
    .agreement_container #login_form input,
    #site .member_wrapper #login_form input {
        border: 0;
        /* padding-left: 0; */
        padding-right: 35px;
    }
}
.privacy_container .join_agree h4,
.agreement_container .join_agree h4,
#site .member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}
.privacy_container .join_agree .join_agree_box,
.agreement_container .join_agree .join_agree_box,
#site .member_wrapper .join_agree .join_agree_box {
    width: auto;
    height: 250px;
    border: 1px solid var(--page-grey-color);
    padding: 15px;
    overflow-y: scroll;
    line-height: 1.5;
}
.privacy_container .join_agree .join_agree_box + .checkbox,
.agreement_container .join_agree .join_agree_box + .checkbox,
#site .member_wrapper .join_agree .join_agree_box + .checkbox {
    margin: 0;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 3vw, 15px);
}
.privacy_container .join_agree .join_agree_box + .checkbox label,
.agreement_container .join_agree .join_agree_box + .checkbox label,
#site .member_wrapper .join_agree .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
.privacy_container .join_agree .join_agree_box + .checkbox input,
.agreement_container .join_agree .join_agree_box + .checkbox input,
#site .member_wrapper .join_agree .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.privacy_container .join_agree .join_agree_box + .checkbox > a,
.agreement_container .join_agree .join_agree_box + .checkbox > a,
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
.privacy_container .join_agree .join_agree_box + .checkbox > a:hover,
.agreement_container .join_agree .join_agree_box + .checkbox > a:hover,
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
@media (max-width: 767.98px) {
    .privacy_container .join_agree .join_agree_box + .checkbox > a,
    .agreement_container .join_agree .join_agree_box + .checkbox > a,
    #site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
.privacy_container .form-group,
.agreement_container .form-group,
#site .member_wrapper .form-group {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container .form-group > *,
.agreement_container .form-group > *,
#site .member_wrapper .form-group > * {
    width: auto;
    padding: 0;
}
.privacy_container .form-group:focus-within,
.agreement_container .form-group:focus-within,
#site .member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
.privacy_container .form-group:focus-within span.material-symbols-outlined,
.agreement_container .form-group:focus-within span.material-symbols-outlined,
#site .member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
.privacy_container .form-group:nth-of-type(1),
.agreement_container .form-group:nth-of-type(1),
#site .member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px;
    margin-bottom: 7px !important;
}
.privacy_container .form-group:nth-of-type(2),
.agreement_container .form-group:nth-of-type(2),
#site .member_wrapper .form-group:nth-of-type(2) {
    margin-bottom: 0px;
}
.privacy_container .form-group > div:nth-child(2),
.agreement_container .form-group > div:nth-child(2),
#site .member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
.privacy_container .form-group label span.material-symbols-outlined,
.agreement_container .form-group label span.material-symbols-outlined,
#site .member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-400-out);
    font-size: 1.25rem;
    color: #000;
}
.privacy_container .form-group label span.material-symbols-outlinedl:nth-child(1),
.agreement_container .form-group label span.material-symbols-outlinedl:nth-child(1),
#site .member_wrapper .form-group label span.material-symbols-outlinedl:nth-child(1) {
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-3px);
}
@media (max-width: 767.98px) {
    .privacy_container .form-group > div:last-child,
    .agreement_container .form-group > div:last-child,
    #site .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
.privacy_container :is(#find_btn, #login_btn),
.agreement_container :is(#find_btn, #login_btn),
#site .member_wrapper :is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px;
    width: 100%;
    border-radius: 9999px;
}
.privacy_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
.agreement_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
#site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
    z-index: 10;
    width: 100%;
    padding-block: 100px 120px;
    background: #f7f7f7;
}
.privacy_container .mypage_container,
.agreement_container .mypage_container,
#site .member_wrapper .mypage_container {
    padding-inline: 15px;
}
@media (max-width: 767.98px) {
    .privacy_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
    .agreement_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
    #site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
        margin-top: 0;
        position: relative;
        padding-block: 30px 100px;
        height: auto;
    }
}
.privacy_container :where(#find_idpw, .login_wrapper, .mypage_container),
.agreement_container :where(#find_idpw, .login_wrapper, .mypage_container),
#site .member_wrapper :where(#find_idpw, .login_wrapper, .mypage_container) {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 992px) {
    .privacy_container :where(#find_idpw, .login_wrapper),
    .agreement_container :where(#find_idpw, .login_wrapper),
    #site .member_wrapper :where(#find_idpw, .login_wrapper) {
        padding: 0;
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
@media (height <= 700px) {
    .privacy_container :where(#find_idpw, .login_wrapper, .mypage_container),
    .agreement_container :where(#find_idpw, .login_wrapper, .mypage_container),
    #site .member_wrapper :where(#find_idpw, .login_wrapper, .mypage_container) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
.privacy_container .login_extra,
.agreement_container .login_extra,
#site .member_wrapper .login_extra {
    margin-top: 30px;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container .login_extra ul,
.agreement_container .login_extra ul,
#site .member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
.privacy_container .login_extra ul li > a,
.agreement_container .login_extra ul li > a,
#site .member_wrapper .login_extra ul li > a {
    font-size: clamp(13px, 3vw, 14px);
}
.privacy_container .login_extra ul li + .privacy_container .login_extra ul li,
.privacy_container .login_extra ul li + .agreement_container .login_extra ul li,
.privacy_container .login_extra ul li + #site .member_wrapper .login_extra ul li,
.agreement_container .login_extra ul li + .privacy_container .login_extra ul li,
.agreement_container .login_extra ul li + .agreement_container .login_extra ul li,
.agreement_container .login_extra ul li + #site .member_wrapper .login_extra ul li,
#site .member_wrapper .login_extra ul li + .privacy_container .login_extra ul li,
#site .member_wrapper .login_extra ul li + .agreement_container .login_extra ul li,
#site .member_wrapper .login_extra ul li + #site .member_wrapper .login_extra ul li {
    margin-left: 0;
}
.privacy_container .login_extra ul li + .privacy_container .login_extra ul li::before,
.privacy_container .login_extra ul li + .agreement_container .login_extra ul li::before,
.privacy_container .login_extra ul li + #site .member_wrapper .login_extra ul li::before,
.agreement_container .login_extra ul li + .privacy_container .login_extra ul li::before,
.agreement_container .login_extra ul li + .agreement_container .login_extra ul li::before,
.agreement_container .login_extra ul li + #site .member_wrapper .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + .privacy_container .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + .agreement_container .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + #site .member_wrapper .login_extra ul li::before {
    content: none;
}
@media (max-width: 767.98px) {
    .privacy_container .login_extra ul,
    .agreement_container .login_extra ul,
    #site .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .privacy_container .login_extra ul li + li::before,
    .agreement_container .login_extra ul li + li::before,
    #site .member_wrapper .login_extra ul li + li::before {
        content: none;
    }
}
@media (max-width: 767.98px) {
    .privacy_container #join_form tr th,
    .agreement_container #join_form tr th,
    #site .member_wrapper #join_form tr th {
        padding: 0px;
        margin-bottom: 0;
    }
    .privacy_container #join_form tr td,
    .agreement_container #join_form tr td,
    #site .member_wrapper #join_form tr td {
        display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    .privacy_container #join_form tr td > div:has(textarea),
    .agreement_container #join_form tr td > div:has(textarea),
    #site .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    .privacy_container #join_form tr td[style="vertical-align:middle"],
    .agreement_container #join_form tr td[style="vertical-align:middle"],
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 0px;
    }
    .privacy_container #join_form tr td[style="vertical-align:middle"] span,
    .agreement_container #join_form tr td[style="vertical-align:middle"] span,
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0;
    }
    .privacy_container #join_form tr td input:not(#mb_mailing),
    .agreement_container #join_form tr td input:not(#mb_mailing),
    #site .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100%;
    }
}
.privacy_container .table,
.agreement_container .table,
#site .member_wrapper .table {
    width: 100%;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container .table tbody,
.agreement_container .table tbody,
#site .member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
}
.privacy_container .table tbody tr,
.agreement_container .table tbody tr,
#site .member_wrapper .table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* display: grid; */
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 4fr); */
    margin-bottom: -1px;
}
.privacy_container .table tbody tr th,
.agreement_container .table tbody tr th,
#site .member_wrapper .table tbody tr th {
    font-size: 16px;
    text-align: left;
    width: auto;
}
.privacy_container .table tbody tr th span,
.agreement_container .table tbody tr th span,
#site .member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
.privacy_container .table tbody tr td,
.agreement_container .table tbody tr td,
#site .member_wrapper .table tbody tr td {
    display: flex;
    gap: 10px;
}
.privacy_container .table tbody tbody tr td,
.agreement_container .table tbody tbody tr td,
#site .member_wrapper .table tbody tbody tr td {
    padding-inline: 15px;
    display: flex;
    gap: 5px;
}
.privacy_container .table tbody tbody tr :where(th, td),
.agreement_container .table tbody tbody tr :where(th, td),
#site .member_wrapper .table tbody tbody tr :where(th, td) {
    display: block;
    font-size: clamp(13px, 3vw, 15px);
}
@media (max-width: 767.98px) {
    .privacy_container .table,
    .privacy_container .table :where(tbody, tbody tr),
    .agreement_container .table,
    .agreement_container .table :where(tbody, tbody tr),
    #site .member_wrapper .table,
    #site .member_wrapper .table :where(tbody, tbody tr) {
        display: block;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .privacy_container .table tbody tr :where(th, td),
    .agreement_container .table tbody tr :where(th, td),
    #site .member_wrapper .table tbody tr :where(th, td) {
        display: block;
        width: 100%;
        font-size: clamp(15px, 2vw, 17px);
    }
    .privacy_container .table tbody tr th,
    .agreement_container .table tbody tr th,
    #site .member_wrapper .table tbody tr th {
        padding: 10px 30px;
    }
    .privacy_container .table .files_upload_wrap,
    .agreement_container .table .files_upload_wrap,
    #site .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    .privacy_container .table .files_upload_wrap .files,
    .agreement_container .table .files_upload_wrap .files,
    #site .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .privacy_container .table .files_upload_wrap .files input,
    .agreement_container .table .files_upload_wrap .files input,
    #site .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    .privacy_container .table .files_upload_wrap .files input .file_add,
    .agreement_container .table .files_upload_wrap .files input .file_add,
    #site .member_wrapper .table .files_upload_wrap .files input .file_add {
        position: relative;
        right: auto;
    }
    .privacy_container .table .files_upload_wrap .files input .btn,
    .agreement_container .table .files_upload_wrap .files input .btn,
    #site .member_wrapper .table .files_upload_wrap .files input .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}

#site :is(#find_idpw, .login_wrapper) .member_wrapper {
    max-width: 500px;
    margin-block: 0;
}

#site :is(#find_idpw, .login_wrapper, .join_wrapper, .mypage_container, .privacy_container, .agreement_container) .member_wrapper {
    background-color: #fff;
    padding-block: 70px;
}

/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    display: flex;
    margin: 0;
    text-align: left;
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
:is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
:is(.privacy_container, .agreement_container) .privacy_body {
    font-size: 1rem;
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
}
@media (max-width: 767.98px) {
    :is(.privacy_container, .agreement_container) .member_wrapper {
        padding: 50px 30px;
    }
}

/* [ componets start ]*/
/* 페이지 준비중 */
.maintenance {
    background: #f6f7f8;
    padding: 120px 25px;
    text-align: center;
    border-radius: 16px;
}
.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 74px;
    margin-bottom: 20px;
    color: var(--page-point-color);
}
.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #777;
    letter-spacing: -0.03em;
}
.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}

/* 모바일 이미지 확장 스크롤 */
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 575.98px) {
    .scroll-box-xs {
        position: relative;
    }
    .scroll-box-xs:not(.on)::before {
        cursor: pointer;
        box-sizing: content-box;
        content: "\e145";
        font-family: var(--gms);
        font-variation-settings: var(--gms-500-out);
        background-color: var(--page-point-color);
        border: 3px solid #fff;
        border-top: 0;
        border-right: 0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        font-size: 22px;
        aspect-ratio: 1/1.02;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 100;
        line-height: 0;
    }
    .scroll-box-xs.on {
        position: relative;
        overflow-x: auto;
    }
    .scroll-box-xs.on img {
        max-width: 900px;
        width: auto;
        height: auto;
    }
}
/* tabs(상품 게시판, 일반 탭) */
[role="tabpanel"] [role="tablist"] {
    display: flex;
    margin-bottom: 60px;
}
[role="tabpanel"] [role="presentation"] {
    flex: 1;
}
[role="tabpanel"] [role="presentation"] + [role="tabpanel"] [role="presentation"] {
    margin-left: -1px;
}
[role="tabpanel"] [role="presentation"] [role="tab"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62px;
    font-size: 20px;
    border: 1px solid #ccc;
    color: #666;
}
[role="tabpanel"] [role="presentation"].active [role="tab"] {
    z-index: 10;
    background-color: var(--page-point-color);
    border-color: var(--page-point-color);
    font-weight: 600;
    color: #fff;
}
[role="tabpanel"] .tab-pane {
    opacity: 0;
    animation: tabShow 0.3s forwards;
}
[role="tabpanel"] .tab-content > :not(.active) {
    display: none;
}

@keyframes tabShow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* 캘린더 */
.calendar-wrap#bbsArea [class*="container"] {
    padding: 0;
}
.calendar-wrap#bbsArea .fc .fc-toolbar > * > * {
    float: unset;
    margin: 0;
}
.calendar-wrap#bbsArea #fullcalendar a {
    text-decoration: none !important;
}
.calendar-wrap#bbsArea #calendar_loading {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1000;
    font-size: 36px;
    text-align: center;
    padding-top: 10%;
}
.calendar-wrap#bbsArea .calendar_wrapper {
    position: relative;
    margin-block: 0;
    font-family: inherit;
}
.calendar-wrap#bbsArea .calendar_wrapper .fc-toolbar h2 {
    font-size: 1.5em;
    font-weight: 700;
}
.calendar-wrap#bbsArea .fc-widget-header thead > tr {
    background-color: #fafafa;
}
.calendar-wrap#bbsArea .fc-day-number,
.calendar-wrap#bbsArea .fc-ltr .fc-popover .fc-header .fc-title,
.calendar-wrap#bbsArea .fc-rtl .fc-popover .fc-header .fc-close {
    /* font-family: "Open Sans", "notokr", sans-serif; */
}
.calendar-wrap#bbsArea .fc-day-header span {
    font-size: 0.875em;
}
.calendar-wrap#bbsArea .fc-unthemed td.fc-today {
    background-color: #e5f5fd;
}
.calendar-wrap#bbsArea .fc th.fc-day-header {
    padding-block: 5px;
}
.calendar-wrap#bbsArea .fc-basic-view .fc-day-number {
    font-weight: bold;
    padding: 5px 10px;
}
.calendar-wrap#bbsArea .fc-sat {
    color: #2151ff;
}
.calendar-wrap#bbsArea .fc-sat .fc-day-number {
    color: #2151ff;
}
.calendar-wrap#bbsArea .fc-sun {
    color: #ff0051;
}
.calendar-wrap#bbsArea .fc-sun .fc-day-number {
    color: #ff0051;
}
.calendar-wrap#bbsArea .fc-day-grid-event {
    /* margin: 2px 2px 0; */
    padding: 8px 7px 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 25px;
    box-sizing: border-box;
}
.calendar-wrap#bbsArea .fc-ltr .fc-h-event.fc-not-start,
.calendar-wrap#bbsArea .fc-rtl .fc-h-event.fc-not-end {
    padding-left: 10px;
}
.calendar-wrap#bbsArea .fc-event {
    cursor: pointer;
    border-color: var(--page-dark-color);
    max-width: 100%;
    /* display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis; */
    overflow: hidden;
    /* white-space: nowrap; */
}
.calendar-wrap#bbsArea .fc-event .fc-time {
    font-weight: 500;
}
.calendar-wrap#bbsArea .fc-event:focus {
    text-decoration: none !important;
}
.calendar-wrap#bbsArea .fc-event.fc-chk .fc-title {
    text-decoration: line-through;
}
.calendar-wrap#bbsArea .fc-event,
.calendar-wrap#bbsArea .fc-event-dot {
    cursor: pointer;
    /* background-color: var(--page-point-color) !important */
    background-color: #fff !important;
    color: var(--page-point-color) !important;
    font-weight: 700;
    border: 1px solid var(--page-point-color) !important;
}
.calendar-wrap#bbsArea .fc-event:hover,
.calendar-wrap#bbsArea .fc-event-dot:hover {
    background-color: var(--page-point-color) !important;
    color: #fff !important;
}
.calendar-wrap#bbsArea .fc-event.gcal-holiday-event,
.calendar-wrap#bbsArea .fc-event-dot.gcal-holiday-event {
    background-color: #fa1313 !important;
    color: #fff !important;
    border: 0 !important;
    pointer-events: none;
}
.calendar-wrap#bbsArea .fc-button {
    outline: none !important;
}
.calendar-wrap#bbsArea .fc-more {
    color: var(--page-dark-color);
}
.calendar-wrap#bbsArea .fc-more:hover,
.calendar-wrap#bbsArea .fc-more:focus {
    color: #333;
}
.calendar-wrap#bbsArea .fc-popover .fc-header {
    padding: 8px 10px 5px;
    font-size: 0.875em;
    font-weight: 700;
}
.calendar-wrap#bbsArea .fc-unthemed .fc-popover .fc-header .fc-close {
    margin-top: 3px;
}
.calendar-wrap#bbsArea .fc-toolbar button {
    padding: 0 1em;
}
.calendar-wrap#bbsArea .fc-state-default {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: none;
}
.calendar-wrap#bbsArea .fc-state-default:not([disabled]):hover {
    background: #ddd;
}
.calendar-wrap#bbsArea .fc-state-default.fc-state-active {
    background: var(--page-point-color);
    border-color: var(--page-point-color);
    color: #fff;
}
.calendar-wrap#bbsArea .fc-state-default.fc-state-active:hover,
.calendar-wrap#bbsArea .fc-state-default.fc-state-active:focus {
    background: #333;
    border-color: #333;
    color: #fff;
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar > * {
    float: unset;
}
@media (max-width: 767.98px) {
    .calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar .fc-center {
    grid-row: 1;
    grid-column: 2;
    gap: 20px;
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar .fc-left {
    display: flex;
    gap: 10px;
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar .fc-right {
    grid-column: 3;
}
.calendar-wrap#bbsArea .fc-toolbar .fc-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.calendar-wrap#bbsArea .form-horizontal .control-label {
    padding-top: 12px;
}
@media (max-width: 539px) {
    .calendar-wrap#bbsArea .fc-toolbar .fc-left {
        width: 100%;
        text-align: center;
    }
    .calendar-wrap#bbsArea .fc-toolbar .fc-left > * {
        float: none;
        display: inline-block;
        vertical-align: top;
    }
    .calendar-wrap#bbsArea .fc-toolbar .fc-center {
        float: left;
        display: block;
        width: 100%;
        margin: 10px 0 0;
    }
    .calendar-wrap#bbsArea .fc-toolbar .fc-center > * {
        float: none;
        display: inline-block;
        vertical-align: top;
    }
}
.calendar-wrap#bbsArea .writedata_start_time,
.calendar-wrap#bbsArea .writedata_end_time {
    display: inline-block;
}
.calendar-wrap#bbsArea .writedata_start_time.hide,
.calendar-wrap#bbsArea .writedata_end_time.hide {
    display: none;
}
.calendar-wrap#bbsArea #calendarModal_view .modal-body {
    padding: 0 15px;
}
@media (min-width: 768px) {
    .calendar-wrap#bbsArea #calendarModal_view .modal-body > .row > div[class^="col-"] {
        min-height: 400px;
    }
}
@media (max-width: 767.98px) {
    .calendar-wrap#bbsArea #calendarModal_view .modal-body {
        font-size: 13px;
    }
}
.calendar-wrap#bbsArea #calendarModal_view .view_left {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
    padding: 20px 40px;
    font-family: "Open Sans", sans-serif;
    box-shadow: inset 0px 100px 100px -100px rgba(0, 0, 0, 0.75);
}
.calendar-wrap#bbsArea #calendarModal_view span[id^="viewdata_"] {
    display: block;
    margin: 20px 0;
}
.calendar-wrap#bbsArea #calendarModal_view span[id^="viewdata_"] .year {
    display: block;
    font-weight: 400;
    font-size: 1.25em;
}
.calendar-wrap#bbsArea #calendarModal_view span[id^="viewdata_"] .date {
    font-weight: 700;
    font-size: 2em;
    margin-right: 0.5em;
}
.calendar-wrap#bbsArea #calendarModal_view span[id^="viewdata_"] .time {
    opacity: 0.75;
    font-size: 1.25em;
    font-weight: 700;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_end::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    font-size: 2em;
    margin: 0 0 25px;
    opacity: 0.5;
    animation: fadeArrow 2s infinite;
}
@media (max-width: 767.98px) {
    .calendar-wrap#bbsArea #calendarModal_view #viewdata_end::before {
        content: "\f054";
        float: left;
        margin-top: 12px;
        margin-left: -25px;
        margin-right: 25px;
    }
}
.calendar-wrap#bbsArea #calendarModal_view .view_right {
    padding: 20px 40px;
    font-family: "Open Sans", "notokr", sans-serif;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title {
    font-size: 1.875em;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    user-select: none;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title .viewdata_status {
    margin-right: 0.2em;
    display: none;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title .viewdata_status::before {
    content: "\f0c8";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    cursor: pointer;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title .viewdata_status.chk::before {
    content: "\f14a";
    opacity: 0.5;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title.chk .viewdata_status {
    display: inline-block;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title.chk .text.chk {
    text-decoration: line-through;
    opacity: 0.5;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_location {
    opacity: 0.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description {
    margin-top: 0;
    position: relative;
    height: 180px;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description .inner {
    line-height: 1.6;
    color: #555;
    height: 180px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 20px 20px 0;
    word-break: keep-all;
    position: absolute;
    z-index: 100;
    width: 100%;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    left: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 101;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 20px;
    left: 0;
    height: 20px;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 101;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_writer {
    opacity: 0.5;
    text-align: right;
    position: absolute;
    right: 40px;
    bottom: 12px;
}
@media (max-width: 767.98px) {
    .calendar-wrap#bbsArea #calendarModal_view #viewdata_writer {
        position: relative;
        bottom: 0;
        right: 0;
    }
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_option {
    text-align: right;
    position: absolute;
    right: 28px;
    bottom: 20px;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_option .btn.btn-link {
    color: #fff;
    text-decoration: none !important;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_option .btn.btn-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 767.98px) {
    .calendar-wrap#bbsArea #calendarModal_view #viewdata_option {
        position: relative;
        bottom: 0;
        right: -12px;
    }
}

@keyframes fadeArrow {
    0% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.25;
    }
}
#calendarModal_write {
    display: flex;
}
#calendarModal_write .hide {
    display: none;
}
#calendarModal_write .form-horizontal {
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#calendarModal_write .col-sm-2 {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 9px;
}
#calendarModal_write .col-sm-9 {
    display: grid;
    /* grid-template-columns: minmax(0,150px) minmax(0,150px) minmax(0,150px) minmax(0,150px); */
    align-items: center;
    gap: 10px;
}
[for="writedata_start"] + #calendarModal_write .col-sm-9 {
    grid-template-columns: minmax(0, 150px) minmax(0, min-content) minmax(0, 150px) minmax(0, 150px);
}
#calendarModal_write .col-sm-9:has(.hide) {
    /* .writedata_end_time + label{
              grid-column: 1;
              grid-row: 2;

  } */
}
#calendarModal_write .col-sm-9 label {
    font-size: 16px;
    margin-right: 30px;
}
#calendarModal_write .col-sm-9 .hasDatepicker {
    max-width: 150px;
    width: 100% !important;
}
#calendarModal_write .col-sm-9 .writedata_end_time,
#calendarModal_write .col-sm-9 .writedata_start_time {
    display: flex;
    gap: 5px;
}
#calendarModal_write .col-sm-9 .writedata_end_time.hide,
#calendarModal_write .col-sm-9 .writedata_start_time.hide {
    display: none;
}
#calendarModal_write .col-sm-9 .writedata_end_time .form-control,
#calendarModal_write .col-sm-9 .writedata_start_time .form-control {
    flex: 1;
}
#calendarModal_write .col-sm-9 .writedata_start_time {
    grid-column: 1;
    grid-row: 2;
}
#calendarModal_write .col-sm-9 .writedata_end_time {
    grid-column: 3;
    grid-row: 2;
}
#calendarModal_write #writedata_description {
    width: 100% !important;
    height: 150px !important;
    resize: none;
}
#calendarModal_write .writedata_end_time + label {
    display: flex;
    gap: 5px;
    cursor: pointer;
}
#calendarModal_write #write_use_time + span {
    white-space: nowrap;
}

#calendarModal_view {
    overflow-y: auto;
}
@media (min-width: 768px) {
    #calendarModal_view .modal-dialog {
        max-width: 700px;
        width: 100%;
        margin: auto auto;
    }
}
#calendarModal_view .modal-dialog .modal-body {
    padding: 40px;
}
#calendarModal_view .visible-xs {
    display: none !important;
}
#calendarModal_view .row {
    display: flex;
    flex-direction: column-reverse;
    position: static;
}
#calendarModal_view .view_left {
    background-color: transparent !important;
    display: flex;
    justify-content: flex-end;
}
#calendarModal_view .view_left * {
    color: #000;
}
#calendarModal_view .view_left [data-dismiss] + .row {
    position: absolute;
    left: 40px;
    top: 40px;
    display: flex;
    flex-direction: row;
}
#calendarModal_view .view_left [data-dismiss] + .row > div {
    display: flex;
}
#calendarModal_view .view_left [data-dismiss] + .row > div + div #viewdata_end::before {
    content: " ~ ";
    display: block;
    margin-inline: 10px 0;
}
#calendarModal_view .view_left .btn {
    flex: 1;
    color: #fff !important;
}
#calendarModal_view .view_left .btn i {
    display: none;
}
#calendarModal_view .view_right {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
}
#calendarModal_view .view_right .close {
    all: unset;
    aspect-ratio: 1;
    cursor: pointer;
    width: 40px;
    text-align: center;
    position: absolute;
    right: 25px;
    top: 30px;
    font-size: 38px !important;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000 !important;
}
#calendarModal_view .view_right .close::after {
    font-size: 24px;
}
#calendarModal_view .view_right .close:hover {
    opacity: 1 !important;
}
#calendarModal_view .view_right #viewdata_title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}
#calendarModal_view .view_right #viewdata_title span.text {
    word-break: break-all;
}
#calendarModal_view .view_right #viewdata_location {
    font-size: 15px;
    padding: 6px 15px 6px 10px;
    color: var(--page-point-color);
    border: 1px solid var(--page-point-color);
    /* background-color: var(--page-point-color); */
    border-radius: 9999px;
    margin-block: -10px 30px;
    font-weight: 700;
    /* color: #fff; */
    width: fit-content;
}
#calendarModal_view .view_right #viewdata_location i {
    font-size: 0.8em;
    transform: translateY(-1px);
}
#calendarModal_view .view_right #viewdata_description {
    font-size: 16px;
    line-height: 1.6;
    padding-block: 30px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
#calendarModal_view .view_right #viewdata_writer {
    opacity: 0.7;
    display: flex;
    justify-content: flex-end;
    font-size: 13px;
}
#calendarModal_view .view_right #viewdata_writer i {
    display: none;
}
#calendarModal_view #viewdata_end,
#calendarModal_view #viewdata_start {
    font-size: 24px;
    display: flex;
    gap: 10px;
    left: 40px;
    top: 40px;
    font-size: 18px;
    font-weight: 600;
}
#calendarModal_view #viewdata_end span,
#calendarModal_view #viewdata_start span {
    color: #444 !important;
}
#calendarModal_view #viewdata_option {
    position: static;
    display: flex;
    gap: 5px;
    margin-top: 30px;
}

/* -------------------------------------------------------- */
#site .main_login_other {
    margin-top: 15px;
}

#site .main_login_other .row {
    display: flex;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 575.98px) {
    #site .main_login_other .row {
        /*sm*/
        flex-direction: column;
    }
}
#site .main_login_other .row > div {
    flex: 1;
}

#site .main_login_other .row .btn {
    min-width: 100%;
    width: 100%;
    gap: 10px;
    border-radius: 9999px;
    font-weight: 600;
}

#site .main_login_other .row .btn::before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 1;
}

#site .main_login_other #naver_login_btn {
    background-color: #03c75a;
    color: #fff;
}

#site .main_login_other #naver_login_btn::before {
    background: url("/public/img/icons/SVG/sns/naver_login_symbol_white.svg") no-repeat center/contain;
    width: 17px;
}

#site .main_login_other #kakao_login_btn {
    background-color: #fee500;
    color: #181600;
}

#site .main_login_other #kakao_login_btn::before {
    background: url("/public/img/icons/SVG/sns/kakao_login_symbol.svg") no-repeat center/contain;
}
