@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap");

/* ==================[ Variable ]================== */
:root {
    /* font-family */
    --page-font-family: "Roboto", "notokr", sans-serif;
    --page-serif-family: "STIX Two Text", "Poltawski Nowy", serif;
    /* page global color */
    --page-point-color: #185194;
    --page-point-color-overlay: #0070c0;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #0c3c72;
    --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: #dadada;
    --page-grey-color-hover: #c4c4c4;
    /* navbar */
    --navbar-height: clamp(70px, 10vw, 120px);
    --navbar-side-width: 600px;
    /* container */
    --container-padding-inline: 15px;
    /* form */
    --form-height: 42px;
    /* snb */
    --snb-height: 67px;
    /* 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;
    }
}
@media (max-width: 991.98px) {
    :root {
        --container-padding-inline: 30px;
    }
}

/* [ 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;
    -webkit-tap-highlight-color: transparent;
}
[lang="ja"] * {
    word-break: break-all;
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (max-width: 991.98px) {
    [lang="ja"] br {
        display: none;
    }
}
:where(*::before, *::after) {
    content: none;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 14px;
}
#site {
    margin: 0;
    padding: 0;
    font-family: var(--page-font-family);
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
}
.serif,
.navbar .nav > li > a,
.main-caption span,
.main-caption h2,
.subpage-title h2 {
    font-family: var(--page-serif-family);
    font-optical-sizing: auto;
    font-style: normal;
    word-break: keep-all;
}

::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(11px, 4vw, 14px);
    line-height: 1;
    height: var(--form-height);
    padding: 0 1.2em;
    outline: none;
    white-space: nowrap;
}
.btn:is(.btn-primary) {
    background-color: var(--page-point-color);
    border: 1px solid var(--page-point-color);
    color: #fff;
}
.btn:is(.btn-primary):is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
}
.btn.btn-danger {
    background-color: var(--page-danger-color);
    border: 1px solid var(--page-danger-color);
}
.btn.btn-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color-hover);
}
.btn.btn-outline-primary {
    background: none;
    border: 1px solid var(--page-point-color);
    color: var(--page-point-color);
}
.btn.btn-outline-primary:is(:hover, :focus) {
    background-color: var(--page-point-color);
    color: #fff;
}
.btn.btn-outline-danger {
    background: none;
    border: 1px solid var(--page-danger-color);
    color: var(--page-danger-color);
}
.btn.btn-outline-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color);
    color: #fff;
}
.btn:is(.btn-secondary, .btn-default) {
    background-color: var(--page-grey-color);
    border: 1px solid var(--page-grey-color);
    color: #000;
}
.btn:is(.btn-secondary, .btn-default):is(:hover, :focus) {
    background-color: var(--page-grey-color-hover);
}
.btn.btn-dark {
    background-color: var(--page-dark-color);
    border: 1px solid var(--page-dark-color);
    color: #fff;
}
.btn.btn-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color-hover);
}
.btn.btn-outline-dark {
    border: 1px solid var(--page-dark-color);
    color: var(--page-dark-color);
}
.btn.btn-outline-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color);
    color: #fff;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
}
.btn.btn-danger {
    color: #fff;
}
/* [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: flex;
    max-width: 100%;
    height: auto;
}
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* [ 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);
    -webkit-backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal-open .modal {
    z-index: 10000;
    display: flex !important;
    width: 100%;
    justify-content: center;
}
.modal.in {
    z-index: 20000;
    scale: 1;
}
.modal:not(.in) {
    display: none;
    opacity: 0;
    scale: 0;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal .modal-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 18px);
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal .modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.6;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal.fade .modal-dialog {
    transform: translate(0, 0);
    margin: 0;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    /* width: 100%; */
}
.modal .modal-title {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal.fade .modal-dialog {
    position: relative;
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
}
@media (min-width: 768px) {
    .modal-sm {
        max-width: 300px;
    }
}
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}
.modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
    border-radius: 0;
    border: 0;
}
@media (min-width: 768px) {
    .modal .modal-content {
        -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
    }
}
.modal .modal-footer {
    display: flex;
    gap: 5px;
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
    flex: 1;
}
#delete_modal.in + .modal {
    display: none;
}
/* [ 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: 2.3333333333;
    margin-bottom: -6px;
    background-color: #e5e3df;
}
/* 유튜브 */
iframe:where([src*="youtube"], [title*="YouTube"]) {
    width: auto;
    height: auto;
    aspect-ratio: 1.7777777778;
    background-color: #000;
}
/* [ IFRAME END ] */
/* ==================[ common ]================== */
/* container */
[class*="container"] {
    z-index: 10;
    width: 100%;
    padding: unset;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
}
[class*="container"]::before,
[class*="container"]::after {
    content: none;
}
/* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
@media (width >= 1260px) {
    [class*="container"] {
        max-width: 1170px;
    }
}
/* ==================[ navbar ]================== */
/* [ navbar 커스텀 ] */
#lang-btn {
    position: absolute;
    transition: 0.25s;
    z-index: 1000;
    right: clamp(70px, 10vw, 115px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 51.5%;
    transform: translateY(-50%);
    /* align-self: center; */
    /* height: var(--navHeight); */
}
.inWhite #lang-btn {
    filter: invert(1);
}
.inWhite.menu-open #lang-btn {
    filter: invert(0);
}
.inWhite #lang-btn ul a {
    font-weight: 500;
    opacity: 0.4;
}
#lang-btn ul {
    display: inline-flex;
}
#lang-btn ul li {
    /* padding: 0 clamp(7px, 2vw, 12px); */
    line-height: 1;
}
#lang-btn ul li + li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 1px;
    height: 10px;
    /* background-color: rgba(255, 255, 255, 0.3); */
    /* border-left: 1px solid #d9d9d9; */
}
#lang-btn ul a {
    transition: 0.25s;
    display: block;
    font-size: clamp(12px, 3vw, 13px);
    font-weight: 500;
    opacity: 0.4;
    translate: 0 -1px;
    line-height: 0.9;
    color: #fff;
    padding-inline: 7px;
    letter-spacing: 0.9px;
}
#lang-btn ul a:hover {
    opacity: 1;
}
#lang-btn ul a[disabled] {
    pointer-events: none;
    opacity: 1;
    /* color: var(--page-point-color); */
    /* text-underline-offset: 3px; */
    /* text-decoration: underline; */
}
@media (max-width: 767px) {
    #lang-btn {
        padding-top: 3px;
        position: absolute;
        right: 60px;
    }
}
.navbar {
    --navbar-custom-color: #fff;
    position: fixed;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: var(--navbar-height);
    padding-inline: clamp(20px, 3vw, 50px);
}
.navbar-brand {
    width: clamp(80px, 10vw, 110px);
    position: relative;
    z-index: 2000;
}
.navbar-brand img {
    filter: grayscale(10) invert(1) brightness(2);
}
#site.inWhite .navbar-brand img {
    transition: 0.25s;
    filter: none;
}
#site.inWhite.menu-open .navbar-brand img {
    filter: invert(0);
}
#site.inWhite .navbar-side-toggle {
    color: #000;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #site.menu-open .navbar-brand img {
        transition-duration: 0s;
        transition-delay: 0.25s;
        filter: grayscale(10) invert(1) brightness(2) !important;
    }
    #site .navbar {
        transition: background 0.25s;
    }
    #site.inWhite .navbar {
        background-color: rgb(255 255 255 / 90%);
    }
}
/* #site::before {
    content: "";
    transition: opacity 0.5s;
    z-index: 5000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
#site.menu-open::before {
    opacity: 1;
} */
.navbar-side-toggle {
    all: unset;
    position: relative;
    z-index: 2000;
    width: 30px;
    aspect-ratio: 1;
    color: #fff;
    cursor: pointer;
}
.menu-open .navbar-side-toggle {
    color: #fff !important;
}
.navbar-side-toggle > span.material-symbols-outlined {
    transition: 0.5s;
    position: absolute;
    font-size: clamp(36px, 3vw, 50px);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    font-variation-settings: var(--gms-200-out), var(--gms-grad-zero);
}
.navbar-side-toggle.close .menu-icon,
.navbar-side-toggle .close-icon {
    opacity: 0;
}
.navbar-side-toggle.close .close-icon {
    display: block;
    opacity: 1;
    z-index: 1000;
}
#navbar_side_overlay {
    z-index: 10;
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    /* background: rgba(0, 0, 0, 0.5); */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(2px);
    /* background: rgba(0, 0, 0, 0.3); */
}
.navbar .nav {
    transition: 0.5s;
    position: fixed;
    right: calc(var(--navbar-side-width) * -1);
    bottom: 0;
    z-index: 1000;
    max-width: var(--navbar-side-width);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* backdrop-filter: blur(5px) brightness(0.35); */
    -webkit-backdrop-filter: blur(5px) brightness(0.35);
    /* background-color: rgba(24, 82, 148, 0.3); */
    /* opacity: 0; */
}
.navbar .nav.open {
    right: 0;
    opacity: 1;
}
.navbar .nav > li:not(#gnbauth) {
    flex: 1;
}
.navbar .nav > li:not(#gnbauth) > a {
    transition: 0.35s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 400;
    color: #fff;
    /* background-color: rgb(0 32 97 / 60%); */
    background-color: rgb(23 42 79 / 80%);
    letter-spacing: 0.01em;
}

