@charset "utf-8";

/* ==================[ Variable ]================== */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #1f609e;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #0836ac;
    --page-point-color-hover: var(--page-point-color-dark);
    --page-danger-color: #f34825;
    --page-danger-color-hover: #ce4825;
    --page-dark-color: #4f5356;
    --page-dark-color-hover: #333;
    --page-grey-color: #d5d5d5;
    --page-grey-color-hover: #c4c4c4;
    /* navbar */
    --navbar-height: clamp(70px, 10vw, 100px);
    /* container */
    --container-padding-inline: 15px;
    /* form */
    --form-height: 47px;
    /* snb */
    --snb-height: 60px;
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* 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 START ] */
#site > *:not(#force__wrapper) {
    visibility: hidden;
}

#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}

/* [ FOUC END ] */

/* [ RESET START ] */
* {
    box-sizing: border-box;
    word-break: keep-all;
    float: unset;
}
.TP_L_VI,
.TP_L_JA{
    *{
        word-break: break-all;
    }
}
: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);
}

@media (max-width: 767.98px) {
    #site {
        padding-top: var(--navbar-height);
    }
}

#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;
}

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

/* [ RESET END ] */

/* [ PARAGRAPH START ] */
: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;
}

:where(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    color: #333;
}

:where(p, li, dd, small) {
    color: #555;
}

:where(small, .small) {
    font-size: 0.8em;
}

br {
    visibility: visible;
    opacity: 0;
}

.big {
    font-size: 1.2em;
}

a:not(.btn) {
    text-decoration: none;
    color: inherit;
}

a:not(.btn):where(:focus, :hover) {
    text-decoration: unset;
    color: unset;
}

.text-danger {
    color: var(--page-danger-color);
}

/* [ PARAGRAPH END ] */

/* [ BUTTON START ] */
.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(13px, 5vw, 15px);
    line-height: 1;
    height: var(--form-height);
    padding: 0 1.2em;
    outline: none;
    border-radius: 3px;
}

.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);
}

/* [ BUTTON END ] */

/* [ IMAGE START ] */
/* image */
.img-box {
    position: relative;
    display: flex;
}

.img-responsive {
    display: block;
    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;
}

/* [ IMAGE END ] */

/* [ LAYOUT START ] */
:where(.container, .row) {
    position: relative;
}

.row {
    margin: 0;
}

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

.row:has(.col) {
    display: flex;
    gap: 30px;
}

.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;
}

:where([class*="hidden"]:not(.swiper)) {
    display: none;
}

:where([class*="visible"]) {
    display: none;
}

/* // 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;
    }
}

/* [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;
}

/* [ LAYOUT END ] */

/* [ MODAL START ] */
.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 .modal-dialog {
    transform: translate(0, 0);
    margin: 0;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    /* width: 100%; */
}

.modal .modal-title {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}

.modal.fade .modal-dialog {
    position: relative;
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
}

@media (min-width: 768px) {
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}

.modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
    border-radius: 0;
    border: 0;
}

@media (min-width: 768px) {
    .modal .modal-content {
        -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
    }
}

.modal .modal-footer {
    display: flex;
    gap: 5px;
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal .modal-footer .btn {
    flex: 1;
}

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

/* [ MODAL END ] */

/* [ TIMEPICKER START ] */
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

/* [ TIMEPICKER END ] */

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

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

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

/* [ IFRAME END ] */
/* ==================[ common ]================== */
/* 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;
    }
}

/* list-style */
:where(ol, ul)[class*="li-"] {
    display: flex;
    flex-direction: column;
}

:where(img) + :where(ol, ul)[class*="li-"] {
    margin-top: 20px;
}

:where(ol, ul)[class*="li-"] > li {
    position: relative;
    padding-left: 0.8em;
}

.li-check > li {
    position: relative;
    padding-left: 1.3em;
    font-size: 15px;
}

:where(ol, ul)[class*="li-"] small {
    font-size: 0.85em;
}

/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
    background-color: #333;
}

/* dash */
.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}
    #site .navbar.navbar-inverse .li-lang {
        display: flex;
        align-items: center;
        margin-right: -5px;
        border-radius: 3px;
        position: relative;

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0px;
            padding: 5px 10px 5px 13px;
            border-radius: 9999px;
            border: 1px solid var(--navbar-scroll-color);
            color: var(--navbar-scroll-color);
            font-size: 13px;
            font-weight: 600;

            i{
                all:unset;
            }

            &::after {
                all: unset;
                box-sizing: border-box;
                content: "\e5cf";
                font-family: var(--gms);
                line-height: 1;
                margin-left: 3px;
                font-size: 1.3em;
            }
            & p {
                display: flex;
                align-items: center;
                gap: 7px;
            }
        }
        .dropdown-menu {
            display: none !important;
        }
        &.open {
            .dropdown-toggle::after {
                content: "\e5ce";
            }
            .dropdown-menu {
                display: flex !important;
                height: auto !important;
                position: absolute;
                top: 100%;
                flex-direction: column;
                gap: 0;
                min-width: auto;
                left: 50%;
                opacity: 1;
                background-color: #fff;
                transform: translateX(-50%);
                padding: 5px 17px;
                border: 0;
                margin-top: 10px;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
                
                
                
                
                
                
                
                
                
                
                
                
                
                

                /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
                @media (max-width: 767.98px) {
                    & {
                        margin-top: 0;
                    }
                }
            }
        }
        .lang-change-btn {
            all: unset;
            box-sizing: border-box;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 300;
            padding: 10px 0;

            &.active + & {
                border-top: 0;
            }
            & + & {
                border-top: 1px solid #ccc;
            }
        }
        button[disabled] {
            /* display: none; */
            pointer-events: none;
            opacity: 0.5;
        }
    }

