@charset "utf-8";
/* 10page builder demo site core css */
/* version 24.11 */
/* - css 통합 (bs3, global, etc) */
/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #014d9c;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #003e7e;
    --page-point-color-hover: #003e7e;
    --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;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 95px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: 62px;
    /* 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;
    }
}
/* fouc */
#site > *:not(#force__wrapper) {
    visibility: hidden;
}
#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}
/* ---------------------------- Reset ---------------------------- */
* {
    box-sizing: border-box;
    word-break: keep-all;
    float: unset;
    -webkit-tap-highlight-color: transparent;
}
:where(*::before, *::after) {
    content: none;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 14px;
}
#site {
    margin: 0;
    padding: 0;
    font-family: var(--page-font-family);
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
}
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
select::-ms-expand {
    display: none;
}
form,
fieldset {
    all: unset;
    box-sizing: border-box;
    display: block;
}
/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
.cke_screen_reader_only {
    bottom: 0;
}
.cke_resizer_ltr {
    float: right;
}
.caret {
    display: none;
}
#site .hide {
    display: none !important;
}
/* material-symbols */
.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;
}
/* ---------------------------- Paragraph ---------------------------- */
:is(ol, ul, li, dl) {
    all: unset;
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
    all: unset;
    box-sizing: border-box;
    display: block;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.5;
}
:is(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    color: #111;
}
:is(p, li, dd, small) {
    color: #333;
    letter-spacing: -0.034em;
}
:is(small, .small) {
    font-size: 0.7em;
}
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-md);
    outline: none;
    white-space: nowrap;
    font-weight: 500;
}
.btn:is(.btn-primary) {
    background-color: var(--page-point-color);
    border: 1px solid var(--page-point-color);
    color: #fff;
}
.btn:is(.btn-primary):is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
}
.btn.btn-danger {
    background-color: var(--page-danger-color);
    border: 1px solid var(--page-danger-color);
}
.btn.btn-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color-hover);
}
.btn.btn-outline-primary {
    background: none;
    border: 1px solid var(--page-point-color);
    color: var(--page-point-color);
}
.btn.btn-outline-primary:is(:hover, :focus) {
    background-color: var(--page-point-color);
    color: #fff;
}
.btn.btn-outline-danger {
    background: none;
    border: 1px solid var(--page-danger-color);
    color: var(--page-danger-color);
}
.btn.btn-outline-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color);
    color: #fff;
}
.btn:is(.btn-secondary, .btn-default) {
    background-color: var(--page-grey-color);
    border: 1px solid var(--page-grey-color);
    color: #000;
}
.btn:is(.btn-secondary, .btn-default):is(:hover, :focus) {
    background-color: var(--page-grey-color-hover);
}
.btn.btn-dark {
    background-color: var(--page-dark-color);
    border: 1px solid var(--page-dark-color);
    color: #fff;
}
.btn.btn-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color-hover);
}
.btn.btn-outline-dark {
    border: 1px solid var(--page-dark-color);
    color: var(--page-dark-color);
}
.btn.btn-outline-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color);
    color: #fff;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
}
.btn.btn-danger {
    color: #fff;
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
@media (hover: hover) {
    .btn.btn-primary:where(:hover, :focus) {
        background-color: var(--page-point-color-hover);
        border-color: var(--page-point-color-hover);
    }
    .btn.btn-secondary:where(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
}
/* 버튼 비활성화 */
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;
}
img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* ---------------------------- Layout ---------------------------- */
:where(.container, .row) {
    position: relative;
}
/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
}
[class*="container"]::before,
[class*="container"]::after {
    content: none;
}
/* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
@media (width >= 1260px) {
    [class*="container"] {
        max-width: 1230px;
    }
}
.row {
    margin: 0;
}
:where([class*="row-"], [class*="-row"]) {
    display: flex;
    gap: 30px;
}
.row::before,
.row::after {
    content: none;
}
.clearfix {
    width: 100%;
}
.col {
    flex: 1;
    padding: 0;
}
.col.auto {
    flex: 0 1 auto;
}
.col[rowspan="2"] {
    grid-row: span 2;
}
.col[rowspan="3"] {
    grid-row: span 3;
}
.col[colspan="2"] {
    grid-column: span 2;
}
.col[colspan="3"] {
    grid-column: span 3;
}
:is([class*="hidden"]) {
    display: none;
}
:is([class*="visible"]) {
    display: none;
}
/* 소형 */
@media (min-width: 320px) {
    .hidden-xs {
        display: flex;
    }
}
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hidden-sm {
        display: flex;
    }
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hidden-md {
        display: flex;
    }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hidden-lg {
        display: flex;
    }
}
/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hidden-xl {
        display: flex;
    }
}
/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hidden-xxl {
        display: flex;
    }
}
/* 소형 */
@media (max-width: 319.98px) {
    .visible-xs {
        display: flex;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .visible-sm {
        display: flex;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .visible-md {
        display: flex;
    }
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (max-width: 991.98px) {
    .visible-lg {
        display: flex;
    }
}
/* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
@media (max-width: 1199.98px) {
    .visible-xl {
        display: flex;
    }
}
/* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
@media (max-width: 1399.98px) {
    .visible-xxl {
        display: flex;
    }
}
.center-block {
    display: block;
    margin-inline: auto;
}
/* ---------------------------- Modal, Jquery Ui ---------------------------- */
.ui-widget {
    font-family: inherit;
    z-index: 10000;
}
.ui-widget :is(input, select, textarea, button) {
    font-family: inherit;
}
.ui-datepicker select:is(.ui-datepicker-month, .ui-datepicker-year) {
    -webkit-appearance: none;
    background: none;
    border: 0;
    width: auto;
}
#site.modal-open {
    overflow: unset;
}
#site.modal-open,
#site.modal-open .navbar {
    padding-right: 0;
}
.modal-backdrop {
    display: none;
}
.modal {
    z-index: 10000;
    display: flex;
    width: 100%;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal-open .modal {
    z-index: 10000;
    display: flex !important;
    width: 100%;
    justify-content: center;
}
.modal.in {
    z-index: 20000;
    scale: 1;
}
.modal:not(.in) {
    display: none;
    opacity: 0;
    scale: 0;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal .modal-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 18px);
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal .modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.6;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal.fade {
    opacity: 0;
}
.modal.fade.in {
    animation: modalFade 0.25s 0s forwards;
}
.modal.fade.in .modal-dialog {
    animation: modalPop 0.35s 0.05s forwards;
}
@keyframes modalFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes modalPop {
    0% {
        scale: 0.9;
    }
    50% {
        scale: 1.015;
    }
    100% {
        scale: 1;
    }
}
.modal .modal-title {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal.fade .modal-dialog {
    position: relative;
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    scale: 0.9;
}
@media (min-width: 768px) {
    .modal-sm {
        max-width: 300px;
    }
}
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}
.modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
    border-radius: 0;
    border: 0;
}
@media (min-width: 768px) {
    .modal .modal-content {
        -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
    }
}
.modal .modal-footer {
    display: flex;
    gap: 5px;
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
    flex: 1;
}
#delete_modal.in + .modal {
    display: none;
}
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}
/* ---------------------------- iframe ---------------------------- */
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"]
{
    width: auto;
    height: auto;
    aspect-ratio: 1.6666666667;
    margin-bottom: -6px;
    background-color: #e5e3df;
}
/* 외부동영상 */
iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: auto;
    height: auto;
    aspect-ratio: 1.7777777778;
    background-color: #000;
    border-radius: var(--radius-md);
}
#bbsArea .board_video_view iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: 100%;
}
/* [ IFRAME END ] */
/* ---------------------------- common ---------------------------- */
/* list-style */
:where(ol, ul)[class*="li-"] {
    display: flex;
    flex-direction: column;
}
:where(img) + :where(ol, ul)[class*="li-"] {
    margin-top: 20px;
}
:where(ol, ul)[class*="li-"] > li {
    position: relative;
    padding-left: 0.8em;
}
.li-check > li {
    position: relative;
    padding-left: 1.3em;
    font-size: 15px;
}
:where(ol, ul)[class*="li-"] small {
    font-size: 0.85em;
}
/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 3px;
    display: block;
    width: 4px;
    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::before {
    content: "\e5ca";
    font-family: var(--gms);
    position: absolute;
    top: 0.1em;
    font-size: 20px;
    line-height: 1;
    left: -0.2em;
    display: block;
    color: var(--page-point-color);
    font-variation-settings: var(--gms-600-out);
}
/* ---------------------------- navbar ---------------------------- */
/* [ navbar-top ] */
.nav-top {
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    .nav-top {
        align-self: center;
        padding: 0;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .nav-top {
        position: absolute;
        top: 9px;
        right: 50px;
        z-index: 100;
    }
}
.li-login {
    display: flex;
    align-items: center;
}
.li-login li {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
}
.li-login li + li {
    padding-left: 7px;
    margin-left: 7px;
    border-left: 1px solid #ccc;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .li-login {
        display: none;
    }
}
.li-lang {
    display: flex;
    align-items: center;
    margin-right: -5px;
    border-radius: 3px;
}
.li-lang .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0px;
}
.li-lang .dropdown-toggle::after {
    all: unset;
    box-sizing: border-box;
    content: "\e5cf";
    font-family: var(--gms);
    line-height: 1;
    margin-left: 3px;
}
.li-lang .dropdown-toggle p {
    display: flex;
    align-items: center;
    gap: 7px;
}
.li-lang.open .dropdown-toggle::after {
    content: "\e5ce";
}
.li-lang.open .dropdown-menu {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    min-width: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 17px;
    margin-top: 10px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .li-lang.open .dropdown-menu {
        margin-top: 0;
    }
}
.li-lang .lang-change-btn {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    padding: 10px 0;
}
.li-lang .lang-change-btn.active + .lang-change-btn {
    border-top: 0;
}
.li-lang .lang-change-btn + .lang-change-btn {
    border-top: 1px solid #ccc;
}
.li-lang button[disabled] {
    display: none;
}
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 3vw, 65px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(16px, 2vw, 18px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(14px, 2vw, 15px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(100px, 15vw, 130px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
}
.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
.navbar a {
    cursor: pointer;
}
.navbar .navbar-header {
    margin-inline: 0;
}
.navbar :where(*):before,
.navbar :where(*):after {
    content: none;
}
.navbar {
    all: unset;
    box-sizing: border-box;
    z-index: 5000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #fff;
    border-bottom: 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:is(:hover, :focus) {
    display: block;
    /* width: var(--navbar-logo-width); */
    margin-left: 0;
    width: clamp(140px, 10vw, 220px);
}
.navbar .navbar-brand img[alt="SYMBOL"] {
    width: 55px;
}
.navbar .navbar-brand img[alt="세움이엔티"] {
    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;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* 메인메뉴 */
.navbar .navbar-right > li > a {
    z-index: 100;
    font-size: var(--navbar-menu-font-size);
    color: #000;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: -0.64px;
}
.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 :where(.dropdown-menu) a {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: #fff;
    width: 100%;
    transition: all 0.2s ease;
}
.navbar #gnbauth i {
    display: none;
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    /* wide */
    .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 :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
        /* transform: translateY(1px); */
        text-decoration: none;
    }
    .navbar :is(.dropdown-menu) a:hover {
        background-color: #1e7dce;
        border-color: #1e7dce;
        color: #fff;
        text-decoration: underline;
    }
    .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
        margin-right: calc(var(--navbar-menu-padding-inline) * -1);
        /* 데스크탑 서브 드롭다운메뉴 */
    }
    .navbar .navbar-right .dropdown-menu {
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0px;
        padding: 0;
        min-width: 190px;
        gap: 0;
        opacity: 0;
        transform-origin: center top;
        text-align: center;
        background: #0a355f;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    @keyframes menuOpen {
        0% {
            opacity: 0;
            scale: 1 0.5;
        }
        100% {
            opacity: 1;
            scale: 1 1;
        }
    }
    .navbar .navbar-right .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 20px 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        white-space: nowrap;
        text-align: center;
        justify-content: center;
        /* [  navbar-custom-scorll-change  ] */
    }
    .navbar:is(.navTop) {
        /* --navbar-height: 80px; */
        --navbar-scroll-filter: invert(1);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 500;
        --navbar-scroll-background-color: transparent;
        /* --navbar-logo-width: 170px; */
        background-color: var(--navbar-scroll-background-color);
        border-color: rgba(255, 255, 255, 0.25);
    }
    .navbar:not(.navScroll) {
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:is(:hover, .navScroll) {
        /* --navbar-height: 100px; */
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #111;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 600;
        --navbar-scroll-background-color: #fff;
        /* --navbar-logo-width: 150px; */
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    }
    .navbar:where(.navTop, .navScroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:where(.navTop, .navScroll) .navbar-brand img[alt="세움이엔티"] {
        transition: width 0.25s;
        filter: var(--navbar-scroll-filter);
    }
    .navbar:where(.navTop, .navScroll) .navbar-brand span {
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.navTop, .navScroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.navTop, .navScroll) ul.navbar-right > li > a:where(:hover, :focus),
    .navbar:where(.navTop, .navScroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover) !important;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (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;
    }
    @keyframes menuHeight {
        from {
            height: 100%;
        }
        to {
            height: 0;
        }
    }
    .navbar {
        overflow: hidden;
        animation: menuHidden 0s 0.401s forwards;
    }
    @keyframes menuHidden {
        from {
            overflow: hidden;
        }
        to {
            overflow: visible;
        }
    }
    .navbar .navbar-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .navbar-brand {
        order: 1;
    }
    .navbar .navbar-toggle {
        order: 2;
    }
    .navbar .navbar-toggle {
        all: unset;
        box-sizing: border-box;
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0;
        cursor: pointer;
    }
    .navbar .navbar-toggle::before {
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 2em;
        font-variation-settings: var(--gms-500-out);
    }
    .navbar .navbar-toggle > * {
        display: none;
    }
    .navbar .navbar-toggle:where(:hover, :focus) {
        background: none;
    }
    .navbar .navbar-toggle.open::before {
        content: "\e5cd";
    }
    .navbar .navbar-collapse {
        transition: 0.4s;
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid #eee;
        max-height: 0;
        height: auto !important;
    }
    @keyframes menuHeight {
        from {
            height: 100%;
        }
        to {
            height: 0;
        }
    }
    .navbar .navbar-collapse .navbar-right {
        display: flex;
        flex-direction: column;
        overflow: hidden auto;
        position: relative;
        width: 100%;
        padding-block: 0px;
    }
    .navbar .navbar-collapse.open {
        transition: all 0.5s;
        max-height: var(--svh100);
    }
    .navbar .navbar-right > li {
        transition: inherit;
    }
    .navbar .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 .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-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);
    }
    .navbar .navbar-right .dropdown-menu {
        /* transition: 0.75s; */
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #eee;
        padding: 0;
        max-height: 0;
    }
    .navbar .navbar-right .dropdown-menu a {
        /* width: 100%; */
        display: block;
        color: #555;
        padding: 10px 15px;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        opacity: 1;
        max-height: var(--svh100);
    }
}
/* ---------------------------- footer ---------------------------- */
footer {
    margin-top: 0px;
    background-color: #ffffff;
    /* left logo */
    color: #999;
    border-top: 1px solid #eee;
}
footer img {
    opacity: 0.95;
    /* margin-right: 30px; */
    /* text */
    filter: grayscale(1) invert(1);
}
footer li {
    font-size: clamp(13px, 2vw, 14px);
    color: #888;
}
footer li.corp {
    margin-bottom: 18px;
}
footer li.corp strong {
    color: #666;
    font-weight: 600;
    font-size: 16px;
}
footer li.copyright {
    margin-top: 9px;
    color: #c5c5c5;
    font-size: 13px;
}
footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 0 10px;
}
footer .footer-logo {
    flex-shrink: 0;
    width: 120px;
}
footer .footer-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 65px 0 60px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    footer .footer-wrap {
        flex-direction: column;
        gap: 20px;
    }
    footer .footer-info{
        justify-content: center;
        text-align: center;
    }
}
/* 로그인 버튼 */
#loginBtn {
    margin-left: auto;
    align-self: flex-end;
}
#loginBtn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 13px;
    background: transparent;
    color: #aaa;
    line-height: 1;
    border-radius: 0;
    border: none;
    border-radius: 0;
    font-size: clamp(11px, 2vw, 12px);
    background: rgba(0, 0, 0, 0.02);
}
html.logined #loginBtn a[href="/member/login"] {
    display: none;
}
html:not(.logined) #loginBtn a[href="/member/logout"] {
    display: none;
}
#loginBtn a:hover {
    background: #eee;
    border-color: #eee;
}
#loginBtn a span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-500-out);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #loginBtn a {
        margin-left: inherit;
    }
    #loginBtn {
        margin-inline: auto;
    }
}
/* 스크롤버튼 */
#scrollTop {
    --width: 50px;
    --bottom: 50px;
    all: unset;
    box-sizing: border-box;
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    right: 40px;
    bottom: var(--bottom);
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--width);
    padding: 0;
    background: var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    text-align: center;
    color: #fff;
}
#scrollTop::before {
    content: "\e5d8";
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 1.75rem;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ---------------------------- subpage ---------------------------- */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top0.jpg);
    position: relative;
    height: clamp(220px, 35vw, 460px);
    padding-top: var(--navbar-height);
}
@media (min-width: 768px) {
    .subpage-header:has(+ .snb:not([style="display: none;"])) {
        padding-bottom: var(--snb-height);
    }
}
.subpage-header .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--background-image) no-repeat center / cover;
    filter: brightness(0.8) saturate(1.1);
    background-color: #fff;
}
.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.subpage-title h2 {
    line-height: 1;
    margin-top: 5px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -0.01em;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.breadcrumb ul {
    background: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-block: 25px 40px;
}
.breadcrumb li {
    position: relative;
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
}
.breadcrumb li.active {
    font-weight: 700;
}
.breadcrumb li.arrow:before {
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 200;
    display: block;
    font-size: 1.7rem;
    line-height: 0;
}
.breadcrumb a.home {
    line-height: 1;
}
.breadcrumb a.home::before {
    content: "\e88a";
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-fill);
    font-weight: 200;
    display: block;
    font-size: 16px;
    line-height: 0;
}
/* [ subpage-navbar ] */
.snb {
    position: relative;
    z-index: 10;
    /* border-bottom: 1px solid #e0e0e0; */
    background-color: rgba(0, 47, 107, 0.55);
    backdrop-filter: blur(30px);
    margin-top: calc(var(--snb-height) * -1);
}
@media (max-width: 767.98px) {
    .snb {
        display: none;
    }
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
}
.snb li {
    flex: 0 1 25%;
}
.snb a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    height: var(--snb-height);
    color: white;
    font-weight: 400;
    letter-spacing: 0;
    border-radius: 10px 10px 0 0;
}
.snb li.active a {
    background: #fff;
    font-weight: 600;
    color: var(--page-point-color);
}
.snb li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    /* top: 0; */
    bottom: -1px;
    display: block;
    width: 100%;
    height: 2px;
    /* background: #1e7dce; */
}
/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
[class*="title-h"] {
    --h-line-height: 1.4;
    --h-letter-spacing: -0.02em;
    --p-font-weight: 400;
    --p-color: #111;
    --p-line-height: 1.6;
}
[class*="title-h"] a {
    color: #337ab7;
}
[class*="title-h"] a:hover {
    color: #1b5c94;
}
[class*="title-h"]:only-child {
    margin-bottom: 0;
}
[class*="title-h"] p.big {
    font-size: 22px;
}
[class*="title-h"] span.color {
    font-weight: 600;
    color: #000;
}
/* title이 아닌 element + title */
*:not([class*="title-h"]) + [class*="title-h"] {
    /* margin-top: var(--title-between); */
}
/* 제목 */
[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.01em;
    margin-top: 5px;
}
/* 제목+본문 간격 */
/* .subpage [class*="title-h"] > :is(h2, h3, h4, h5, h6) + * {
 margin-top: var(--text-between);
 } */