.navbar .nav > li:not(#gnbauth) + li > a {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .nav > li:not(#gnbauth) > a:hover {
    /* background-color: rgb(7 49 135 / 60%); */
    background-color: rgb(13 30 65 / 85%);
}
.navbar #gnbauth {
    position: absolute;
    width: 100%;
    bottom: 0;
    flex: 0 0 auto;
    color: #fff;
}
.navbar #gnbauth > a {
    display: none;
}
.navbar #gnbauth > ul {
    transition: 0.5s;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    padding: 10px 25px;
    /* background-color: #000; */
    line-height: 1;
    opacity: 0.5;
    /* width: 100%; */
}
.navbar #gnbauth > ul:hover {
    background-color: #000;
    opacity: 1;
}
.navbar #gnbauth > ul a:hover {
    text-decoration: underline;
}
/* #gnbauth_mk2 {
    transition: 0.25s;
    position: fixed;
    z-index: 50000;
    right: 35px;
    bottom: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    padding: 10px 25px;
    background-color: #000;
    border-radius: 9999px;
    opacity: 0.5;
}
#gnbauth_mk2:hover {
    opacity: 1;
}
#gnbauth_mk2 a:hover {
    text-decoration: underline;
} */
/* ==================[ footer ]================== */
footer {
    margin-top: 0px;
    background-color: #080808;
    /* 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, 14px);
    color: #a9a9a9;
}
footer li.corp {
    margin-bottom: 18px;
}

footer li.corp strong {
    color: #eee;
    font-weight: 500;
    font-size: 16px;
}
footer li.copyright {
    margin-top: 9px;
    color: #888;
    font-size: 13px;
}
footer .footer-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 5px;
}
footer .footer-logo {
    flex-shrink: 0;
    width: 120px;
}
footer .footer-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px 0 40px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    footer .footer-wrap {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0 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;
    }
    #loginBtn {
        display: none;
    }
}
/* 스크롤버튼 */
#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: #333;
    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.5rem;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ==================[ subpage ]================== */
/* [ subpage-header ] */
.subpage .subpage-header {
    position: relative;
    height: max(clamp(600px, 70vw, 750px), calc(var(--svh100)));
    background-color: #888;
    padding: 0;
    display: flex;
    /* align-items: flex-end; */
}
#site:has(.board_blog2_write, .board_blog2_view) .subpage-header {
    display: none;
}
.subpage .subpage-header .scroll {
    all: unset;
    transition: 0.5s;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2px;
    padding: 10px 10px 20px;
    font-size: 13px;
    letter-spacing: 0.01em;
    font-weight: 600;
    opacity: 0.5;
}
.subpage .subpage-header .scroll:hover {
    opacity: 1;
}
.subpage .subpage-header .scroll::after {
    content: "\f1e3";
    font-size: 20px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-200-out);
    display: block;
}
.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    /* align-items: center; */
    /* height: 100%; */
    max-width: 80%;
    margin-top: 10vh;
}
.subpage-title h2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1;
    /* margin-top: 10px; */
    /* text-align: center; */
    margin-bottom: clamp(30px, 5vw, 50px);
    font-weight: 700;
    color: #fff;
    font-size: clamp(42px, 10vw, 82px);
    opacity: 0;
    animation: sph-h2 1s 0.25s forwards;
}
@keyframes sph-h2 {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
.subpage-title h2 span {
    display: block;
    word-break: inherit;
}

.subpage-title h2 span.t01 {
    font-weight: 400;
}
.subpage-title h2 span.t02 {
    color: var(--page-point-color);
    color: #024790;
    letter-spacing: -0.02em;
}
.subpage-title h2 + p {
    font-size: clamp(14px, 2vw, 18px);
    color: #fff;
    width: 70%;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.7;
    opacity: 0;
    animation: sph-p 1s 0.5s forwards;
}
@keyframes sph-p {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 0.8;
        transform: translateX(0px);
    }
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (max-width: 991.98px) {
    .subpage-title {
        max-width: 100%;
        padding-inline: 30px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .subpage .subpage-header {
        height: 700px;
    }
    .subpage-title {
        height: 400px;
        margin: 0;
    }
    .subpage-title h2 + p {
        width: 100%;
    }
    #value .subpage-title h2 span.t02 {
        /* filter: saturate(0.25) brightness(3); */
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    }
}
/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
.subpage [class*="title-h"] {
    --h-line-height: 1.5;
    /* --h-letter-spacing: -0.015em; */
    --p-font-weight: 400;
    --p-color: #666;
    --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(24px, 2vw, 30px);
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: clamp(14px, 2vw, 16px);
    --text-between: 10px;
    margin-bottom: clamp(30px, 5vw, 80px);
    text-align: center;
}
.subpage .title-h3 h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.01em;
}
#portfolio .title-h3 h3 {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
    padding-block: 10px 5px;
    border-block: 1px solid #888;
}
.subpage .title-h3 span.color {
    color: var(--page-point-color);
    font-weight: 700;
    line-height: 1;
}