@media (max-width: 767.98px) {
    .nav-top{
        position: absolute;
        right: 50px;
    }
}
/* ==================[ navbar ]================== */
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(20px, 2vw, 35px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(15px, 2vw, 18px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(14px, 2vw, 16px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(70px, 15vw, 100px);
    --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: 0px solid #ddd;
}

.navbar .container {
    display: flex;
    /* justify-content: space-between; */
    height: 100%;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
}

/* 로고 */
.navbar .navbar-brand,
.navbar .navbar-brand:is(:hover, :focus) {
    display: block;
    width: var(--navbar-logo-width);
    margin-left: 0;
}

.navbar .navbar-brand img {
    width: var(--navbar-logo-width);
    margin-top: 2px;
}

/* 텍스트 로고 */
.navbar .navbar-brand span {
    position: relative;
    display: block;
    font-size: var(--navbar-logo-font-size);
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

/* 메인메뉴 */
.navbar .navbar-right > li > a {
    z-index: 100;
    font-size: var(--navbar-menu-font-size);
    color: #000;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.navbar .navbar-right :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 .navbar-right :is(.dropdown-menu) {
    z-index: 50;
    background-color: #fff;
    /* border: 1px solid #41a9e8; */
    /* margin-top: -10px; */
}

.navbar .navbar-right :is(.dropdown-menu) a {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: #333;
    width: 100%;
}

.navbar .navbar-right :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: var(--page-point-color);
    text-decoration: underline;
}

.navbar #gnbauth i {
    display: none;
}

/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (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;
        margin-left: auto;
    }

    .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); */
    }

    .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
        margin-right: calc(var(--navbar-menu-padding-inline) * -1);
    }

    /* 데스크탑 서브 드롭다운메뉴 */
    .navbar .dropdown-menu {
        all: unset;
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        /* border-radius: 6px; */
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
        margin-top: 0px;
        padding: 25px;
        min-width: 200px;
        gap: 15px;
        opacity: 0;
        transform-origin: center top;
        text-align: center;
        border: 1px solid #41a9e8;
        margin-top: -10px;
        width: 120px;
    }

    .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 .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 0 0 2px;
        letter-spacing: -0.04em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        font-weight: 400;
    }

    /* [  navbar-custom-scorll-change  ] */
    /* [  navbar-custom-scorll-change  ] */
    .navbar:is(.top) {
        --navbar-scroll-filter: grayscale(1) brightness(10) invert(0);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 600;
        --navbar-scroll-background-color: transparent;
        background-color: var(--navbar-scroll-background-color);
        border-color: rgba(255, 255, 255, 0);
    }

    .navbar:not(.scroll) {
        background-color: var(--navbar-scroll-background-color);
    }

    .navbar:is(:hover, .scroll) {
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #111;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 500;
        --navbar-scroll-background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    }

    .navbar:where(.top, .scroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }

    .navbar:where(.top, .scroll) .navbar-brand img {
        transition: width 0.25s;
        filter: var(--navbar-scroll-filter);
    }

    .navbar:where(.top, .scroll) .navbar-brand span {
        color: var(--navbar-scroll-color);
    }

    .navbar:where(.top, .scroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }

    .navbar:where(.top, .scroll) ul.navbar-right > li > a:where(:hover, :focus),
    .navbar:where(.top, .scroll) 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: #232323;
    /* left logo */
    color: #fff;
}

footer img {
    opacity: 0.95;
    /* margin-right: 30px; */
    /* text */
    filter: grayscale(1) invert(1);
}

footer li {
    font-size: clamp(13px, 2vw, 15px);
    color: #aaa;
    line-height: 1.7;
}

footer li.corp {
    margin-bottom: 5px;
}

footer li.corp strong {
    color: #cacaca;
    font-weight: 500;
    font-size: 16px;
}

footer li.copyright {
    margin-top: 10px;
    color: #666;
    font-size: 13px;
    line-height: 1;
}

footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 0 15px;
}

footer .footer-logo {
    flex-shrink: 0;
    width: 120px;
}

footer .footer-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 55px 0 50px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    footer .footer-wrap {
        flex-direction: column;
        gap: 20px;
    }
}

/* 로그인 버튼 */
#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: #7d7d7d;
    line-height: 1;
    border-radius: 0;
    border: none;
    border-radius: 0;
    font-size: clamp(11px, 2vw, 12px);
    background: rgba(255, 255, 255, 0.07);
}

html.logined #loginBtn a[href="/member/login"] {
    display: none;
}

html:not(.logined) #loginBtn a[href="/member/logout"] {
    display: none;
}

#loginBtn a:hover {
    background: #333;
    color: #fff;
    border-color: var(--backgorund-color);
}

#loginBtn a span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-500-out);
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    #loginBtn a {
        margin-left: inherit;
    }
}

/* 스크롤버튼 */
#scrollTop {
    --width: 40px;
    --bottom: 25px;
    all: unset;
    box-sizing: border-box;
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    right: 25px;
    bottom: var(--bottom);
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--width);
    padding: 0;
    background: var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    text-align: center;
    color: #fff;
}

#scrollTop::before {
    content: "\e5d8";
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 1.75rem;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    #scrollTop {
        display: none;
    }
}

/* ==================[ subpage ]================== */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top01.jpg);
    position: relative;
    height: clamp(200px, 40vw, 450px);
    background-color: #888;
}

.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.7);
}

.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* padding-top: calc(var(--navbar-height) + 10px); */
}

.subpage-title h2 {
    line-height: 1;
    font-weight: 700;
    color: #fff;
    /* margin-bottom: 100px; */
    font-size: clamp(38px, 8vw, 60px);
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .subpage-title {
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .subpage-title h2 {
        margin-top: 0;
    }
}

/* [ subpage-navbar ] */
.snb {
    position: relative;
    z-index: 10;
    /* background: linear-gradient(90deg, rgba(0, 51, 98, 0.65), rgba(44, 96, 173, 0.6), rgba(0, 116, 114, 0.6)); */
    background: linear-gradient(90deg, rgba(0, 51, 98, 0.65), rgba(44, 96, 173, 0.6), rgba(0, 116, 114, 0.6));
    margin-top: -60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
    gap: 70px;
}
:not(.TP_L_KO) .snb ul{
    gap: 30px;
    margin-inline: -50px;
}
.snb li {
    /* flex: 0 1 25%; */
    /* flex: 1; */
}

.snb a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    height: var(--snb-height);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.034em;
}

.snb li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 16px;
    display: block;
    width: 0;
    height: 1px;
    background: #58afe4;
    transition: all 0.3s;
    opacity: 0;
}

.snb li.active a {
    font-weight: 500;
    color: #fff;
}

.snb li a:hover::after,
.snb li.active a::after {
    width: 100%;
    opacity: 1;
}

.snb li a:hover {
    color: #fff;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .snb {
        display: none;
    }
}

/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
.subpage [class*="title-h"] {
    --h-line-height: 1.5;
    --h-letter-spacing: -0.03em;
    --p-font-weight: 400;
    --p-color: #606060;
    --p-line-height: 1.6;
}