/* 본문+본문 간격 */
[class*="title-h"] > *:not(:is(h2, h3, h4, h5, h6)) + * {
    margin-top: calc(var(--text-between) + 10px);
}
/* h3 start */
.title-h3 {
    position: relative;
    --h-font-size: clamp(26px, 5vw, 44px);
    --h-font-weight: 700;
    --h-color: #151515;
    --p-font-size: clamp(16px, 2vw, 18px);
    --text-between: 10px;
    margin-bottom: 80px;
    text-align: center;
}
@media (max-width: 767.98px) {
    .title-h3 {
        margin-bottom: 40px;
    }
}
.title-h3 + .title-h4 {
    margin-top: 0;
}
.title-h3 + .img-box {
    max-height: 300px;
    background-color: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .title-h3 + .img-box {
        height: auto;
        aspect-ratio: 1.5;
    }
}
.title-h3 + .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* h3 end */
/* h4 start */
.title-h4 {
    --h-font-size: clamp(22px, 2vw, 28px);
    --h-font-weight: 700;
    --h-color: #111;
    --p-font-size: clamp(14px, 2vw, 18px);
    --text-between: 15px;
    margin-block: 100px 30px;
    --h-letter-spacing: -0.023em;
    position: relative;
    display: grid;
}
@media (max-width: 767.98px) {
    .title-h4 {
        margin-block: 70px 20px;
    }
}
/* .title-h4 h4::before {
 content: '';
 width: 10px;
 aspect-ratio: 1;
 position: absolute;
 left: 0;
 top: 10px;
 border: 4px solid #1e7dce;
 }
 .title-h4 h4 {
 padding-left: 30px;
 } */