.subpage .bg-black span.color {
    /* font-size: 110%; */
    color: var(--page-point-color-overlay);
}

.subpage .title-h3 h4 {
    font-size: clamp(20px, 3vw, 24px);
    margin-block: 30px 30px;
}
.subpage .title-h4 {
    --h-font-size: 28px;
    --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; */
    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 .container > :where(img, [class*="-wrap"]) + :where(img, [class*="-wrap"]) {
    margin-top: 50px;
}

/* [ subpage-content ] */
.subpage .bg {
    z-index: 1;
    background: var(--sp-bg-url) no-repeat center / cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* filter: brightness(0.8); */
}
/* compnay */
#company .se00 .bg {
    --sp-bg-url: url(/public/img/sub/company-00.jpg);
}
#company .se01 .bg {
    --sp-bg-url: url(/public/img/sub/company-01.jpg);
}

#value .se00 .bg {
    --sp-bg-url: url(/public/img/sub/value-00.jpg);
}
#value .se01 .bg {
    --sp-bg-url: url(/public/img/sub/value-01.jpg);
}

#portfolio .se00 .bg {
    --sp-bg-url: url(/public/img/sub/portfolio-00.jpg);
}
#portfolio .se01 {
    background-color: #f2f2f2;
}

.bg-black * {
    color: #fff;
}
.se00.bg-black .bg {
    background-color: #222;
}
.bg-black .bg {
    background-color: #000;
}