.subpage [class*="title-h"] a {
    color: #337ab7;
}

.subpage [class*="title-h"] a:hover {
    text-decoration: underline;
    color: #1b5c94;
}

.subpage [class*="title-h"]:only-child {
    margin-bottom: 0;
}

.subpage [class*="title-h"] p.big {
    font-size: 22px;
}

.subpage [class*="title-h"] span.color {
    font-weight: 600;
    color: #000;
}

/* title이 아닌 element + title */
.subpage *:not([class*="title-h"]) + [class*="title-h"] {
    margin-top: var(--title-between);
}

/* 제목 */
.subpage [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);
}

/* 본문 */
.subpage [class*="title-h"] > :is(p, ul, ol) {
    font-size: var(--p-font-size);
    font-weight: var(--p-font-weight);
    color: var(--p-color);
    line-height: var(--p-line-height);
    letter-spacing: -0.015em;
}

/* 제목+본문 간격 */
.subpage [class*="title-h"] > :is(h2, h3, h4, h5, h6) + * {
    margin-top: var(--text-between);
}

/* 본문+본문 간격 */
.subpage [class*="title-h"] > *:not(:is(h2, h3, h4, h5, h6)) + * {
    margin-top: calc(var(--text-between) + 10px);
}

.subpage .title-h3 {
    position: relative;
    --h-font-size: clamp(30px, 5vw, 42px);
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: 22px;
    --text-between: 10px;
    margin-bottom: clamp(50px, 10vw, 80px);
    text-align: center;
}

.subpage .title-h4 {
    --h-font-size: clamp(24px, 3vw, 36px);
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: 15px;
    --text-between: 15px;
    --title-between: 80px;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    /* padding-left: 20px; */
    /* text-align: center; */
    position: relative;
}

.subpage .title-h4:has(p) {
    margin-bottom: 30px;
}

.subpage .title-h4 li + li {
    margin-top: 5px;
}

.subpage .title-h4 + .title-h4 {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.subpage .title-h4 b {
    font-weight: 500;
}

.subpage .title-h4 p:only-child {
    font-size: 16px;
    font-weight: 450;
}

.subpage .title-h4 :is(img, img + p) {
    margin-top: 30px;
}

.subpage .title-h5 {
    --h-font-size: 20px;
    --h-font-weight: 600;
    --h-color: #000;
    --p-font-size: 15px;
    --text-between: 8px;
    --title-between: 50px;
    margin-bottom: 15px;
}

.subpage .title-h5 + .title-h5 {
    margin-top: 28px;
}

.subpage .title-h5:has(p, ul) {
    margin-bottom: 15px;
}

.subpage :where(img, [class*="-wrap"]) + :where(img, [class*="-wrap"]) {
    margin-top: 50px;
}

.box-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 2px solid #222;
}

.box-wrap .col {
    padding-block: 40px;
    padding-inline: 20px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
    border-bottom: 1px solid #ccc;
}

.box-wrap .col li {
    font-size: 16px;
}

.box-wrap .col li + li {
    margin-top: 5px;
}

/* [ subpage-content ] */
.subpage {
    overflow: hidden;
    position: relative;
}

.subpage section {
    padding: 100px 0 160px;
    min-height: 300px;
}

@media (max-width: 767.98px) {
    .subpage section {
        padding: 60px 0 80px;
    }
}

.subpage section + section {
    padding-top: 120px;
}

.subpage section:nth-child(even) {
    padding-top: 0;
    /* background-color: #f7f7f7; */
}

.subpage [class*="-wrap"] + [class*="-wrap"] {
    margin-top: clamp(40px, 5vw, 70px);
}

/* layout */
.row-wrap {
    display: flex;
    gap: 30px;
}

#pd06 .img-wrap img {
    margin: 0 auto;
}

#pd06 .img-wrap .col {
}

#pd06 .img-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
}

#pd06 .img-wrap p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 11px;
}

#pd06 .img-wrap ul {
}

#pd06 .img-wrap ul li {
    display: flex;
    font-size: 15px;
    color: #222;
}

#pd06 .img-wrap ul li span {
    display: block;
    white-space: nowrap;
    font-weight: 600;
    margin-right: 4px;
}

.img-wrap {
    display: flex;
    gap: 30px;
}

.img-wrap img {
    border-radius: 15px;
}

#pd06 .iw-info {
    padding: 20px;
    background: #f2f2f2;
    border-radius: 15px;
    margin-top: 20px;
    min-height: 210px;
}
#pd07 .img-box {
    margin-top: 30px;
}
#pd07 .img-box img {
    margin: 0 auto;
}
#pd07 .pd-wrap .thumb img {
    height: 235px;
}
@media (max-width: 767.98px) {
    .img-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    #pd06 .img-wrap {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    #pd06 .iw-info {
        min-height: unset;
    }
}

/* greet */
.estb-wrap {
    display: flex;
    gap: 90px;
}

.estb-wrap .img-box {
    border-radius: 15px;
    /* width: 100%; */
    overflow: hidden;
    /* max-width: 410px; */
    background-color: #f7f7f7;
}

.estb-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.estb-wrap .info {
    border-top: 1px solid #222;
}

.estb-wrap dl {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
    font-size: clamp(15px, 2vw, 18px);
    padding-block: 15px;
    border-bottom: 1px solid #ccc;
}

.estb-wrap dt {
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .estb-wrap {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .estb-wrap dl {
        grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    }
}

.vision-wrap {
    display: flex;
    gap: 100px;
}

.vision-wrap .title {
}

.vision-wrap .img-box {
    flex: 2 1 0;
}

.vision-wrap h5 {
    font-size: clamp(32px, 3vw, 39px);
    margin-block: 20px;
    color: var(--page-point-color);
    font-weight: 800;
}

.vision-wrap p {
    font-size: clamp(16px, 2vw, 19px);
}

@media (max-width: 767.98px) {
    .vision-wrap {
        flex-direction: column;
    }
}

/* History */
.history-wrap {
    --cir-width: 21px;
    --position-x: calc(var(--cir-width) * -1);
    --border-width: 2px;
    --marker-padding: 15px;
    position: relative;
    flex-direction: column;
}

.history-wrap::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    position: absolute;
    background-color: #ccc;
}

.history-wrap > div {
    flex: 0 1 auto;
}