.title-h4:has(p) {
    margin-bottom: 40px;
}
.title-h4 + .title-h4,
.benefit-wrap + .title-h4:not(.noborder) {
    margin-top: 70px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}
@media (max-width: 767.98px) {
    .title-h4 + .title-h4,
    .benefit-wrap + .title-h4:not(.noborder) {
        margin-top: 30px;
        padding-top: 30px;
    }
}
.title-h4 + .title-h5 {
    margin-top: 0px;
}
.title-h4 :is(ul, p) {
    margin-top: 16px;
    gap: 5px;
    letter-spacing: -0.034em;
    color: #333;
}
.title-h4 p + p {
    margin-top: 15px;
}
.title-h4:first-child {
    margin-top: 0;
}
/* h4 end */
/* h5 start */
.subpage .title-h5 {
    --h-font-size: 20px;
    --h-font-weight: 600;
    --h-color: var(--page-point-color);
    --p-font-size: clamp(14px, 2vw, 15px);
    --text-between: 0px;
    margin-top: 50px;
    margin-bottom: 15px;
}
@media (max-width: 767.98px) {
    .subpage .title-h5 {
        margin-top: 30px;
    }
}
.subpage .title-h5 + .title-h5 {
    margin-top: 40px;
}
.subpage .title-h5:has(p, ul) {
    margin-bottom: 15px;
}
.subpage .title-h5:has(p:nth-child(2)) {
    margin-bottom: 30px;
}
.subpage .title-h5 p + p {
    margin-top: 2px;
}
/* h5 end */
/* [ subpage-content ] */
.subpage section {
    padding: 115px 0 150px;
    min-height: 300px;
}
@media (max-width: 767.98px) {
    .subpage section {
        padding-block: 70px 90px;
    }
}
.subpage section:not(:has(.title-h3)) {
    padding-top: 130px;
}
@media (max-width: 767.98px) {
    .subpage section:not(:has(.title-h3)) {
        padding-top: 80px;
    }
}
.subpage section:nth-child(even) {
    padding-top: 0;
    /* background-color: #f7f7f7; */
}
.greet-wrap {
    display: flex;
    gap: 100px;
}
@media (max-width: 767.98px) {
    .greet-wrap {
        flex-direction: column-reverse;
        gap: 40px;
    }
}
.greet-wrap .info h5 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: -0.02em;
    line-height: 1.4;
}
.greet-wrap .info h5 b {
    color: var(--page-point-color);
}
.greet-wrap .info p {
    margin-bottom: clamp(15px, 5vw, 25px);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.6;
}
.greet-wrap .info .name {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1;
    color: #111;
    font-weight: 500;
    margin-top: 60px;
}
@media (max-width: 767.98px) {
    .greet-wrap .info .name {
        font-size: 16px;
        margin-top: 30px;
    }
}
.greet-wrap .info .name b {
    display: inline-block;
    margin-left: 10px;
    border-left: 1px solid #888;
    padding-left: 13px;
    font-weight: 700;
}
.greet-wrap .img-box {
    background-color: #f7f7f7;
    flex: 0 1 35%;
    overflow: hidden;
    border-radius: 10px;
}
.greet-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 767.98px) {
    .greet-wrap .img-box {
        flex: 0 1 auto;
        /* height: 300px; */
        aspect-ratio: 1;
    }
}
.history-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 767.98px) {
    .history-wrap {
        padding-inline: 20px;
        width: fit-content;
        margin-inline: auto;
    }
}
.history-wrap .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: var(--page-point-color);
    color: #fff;
    padding: 20px;
    width: 100%;
    max-width: 170px;
    aspect-ratio: 1;
    border-radius: 200px;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .history-wrap .top {
        max-width: 130px;
        display: none;
    }
}
.history-wrap .top img {
    /* border: 2px solid var(--page-point-color); */
    margin-block: -25px -15px;
}
.history-wrap .top h4 {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.history-wrap .top p {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.history-wrap .col {
    /* display: flex; */
    display: grid;
}
@media (min-width: 768px) {
    .history-wrap .col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .history-wrap .col {
        width: 100%;
    }
}
.history-wrap .col .inner {
    position: relative;
    /* width: 50%; */
    padding-block: 60px 20px;
    padding-left: 55px;
    border-left: 1px solid #d9d9d9;
    width: 100%;
}
@media (max-width: 767.98px) {
    .history-wrap .col .inner {
        padding-left: 40px;
        padding-block: 30px;
    }
}
.history-wrap .col h5 {
    /* position: static; */
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: clamp(34px, 3vw, 42px);
    font-weight: 700;
    color: #097cd3;
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.history-wrap .col h5 small {
    font-size: 53%;
    font-weight: 700;
    color: inherit;
    line-height: 1;
    display: inline-block;
    opacity: 0.6;
    letter-spacing: 2px;
    padding-bottom: 3px;
}
.history-wrap .col h5::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    /* background-color: var(--page-point-color); */
    position: absolute;
    top: 15px;
    left: -55px;
}
.history-wrap .col h5::after {
    content: "";
    display: block;
    aspect-ratio: 1;
    position: absolute;
    left: -59px;
    top: 17px;
    width: 7px;
    height: 7px;
    background: #097cd3;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(0, 95, 184, 0.1);
}
@media (max-width: 767.98px) {
    .history-wrap .col h5::after {
        left: -44px;
    }
}
.history-wrap .col li {
    font-size: clamp(15px, 3vw, 17px);
    display: flex;
    margin-bottom: 5px;
}
@media (max-width: 767.98px) {
    .history-wrap .col li {
        flex-direction: column;
        margin-bottom: 10px;
    }
}
.history-wrap .col li b {
    flex-shrink: 0;
    width: 65px;
    color: #333;
    font-size: clamp(15px, 3vw, 17px);
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    .history-wrap .col:nth-child(even) .inner {
        grid-column: 2;
    }
    .history-wrap .col:nth-child(odd) .inner {
        border-left: 0;
        border-right: 1px solid #d9d9d9;
        padding-right: 55px;
        padding-left: 0;
        text-align: right;
        margin-right: -1px;
    }
    .history-wrap .col:nth-child(odd) h5::before {
        left: unset;
        right: -55px;
    }
    .history-wrap .col:nth-child(odd) h5::after {
        right: -59px;
        left: unset;
    }
    .history-wrap .col:nth-child(odd) :is(h5, li) {
        flex-direction: row-reverse;
    }
}
.branch-wrap .col + .col {
    margin-top: 80px;
}
.branch-wrap .col * {
    flex: 1;
}
.branch-wrap .map-box {
    aspect-ratio: 2.5;
    background-color: #ccc;
    overflow: hidden;
    border-radius: 10px;
}
@media (max-width: 767.98px) {
    .branch-wrap .map-box {
        aspect-ratio: 1.25;
        height: auto;
    }
}
.branch-wrap .map-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.branch-wrap .info {
    margin-top: 50px;
    position: relative;
}
.branch-wrap h5 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #222;
    letter-spacing: -0.03em;
}
.branch-wrap p.addr {
    margin-block: 12px 30px;
    font-size: clamp(18px, 2vw, 20px);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}
.branch-wrap p.addr::before {
    content: "\e0c8";
    font-family: var(--gms);
    font-variation-settings: var(--gms-600-fill);
    font-size: 22px;
    /* transform: translateY(5px); */
    margin-right: 3px;
    display: inline-block;
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--page-point-color);
}
.branch-wrap .spec {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* padding: 16px 15px; */
    gap: 15px 0px;
    /* background: #f3f3f3; */
    /* border-radius: 5px; */
    align-items: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #ddd;
}
.branch-wrap .spec dl:last-child {
    border-right: none;
}
.branch-wrap .spec h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    background: #f9f9f9;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 80px;
}
.branch-wrap .spec h6 + dl {
    padding-left: 14px;
}
.branch-wrap .spec dl {
    padding: 30px 30px;
    position: relative;
    border-right: 1px solid #e8e8e8;
}
.branch-wrap .spec dl + dl {
    padding-left: 30px;
}
.branch-wrap .spec dl::before {
    content: "";
    width: 3px;
    height: 16px;
    /* background: #679df2; */
    position: absolute;
    left: -1px;
    top: 0px;
}
.branch-wrap .spec dt {
    font-weight: 700;
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 4px;
    color: #333;
    line-height: 1;
}
.branch-wrap .spec dd {
    font-size: clamp(17px, 3vw, 18px);
    font-weight: 300;
    margin-top: 5px;
}
.branch-wrap .link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border: #333;
    background: #333;
    color: #fff;
    font-weight: 500;
    width: 150px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 35px;
}
.branch-wrap .link-btn:hover {
    background: var(--page-point-color);
    color: #fff;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .branch-wrap .spec {
        /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 10px;
        gap: 0;
        padding-block: 30px;
        gap: 20px;
    }
    .branch-wrap .spec h6 {
        grid-row: 1;
        width: 100%;
        grid-column: span 3;
        height: 50px;
    }
    .branch-wrap .col {
        flex-direction: column;
        gap: 25px;
    }
    .branch-wrap .info {
        width: 100%;
        margin-top: 40px;
    }
    .branch-wrap .link-btn {
        width: 100%;
        margin-top: 30px;
        position: static;
    }
    .branch-wrap p.addr {
        align-items: flex-start;
        font-size: 16px;
    }
    .branch-wrap .spec dl {
        border: 0;
        width: 100%;
        padding-block: 0;
    }
}
.partner-wrap {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 767.98px) {
    .partner-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}