.subpage section {
    position: relative;
    padding: clamp(80px, 15vw, 150px) 0 clamp(100px, 15vw, 180px);
    /* min-height: 1000px; */
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .subpage {
        position: relative;
        overflow: hidden;
    }
    #site:has(.board_blog2_write, .board_blog2_view) section,
    #portfolio .se01 {
        padding-top: 120px;
    }
}
/* profile */
.profile-wrap {
    display: flex;
    gap: clamp(20px, 2vw, 30px);
}
.profile-wrap .col {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 25px 15px 30px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.profile-wrap .col p {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.profile-wrap .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: clamp(50px, 10vw, 65px);
    width: 100%;
}
.profile-wrap .meter-item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    /* overflow: hidden; */
    gap: 10px;
    margin-block: clamp(15px, 3vw, 22px) clamp(15px, 3vw, 20px);
}
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    height: clamp(45px, 9vw, 60px);
}
/* 트랜지션 */
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    --duration: 3s;
    transition-delay: 1s !important;
    -webkit-transition-duration: var(--duration) !important;
    -moz-transition-duration: var(--duration) !important;
    -ms-transition-duration: var(--duration) !important;
    -o-transition-duration: var(--duration) !important;
    transition-duration: var(--duration) !important;
}
.profile-wrap .odometer {
    font-size: clamp(46px, 10vw, 70px);
}
.profile-wrap .odometer * {
    line-height: 1;
}
.profile-wrap .odometer-formatting-mark {
    display: none;
}
.profile-wrap .odometer-value {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.profile-wrap span.unit {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}
.profile-wrap span.unit.plus {
    align-self: flex-start;
    position: absolute;
    right: -40px;
}
.profile-wrap span.unit.plus span.material-symbols-outlined {
    font-size: clamp(32px, 2vw, 42px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 991.98px) {
    .profile-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 800px;
        margin-inline: auto;
        gap: 15px;
    }
    .profile-wrap .col {
        aspect-ratio: unset;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .profile-wrap {
        max-width: 500px;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .profile-wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
}
/* map */
.map-wrap iframe {
    width: 100%;
    height: clamp(300px, 35vw, 500px);
    /* border-radius: var(--radius); */
}
/* philosophy */
.value-wrap {
    display: flex;
    gap: 30px;
}
.value-wrap .col {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
[lang="ja"] .value-wrap .col {
    padding-inline: 18px;
}
.value-wrap .col h5 {
    font-size: 16px;
    margin-block: 25px 15px;
    font-weight: 500;
    letter-spacing: 0;
}
.value-wrap .col p {
    font-size: clamp(13px, 2vw, 14px);
    opacity: 0.65;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
}
[lang="ja"] .value-wrap .col p {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: -0.02em;
}
.value-wrap .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.value-wrap span.material-symbols-outlined {
    font-size: clamp(50px, 3vw, 60px);
    font-variation-settings: var(--gms-500-out);
    color: var(--page-point-color-overlay);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 991.98px) {
    .value-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .value-wrap .col {
        aspect-ratio: unset;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .value-wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* strategy */
.stra-wrap {
    position: relative;
}
.stra-wrap .swiper-indicators-wrap {
    margin-bottom: clamp(40px, 5vw, 100px);
}
.stra-wrap .swiper {
    width: 100%;
}
.stra-wrap .swiper-pagination {
    all: unset;
    display: flex;
}
.stra-wrap .swiper-pagination span {
    all: unset;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 68px;
    padding-inline: 25px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    position: relative;
    transition: all 0.5s ease;
    background-color: #e3e3e3;
    margin: 0 !important;
    border-right: 1px solid #fff;
}

.stra-wrap .swiper-pagination span:hover {
    background: #d3d3d3;
}
.stra-wrap .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--page-point-color-dark);
    color: #fff;
    transform: translateY(15px);
}
.stra-wrap .swiper-slide {
    position: relative;
    overflow: hidden;
}
.stra-wrap img {
    transition: 0.5s;
    position: absolute;
    left: 0;
    top: 0;
    width: 65%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 5/4;
    z-index: 1;
}
.stra-wrap .inner {
    max-width: 710px;
    width: 100%;
    margin-inline: auto;
    text-align: left;
}
.stra-wrap h5 {
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 600;
    margin-bottom: clamp(30px, 5vw, 50px);
    text-align: center;
    color: #333;
}
.stra-wrap p {
    grid-row: 2;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.45;
    padding: 0;
    color: #666;
}
.stra-wrap p:first-letter {
    /* margin-left: 0.4em; */
}
.stra-wrap p b {
    font-weight: 500;
    margin-top: 2px;
    display: inline-block;
}
.stra-wrap p b {
    color: inherit;
}
[lang="en-US"] .stra-wrap p + p {
    margin-top: 25px;
}
.stra-wrap small {
    color: inherit;
    display: inline-block;
    font-size: 15px;
    margin-top: 15px;
    line-height: 1.5;
    background-color: #f7f7f7;
    color: #555;
    padding: 10px 15px;
    /* opacity: .7; */
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .stra-wrap .swiper-pagination {
        flex-direction: column;
    }
    .stra-wrap .swiper-pagination span {
        flex: 0 1 auto;
        height: 50px;
        font-size: 14px;
    }
    .stra-wrap .swiper-pagination span.swiper-pagination-bullet-active {
        transform: translateY(0px);
    }
    .stra-wrap .inner p {
        padding-inline: 10px;
        font-size: 13px;
    }
}

/* ==================[ fullpage ]================== */
.custom-nav {
    --color: #fff;
    z-index: 1000;
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.custom-nav.sub {
    --color: var(--page-point-color);
}
.custom-nav button {
    all: unset;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: #fff;
    padding-right: clamp(7px, 1vw, 20px);
}
.custom-nav > li {
    counter-increment: itemNum;
}
.custom-nav .line {
    transition: 0.5s;
    position: absolute;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 0px;
    gap: 5px;
}
.custom-nav .active .line {
    width: 90px;
    display: none;
}
.custom-nav .line::before {
    content: counter(itemNum, decimal-leading-zero) "";
    display: block;
    color: var(--color);
    font-weight: 500;
    white-space: nowrap;
}
.custom-nav .line::after {
    content: "";
    display: block;
    /* flex: 1; */
    flex: 0 0 auto;
    width: 60px;
    height: 1px;
    background-color: var(--color);
}
.custom-nav .text {
    position: relative;
    overflow: hidden;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(10px, 2vw, 12px);
}
.custom-nav u {
    all: unset;
    all: inherit;
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0.03em;
}
.custom-nav u.default {
    transition: 0.5s 0.5s;
    opacity: 0.5;
}
.fp_loaded .custom-nav u.default {
    transition-delay: 0s;
}
.custom-nav .active u.default {
    opacity: 1;
    color: var(--color);
}
.custom-nav u.overlay {
    position: absolute;
    z-index: 100;
    transform: translateY(-100%);
    color: var(--color);
}
.custom-nav.main .down u.overlay {
    animation: cn_down 0.5s forwards;
}
@keyframes cn_down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
.custom-nav.main .up u.overlay {
    animation: cn_up 0.5s forwards;
}
@keyframes cn_up {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* subpage */
.custom-nav.inWhite button {
    color: #000;
}
.custom-nav.inBlack .line::after {
    height: 2px;
}
.custom-nav.inBlack .line::before,
.custom-nav.inBlack u.overlay {
    /* color: var(--page-point-color-overlay); */
    color: #0089eb;
}
.custom-nav.sub u.overlay {
    /* transition: none; */
    transition: 0.5s;
    transform: translateY(0);
    opacity: 0;
}
.custom-nav.sub .active u.overlay {
    opacity: 1;
    transform: translateY(0);
}
.custom-nav.sub u.default {
    transition: 0.2s;
    opacity: 0.6;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */

@media (max-width: 991.98px) {
    .custom-nav {
        scale: 0.9;
        transform-origin: right;
    }
}

#fp-nav {
    display: none !important;
}
.fp-section.main-visual .fp-tableCell {
    padding-top: var(--navbar-height);
    color: #fff;
}
.fp-section {
    overflow: hidden;
    position: relative;
    display: flex;
}
.fp-tableCell {
    position: relative;
    flex: 1 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex-direction: column;
}
.fp-scroll-overflow .fp-tableCell {
    justify-content: flex-start;
}
.fp-scrollable {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.fp-scroller {
    overflow: hidden;
}
.iScrollIndicator {
    border: 0 !important;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
.sub-visual .fp-tableCell,
.pt-nav .fp-tableCell {
    padding-top: var(--navbar-height);
}
.fp-tableCell:has(footer) {
    padding-block: 0;
}
:is(.fp-auto-height, .fp-auto-height .fp-tableCell) {
    overflow: unset;
    height: unset !important;
    padding-top: unset;
}
.fp-tableCell footer {
    width: 100%;
}
.fp-responsive .fp-section.footer {
    overflow: hidden;
}
.fp-right {
    position: fixed;
    z-index: 10000;
    transform: translateY(-50%);
    top: 55%;
    left: clamp(10px, 2.5vw, 60px);
}
.fp-right ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.fp-right li {
    display: block;
}
.fp-right a {
    all: unset;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.fp-right span {
    z-index: 1;
    display: block;
    width: 8px;
    border-radius: 50%;
    aspect-ratio: 1;
    background: #ccc;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.fp-right :is(a.active, li:hover) span {
    background-color: var(--mw-color-magenta);
}
.fp-right .fp-sr-only {
    display: none;
}
@media (min-height: 800px) {
    .fp-responsive :is(.fp-section) {
        height: auto !important;
    }
}
@media (max-height: 799.98px) or (max-width: 767.98px) {
    .fp-responsive :is(.fp-section:not(.fp-auto-height), .fp-section:not(.fp-auto-height) .fp-tableCell) {
        height: auto !important;
        padding-top: 0;
        min-height: clamp(600px, 10vh, 900px);
    }
    .fp-responsive :is(.pt-nav, .row-wrap .col) {
        padding-top: 0;
    }
}
/* 모바일 */
@media (max-width: 767.98px) {
    .fp-responsive :is(.fp-section:not(.fp-auto-height), .fp-section:not(.fp-auto-height) .fp-tableCell) {
        /* min-height: 100%; */
    }
    .fp-tableCell {
        align-items: flex-start;
    }
}
/* ==================[ mainpage ]================== */
/* [ main-content ] */
.mainpage {
    overflow: hidden;
    position: relative;
    background-color: #000;
}
.mainpage .bg {
    background: var(--m-bg-url) no-repeat center / cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* filter: brightness(0.8); */
}
.mainpage .se01 {
    --m-bg-url: url(/public/img/main/m-01.jpg);
}
.mainpage .se02 {
    --m-bg-url: url(/public/img/main/m-02.jpg);
}
.mainpage .se03 {
    --m-bg-url: url(/public/img/main/m-04.jpg);
}
.main-front {
    position: fixed;
    transition: 0.5s;
    max-width: calc(100% - (var(--navbar-side-width) * 2));
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 100;
}
.fp-viewing-3 .main-front {
    bottom: 100px;
}
.main-caption {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translate(-50%, 0);
}
/* 배경 기본 */
.main-caption .inner {
    transition: 1.5s 0.5s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    width: 100%;
    min-width: 600px;
    height: 100%;
    padding-inline: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 95, 128, 0.3);
    --x: 600px;
    --y: 0px;
    opacity: 0;
    transform: translate(calc(var(--x)), var(--y));
    filter: blur(10px);
}
.main-caption.cap02 .inner {
    --x: -600px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .main-caption {
        height: auto;
    }
    .main-front {
        max-width: 100%;
        height: auto;
        /* transform: translate(-50%, -50%); */
        top: 32%;
        /* height: 500px; */
    }
    .main-caption .inner {
        --x: 200px;
    }
    .main-caption.cap02 .inner {
        --x: -200px;
    }
    .main-caption .inner {
        min-width: 100%;
        padding-inline: 35px;
        /* margin-top: 130px; */
        background: none;
        /* height: 0px; */
        /* overflow: visible; */
    }
}
@media (max-width: 767.98px) and (max-height: 450px) {
    .main-front {
        top: 0;
        height: 100%;
    }
    .main-caption{
        height: 100%;
    }
    .main-caption .inner {
        top: 0;
        padding-inline: 10px;
    }
    .main-caption .info{
        scale: 0.8;
        margin-top: 30px;
    }
}
/* 텍스트 기본 */
.main-caption .inner .info {
    transition: 1.5s 0.75s;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translate(calc(var(--x) / 3), var(--y));
}
.fp-viewing-0 .main-caption.cap01,
.fp-viewing-1 .main-caption.cap02,
.fp-viewing-2 .main-caption.cap03 {
    z-index: 1000;
}
/* 배경 */
.fp-viewing-0 .main-caption.cap01 .inner,
.fp-viewing-1 .main-caption.cap02 .inner,
.fp-viewing-2 .main-caption.cap03 .inner {
    z-index: 1000;
    opacity: 1;
    filter: blur(0px);
    transform: translate(0, 0);
}
/* 텍스트 */
.fp-viewing-0:not(.fp_loaded) .main-caption.cap01 .info,
.fp-viewing-1:not(.fp_loaded) .main-caption.cap02 .info,
.fp-viewing-2:not(.fp_loaded) .main-caption.cap03 .info {
    opacity: 1;
    transform: translate(0, 0);
}
/* 최초 접속시 */
.fp_loaded.fp-viewing-0 .main-caption.cap01 :is(.inner, .info) {
    transition: 0s;
    opacity: 1;
    filter: none;
    transform: translate(0, 0);
}
@keyframes fp_loaded {
    0% {
        opacity: 0;
        transform: translate(-50%, 100px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0px);
        filter: blur(0px);
    }
}
.main-caption span {
    transition: 0.5s;
    font-weight: 700;
    font-size: clamp(30px, 2vw, 36px);
    color: #163261;
    pointer-events: none;
}
.main-caption.cap01 span {
    font-size: clamp(34px, 3vw, 48px);
}
.fp-viewing-1 .main-caption span {
    color: #597dbb;
}
.se03 .main-caption span {
    color: #163261;
}
.main-caption h2 {
    font-size: clamp(30px, 2vw, 40px);
    font-weight: 700;
    margin-bottom: clamp(30px, 5vw, 50px);
    letter-spacing: 0;
    line-height: 1.2;
    pointer-events: none;
}
.main-caption p {
    font-size: clamp(15px, 2vw, 16px);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
    color: #eee;
    pointer-events: none;
}
.main-caption .more {
    font-size: 16px;
    display: inline-flex;
    gap: 15px;
    align-items: center;
    font-family: var(--page-serif-family);
}
.main-caption .more::after {
    content: "\e8e4";
    font-family: var(--gms);
    font-size: 23px;
    font-variation-settings: var(--gms-200-out);
}

/* [ 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;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.main_popup button.close {
    all: unset;
    cursor: pointer;
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_popup span.material-symbols-outlined {
    line-height: 0.8;
    font-variation-settings: var(--gms-200-out);
    font-size: inherit;
}
.main_popup .main_popup_contents {
    overflow: hidden;
    /* padding: 10px; */
    background: #fff;
}
.main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding-inline: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 40px;
}
.main_popup_optional label {
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}
.main_popup_optional label input[type="checkbox"] {
    display: none;
}
.main_popup_optional label span {
    padding-left: 3px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.main_popup_optional label span::before {
    content: "\e8b5";
    display: inline-block;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(16px, 2vw, 18px);
    /* transform: translateY(3px); */
}
.main_popup_optional :where(label, div) {
    opacity: 0.8;
}
.main_popup_optional :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
.main_popup_optional :where(label, div, span) {
    line-height: 1;
}
.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
}
.main_popup.main_popup_left {
    left: 50px;
}
.main_popup.main_popup_center {
    left: 50%;
    transform: translate(-50%);
}
.main_popup.main_popup_right {
    right: 50px;
}
@media (max-width: 767px) {
    .main_popup.main_popup_left,
    .main_popup.main_popup_center,
    .main_popup.main_popup_right {
        left: 15px;
        right: 15px;
        transform: none;
    }
}
/* ==================[ table ]================== */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
}
:where(.table) {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}
:where(.table) :where(th, td) {
    vertical-align: top;
    line-height: 1.5;
}
.table-style {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
    border-top: 2px solid #222;
    background-color: #fff;
    margin: 0;
}
.table-style :is(th, td) {
    padding: 15px 19px;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid var(--border-color);
    text-align: center;
}
.table-style td {
    color: #444;
}
.table-style thead th {
    border-bottom: 0;
    background-color: #eee;
    border: 1px solid var(--border-color);
    color: #222;
    /* text-align: center; */
    font-weight: 600;
}
.table-style thead,
.table-style tbody:only-child {
    border-top: 2px solid var(--page-point-color);
}
.table-style tbody th {
    background-color: #f7f7f7;
    font-weight: 600;
}
/* ==================[ 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: 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(.custom_checkbox, .custom_radio) + span::before {
    color: #555;
    font-size: 1.1em;
    vertical-align: 0px;
    content: "\f0c8";
    font-family: "Font Awesome 6 Free";
    font-weight: 300;
    margin: 0px 7px 0 0px;
    transform: translateY(1px);
    display: inline-block;
}
:where(.member_wrapper, .board_wrapper) :where(.custom_checkbox, .custom_radio):checked + span::before {
    content: "\f14a";
    color: var(--page-point-color);
    font-weight: 900;
}
: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: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    :where(.member_wrapper .text-center .btn + .btn) {
        margin-left: 0;
    }
    :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px !important;
}
#bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    /* gap: 0 20px; */
}
#bbsArea .category_wrap li {
    flex: 1;
    margin: 0;
}

#bbsArea .category_wrap li + li {
    border-left: 1px solid #d3d3d3;
}
#bbsArea .category_wrap a {
    all: unset;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 48px;
    padding-inline: 25px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    position: relative;
    transition: all 0.1s ease;
    background-color: #e3e3e3;
    margin: 0 !important;
    text-align: center;
}
#bbsArea .category_wrap li a:hover {
    color: #111;
    background-color: #d3d3d3;
}
#bbsArea .category_wrap li.on a {
    background-color: var(--page-point-color-dark);
    color: #fff;
    font-weight: 500;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .category_wrap ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #bbsArea .category_wrap a {
        padding-inline: 10px;
    }
}
/* #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: none;
    background-color: #fff;
    padding: 30px;
}
#bbsArea .write_btn_wrap {
    position: absolute;
    right: 0;
    bottom: 0;
}
#bbsArea .btn-lg {
    width: 200px;
}
#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}
#bbsArea .board_wrapper + .search_wrap {
    margin-top: 70px;
}
#bbsArea .board_wrapper + .pagination_wrap {
    margin-block: 50px;
}
#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 0px;
}
#bbsArea .pagination_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
#bbsArea .pagination_wrap li + li {
    margin-left: -1px;
}
#bbsArea .pagination_wrap a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    aspect-ratio: 1;
    font-size: 15px;
    border-radius: 9999px;
}
#bbsArea .pagination_wrap li:not(.active) a:hover {
    background-color: #eee;
}
#bbsArea .pagination_wrap li.active a {
    width: 28px;
    background-color: var(--page-point-color);
    color: #fff;
    font-weight: 700;
}
#bbsArea .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 게시판 목록 하단 */
#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
}
#bbsArea .search_wrap #search_kind {
    cursor: pointer;
    line-height: 1;
    background-color: transparent;
}
#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: 0;
    margin-block: 3px -3px;
    margin-right: 0px;
    color: #aaa;
    font-size: 14px;
    font-weight: 400;
}
#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: 40px 25px;
    border-bottom: none;
    display: none;
}
#bbsArea .header_wrap h4.title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    /* font-family: var(--page-serif-family); */
}
#bbsArea .header_wrap span {
    color: #666;
}
#bbsArea .header_wrap strong {
    color: #999;
    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: 12px;
    color: #999;
}