.history-wrap > div.img-box {
    padding-left: 70px;
    padding-bottom: 100px;
    gap: 10px;
}

.history-wrap > div.img-box img {
    flex: 0 1 auto;
    border-radius: 10px;
}

.history-wrap .col h5 {
    position: static;
    line-height: 1;
    color: var(--page-point-color);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 50px);
    letter-spacing: -0.034em;
}

.history-wrap .col h5::before {
    content: "";
    position: absolute;
    top: 8px;
    left: calc(var(--position-x) / 2);
    display: block;
    box-sizing: border-box;
    background: #44a8d3;
    border: 5px solid #fff;
    width: var(--cir-width);
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0.2rem 0.2rem 0.7rem 1px rgba(0, 0, 0, 0.15);
}

.history-wrap .col {
    position: relative;
    padding-left: 100px;
    padding-bottom: 55px;
    text-align: left;
}

.history-wrap .col h5 + ul {
    margin-top: 20px;
}

.history-wrap .col li {
    position: relative;
    display: flex;
    gap: 10px;
    padding-left: var(--marker-padding);
    font-size: clamp(16px, 2vw, 18px);
}

.history-wrap .col li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 2px;
    display: block;
    background-color: #333;
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.history-wrap .col li + li {
    margin-top: 5px;
}

/* history-wrap left */
@media (width >=767px) {
    .history-wrap::before {
        content: "";
        display: block;
        width: 3px;
        height: 100%;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background-color: #ddd;
    }

    .history-wrap .col {
        width: 50%;
    }

    .history-wrap .col:nth-child(odd) h5::before {
        right: calc(var(--position-x) / 2);
        left: inherit;
    }

    .history-wrap .img-box:nth-child(odd) {
        justify-content: flex-end;
    }

    .history-wrap .col:nth-child(odd) {
        margin-right: auto;
        text-align: right;
        padding-left: 0;
        padding-right: 100px;
    }

    .history-wrap .col:nth-child(odd) li {
        flex-direction: row-reverse;
        padding-right: var(--marker-padding);
        padding-left: 0;
    }

    .history-wrap .col:nth-child(odd) li::before {
        right: 0;
        left: inherit;
    }

    .history-wrap .col:nth-child(even) {
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .history-wrap {
        margin-left: 10px;
    }

    .history-wrap .col {
        padding-left: 40px;
        margin: 0;
    }

    .history-wrap .col li {
        word-break: break-all;
    }
}

/* certification */
.cert-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 30px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .cert-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }
}

/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .cert-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .cert-wrap .img-box {
        padding: 10px;
    }
}

.cert-wrap p {
    color: #666;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cert-wrap .img-box {
    border: 1px solid #ddd;
    padding: 15px;
}

.branch-wrap .col {
}

.branch-wrap .col + .col {
    margin-top: 80px;
}

.branch-wrap .col * {
    flex: 1;
}

.branch-wrap .map-box {
    aspect-ratio: 5/2.2;
    background-color: #ccc;
    overflow: hidden;
}

.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(24px, 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: #4ca1bc;
}

.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: 16px;
    margin-bottom: 4px;
    color: #333;
    line-height: 1;
}

.branch-wrap .spec dd {
    font-size: clamp(16px, 2vw, 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 {
        display: flex;
        flex-direction: column;
        /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
        /* gap: 15px; */
        padding-bottom: 10px;
        gap: 0;
    }

    .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%;
    }

    .branch-wrap .link-btn {
        width: 100%;
        margin-top: 30px;
        position: static;
    }

    .branch-wrap p.addr {
        align-items: flex-start;
        font-size: 16px;
    }

    #site .branch-wrap .spec dl {
        border: 0;
        width: 100%;
        padding: 20px;
        /* font-size: 16px; */
    }

    .branch-wrap .map-box {
        aspect-ratio: 1;
    }
}

.subpage .title-h4 + .pd-wrap {
    /* margin-top: 60px; */
}

.pd-wrap .col + .col {
    margin-top: 50px;
}

.pd-wrap .col {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 80px;
    background: #f6f6f6;
    padding: 30px 60px 30px 30px;
    border-radius: 30px;
}

.pd-wrap .col > * {
    flex: 1;
}

.pd-wrap .thumb {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
}

section:nth-child(even) .pd-wrap .thumb {
    /* background-color: #fff; */
}

.pd-wrap .thumb:only-child {
    grid-column: span 12;
    justify-self: center;
    max-width: 500px;
    width: 100%;
    padding: 0;
}

.pd-wrap .thumb img {
    object-fit: contain;
    margin: 0;
    width: 100%;
    height: 200px;
    /* height: 100%; */
    mix-blend-mode: multiply;
}

#pd01 .img-box {
    height: 400px;
}

#pd01 .img-box img {
    border-radius: 20px;
}

#pd05 .pd-wrap .thumb {
    padding: 0;
    box-shadow: 5px 5px 28px -12px rgba(0, 0, 0, 0.25);
}

#pd06 .pd-wrap h5 {
    font-size: 25px;
}

.pd-wrap .thumb img:only-child {
    height: 300px;
}

.pd-wrap .thumb:only-child img {
    height: 100%;
    object-fit: cover;
}

.pd-wrap .info {
    padding: 40px 0px 20px;
    /* background-color: #f7f7f7; */
    /* border-radius: 20px; */
}

.pd-wrap h5 {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: clamp(15px, 5vw, 30px);
    letter-spacing: -0.034em;
}

.pd-wrap p {
    font-size: clamp(15px, 2vw, 16px);
    margin-top: -10px;
    margin-bottom: 30px;
}

.pd-wrap h6 {
    font-size: clamp(16px, 2vw, 17px);
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.034em;
}

.pd-wrap ul + h6 {
    margin-top: 30px;
}

.pd-wrap ul {
    gap: 5px;
}

.pd-wrap li {
    font-size: clamp(14px, 2vw, 15px);
    color: #222;
}

.pd-wrap li > ul {
    gap: 0px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.pd-wrap li > ul > li {
    font-size: 15px;
}

.pd-wrap .btn {
    display: flex;
    border: 1px solid #222;
    width: 150px;
    margin-top: 40px;
    /* margin-left: auto; */
    transition: 0.15s;
}
.TP_L_VI .pd-wrap .btn {
    width: 250px;
}
.pd-wrap .btn:hover {
    background-color: var(--page-point-color);
    color: #fff;
    /* box-shadow: 5px 5px 20px 10px rgba(0, 0, 0, 0.15); */
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .pd-wrap .col {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 40px;
    }

    .pd-wrap .info {
        padding-top: 0;
    }

    .pd-wrap .thumb {
        padding: 20px;
    }

    .pd-wrap .btn {
        width: 100%;
    }

    .pd-wrap .thumb img:only-child {
        height: unset;
    }
}

/* map */
.map-wrap iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
}