.partner-wrap .col {
    background: #fff;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
}
.partner-wrap .col span {
    font-size: 16px;
    display: block;
    text-align: center;
    padding-block: 15px;
    font-weight: 700;
    color: #333;
    background: #f5f7fb;
}
.benefit-wrap {
    display: flex;
    /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
    gap: 20px;
}
@media (max-width: 767.98px) {
    .benefit-wrap {
        display: flex;
        flex-wrap: wrap;
        /* flex-direction: column; */
        /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    }
    .benefit-wrap .col {
        flex-basis: 40%;
    }
}
@media (max-width: 575.98px) {
    .benefit-wrap {
        flex-direction: column;
    }
    .benefit-wrap .col {
        flex: 0 1 auto;
        /* height: 200px; */
        height: auto;
    }
}
@media (min-width: 768px) {
    #bs03 .benefit-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
        display: grid;
    }
}
.benefit-wrap .col {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 74px 30px 0;
    background: #f4f4f4;
    border-radius: 10px;
    gap: 20px;
}
@media (max-width: 767.98px) {
    .benefit-wrap .col {
        padding: 30px;
        aspect-ratio: unset;
        gap: 15px;
        justify-content: center;
    }
}
@media (min-width: 768px) {
    #bs03 .benefit-wrap .col {
        gap: 20px;
        padding: 50px 50px;
        align-items: center;
        aspect-ratio: auto;
    }
    #bs04 .benefit-wrap .col {
    padding-top: 50px;
}
}
.benefit-wrap span.num {
    font-size: 20px;
    font-weight: 700;
    color: var(--page-point-color);
    display: none;
}
.benefit-wrap li {
    font-size: 16px;
}
#bs04 .benefit-wrap span.num {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 40px;
    color: #fff;
    border-radius: 9999px;
    background-color: var(--page-point-color);
}
.benefit-wrap span.material-symbols-outlined {
    font-size: 44px;
    font-variation-settings: var(--gms-530-out);
    color: #1e7dce;
    background: #fff;
    border-radius: 100px;
    padding: 20px;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 5px;
}
.benefit-wrap h6 {
    font-size: clamp(18px, 3vw, 21px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    width: fit-content;
    color: #003371;
}
.benefit-wrap h6::before {
    content: "";
    display: block;
    width: 100%;
    height: 9px;
    background: #c9eaff;
    position: absolute;
    top: 16px;
    left: 0;
    z-index: -1;
}
.benefit-wrap h6 small {
    font-weight: 500;
}
.benefit-wrap p {
    margin-top: 0;
    font-size: 16px;
    letter-spacing: -0.034em;
    text-align: center;
}
.check-wrap {
    display: flex;
    gap: 15px;
}
@media (max-width: 767.98px) {
    .check-wrap {
        flex-direction: column;
    }
}
.check-wrap .col {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
    background-color: #eee;
    padding: 15px;
    border-radius: 9999px;
}
.check-wrap .col span.material-symbols-outlined {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 9999px;
    background-color: var(--page-point-color);
    color: #fff;
    padding: 10px;
    font-variation-settings: var(--gms-700-out);
}
.check-wrap .col p {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 700;
    color: #000;
}
.target-wrap {
    /* display: grid; */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px 0px;
    display: flex;
    flex-flow: column;
    padding: 30px 40px;
    background: #f4f4f4;
    border-radius: 10px;
}
@media (max-width: 767.98px) {
    .target-wrap {
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }
    .target-wrap .col {
        flex-direction: column;
        gap: 5px;
    }
}
.target-wrap dl:last-child {
    border-right: none;
}
.target-wrap h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    background: #f9f9f9;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 80px;
}
.target-wrap h6 + dl {
    padding-left: 14px;
}
.target-wrap dl {
    position: relative;
    /* border-right: 1px solid #e8e8e8; */
    /* padding: 10px 0; */
    /* text-align: center; */
    /* text-align: center; */
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}
.target-wrap dl + dl {
    /* padding-left: 30px; */
}
.target-wrap dl::before {
    content: "";
    width: 3px;
    height: 16px;
    /* background: #679df2; */
    position: absolute;
    left: -1px;
    top: 0px;
}
.target-wrap dt {
    font-weight: 700;
    font-size: 14px;
    background: var(--page-point-color);
    color: #fff;
    line-height: 1;
    padding: 11px 15px;
    width: fit-content;
    border-radius: 100px;
    font-size: clamp(15px, 2vw, 17px);
    /* margin: 0 auto 15px; */
    letter-spacing: 0;
}
.target-wrap dd {
    font-size: clamp(15px, 2vw, 17px);
    margin-top: 5px;
    font-weight: 500;
    color: #000;
    text-align: left;
}
@media (max-width: 767.98px) {
    .target-wrap dd {
        text-align: center;
    }
    #bs04 .target-wrap dd {
        text-align: left;
    }
}
.mt-wrap .col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
    padding: 60px;
    border-radius: 10px;
    background: #f5f5f5;
}
@media (max-width: 767.98px) {
    .mt-wrap .col {
        padding: 30px;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
}
.mt-wrap .col + .col {
    margin-top: 30px;
}
.mt-wrap .img-box {
    /* aspect-ratio: 5/3; */
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.mt-wrap strong {
    width: fit-content;
    font-size: clamp(15px, 2vw, 17px);
    padding: 12px 20px;
    display: block;
    background-color: var(--page-point-color);
    color: #fff;
    margin-bottom: clamp(15px, 5vw, 30px);
    border-radius: 40px;
}
.mt-wrap h5 {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.mt-wrap p {
    font-size: 16px;
    line-height: 1.65;
}

/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
    position: relative;
    width: 100%;
}
#mainCarouselSwiper .swiper {
    display: block !important;
}
#mainCarouselSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max(clamp(600px, 70vw, 750px), calc(var(--svh100)));
    @media (max-width: 767.98px) {
        height: 600px;
    }
}
#mainCarouselSwiper .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0.7);
}
#site #mainCarouselSwiper .swiper-slide-active .swiper-bg img {
    animation: zoom-in 5s ease forwards;
}
@keyframes zoom-in {
    0% {
        scale: 1.2;
    }
    10% {
        scale: 1.2;
    }
    100% {
        scale: 1;
    }
}
#mainCarouselSwiper .swiper-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#mainCarouselSwiper .swiper-caption {
    position: relative;
    z-index: 10;
}
#mainCarouselSwiper .swiper-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#mainCarouselSwiper .swiper-link-btn {
    display: none;
}
#mainCarouselSwiper .swiper-link-btn span::before {
    content: "더보기";
}
#mainCarouselSwiper .swiper-caption {
    text-align: center;
    color: #fff;
}
#mainCarouselSwiper .swiper-caption h1 {
    position: relative;
    font-size: clamp(42px, 10vw, 68px);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: -0.012em;
    margin: 0 0 20px;
    color: inherit;
    text-shadow: 1px 4px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper .swiper-caption h1 {
        font-size: 28px;
    }
}
#mainCarouselSwiper .swiper-slide-active .swiper-caption h1 {
    animation: h1-upper 1s 0.5s ease forwards;
}
@keyframes h1-upper {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
#mainCarouselSwiper .swiper-caption p {
    margin-top: 22px;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: inherit;
    text-shadow: 1px 3px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
}
#mainCarouselSwiper .swiper-slide-active .swiper-caption p {
    animation: p-upper 1s 1s ease forwards;
}
@keyframes p-upper {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#mainCarouselSwiper [class*="swiper-button"] {
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    width: 16%;
    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: 64px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
}
#mainCarouselSwiper [class*="swiper-button"]:hover::before {
    color: white;
}
#mainCarouselSwiper .swiper-button-next {
    right: 0;
}
#mainCarouselSwiper .swiper-button-next::before {
    content: "\e5e1";
}
#mainCarouselSwiper .swiper-button-prev::before {
    content: "\e2ea";
}
#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
}
#mainCarouselSwiper .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 1;
    gap: 8px;
}
@media (max-width: 767.98px) {
    #mainCarouselSwiper .swiper-pagination {
        scale: 0.75;
    }
}
#mainCarouselSwiper .swiper-pagination span {
    width: 40px;
    height: 10px;
    border: 0;
    border-radius: 50px;
    margin: 0 5px;
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0);
    transition: ease-in-out 0.2s all;
    margin: 0;
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}
@media (width <= 767.98px) {
    #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
}
/* [ mainpage ] */
.mainpage :is(.bg) {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #fff;
    filter: brightness(0.78) saturate(0.95);
    transition: all 0.35s;
}
.mainpage section {
    position: relative;
    padding-block: 120px 120px;
}
@media (max-width: 767.98px) {
    .mainpage section {
        padding-block: 80px;
    }
}
.mainpage section:nth-child(odd) {
    background-color: #f5f5f5;
}
.mainpage section.main-board {
    background: url("/public/img/main/main-board-bg.jpg") no-repeat center / cover;
}
.mainpage h3 {
    font-size: clamp(32px, 3vw, 48px);
    text-align: left;
    font-weight: 700;
    line-height: 1;
    color: #000;
    letter-spacing: -0.04em;
}
.mainpage .title-h3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}
@media (max-width: 767.98px) {
    .mainpage .title-h3 {
        /* flex-direction: column; */
        align-items: center;
        /* justify-content: flex-start; */
        gap: 20px;
        margin-bottom: 40px;
    }
}
.m-inquiry-wrap a,
.mainpage .title-h3 a {
    background-color: var(--page-point-color);
    color: #fff;
    max-width: 200px;
    width: 100%;
    border-radius: var(--radius-md);
    height: 55px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: transparent;
    color: var(--page-point-color);
    font-weight: 550;
    font-size: 16px;
    letter-spacing: -0.034em;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    transition: all 0.25s ease;
}
@media (max-width: 767.98px) {
    .m-inquiry-wrap a,
    .mainpage .title-h3 a {
        width: auto;
        /* aspect-ratio: 1; */
        padding-inline: 20px 15px;
        justify-content: center;
        align-items: center;
        height: 45px;
        gap: 15px;
    }
    .m-inquiry-wrap a span.text,
    .mainpage .title-h3 a span.text {
        /* display: none; */
        font-size: 14px;
    }
}
.m-inquiry-wrap a {
    color: #fff;
    border-color: #fff;
}
.m-inquiry-wrap a:hover {
    background: #fff;
    color: var(--page-point-color);
}
.mainpage .title-h3 a:hover {
    background: var(--page-point-color);
    color: #fff;
    border-color: var(--page-point-color);
}
.m-inquiry-wrap a::after,
.mainpage .title-h3 a::after {
    content: "\e941";
    font-family: var(--gms);
    font-variation-settings: var(--gms-400-out);
    font-size: 21px;
    float: right;
}
.mainpage h3 small {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    text-indent: 0.02em;
    display: none;
}
.m-busi-wrap {
    display: flex;
    gap: 30px;
}
@media (max-width: 767.98px) {
    .m-busi-wrap {
        flex-direction: column;
    }
}
.m-busi-wrap .col {
    position: relative;
    aspect-ratio: 0.75;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
    border-radius: 10px;
}
@media (max-width: 767.98px) {
    .m-busi-wrap .col {
        aspect-ratio: unset;
        flex: 0 1 auto;
        height: 300px;
    }
}
.m-busi-wrap .col:hover img {
    filter: brightness(0.5) saturate(1);
}
.m-busi-wrap .col strong {
    display: flex;
    width: 100%;
    /* justify-content: space-between; */
    font-size: 26px;
    color: #fff;
    flex-flow: column;
    text-align: center;
    transition: all 0.35s ease;
    gap: 20px;
    text-shadow: 0 0 9px rgba(0, 0, 0, 0.8);
}
.m-busi-wrap .col strong span {
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 400;
    width: 140px;
    opacity: 0;
    transition: all 0.35s;
    height: 0;
    line-height: 45px;
    margin: 0 auto;
    background: #168df5;
    text-shadow: none;
}
@media (min-width: 768px) {
    .m-busi-wrap .col:hover strong span {
        opacity: 1;
        height: 45px;
    }
}
@media (max-width: 767.98px) {
    .m-busi-wrap .col strong span {
        opacity: 1;
        height: 45px;
    }
}
.m-inquiry-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 100px 80px;
    background: url("/public/img/main/m-inquiry-wrap-bg.jpg") no-repeat center / cover;
    border-radius: 10px;
}
@media (max-width: 767.98px) {
    .m-inquiry-wrap {
        flex-direction: column;
        padding: 40px 40px;
        gap: 50px;
    }
    .m-inquiry-wrap .btn {
        width: 100%;
        max-width: 100%;
    }
}
.m-inquiry-wrap h4 {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.025em;
}
.m-inquiry-wrap ul {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
@media (max-width: 767.98px) {
    .m-inquiry-wrap ul {
        flex-direction: column;
        gap: 10px;
    }
}
.m-inquiry-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 2vw, 18px);
    color: #fff;
    letter-spacing: 0;
    font-weight: 300;
}
.m-inquiry-wrap li span {
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #168df5;
    color: #fff;
    font-size: 16px;
}
/* [ main-widget ] */
[class^="board_box"] {
    margin-bottom: 0;
}
.page-header {
    margin-block: 0 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    display: none;
}
.type_thumb {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 50px;
}
@media (max-width: 767.98px) {
    .type_thumb {
        display: flex;
        flex-direction: column;
    }
}
.type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
.type_thumb .thumb {
    aspect-ratio: 1.4705882353;
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.type_thumb .bottom {
    padding: 0;
}
.type_thumb .info {
    display: none;
}
.type_thumb .bottom .title {
    padding: 0;
    margin-top: 15px;
}
.type_thumb .bottom .title a {
    font-size: clamp(16px, 3vw, 19px);
    font-weight: 500;
}
: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;
}
:where(.type_video, [data-board-option="video"]) .inner:hover .top a:before {
    opacity: 1;
}
/* [ main-popup ] */
#mainPopup {
    position: relative;
    top: calc(var(--navbar-height) - 140px);
}
#site .main_popup {
    display: none;
    position: absolute;
    top: 100px !important;
    min-width: 300px;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background-color: transparent;
}
#site .main_popup.show {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.main_popup button.close {
    all: unset;
    cursor: pointer;
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_popup span.material-symbols-outlined {
    line-height: 0.8;
    font-variation-settings: var(--gms-200-out);
    font-size: inherit;
}
.main_popup .main_popup_contents {
    overflow: hidden;
    /* padding: 10px; */
    background: #fff;
}
.main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding-inline: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 40px;
}
.main_popup_optional label {
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}
.main_popup_optional label input[type="checkbox"] {
    display: none;
}
.main_popup_optional label span {
    padding-left: 3px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.main_popup_optional label span::before {
    content: "\e8b5";
    display: inline-block;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(16px, 2vw, 18px);
    /* transform: translateY(3px); */
}
.main_popup_optional :where(label, div) {
    opacity: 0.8;
}
.main_popup_optional :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
.main_popup_optional :where(label, div, span) {
    line-height: 1;
}
.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
}
.main_popup.main_popup_left {
    left: 50px;
}
.main_popup.main_popup_center {
    left: 50%;
    transform: translate(-50%);
}
.main_popup.main_popup_right {
    right: 50px;
}
@media (max-width: 767px) {
    .main_popup.main_popup_left,
    .main_popup.main_popup_center,
    .main_popup.main_popup_right {
        left: 15px;
        right: 15px;
        transform: none;
    }
}
/* ---------------------------- table ---------------------------- */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
    .table-responsive .table {
        min-width: 700px;
    }
}
:where(.table) {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    table-layout: fixed;
    border-spacing: 0;
    -webkit-text-size-adjust: none;
    border-spacing: 0;
}
:where(.table) :where(th, td) {
    vertical-align: top;
    line-height: 1.5;
}
.table-style {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
    border-top: 2px solid #222;
    background-color: #fff;
    margin: 0;
}
.table-style :is(th, td) {
    padding: 15px 19px;
    font-size: clamp(14px, 3vw, 16px);
    vertical-align: middle;
    border: 1px solid var(--border-color);
}
@media (max-width: 767.98px) {
    #site .table-style {
        font-size: 14px;
    }
}
.table-style.text-left :is(th, td) {
    text-align: left;
}
.table-style td {
    color: #444;
}
.table-style thead th {
    border-bottom: 0;
    background-color: #eee;
    border: 1px solid var(--border-color);
    color: #222;
    /* text-align: center; */
    font-weight: 600;
}
.table-style thead,
.table-style tbody:only-child {
    border-top: 2px solid var(--page-point-color);
}
.table-style tbody th {
    background-color: #f7f7f7;
    /* text-align: center; */
    font-weight: 600;
}
.table-number tbody > tr {
    counter-increment: itemNum;
}
.table-number thead > tr > th:first-child {
    text-align: center;
}
.table-number tbody > tr > td:first-child {
    text-align: center;
}
.table-number tbody > tr > td:first-child::before {
    content: counter(itemNum) "";
    text-align: center;
}
/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
    margin-block: 0;
}
/* 게시글 공지사항 */
.board_wrapper tr.notice {
    background-color: #f7f7f7;
}
.board_wrapper tr.notice td.subject a {
    font-weight: 500;
    color: #000;
}
.board_wrapper tr.notice td.cate span {
    display: none;
}
.board_wrapper tr.notice td.cate::before {
    content: "공지";
    color: #222;
}
/* 게시글 아이콘 */
.board_wrapper td.subject .is_secret {
    order: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board_wrapper td.subject span {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 7px;
}
.board_wrapper td.subject small {
    margin-top: 0;
}
/* 잠금 아이콘 */
.board_wrapper td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
}
/* 댓글 아이콘*/
.board_wrapper td.subject small.comment {
    opacity: 0.8;
    order: 1000;
    translate: 0 -1px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--page-point-color-dark);
    font-weight: 700;
}
.board_wrapper td.subject small.comment::before {
    content: "[";
}
.board_wrapper td.subject small.comment::after {
    content: "]";
}
.board_wrapper td.subject small.comment i {
    display: none;
}
/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper[id$="_view"] .btn {
    min-width: 60px;
    padding-inline: 10px;
    justify-content: center;
    align-items: center;
}
.board_wrapper :is(.form-caption, .wr_caution) i {
    color: var(--page-point-color);
}
.board_wrapper .wr_caution {
    padding-left: 18px;
}
:where(.member_wrapper, .board_wrapper) .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
:where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0;
}
/* 게시판/주문폼/회원가입 버튼 */
:where(.member_wrapper, .board_wrapper) :where(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}
/* checkbox, radio */
:where(.member_wrapper, .board_wrapper) tbody td:has(.radio-inline, .checkbox-inline) {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(5px, 2vw, 10px) clamp(15px, 3vw, 20px);
    font-size: clamp(14px, 2vw, 16px);
}
:where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
:where(.member_wrapper, .board_wrapper) .checkbox label {
    cursor: pointer;
    width: fit-content;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
:where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
    font-weight: 500;
    color: #1b74d1;
    text-decoration: underline;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type="checkbox"], input[type="radio"]) {
    position: static;
    margin: 0 5px 0 0;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .radio-inline) {
    margin-block: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 20px;
        /* margin-bottom: 50px; */
        /* padding-top: 30px; */
        display: flex;
        justify-content: center;
        width: 100%;
    }
    :where(.member_wrapper .text-center .btn + .btn) {
        margin-left: 0;
    }
    :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-bottom: 50px;
}
#bbsArea .category_wrap li {
    margin: 0;
}
#bbsArea .category_wrap a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 16px;
}
#bbsArea .category_wrap a:hover {
    color: #111;
}
#bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}
/* 게시판 노출 */
#bbsArea {
    position: relative;
}
#bbsArea .board_data_view {
    border-top: 2px solid #333;
    border-bottom: 1px solid #ddd;
}
#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 li + li {
    margin-left: -1px;
}
#bbsArea .pagination_wrap a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    aspect-ratio: 1;
    font-size: 15px;
    border-radius: 9999px;
}
#bbsArea .pagination_wrap li:not(.active) a:hover {
    background-color: #eee;
}
#bbsArea .pagination_wrap li.active a {
    width: 28px;
    background-color: var(--page-point-color);
    color: #fff;
    font-weight: 700;
}
#bbsArea .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* 게시판 목록 하단 */
#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
}
#bbsArea .search_wrap #search_kind {
    cursor: pointer;
    line-height: 1;
}
#bbsArea .search_wrap .write_btn_wrap {
    margin-top: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .search_wrap {
        flex-direction: column;
        max-width: 300px;
        margin-inline: auto;
    }
    #bbsArea .search_wrap .write_btn_wrap {
        position: static;
        display: flex;
        gap: 5px;
        width: 100%;
    }
    #bbsArea select.form-control {
        max-width: 100% !important;
    }
    #bbsArea .search_wrap .write_btn_wrap > .btn {
        width: 100%;
        min-width: auto;
        flex: 1;
    }
}
#bbsArea .badge {
    display: inline-flex;
    background-color: var(--page-point-color);
    border-radius: 3px;
    padding: 3px 7px;
    margin-block: -3px;
    margin-right: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