#bbsArea .header_wrap .info span + span {
    margin-left: 9px;
}
/* 게시글 콘텐츠 */
#bbsArea .contents_wrap {
    padding: 0px 0px;
}
#bbsArea .contents_wrap .contents_inner {
    font-size: 14px;
}
#bbsArea .board_data_view:has(.portfolio_content) {
    padding: 0;
}
#bbsArea .contents_wrap .portfolio_content {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: stretch;
}

#bbsArea .contents_wrap .portfolio_content .img-box {
    /* aspect-ratio: 5/3; */
    position: relative;
    overflow: hidden;
}
#bbsArea .contents_wrap .portfolio_content img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 5/3;
}
#bbsArea .contents_wrap .portfolio_content .info {
    padding: 40px;
}
#bbsArea .contents_wrap .portfolio_content .info h1 {
    font-family: var(--page-serif-family);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
}
#bbsArea .contents_wrap .portfolio_content .info h1 span {
    word-break: keep-all;
}
#bbsArea .contents_wrap .portfolio_content .info ul {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 15px;
}
#bbsArea .contents_wrap .portfolio_content .info ul li {
    margin: unset;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .contents_wrap .portfolio_content {
        display: flex;
        flex-direction: column;
    }
    #bbsArea .contents_wrap .portfolio_content .info h1 span[style="font-size: 36px"] {
        font-size: 28px !important;
    }
}
#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: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
#bbsArea .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
#bbsArea .reply_wrap .btn_wrap .pull-left {
    display: flex;
    gap: 5px;
}
:is(#bbsArea .reply_wrap #reply_modify_btn, #bbsArea .reply_wrap .text-left + button) {
    margin-left: auto;
}
#bbsArea .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
#bbsArea .reply_wrap #reply_list .info {
    display: flex;
    gap: 7px;
    /* height: 40px; */
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
#bbsArea #reply_list {
    /* order: 3; */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ccc;
    margin-block: 20px;
}
#bbsArea #reply_list .media {
    position: relative;
    margin: 0;
    padding: 20px 5px 40px;
}
#bbsArea #reply_list .media + .media {
    border-top: 1px solid #ddd;
}
#bbsArea #reply_list .media .media-left,
#bbsArea #reply_list .media > .pull-left {
    padding-right: 20px;
}
#bbsArea #reply_list .media .media-left img {
    border-radius: 100%;
}
#bbsArea #reply_list .media .media-body {
}
#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;
    background-color: #fff;
    padding: 30px;
}
#bbsArea .table.board_write_table tbody td {
    padding: 0px;
    border: 0;
}
#bbsArea .table.board_write_table .text-muted {
    margin-top: 10px;
    font-size: 14px;
}
#bbsArea .table.board_write_table .text-muted i {
    color: var(--page-point-color);
}
#bbsArea .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
#bbsArea .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
#bbsArea .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}
#bbsArea .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}
/* 휴지통 버튼 */
#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 글자수 */
#bbsArea .frm_textarea_cnt {
    display: none;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    #bbsArea .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        aspect-ratio: 1;
        height: 40px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #bbsArea .table.board_write_table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #bbsArea .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100%;
    }
    #bbsArea .table.board_write_table #delete_thumb {
        width: 100%;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    #bbsArea .table.board_write_table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }
}
/* input */
.form-control {
    width: 100%;
    font-family: var(--page-font-family);
    padding: 0.6rem 0.85rem;
    font-size: 14px;
    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: transparent;
    border: 1px solid var(--page-grey-color);
}
#search_query.form-control:focus {
    background-color: #fff;
    border-color: var(--page-point-color);
}
textarea.form-control {
    padding-block: 0.9rem;
    line-height: 1.5;
}
.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) {
    .form-control {
        width: 100%;
        max-width: 100% !important;
    }
}
.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;
}
.custom_checkbox + span {
    user-select: none;
}
.custom_checkbox + span::before {
}
.custom_checkbox:checked + span::before {
    content: "\f14a";
    font-weight: 900;
}
.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;
}
.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(10px, 3vw, 20px) clamp(10px, 3vw, 20px);
}
: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: 4;
    }
}
: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 ] */
.table_blog dd::after,
.table_blog dd .info {
    display: none;
}
.table_blog dd {
    cursor: pointer;
    display: flex;
    gap: 35px;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding: 50px 0px;
}
.table_blog dd:hover {
    background-color: transparent;
}
.table_blog dd :is(.left, .right) {
    width: auto;
    height: auto;
}
.table_blog dd a {
    font-weight: 500;
}
:is(.table_blog dd:hover a, .table_blog dd a:is(:hover, :focus)) {
    color: var(--page-point-color);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .table_blog dd {
        flex-direction: column;
        gap: 0;
    }
}
.table_blog dd .right {
    display: flex;
    flex-direction: column;
    gap: 5px 15px;
    align-items: flex-start;
    width: auto;
    flex: 1;
}
.table_blog dd .right .info {
    justify-content: flex-end;
    align-items: center;
    align-self: center;
    grid-column: 2;
    grid-row: span 2;
    margin-bottom: 0;
}
.table_blog dd .right :where(.writer, .hits) {
    display: none;
}
.table_blog dd .right a {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 22px;
}
.table_blog dd .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.table_blog dd .right p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .table_blog dd .right {
        padding-top: 0;
    }
    .table_blog dd .right p {
        line-height: 1.5;
    }
}
.table_blog dd .left {
    flex: 0 1 auto;
    width: 200px;
}
.table_blog dd .left .thumb {
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .table_blog dd .left {
        width: 100%;
        padding-left: 0;
        margin-right: 0;
    }
}
:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 1px solid #e4e4e4;
    background-color: #fff;
    padding: clamp(20px, 3vw, 30px);
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb + img.thumb {
    display: block;
    aspect-ratio: 5/3;
    object-fit: cover;
    width: 100%;
    height: auto;
    background-color: #fff;
    /* border-radius: 10px; */
    margin-top: 10px;
    /* padding: 40px; */
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none;
}
:is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}
:is(.table_video, .table_blog2) .bottom {
    margin-top: clamp(25px, 5vw, 40px);
    margin-bottom: 20px;
    padding: 0;
}
:is(.table_video, .table_blog2) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 5px 0;
    text-align: center;
    padding: 0;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
    display: none;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info span {
    padding: 0;
    gap: 10px;
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.5;
}
/* [ 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: 25px 10px;
    border-bottom: 1px solid #ccc;
}
.board_wrapper form[id*="form"] #item_agree .checkbox {
    margin-top: 0;
}
/* 동의 */
.board_wrapper form[id*="form"] #item_agree label,
.board_wrapper form[id*="form"] #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
/* 주문내역 숨김 */
:where(.form-wrap, form) #list_btn {
    display: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .board_wrapper form[id*="form"] table.table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}