.map-wrap .info {
    display: flex;
    margin-top: 30px;
    gap: 25px;
}

.map-wrap .tel {
    margin-left: auto;
}

.map-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
    color: #333;
}

.map-wrap li.addr {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.map-wrap li span.material-symbols-outlined {
    font-size: 14px;
    font-variation-settings: var(--gms-700-out), var(--gms-grad-zero);
    color: #fff;
    background: var(--page-point-color);
    border-radius: 50%;
    padding: 7px;
}

/* partnership */
.partner-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-wrap .col {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    margin-left: -1px;
    margin-top: -1px;
    padding: 0 40px;
}

/* process */
.process-wrap {
    display: flex;
    gap: 1px;
}

.process-wrap .arrow {
    flex: 0;
    align-self: center;
}

.process-wrap .arrow::before {
    content: "\e5cc";
    display: block;
    font-family: var(--gms);
    font-size: 54px;
    font-variation-settings: var(--gms-600-out);
    color: #333;
}

.step-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    gap: 100px;
}

.step-wrap .info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid #222;
}

.step-wrap .item {
    counter-increment: itemNum;
}

.step-wrap .item span.num:before {
    content: " " counter(itemNum, decimal-leading-zero);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background: linear-gradient(90deg, rgba(0, 51, 98, 1), rgba(44, 96, 173, 1), rgba(0, 116, 114, 1)); */
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 20px;
    background: #84abbe;
    border-radius: 50%;
    padding: 9px;
    font-weight: 300;
    width: 30px;
    height: 30px;
}

.step-wrap .item {
    display: grid;
    grid-template-columns: minmax(0, 70px) minmax(0, min-content) minmax(0, 100px) minmax(0, auto);
    align-items: center;
    font-size: 17px;
    padding-block: 22px;
    gap: 10px;
    border-bottom: 1px solid #ccc;
}

.step-wrap .item span.num {
    font-size: 14px;
    font-weight: 700;
}

.step-wrap .item span.material-symbols-outlined {
    font-size: 36px;
    text-align: center;
    color: #444;
}

.step-wrap .item h5 {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.034em;
}

@media (max-width: 991.98px) {
    .step-wrap {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .step-wrap {
        gap: 40px;
    }

    .step-wrap .item {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 15px;
        padding: 30px;
    }
}

/* ==================[ mainpage ]================== */
/* [ main-content ] */
.mainpage {
    overflow: hidden;
    position: relative;
}

.mainpage :is(.bg) {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #b44a4a;
    filter: brightness(0.8);
}

.mainpage section {
    position: relative;
    padding-block: 120px 170px;
}

.main-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: max(clamp(600px, 70vw, 750px), calc(var(--svh100)));
}

@media (max-width: 767.98px) {
    .main-video {
        aspect-ratio: 1;
        height: auto;
    }
}

.main-video video {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #000;
    filter: brightness(0.8);
}

.main-video .video-caption {
    text-align: center;
    color: #fff;
}

.main-video .video-caption h1 {
    position: relative;
    font-size: clamp(26px, 5vw, 60px);
    line-height: 1.38;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 25px 0 0;
    color: inherit;
    text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.6);
    animation: m-vc 13s 0.5s ease-in forwards;
}

@keyframes m-vc {
    0% {
        opacity: 1;
        filter: blur(0px);
    }

    60% {
        opacity: 1;
        filter: blur(0px);
    }

    100% {
        opacity: 0;
        filter: blur(5px);
    }
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .mainpage section {
        padding-block: 60px 80px !important;
    }
}

.mainpage section.main-product::before {
    content: "";
    width: 100%;
    height: 55%;
    position: absolute;
    left: 0;
    top: 0;
    /* background-image: linear-gradient(65deg, #153667, #2c60ad, #1a3a6b); */
    /* background: url("/public/img/main/m-pd-bg.png") no-repeat center / cover; */
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .mainpage section.main-product::before {
        height: 100%;
    }
}

.mainpage .title-h3 {
    text-align: center;
    margin-bottom: 60px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .mainpage .title-h3 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
        margin-bottom: 40px;
    }
}

.mainpage .title-h3 h3 {
    font-size: clamp(30px, 7vw, 45px);
    font-weight: 700;
    letter-spacing: -0.03em;
}
:not(.TP_L_KO) .mainpage .title-h3 h3{
        font-size: clamp(26px, 7vw, 38px);
}
.mainpage .main-contact .title-h3 h3 {
    text-align: left;
}

.mainpage .title-h3 p {
    font-size: clamp(16px, 3vw, 18px);
    letter-spacing: -0.034em;
    text-align: left;
    margin-top: clamp(10px, 3vw, 20px);
    word-break: keep-all;
}

.main-product {
    background: url("/public/img/main/m_bg1.jpg") no-repeat top / cover;
}

.product-wrap {
    display: flex;
    gap: 15px;
    margin-inline: -100px;
}

.product-wrap .col {
    flex: 1;
}

.product-wrap .img-box {
    aspect-ratio: 1;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 10px 10px 20px -2px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.product-wrap .img-box::after {
    content: "\e147";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(30 30 30 / 55%);
    transition: all 0.35s;
    font-family: var(--gms);
    font-variation-settings: var(--gms-100-out);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(42px, 5vw, 64px);
    opacity: 0;
}

.product-wrap .img-box img {
    margin: 0 auto;
    object-fit: cover;
    transition: all 0.35s;
}

.product-wrap p {
    font-size: 20px;
    margin-top: 22px;
    font-weight: 600;
    text-align: center;
    color: #222;
    letter-spacing: -0.025em;
}

@media (hover: hover) {
    .product-wrap a:hover .img-box {
        border-color: #6092c1;
    }

    .product-wrap a:hover .img-box::after {
        opacity: 1;
    }

    .product-wrap a:hover img {
        transform: scale(1.15);
    }
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .product-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* flex-direction: column; */
        padding-inline: 15px;
        gap: 30px 15px;
        margin: 0;
    }

    .product-wrap p {
        /* color: #fff; */
        font-size: 15px;
        margin-top: 10px;
    }
}