#bbsArea .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
#bbsArea .option_wrap .list_btn_wrap {
    position: static;
}
/* 게시글 헤더 */
#bbsArea .header_wrap {
    text-align: center;
    padding: 45px 30px 55px;
    border-bottom: 1px solid #eee;
}
#bbsArea .header_wrap h4.title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.034em;
}
#bbsArea .header_wrap span {
    color: #666;
}
#bbsArea .header_wrap strong {
    color: #777;
    font-weight: 700;
}
#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: #777;
}
#bbsArea .header_wrap .info span + span {
    margin-left: 9px;
}
/* 게시글 콘텐츠 */
#bbsArea .contents_wrap {
    padding: 50px 0px;
}
#bbsArea .contents_wrap .contents_inner {
    font-size: 14px;
}
#bbsArea .contents_wrap img {
    max-width: 100%;
    height: auto;
}
#bbsArea .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}
#bbsArea .contents_wrap a {
    color: #337ab7;
}
#bbsArea .contents_wrap a:hover {
    color: #1b5a92;
    text-decoration: underline;
}
#bbsArea .contents_wrap a:visited {
    color: #6c368b;
}
#bbsArea .contents_wrap a:visited:hover {
    color: #461b5f;
    text-decoration: underline;
}
#bbsArea .contents_wrap :is(.h1, h1) {
    font-size: 36px;
}
#bbsArea .contents_wrap :is(.h2, h2) {
    font-size: 30px;
}
#bbsArea .contents_wrap :is(.h3, h3) {
    font-size: 24px;
}
#bbsArea .contents_wrap :is(.h4, h4) {
    font-size: 18px;
}
#bbsArea .contents_wrap :is(.h5, h5) {
    font-size: 14px;
}
#bbsArea .contents_wrap :is(.h6, h6) {
    font-size: 12px;
}
#bbsArea .contents_wrap :is(.h1, .h2, .h3, h1, h2, h3) {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 500;
    color: inherit;
}
#bbsArea .contents_wrap :where(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside;
}
#bbsArea .contents_wrap ul li {
    list-style-type: disc;
}
#bbsArea .contents_wrap ol li {
    list-style-type: decimal;
}
/* 게시글 다운로드 */
#bbsArea :is(.download_wrap, .status_wrap) {
    padding: 15px;
    border-top: 1px solid #ddd;
}
#bbsArea :is(.download_wrap, .status_wrap) th {
    text-align: left;
    vertical-align: top;
    width: 100px;
}
#bbsArea :is(.download_wrap, .status_wrap) ul {
    display: flex;
    flex-direction: column;
    gap: 5px 10px;
    flex-wrap: wrap;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a {
    color: #000;
}
#bbsArea :is(.download_wrap, .status_wrap) a:hover {
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #bbsArea :is(.download_wrap, .status_wrap) ul {
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr {
        display: flex;
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr > * {
        width: 100%;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr th {
        padding-bottom: 10px;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr a {
        word-break: break-all;
    }
}
/* 게시글 댓글 */
#bbsArea .reply_wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
#bbsArea .reply_wrap h4 {
    position: static;
    text-align: left;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
#bbsArea .reply_wrap > h4 {
    /* order: 1; */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
#bbsArea .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
#bbsArea .reply_wrap .btn_wrap .pull-left {
    display: flex;
    gap: 5px;
}
:is(#bbsArea .reply_wrap #reply_modify_btn, #bbsArea .reply_wrap .text-left + button) {
    margin-left: auto;
}
#bbsArea .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
#bbsArea .reply_wrap #reply_list .info {
    display: flex;
    gap: 7px;
    /* height: 40px; */
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
#bbsArea #reply_list {
    /* order: 3; */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ccc;
    margin-block: 20px;
}
#bbsArea #reply_list .media {
    position: relative;
    margin: 0;
    padding: 20px 5px 40px;
}
#bbsArea #reply_list .media + .media {
    border-top: 1px solid #ddd;
}
#bbsArea #reply_list .media .media-left,
#bbsArea #reply_list .media > .pull-left {
    padding-right: 20px;
}
#bbsArea #reply_list .media .media-left img {
    border-radius: 100%;
}
#bbsArea #reply_list .media .media-body {
    position: static;
}
#bbsArea #reply_list .media .media-body .info {
    position: absolute;
    /* right: 0; */
    left: 130px;
    bottom: 15px;
}
#bbsArea #reply_list .media .media-body .info .btn {
    display: inline-block;
    font-weight: 500;
    /* padding: 0 5px; */
    line-height: 1;
    font-size: 12px;
    vertical-align: middle;
    color: #333;
    height: auto;
    max-width: unset;
}
#bbsArea #reply_list .media .media-body .info span {
    color: #aaa;
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}
#bbsArea #reply_list .media .media-heading .text-muted {
    color: #aaa;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 5px;
    margin-left: 0 !important;
}
#bbsArea #reply_list .media .media-body p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-all;
}
#bbsArea #reply_write .info .form-control {
    display: inline-block;
    width: 120px;
}
#bbsArea #reply_write .info .form-control + .form-control {
    margin-left: 2px;
}
#bbsArea #reply_write .contents {
    margin-top: 5px;
}
#bbsArea #reply_write .contents .form-control {
    height: 100px;
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
    padding: 10px 15px;
}
#bbsArea #reply_write .btn_wrap {
    margin-top: 5px;
    text-align: right;
}
#bbsArea #reply_write .btn_wrap .btn {
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 539px) {
    #bbsArea #reply_write .info .form-control {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    #bbsArea #reply_write .info .form-control + .form-control {
        margin-left: 0;
    }
}
/* 게시글 작성 */
#bbsArea .table.board_write_table {
    border-top: 2px solid #333;
    border-collapse: inherit;
}
#bbsArea .table.board_write_table tbody td {
    padding: 0px;
    border: 0;
}
#bbsArea .table.board_write_table .text-muted i {
    color: #82b7ed;
}
#bbsArea .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
#bbsArea .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
#bbsArea .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}
#bbsArea .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .table.board_write_table .text-muted {
        width: 100%;
    }
}
/* 휴지통 버튼 */
#bbsArea .table.board_write_table :is(.refresh, .delete_attach) {
    display: inline-block;
    color: #999;
    line-height: 40px;
    margin-left: 7px;
    margin-right: 7px;
    cursor: pointer;
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach):hover {
    color: #ec0909;
}
/* 파일 추가 버튼 */
#bbsArea .table.board_write_table .files {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 15px;
    flex: 1;
}
#bbsArea .table.board_write_table #File_add {
    aspect-ratio: 1;
    width: auto;
    padding: 9px 12px;
    margin: 0;
}
#bbsArea .table.board_write_table .files + #File_add {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
}
#bbsArea .table.board_write_table .files + #File_add .fa-plus {
    line-height: 0;
}
/* input 가로 */
/* #bbsArea .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
 width: 100%;
 } */