/* ==================[ 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: 20px;
    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)) !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;
    }
}

/* [ componets start ]*/

/* tabs */
[role="tabpanel"] [role="tablist"] {
    display: flex;
    margin-bottom: 60px;
}
[role="tabpanel"] [role="presentation"] {
    flex: 1;
}
[role="tabpanel"] [role="presentation"] + [role="presentation"] {
    margin-left: -1px;
}
[role="tabpanel"] [role="tab"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62px;
    font-size: 20px;
    border: 1px solid #ccc;
    color: #666;
}
[role="tabpanel"] [role="presentation"].active [role="tab"] {
    z-index: 10;
    background-color: var(--page-point-color);
    border-color: var(--page-point-color);
    font-weight: 600;
    color: #fff;
}
[role="tabpanel"] .tab-content > :not(.active) {
    display: none;
}

/* [ animation ] */
/* animation 2023-10-19*/
.ani {
    --opacity: 0;
    /* 등급 (해당 숫자만큼 곱함) */
    --s-level: 4;
    --d-level: 0;
    --t-level: 4;
    /* 위치값 */
    --value: 25px;
    /* 트랜지션 기본 속도 */
    --duration-second: 0.25s;
    --delay-second: 0.25s;
    /* 트랜지션 계산 */
    --duration: calc(var(--duration-second) * var(--s-level));
    --delay: calc(var(--delay-second) * var(--d-level));
    /* 트랜지션 프로퍼티 */
    --property: all;
    /* 트랜지션 효과 */
    --timing-function: ease;
    /* transform */
    --translate: calc(var(--value) * var(--t-level));
    --scale: 1;
    /* default */
    opacity: var(--opacity);
    transition-duration: var(--duration);
    transition-delay: var(--delay);
    transition-property: var(--property);
    transition-timing-function: var(--timing-function);
    translate: var(--translateX) var(--translateY);
    scale: var(--scale);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    /* setting */
    /* effect */
    .ani {
        --delay: 0 !important;
    }
}
.ani[class*="fade"] {
    /* --scale: 0.95; */
    --opacity: 0;
    filter: blur(2px);
}
.ani[class*="show"] {
    --opacity: 1;
}
/* s : spped / d : delay / t : translate */
/* spped */
.ani[class*="-s0"] {
    --s-level: 0;
}
.ani[class*="-s05"] {
    --s-level: 0.5;
}
.ani[class*="-s1"] {
    --s-level: 1;
}
.ani[class*="-s2"] {
    --s-level: 2;
}
.ani[class*="-s3"] {
    --s-level: 3;
}
.ani[class*="-s4"] {
    --s-level: 4;
}
.ani[class*="-s5"] {
    --s-level: 5;
}
/* delay */
.ani[class*="-d0"] {
    --d-level: 0;
}
.ani[class*="-d05"] {
    --d-level: 0.5;
}
.ani[class*="-d1"] {
    --d-level: 1;
}
.ani[class*="-d2"] {
    --d-level: 1.25;
}
.ani[class*="-d3"] {
    --d-level: 1.5;
}
.ani[class*="-d4"] {
    --d-level: 1.75;
}
.ani[class*="-d5"] {
    --d-level: 2;
}
.ani[class*="-d6"] {
    --d-level: 2.25;
}
.ani[class*="-d7"] {
    --d-level: 2.5;
}
.ani[class*="-d8"] {
    --d-level: 2.75;
}
.ani[class*="-d9"] {
    --d-level: 3;
    /* translate */
}
.ani[class*="-t0"] {
    --t-level: 0;
}
.ani[class*="-t05"] {
    --t-level: 0.5;
}
.ani[class*="-t1"] {
    --t-level: 1;
}
.ani[class*="-t2"] {
    --t-level: 2;
}
.ani[class*="-t3"] {
    --t-level: 3;
}
.ani[class*="-t4"] {
    --t-level: 4;
}
.ani[class*="-t5"] {
    --t-level: 5;
}
.ani[class*="-tx2"] {
    --t-level: 20;
}
.ani[class*="-tx3"] {
    --t-level: 30;
}
/* timing-function */
.ani[class*="-ease"] {
    --timing-function: ease;
}
.ani[class*="-ease-in"] {
    --timing-function: ease-in;
}
.ani[class*="-ease-out"] {
    --timing-function: ease-out;
}
.ani[class*="-ease-in-out"] {
    --timing-function: ease-in-out;
}
.ani[class*="-linear"] {
    --timing-function: linear;
}
/* extension */
/* 아래 -> 위 */
.ani[class*="-upper"] {
    --translateX: 0;
    --translateY: var(--translate);
}
/* 위 -> 아래 */
.ani[class*="-under"] {
    --translateX: 0;
    --translateY: calc(var(--translate) * -1);
}
/* 좌측 -> 우측 */
.ani[class*="-left"] {
    --translateX: calc(var(--translate) * -1);
    --translateY: 0;
}
/* 우측 -> 좌측 */
.ani[class*="-right"] {
    --translateX: var(--translate);
    --translateY: 0;
}
/* 크기 */
.ani[class*="-scale"] {
}
/* 증가 */
.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);
    }
}
/* 241127 게시판 관리자 날짜 등 삭제 */
#bbsArea .header_wrap .info {
    display: none;
}