/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .product-wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .product-wrap p {
        font-size: 18px;
    }
}

.mainpage section.main-contact {
    padding-block: 140px;
    background: linear-gradient(135deg, #00519c, #2c60ad, #007472);
    background: url("/public/img/main/m_bg2.jpg") no-repeat bottom / cover;
}

.main-contact .container {
    display: flex;
}

@media (max-width: 767.98px) {
    .main-contact .container {
        flex-direction: column;
    }
}

.main-contact .title-h3 {
    margin-right: 100px;
}

#site #main_wrapper .m-form-wrap {
    box-shadow: 10px 10px 40px rgba(145, 169, 211, 0.35);
    padding: clamp(25px, 5vw, 50px) clamp(25px, 4vw, 50px);
    background: #fff;
    border-radius: clamp(10px, 3vw, 20px);
    /* max-width: 1000px; */
    width: 100%;
    margin-inline: auto;
    max-width: 900px;
}

#site #main_wrapper #frm_wrapper_cs01 {
    margin-bottom: 0;
}

#site #main_wrapper .m-form-wrap #form_cs01 {
    position: relative;
}

#site #main_wrapper .m-form-wrap .page-header {
    display: none;
}

#site #main_wrapper .m-form-wrap tbody {
    /* display: grid; */
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#site #main_wrapper .m-form-wrap .form-control {
    /* border-radius: 25px; */
    height: clamp(48px, 5vw, 52px);
    width: 100%;
    padding: 0.5rem 1.2rem;
    font-size: clamp(15px, 3vw, 16px);
    color: #000;
    background-color: #f3f3f3;
    border-radius: 5px;
    border: 1px solid #f3f3f3;
}

#site #main_wrapper .m-form-wrap .form-control::placeholder {
    color: #aaa;
}

#site #main_wrapper .m-form-wrap .form-control:focus {
    border-color: var(--page-point-color);
}

#site #main_wrapper .m-form-wrap textarea.form-control {
    border-bottom-right-radius: 0;
    padding-block: 12px;
}

#site #main_wrapper .m-form-wrap :is(#item_2) {
    grid-column: span 3;
}
#site #main_wrapper .m-form-wrap :is(#item_agree) {
    grid-column: span 2;
}
#site #main_wrapper .m-form-wrap tbody {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    gap: clamp(15px, 5vw, 40px) 20px;
}

#site #main_wrapper .m-form-wrap tbody tr {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 0;
    gap: 10px;
}

#site #main_wrapper .m-form-wrap #item_captcha img {
    height: clamp(48px, 10vw, 52px);
    border-color: #ccc !important;
}

#site #main_wrapper .m-form-wrap #item_captcha input {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#site #main_wrapper .m-form-wrap th {
    font-size: clamp(15px, 3vw, 17px);
    font-weight: 600;
    letter-spacing: -0.035em;
    gap: 5px;
}

#site #main_wrapper .m-form-wrap :where(th, td) {
    width: 100%;
}

#site #main_wrapper .m-form-wrap .form-caption {
    display: none;
}

#site #main_wrapper .m-form-wrap .text-center {
    /* justify-content: flex-end; */
    /* margin-top: clamp(20px, 5vw, 50px); */
    position: absolute;
    right: 0;
    bottom: 0;
}

#site #main_wrapper .m-form-wrap .text-muted {
    display: none;
}

#site #main_wrapper .m-form-wrap th > span.required_text {
    color: #dd3636;
}

#site #main_wrapper .m-form-wrap .btn.btn-lg {
    min-width: 165px;
}

#site #main_wrapper .m-form-wrap #item_1 {
    grid-column: span 3;
}

#site #main_wrapper .m-form-wrap #item_agree .checkbox {
    padding-left: 15px;
}

@media (max-width: 767.98px) {
    .main-contact .title-h3 {
        text-align: center;
        /* margin: 0; */
        margin-right: 0;
    }

    #site .main-contact .title-h3 :is(h3, p) {
        text-align: center;
    }

    #site #main_wrapper .m-form-wrap #item_agree .checkbox {
        margin: 0;
        padding: 0;
    }

    #site #main_wrapper .m-form-wrap {
        padding-block: 30px;
    }

    #site #main_wrapper .m-form-wrap tbody {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    #site #main_wrapper .m-form-wrap .text-center {
        position: static;
        margin-bottom: 0;
    }
}

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

.page-header {
    margin-block: 0 30px;
    border-bottom: 1px solid #000;
}

.page-header h4 {
    display: inline-block;
    font-size: clamp(18px, 3vw, 22px);
}

.page-header i::before {
    position: relative;
    display: block;
    content: "\e145";
    translate: 0 2px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 500;
    color: #000;
}

.type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.type_list li {
    padding: 0;
    display: flex;
}

.type_list a:hover {
    text-decoration: underline;
}

.type_list :where(li, a) {
    line-height: 1;
    font-size: clamp(14px, 3vw, 16px);
    color: #000;
}

.type_list .info span:not(.regdate) {
    display: none;
}