/* 필수 입력 항목 */
#bbsArea .table.board_write_table th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: static;
    margin-right: 2px;
    color: var(--page-point-color);
    color: red;
}
/* textarea 글자수 */
#bbsArea .frm_textarea_cnt {
    display: none;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    #bbsArea .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        aspect-ratio: 1;
        height: 40px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #bbsArea .table.board_write_table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #bbsArea .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100%;
    }
    #bbsArea .table.board_write_table #delete_thumb {
        width: 100%;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    #bbsArea .table.board_write_table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }
}
/* input */
.form-control {
    width: 100%;
    font-family: var(--page-font-family);
    padding: 0.6rem 0.85rem;
    font-size: clamp(14px, 2vw, 15px);
    height: var(--form-height);
    border-radius: var(--radius-md);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--page-grey-color);
    color: #333;
    letter-spacing: -0.03em;
}
.form-control::placeholder {
    color: #999;
}
#search_query.form-control {
    width: 100%;
    max-width: 320px;
    /* background-color: #eee; */
    /* border: 1px solid transparent; */
}
#search_query.form-control:focus {
    background-color: #fff;
    border-color: var(--page-point-color);
}
textarea.form-control {
    padding-block: 0.9rem;
    line-height: 1.5;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border-color: var(--page-grey-color);
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08);
}
.form-control:not([readonly]):focus {
    border-color: var(--page-point-color);
}
.form-control[type="file"] {
    position: relative;
    width: 100%;
    cursor: pointer;
    padding: 0 0.8rem;
    padding-left: 0;
    line-height: calc(var(--form-height) - 2px);
    margin: 0;
}
.form-control[type="file"]::file-selector-button {
    width: 80px;
    margin-right: 10px;
    font-family: inherit;
    position: relative;
    left: 0;
    height: 100%;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
}
.form-control[type="file"]:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #e5e5e5;
}
select.form-control {
    -webkit-appearance: none;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzIiICAgdmlld0JveD0iMCAwIDQ4MCA0ODAiICAgaGVpZ2h0PSI0ODAiICAgd2lkdGg9IjQ4MCI+ICA8bWV0YWRhdGEgICAgIGlkPSJtZXRhZGF0YTEwIj4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzOCIgLz4gIDxwYXRoICAgICBpZD0icGF0aDQiICAgICBkPSJNIDE0MCwxOTAgMjQwLDI5MCAzNDAsMTkwIFoiIC8+PC9zdmc+);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) 11px;
    background-origin: border-box;
    padding-right: 23px;
    max-width: 100px;
}
select.form-control#wr_cate {
    max-width: 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.valid-text + .clear-input {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 100%;
    color: #bbb;
    top: 0;
    right: 0;
    border: 1px solid transparent;
}
input.form-control.valid-text + .clear-input::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}
input.form-control + .clear-input:hover {
    color: var(--page-point-color);
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control.valid-text + .clear-input {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 100%;
    color: #bbb;
    top: 0;
    right: 0;
    border: 1px solid transparent;
}
input.form-control.valid-text + .clear-input::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}
input.form-control + .clear-input:hover {
    color: var(--page-point-color);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .form-control {
        width: 100%;
    }
}
.wr_form_wrap {
    display: grid;
    grid-template-columns: 1fr 0.5fr 2fr;
    gap: 10px;
    padding: 3px 0 0;
}
.wr_form_wrap label {
    font-size: 13px;
}
.wr_form_item {
    position: relative;
}
.wr_form_item input.form-control {
    padding-right: 40px;
}
.wr_form_item :where(.input-group, .form-control) {
    width: 100%;
}
@media (max-width: 768px) {
    .wr_form_wrap {
        display: flex;
        flex-direction: column;
    }
}
.wr_form_item .form-control {
    background-color: transparent;
    padding-right: 35px;
}
.custom_file {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}
.checkbox-inline + .checkbox-inline {
    margin-left: 20px;
}
:is(.custom_radio, .custom_checkbox) {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}
:is(.custom_radio, .custom_checkbox, .status_wrap input) + span {
    user-select: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.custom_checkbox + span {
    user-select: none;
}
.custom_checkbox + span::before {
    margin: 0 0 0 0;
    font-size: 1.25em;
    color: #555;
    content: "\e835";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
.custom_checkbox:checked + span::before {
    content: "\e834";
    font-weight: 900;
    color: var(--page-point-color);
}
.custom_checkbox[disabled],
.custom_checkbox[disabled] + span {
    opacity: 0.5;
}
.radio-inline {
    cursor: pointer;
    align-self: center;
    margin-top: 0 !important;
}
.status_wrap [name="wr_status"] {
    display: none;
}
:is(.custom_radio, .status_wrap [name="wr_status"]) + span::before {
    margin: 0 0 0 0;
    font-size: 1.25em;
    color: #555;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
:is(.custom_radio, .status_wrap [name="wr_status"]):checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}
:is(.custom_radio, .status_wrap [name="wr_status"])[disabled],
:is(.custom_radio, .status_wrap [name="wr_status"])[disabled] + span {
    opacity: 0.5;
}
/* 자동입력방지 */
#wr_captcha {
    margin-top: 0;
    width: 100%;
    max-width: 220px;
}
#captcha {
    z-index: 10;
    cursor: pointer;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: var(--form-height) !important;
    margin: 0;
    border: 1px solid transparent;
}
#captcha:hover {
    border-color: #222 !important;
}
#captcha + br {
    display: none;
}
#captcha + br + input {
    margin: 0 0 0 -1px !important;
    border-radius: 0;
    /* border-left: 0; */
    margin-left: -1px;
}
#captcha + br + input:focus {
    z-index: 15;
}
td:has(#captcha) {
    display: flex;
    gap: 0;
}
/* [ board-columns ] */
:is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(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;
}
/* [min-small / portrait phones] 모바일, 576px 이상 ▲ */
@media (width >= 576px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
    /* 등록된 [상품/게시글]이 없습니다 문구 */
}
:is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}
/* [ board-video ] */
.table_video .top a:before {
    content: "\e1c4";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
}
.table_video .inner:hover .top a:before {
    opacity: 1;
}
.type_video .thumb {
    background-color: #000;
}
/* [ board-list ] */
/* 게시판 리스트, 현황 */
.board_status_list .status_badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}
.board_status_list .status_badge_1 {
    background: #a0a1a3;
    color: #fff;
}
.board_status_list .status_badge_2 {
    background: var(--page-point-color);
    color: #fff;
}
.board_status_list .status_badge_3 {
    background: #e1e1e1;
    color: #888;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default {
    border: 0;
    border-spacing: 0;
    border-top: 1px solid #333;
    margin-bottom: 0;
    width: 100%;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(th, td) {
    padding: 17px 15px;
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #ddd;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td {
    color: #777;
    text-align: center;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.text-center {
    display: table-cell;
    text-align: center;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    color: #222;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody th.num {
    font-weight: normal;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_responsive tbody th {
    margin-bottom: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .subject {
        width: 100%;
    }
    :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 .badge {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
}
.table_blog .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.table_blog .right p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
}
@media (max-width: 768px) {
    .table_blog dd {
        display: flex;
        flex-direction: column;
    }
    .table_blog .right {
        padding-right: 0;
    }
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .badge {
    margin-top: 0px;
}
:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
:where(.table_video, .table_blog2, .table_pd) .top {
    position: relative;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) span.thumb + img.thumb {
    display: block;
    aspect-ratio: 1.6666666667;
    object-fit: cover;
    width: 100%;
    /* max-width: 400px; */
    height: auto;
    background-color: #ccc;
    border-radius: var(--radius-md);
}
:is(.table_pd) a span.thumb + img.thumb {
    aspect-ratio: 1;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none;
}
:is(.table_video, .table_blog2, .table_pd) dd {
    margin-bottom: 0;
}
:is(.table_video, .table_blog2, .table_pd) .bottom {
    margin-top: 15px;
    padding: 0;
}
:is(.table_video, .table_blog2, .table_pd) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
    padding: 0;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview {
    margin-top: 10px;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview * {
    all: unset;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    opacity: 0.7;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info span {
    padding: 0;
    font-size: 13px;
    line-height: 1;
}
/* [ board-form ] */
:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
.board_wrapper :where(form[id*="form"]) :where(th, td, table.table) {
    border: 0;
    line-height: 1;
}
.board_wrapper :where(form[id*="form"]) table {
    width: 100%;
    display: flex;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) th {
    padding: 0;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    width: auto;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) :where(th, td) {
    font-size: 16px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .board_wrapper :where(form[id*="form"]) th {
        margin-bottom: 15px;
    }
}
.board_wrapper :where(form[id*="form"]) tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    /* gap: 25px; */
}
.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 #eee;
}
.board_wrapper :where(form[id*="form"]) #item_agree .checkbox {
    margin-top: 0;
}
/* 동의 */
.board_wrapper :where(form[id*="form"]) #item_agree label,
.board_wrapper :where(form[id*="form"]) #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
    color: #666;
}
/* 주문내역 숨김 */
:where(.form-wrap, form) #list_btn {
    display: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .board_wrapper :where(form[id*="form"]) table.table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}
/* ---------------------------- member ---------------------------- */
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group {
    height: 52px;
}
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group input {
    border: 0;
    padding-left: 0;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .form-group {
    height: 45px;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
    padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 60px);
    /* border: 1px solid #ddd; */
    border-radius: 30px;
    background: #fff;
}
:is(.find_container, .join_container, .join_write_container) .member_wrapper {
    /* max-width: 900px; */
}
:is(.find_container, .login_container) :is(.member_wrapper) {
    max-width: 500px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) {
        width: 100%;
    }
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
        width: 100%;
        margin: 0 auto;
    }
}
.member_wrapper {
    max-width: 1140px;
    padding-top: 120px;
    padding-bottom: 200px;
    margin: 0 auto;
}
.member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
    letter-spacing: -0.03em;
}
.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 15px);
    height: 80px;
    /* max-height: 200px; */
    margin-bottom: 0;
    text-align: center;
    color: #666;
}
.member_wrapper .text-center {
    margin-top: 40px;
}
.member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.member_wrapper #login_form input {
    padding-left: 5px;
    font-size: 15px;
}
#login_form .form-group label {
    position: relative;
}
#login_form .form-group label[class*="label-"] {
    /* display: inline-block; */
    text-indent: -9999px;
}
#login_form .form-group label::before {
    position: absolute;
    text-indent: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 22px;
    color: #888;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
#login_form .form-group:focus-within label[class*="label-"]::before {
    color: #000;
}
#login_form .form-group label.label-id::before {
    content: "\e7fd";
}
#login_form .form-group label.label-pw::before {
    content: "\e897";
}
#login_form .form-group label.label-email::before {
    content: "\e0e6";
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper {
        padding: 60px 30px;
    }
    .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    .member_wrapper #login_form input {
        border: 0;
        /* padding-left: 0; */
        padding-right: 35px;
    }
}
.member_wrapper .join_agree .join_agree_box {
    width: auto;
    height: 250px;
    border: 1px solid var(--page-grey-color);
    padding: 15px;
    overflow-y: scroll;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .member_wrapper #login_form .control-label {
        /* padding-top: 10px; */
        /* text-align: left; */
    }
}
.member_wrapper .join_agree_box + .checkbox {
    margin: 0;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 3vw, 15px);
}
.member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
.member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.member_wrapper .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
.member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
/* [ form ] */
.member_wrapper .form-group {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
.member_wrapper .form-group > * {
    width: auto;
    padding: 0;
}
.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px;
}
.member_wrapper .form-group:nth-of-type(2) {
    margin-bottom: 0px;
}
.member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-400-out);
    font-size: 1.25rem;
    color: #000;
}
.member_wrapper .form-group > label:nth-child(1) {
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-3px);
}
.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
/* [ member-login ] */
:is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px;
    width: 100%;
    border-radius: 9999px;
}
#site :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
    z-index: 10;
    width: 100%;
    padding-block: 100px 120px;
    background: #f7f7f7;
}
#site .mypage_container {
    padding-inline: 15px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
        margin-top: 0;
        position: relative;
        padding-block: 30px 100px;
        height: auto;
    }
}
:where(#find_idpw, .login_wrapper, .mypage_container) {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
@media (width >= 992px) {
    :where(#find_idpw, .login_wrapper) {
        padding: 0;
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
/* [min-lager / tablet] 브라우저 높이 700 이하 */
@media (height <= 700px) {
    :where(#find_idpw, .login_wrapper, .mypage_container) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
.member_wrapper .login_extra {
    margin-top: 30px;
}
.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
.member_wrapper .login_extra li > a {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .login_extra li + li {
    margin-left: 0;
}
.member_wrapper .login_extra li + li::before {
    content: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .member_wrapper .login_extra li + li::before {
        content: none;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper #join_form tr th {
        padding: 0px;
        margin-bottom: 0;
    }
    .member_wrapper #join_form tr td {
        display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 0px;
    }
    .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0;
    }
    .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100%;
    }
}
.member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}
.member_wrapper .table {
    width: 100%;
}
.member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}
.member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
.member_wrapper .table tbody tr th {
    text-align: left;
    width: auto;
}
.member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
.member_wrapper .table tbody tr td {
    padding-inline: 15px;
    display: flex;
    gap: 5px;
}
.member_wrapper .table tbody tr :where(th, td) {
    display: block;
    font-size: clamp(13px, 3vw, 15px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .member_wrapper .table tbody tr :where(th, td) {
        display: block;
        width: 100%;
        font-size: clamp(15px, 2vw, 17px);
    }
    .member_wrapper .table tbody tr th {
        padding: 10px 30px;
    }
    .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    .member_wrapper .table .files_upload_wrap .files .file_add {
        position: relative;
        right: auto;
    }
    .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}
/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    text-align: left;
}
:is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
:where(.privacy_container, .agreement_container) .privacy_body {
    font-size: 1rem;
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    :where(.privacy_container, .agreement_container) .member_wrapper {
        padding: 50px 30px;
    }
}
/* [ componets start ]*/
/* 페이지 준비중 */
.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
    border-radius: 20px;
}
.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 74px;
    margin-bottom: 20px;
}
.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}
/* 모바일 이미지 확장 스크롤 */
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 575.98px) {
    .scroll-box-xs {
        position: relative;
    }
    .scroll-box-xs:not(.on)::before {
        cursor: pointer;
        box-sizing: content-box;
        content: "\e145";
        font-family: var(--gms);
        font-variation-settings: var(--gms-500-out);
        background-color: var(--page-point-color);
        border: 3px solid #fff;
        border-top: 0;
        border-right: 0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        font-size: 22px;
        aspect-ratio: 0.9803921569;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 100;
        line-height: 0;
    }
    .scroll-box-xs.on {
        position: relative;
        /* touch-action: pan-x; */
        overflow-x: auto;
    }
    .scroll-box-xs.on img {
        max-width: 900px;
        width: auto;
        height: auto;
    }
}
/* [ animation ] */
/* animation 2023-10-19*/
/* 클래스 명 : {effect}-{transform}-{speed}-{delay}-{translate-pixel} */
/* 예1) fade-upper-s1-d2-t3 (페이드 / 위쪽 / 속도 0.25s / 딜레이 0.5s / 좌표값 75px */
/* 예2) show-under ( 기본 / 아래로 / 속도 1s (기본값) / 딜레이 0s (기본값) / 좌표값 100px (기본값) */
.ani {
    --opacity: 0;
    /* 등급 (해당 숫자만큼 곱함) */
    --s-level: 4;
    --d-level: 0;
    --t-level: 4;
    /* 위치값 */
    --value: 25px;
    /* 트랜지션 기본 속도 */
    --duration-second: 0.25s;
    --delay-second: 0.25s;
    /* 트랜지션 계산 */
    --duration: calc(var(--duration-second) * var(--s-level));
    --delay: calc(var(--delay-second) * var(--d-level));
    /* 트랜지션 프로퍼티 */
    --property: all;
    /* 트랜지션 효과 */
    --timing-function: ease;
    /* transform */
    --translate: calc(var(--value) * var(--t-level));
    --scale: 1;
    /* default */
    opacity: var(--opacity);
    transition-duration: var(--duration);
    transition-delay: var(--delay);
    transition-property: var(--property);
    transition-timing-function: var(--timing-function);
    translate: var(--translateX) var(--translateY);
    scale: var(--scale);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    /* setting */
    /* effect */
    .ani {
        --delay: 0 !important;
    }
}
.ani[class*="fade"] {
    /* --scale: 0.95; */
    --opacity: 0;
    filter: blur(2px);
}
.ani[class*="show"] {
    --opacity: 1;
}
/* s : spped / d : delay / t : translate */
/* spped */
.ani[class*="-s0"] {
    --s-level: 0;
}
.ani[class*="-s05"] {
    --s-level: 0.5;
}
.ani[class*="-s1"] {
    --s-level: 1;
}
.ani[class*="-s2"] {
    --s-level: 2;
}
.ani[class*="-s3"] {
    --s-level: 3;
}
.ani[class*="-s4"] {
    --s-level: 4;
}
.ani[class*="-s5"] {
    --s-level: 5;
}
/* delay */
.ani[class*="-d0"] {
    --d-level: 0;
}
.ani[class*="-d05"] {
    --d-level: 0.5;
}
.ani[class*="-d1"] {
    --d-level: 1;
}
.ani[class*="-d2"] {
    --d-level: 1.25;
}
.ani[class*="-d3"] {
    --d-level: 1.5;
}
.ani[class*="-d4"] {
    --d-level: 1.75;
}
.ani[class*="-d5"] {
    --d-level: 2;
}
.ani[class*="-d6"] {
    --d-level: 2.25;
}
.ani[class*="-d7"] {
    --d-level: 2.5;
}
.ani[class*="-d8"] {
    --d-level: 2.75;
}
.ani[class*="-d9"] {
    --d-level: 3;
    /* translate */
}
.ani[class*="-t0"] {
    --t-level: 0;
}
.ani[class*="-t05"] {
    --t-level: 0.5;
}
.ani[class*="-t1"] {
    --t-level: 1;
}
.ani[class*="-t2"] {
    --t-level: 2;
}
.ani[class*="-t3"] {
    --t-level: 3;
}
.ani[class*="-t4"] {
    --t-level: 4;
}
.ani[class*="-t5"] {
    --t-level: 5;
}
.ani[class*="-tx2"] {
    --t-level: 20;
}
.ani[class*="-tx3"] {
    --t-level: 30;
}
/* timing-function */
.ani[class*="-ease"] {
    --timing-function: ease;
}
.ani[class*="-ease-in"] {
    --timing-function: ease-in;
}
.ani[class*="-ease-out"] {
    --timing-function: ease-out;
}
.ani[class*="-ease-in-out"] {
    --timing-function: ease-in-out;
}
.ani[class*="-linear"] {
    --timing-function: linear;
}
/* extension */
/* 아래 -> 위 */
.ani[class*="-upper"] {
    --translateX: 0;
    --translateY: var(--translate);
}
/* 위 -> 아래 */
.ani[class*="-under"] {
    --translateX: 0;
    --translateY: calc(var(--translate) * -1);
}
/* 좌측 -> 우측 */
.ani[class*="-left"] {
    --translateX: calc(var(--translate) * -1);
    --translateY: 0;
}
/* 우측 -> 좌측 */
.ani[class*="-right"] {
    --translateX: var(--translate);
    --translateY: 0;
}
/* 크기 */
/* 증가 */
.ani[class*="-scale"][class*="-up"] {
    --scale: 0.5;
}
/* 감소 */
.ani[class*="-scale"][class*="-down"] {
    --scale: 1.5;
}
/* animation */
.ani.custom {
    --opacity-0: 0;
    --opacity-100: 1;
    --transform-0: translate(0, 0);
    --transform-100: translate(0, 0);
    --opacity: 0;
    animation: ani-custom var(--duration) var(--timing-function) var(--delay) forwards;
}
/* active */
.ani.active {
    opacity: 1;
}
.ani.active[class*="fade"] {
    --translate: 0;
    --scale: 1;
    --opacity: 1;
    filter: blur(0px);
}
.ani.active[class*="show"] {
    --translate: 0;
    --scale: 1;
}
/* keyframes animation */
@keyframes ani-custom {
    0% {
        opacity: var(--opacity-0);
        transform: var(--transform-0);
    }
    100% {
        opacity: var(--opacity-100);
        transform: var(--transform-100);
    }
}
/* -------------------------------------------------------- */
/* 250502 */
.step-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 767.98px) {
    .step-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575.98px) {
    .step-wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
}
.step-wrap .col {
    counter-increment: itemNum;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
}
.step-wrap .col h5 {
    border-top: 2px solid var(--page-point-color);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 800;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px 25px;
    background-color: #eee;
    color: var(--page-point-color);
}
.step-wrap .col h5::before {
    content: "STEP " counter(itemNum, decimal-leading-zero);
    font-size: 60%;
    color: #000;
}
.step-wrap .col ul.li-cir {
    flex: 1;
    padding: 20px 25px;
    border: 1px solid #eee;
}
.step-wrap .col ul.li-cir ul {
    margin-bottom: 5px;
}