.type_thumb {
    display: grid;
    grid-template-columns: repeat(2, minmax(1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}

.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.6666666667;
    height: auto;
}

.type_thumb .bottom {
    padding: 0;
}

.type_thumb .info {
    display: none;
}

.type_thumb .bottom .title {
    padding: 0;
    margin-top: 5px;
}

.type_thumb .bottom .title a {
    font-size: clamp(15px, 3vw, 17px);
}

/* 게시판 스와이퍼 */
.type_swiper_s1 {
    position: relative;
    padding-bottom: 50px;
}

.type_swiper_s1 .top {
    position: relative;
    display: block;
    aspect-ratio: 5/3;
    overflow: hidden;
}

.type_swiper_s1[data-board-option="goods"] .top {
    aspect-ratio: 1;
}

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

.type_swiper_s1 .bottom {
    padding-top: 15px;
}

.type_swiper_s1 .bottom .title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.type_swiper_s1 .bottom .title a {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.type_swiper_s1 .bottom .info {
    margin-top: 5px;
    display: flex;
    gap: 10px;
    opacity: 0.7;
    font-size: 12px;
}

.type_swiper_s1 .bottom[data-bottom="list"] {
    padding: 0;
}

.type_swiper_s1 .cate {
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
    align-items: center;
    width: fit-content;
    padding-inline: 5px;
    height: 20px;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
}

.type_swiper_s1 .swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    overflow: hidden;
    gap: 30px;
    pointer-events: none;
    user-select: none;
}

.type_swiper_s1 .swiper:not(.swiper-initialized) .swiper-slide {
    width: 300px;
    flex-shrink: 0;
}

.type_swiper_s1 .swiper:not(.swiper-initialized)::before {
    content: '게시판 위젯 [data-swiper-id="' var(--board-option) '"]에 Swiper가 적용되지 않았습니다.';
    z-index: 100;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}

.type_swiper_s1 [class*="swiper-button"] {
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    width: fit-content;
    height: 100%;
}

.type_swiper_s1 [class*="swiper-button"]::after {
    content: none;
}

.type_swiper_s1 [class*="swiper-button"]::before {
    position: relative;
    font-family: "Font Awesome 5 Free";
    right: auto;
    top: 0;
    width: auto;
    line-height: 1;
    font-size: 32px;
    font-weight: 900;
    color: var(--page-point-color);
    opacity: 0.5;
}

.type_swiper_s1 [class*="swiper-button"]:hover::before {
    opacity: 1;
}

.type_swiper_s1 [class*="swiper-button"].swiper-button-next {
    right: -50px;
}

.type_swiper_s1 [class*="swiper-button"].swiper-button-next::before {
    content: "\f054";
}

.type_swiper_s1 [class*="swiper-button"].swiper-button-prev {
    left: -50px;
}

.type_swiper_s1 [class*="swiper-button"].swiper-button-prev::before {
    content: "\f053";
}

.type_swiper_s1 .contents_preview {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding: 0 1px;
    height: 40px;
    margin-top: 5px;
}

/* [ main-popup ] */
#mainPopup {
    position: relative;
    top: calc(var(--navbar-height) - 140px);
}

.main_popup {
    display: none;
    position: absolute;
    top: 100px;
    min-width: 300px;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    margin-bottom: 30px;
    border: 0;
    border-radius: 0;
    background-color: transparent;
}

.main_popup.show {
    display: flex;
}

.main_popup button.close {
    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-100-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: 0px 7px 0px 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 35px;
    border-top: 1px solid #efefef;
    line-height: 1;
}

.main_popup_optional label {
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}

.main_popup_optional label span {
    padding-left: 3px;
    display: inline-block;
    vertical-align: 2px;
}

.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) {
    float: unset;
    line-height: 1;
}

.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 400;
}

.main_popup_optional label span.material-symbols-outlined {
    font-size: 1.25rem;
    margin-right: 2px;
    line-height: 0.8;
}

.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-style {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
    background-color: #fff;
    margin: 0;
}

.table-style :where(th, td) {
    padding: 15px 19px;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid var(--border-color);
}

.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;
    align-items: center;
    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: 10px 0 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: #1b54e4;
    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) {
    :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 0;
        margin-bottom: 0px;
        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;
    gap: 0 20px;
}

#bbsArea .category_wrap li {
    margin: 0;
}

#bbsArea .category_wrap a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}

#bbsArea .category_wrap a:hover {
    color: #111;
}

#bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}

/* 게시판 custom*/
#bbsArea :is([class*="wrap"]) {
    margin: 0;
}

/* 게시판 노출 */
#bbsArea {
    position: relative;
}

#bbsArea .board_data_view {
    border-top: 1px solid #333;
    border-bottom: 1px solid #aaa;
}

#bbsArea .write_btn_wrap {
    position: absolute;
    right: 0;
    bottom: 0;
}

#bbsArea .btn-lg {
    width: 160px;
}

#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}

#bbsArea .board_wrapper + :is(.search_wrap, .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;
        width: 100%;
    }

    #search_query.form-control {
        max-width: 100% !important;
    }

    #bbsArea .search_wrap #write_btn {
        width: 100%;
        min-width: auto;
    }
}

#bbsArea .badge {
    display: inline-flex;
    translate: 0 0px;
    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-block: 35px 35px;
    border-bottom: 1px solid #aaa;
}

#bbsArea .header_wrap h4.title {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.034em;
}

#bbsArea .header_wrap span {
    color: #666;
}

#bbsArea .header_wrap strong {
    color: #000;
    font-weight: 600;
}

#bbsArea .header_wrap .title {
    margin: 0;
    font-size: 24px;
}

#bbsArea .header_wrap .info {
    margin-top: 15px;
    opacity: 0.7;
}

#bbsArea .header_wrap .info span {
    font-size: 13px;
    color: #000;
}

#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 :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 .download_wrap {
    padding: 15px;
    border-top: 1px solid #ddd;
}

#bbsArea .download_wrap th {
    text-align: left;
    width: 70px;
}

#bbsArea .download_wrap ul {
    display: flex;
    gap: 5px 20px;
    flex-wrap: wrap;
}

#bbsArea .download_wrap a:hover {
    text-decoration: underline;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    #bbsArea .download_wrap ul {
        flex-direction: column;
    }

    #bbsArea .download_wrap tr {
        display: flex;
        flex-direction: column;
    }

    #bbsArea .download_wrap tr > * {
        width: 100%;
    }

    #bbsArea .download_wrap tr th {
        padding-bottom: 10px;
    }

    #bbsArea .download_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: 16px;
    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 {
}

#bbsArea #reply_list .media .media-body {
    position: static;
}

#bbsArea #reply_list .media .media-body .info {
    position: absolute;
    /* right: 0; */
    left: 130px;
    bottom: 15px;
}

#bbsArea #reply_list .media .media-body .info .btn {
    display: inline-block;
    font-weight: 500;
    /* padding: 0 5px; */
    line-height: 1;
    font-size: 12px;
    vertical-align: middle;
    color: #333;
    height: auto;
    max-width: unset;
}

#bbsArea #reply_list .media .media-body .info span {
    color: #aaa;
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}

#bbsArea #reply_list .media .media-heading .text-muted {
    color: #aaa;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 5px;
    margin-left: 0 !important;
}

#bbsArea #reply_list .media .media-body p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-all;
}

#bbsArea #reply_write .info .form-control {
    display: inline-block;
    width: 120px;
}

#bbsArea #reply_write .info .form-control + .form-control {
    margin-left: 2px;
}

#bbsArea #reply_write .contents {
    margin-top: 5px;
}

#bbsArea #reply_write .contents .form-control {
    height: 100px;
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
    padding: 10px 15px;
}

#bbsArea #reply_write .btn_wrap {
    margin-top: 5px;
    text-align: right;
}

#bbsArea #reply_write .btn_wrap .btn {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 539px) {
    #bbsArea #reply_write .info .form-control {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }

    #bbsArea #reply_write .info .form-control + .form-control {
        margin-left: 0;
    }
}

/* 게시글 작성 */
#bbsArea .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}

#bbsArea .table.board_write_table tbody th {
    background-color: transparent;
    font-weight: 600;
    padding-top: 10px;
}

#bbsArea .table.board_write_table tbody td {
    padding: 0px;
    border: 0;
}

#bbsArea .table.board_write_table .text-muted {
    margin-top: 8px;
}

#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;
}

/* 휴지통 버튼 */
#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 :where(th > span:first-child, span.required_text) {
    position: static;
    margin: -0.15em 3px 0 0;
    color: var(--page-point-color);
}

/* textarea 글자수 */
.frm_textarea_cnt {
    display: none !important;
}

/* [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 */
/* input */
.form-control {
    width: 100%;
    font-family: var(--page-font-family);
    padding: 0.6rem 0.85rem;
    font-size: 16px;
    height: var(--form-height);
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--page-grey-color);
    color: #333;
}

#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 + .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) {
    #site .form-control {
        width: 100%;
        max-width: unset;
    }
}

.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;
}

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

: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;
}

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

.custom_radio + span {
    user-select: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom_radio + span::before {
    margin: 0 0 1px 0;
    font-size: 1.3em;
    color: #555;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
}

.custom_radio:checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}

.custom_radio[disabled],
.custom_radio[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-list ] */
/* 게시판 리스트, 현황 */
:is(.board_list_list, .board_status_list) .table_default {
    border: 0;
    border-spacing: 0;
    border-top: 1px solid #333;
    margin-bottom: 0;
    width: 100%;
}

:is(.board_list_list, .board_status_list) .table_default :is(th, td) {
    padding: 17px 15px;
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #ddd;
}

:is(.board_list_list, .board_status_list) .table_default td {
    color: #777;
    text-align: center;
}

:is(.board_list_list, .board_status_list) .table_default td.text-center {
    display: table-cell;
    text-align: center;
}

:is(.board_list_list, .board_status_list) .table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    color: #222;
}

:is(.board_list_list, .board_status_list) .table_default tbody th.num {
    font-weight: normal;
}

:is(.board_list_list, .board_status_list) .table_default tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
}

:is(.board_list_list, .board_status_list) .table_default.table_responsive tbody th {
    margin-bottom: 0;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    :is(.board_list_list, .board_status_list) .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }

    :is(.board_list_list, .board_status_list) .table_default .subject {
        width: 100%;
    }

    :is(.board_list_list, .board_status_list) .table_default .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);
}

#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: 5/3;
    object-fit: cover;
    width: 100%;
    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) .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;
}

:is(.board_wrapper form[id*="form"] table.table, .board_wrapper form[id*="form"] :where(th, td)) {
    border: 0;
    line-height: 1;
}

.board_wrapper form[id*="form"] table.table {
    width: 100%;
    display: flex;
    border-top: 0;
}

.board_wrapper form[id*="form"] table.table th {
    padding: 0;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    width: auto;
    border-top: 0;
}

.board_wrapper form[id*="form"] table.table :is(th, td) {
    font-size: 16px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    .board_wrapper form[id*="form"] table.table th {
        margin-bottom: 15px;
    }
}

.board_wrapper form[id*="form"] table.table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    /* gap: 25px; */
}

.board_wrapper form[id*="form"] table.table tbody tr {
    /* display: flex; */
    /* flex-direction: column; */
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: stretch;
    gap: 8px;
    padding: 15px 10px;
    border-bottom: 1px solid #ccc;
    min-height: 70px;
}

.board_wrapper form[id*="form"] #item_agree .checkbox {
    margin-top: 10px;
}

/* 동의 */
.board_wrapper form[id*="form"] #item_agree label,
.board_wrapper form[id*="form"] #item_email .text-muted {
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: -0.02em;
}

/* 주문내역 숨김 */
:where(.form-wrap, form) #list_btn {
    display: none;
}

.img-box + .form-wrap {
    margin-top: 50px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #site .board_wrapper form[id*="form"] table.table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0 !important;
    }
}

/* ==================[ member ]================== */
:is(.find_container, .login_container) .member_wrapper .form-group {
    height: 52px;
}

:is(.find_container, .login_container) .member_wrapper .form-group input {
    border: 0;
    padding-left: 0;
}

:is(.find_container, .join_container, .join_write_container, .login_container) .form-group {
    height: 45px;
}

:is(.find_container, .join_container, .join_write_container, .login_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) {
        width: 100%;
        padding: 0 15px;
    }

    :is(.find_container, .join_container, .join_write_container, .login_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 !important;
}

.member_wrapper .form-group:nth-of-type(2) {
    margin-bottom: 0px !important;
}

.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;
}

:is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #f7f7f7;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 30px 0 100px;
        height: auto;
    }
}

:where(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
@media (width >=992px) {
    :where(#find_idpw, .login_wrapper) {
        padding: 0 !important;
        height: calc(var(--svh100) - var(--navbar-height)) !important;
    }
}

/* [min-lager / tablet] 브라우저 높이 700 이하 */
@media (height <=700px) {
    :where(#find_idpw, .login_wrapper) {
        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: 10px 20px;
        margin-bottom: 10px;
    }

    .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: 20px;
    }

    .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;
    /* padding-inline: 25px 15px; */
    /* background-color: rgba(0, 0, 0, 0.03); */
}

.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;
    /* padding-block: 15px; */
    font-size: clamp(13px, 3vw, 15px);
    /* border-block: 1px solid #ddd; */
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <=767.98px) {
    :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block;
        width: 100%;
    }

    .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;
    }
}

.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: 1/1.02;
        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: 30px;
    /* 트랜지션 기본 속도 */
    --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-property: var(--property);
    transition-timing-function: var(--timing-function);
    translate: var(--translateX) var(--translateY);
    scale: var(--scale);
}

.ani.active {
    transition-delay: var(--delay);
}

/* [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"] {
}

/* 증가 */
.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);
    }
}
