@charset "utf-8";
/* [ @import start ] */
@layer bootstrap3, bootstrap5, global, swiper;
@import url("/assets/css/bootstrap.min.css") layer(bootstrap3); /*부트스트랩 3*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css") layer(bootstrap5); /*부트스트랩 5*/
@import url("/assets/css/global.css") layer(global); /*글로벌*/
/* [ @import end ] */

/* ==================[ Variable ]================== */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 100px);
    /* page global color */
    --page-point-color: #2f2f2f;
    --page-point-color-pale: #ebf4fc;
    --page-point-color-light: #d4e8fa;
    --page-point-color-soft: #2c76eb;
    --page-point-color-dark: #111;
    --page-point-color-hover: var(--page-point-color-dark);
    /* 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);
}
/* ==================[ Reset ]================== */
html {
    font-size: 14px;
}
#site {
    display: none;
    /* padding-top: var(--navbar-height); */
    padding-top: 0;
    font-family: var(--page-font-family);
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
}
* {
    word-break: keep-all;
    float: unset;
}
*::before,
*::after {
    content: none;
}
/* selection */
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
/* Paragraph */
:where(ol, ul, li, dl) {
    all: unset;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
:where(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
html:lang(ko) :where(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    letter-spacing: -0.015em;
}
html:lang(en) :where(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    letter-spacing: 0em;
}
:where(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    color: #222;
}
:where(p, li, dd, small) {
    color: #5f5f5f;
}
: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;
}
/* expend 숨김 */
.caret {
    display: none !important;
}
/* reset-form */
.form-control {
    font-size: inherit;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .form-control {
        width: 100%;
    }
}
/* button */
.btn {
    display: inline-flex;
    place-content: center;
    place-items: center;
    font-size: clamp(13px, 5vw, 15px);
    line-height: 1;
    height: 40px;
    padding: 0 1em;
    border-radius: 0;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
}
.btn.btn-outline-primary {
    --bs-btn-active-bg: var(--page-point-color-dark);
    --bs-btn-hover-border-color: var(--page-point-color);
}
.btn.btn-danger {
    color: #fff;
}
@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;
}
/* image */
.img-box {
    overflow: hidden;
    position: relative;
    display: flex;
}
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
img.img-fit {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
/* layout */
:where(.container, .row) {
    position: relative;
}
.row {
    margin: 0;
}
.row > * {
    padding: 0;
}
.clearfix {
    width: 100%;
}
.col {
    padding: 0;
}
/* modal  */
.modal:where(.fade.in, .show) {
    transition: 0.25s;
    opacity: 1 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal .modal-header {
    flex-direction: row-reverse;
    align-items: center;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 20px);
}
.modal .modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.6;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal .modal-content {
    padding: 7px 5px;
    border-radius: 0.5em;
}
.modal .modal-footer {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
}
.modal .modal-footer .btn {
    flex: 1;
    min-width: inherit !important;
    margin: 0;
}
.modal .btn.btn-default {
    background-color: #5d5d5d;
    color: #fff;
}
/* 구글맵 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;
}
/* material-symbols */
span.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-200-out), var(--gms-grad-high);
    user-select: none;
}
/* ==================[ common ]================== */
/* container */
[class*="container"] {
    --container-padding-inline: 15px;
    width: 100%;
    padding-inline: var(--container-padding-inline);
}
@media (width >= 1260px) {
    [class*="container"] {
        max-width: 1230px;
    }
}
/* list-style */
:where(.li-cir, .li-dash) {
    display: flex;
    flex-direction: column;
}
:where(.li-cir, .li-dash) > li {
    position: relative;
    padding-left: 0.8em;
}
:where(.li-cir, .li-dash) small {
    font-size: 0.85em;
}
/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 4px;
    display: block;
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #333;
}
/* dash */
.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}
/* ==================[ navbar ]================== */
/* [ navbar-default ] */
.navbar {
    /* --navbar-transition: 0.3s; */
    --navbar-point-color: var(--page-point-color);
    /* 메인메뉴 .navbar ul.navbar-right > li > a*/
    --navbar-dropdown-padding: 0px clamp(15px, 2vw, 30px);
    --navbar-dropdown-font-size: clamp(17px, 2vw, 18px);
    /* 서브메뉴 .navbar ul.navbar-right .dropdown-menu */
    --navbar-dropdown-menu-padding: 10px clamp(15px, 2vw, 25px);
    --navbar-dropdown-menu-font-size: clamp(13px, 2vw, 15px);
    /* 로고 */
    --navbar-logo-width: clamp(140px, 20vw, 210px);
    position: fixed;
    background: #fff;
    box-shadow: none;
    margin-bottom: 0;
    border: 0;
    padding: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    /* 모바일 변수 */
}
@media (width <= 767.98px) {
    .navbar {
        --navbar-dropdown-height: 55px;
        --navbar-dropdown-margin: 0px 15px;
        --navbar-dropdown-menu-height: 40px;
        --navbar-dropdown-background-color: #fff;
    }
}
/* [ navbar-header ] */
.navbar .navbar-header {
    display: flex;
    place-items: center;
}
/* [ navbar-logo ] */
:where(.navbar .navbar-brand, .navbar .navbar-brand:hover, .navbar .navbar-brand:focus) {
    width: var(--navbar-logo-width);
    height: auto;
    margin: 0;
    padding: 0;
    color: #000;
    /* nav 텍스트 로고 */
}
.navbar .navbar-brand span {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 700;
}
/* [ navbar-right 공통 스타일 ]*/
.navbar ul.navbar-right > li > a {
    position: relative;
    font-weight: 500;
    color: #222;
    font-size: var(--navbar-dropdown-font-size);
    /* nav 대메뉴 클릭&후버 시 */
}
:is(.navbar ul.navbar-right > li:is(:hover, :focus) > a, .navbar ul.navbar-right > li > a:is(:hover, :focus)) {
    background: none;
    color: var(--navbar-point-color);
    /* nav 서브메뉴 dropdown-menu background */
}
.navbar ul.navbar-right > li ul.dropdown-menu {
    position: absolute;
    flex-direction: column;
}
/* [ navbar-menu-open 공통 스타일 ] */
.navbar ul.navbar-right > li.open > ul.dropdown-menu {
    display: flex !important;
    /* dropdown-menu color */
}
.navbar ul.navbar-right > li.open > ul.dropdown-menu > li > a {
    color: #222;
    font-size: var(--navbar-dropdown-menu-font-size);
    height: var(--navbar-dropdown-menu-height);
    /* dropdown-menu hover */
}
.navbar ul.navbar-right > li.open > ul.dropdown-menu > li > a:is(:hover, :focus) {
    background: var(--navbar-point-color);
    color: #fff;
}
/* [ navbar-responsive-desktop  Medium devices (tablets, 768px and up) ]*/
@media (width >= 768px) {
    :root {
        /* 메뉴 최대 높이 */
        --navMax: 300px;
        /* 메뉴 드롭다운 높이 최대 높이 - 최소 높이*/
        --navDrop: calc(var(--navMax) - var(--navbar-height));
        /* 메뉴 드롭다운 수 */
        --navDropMenu: calc(var(--navDrop) / 5.3);
    }
    .navbar {
        position: fixed;
        padding: 0;
    }
    .navbar > .container {
        flex-wrap: nowrap;
    }
    .navbar-inverse .navbar-collapse {
        height: 100% !important;
    }
    .navbar-nav {
        position: static;
        height: 100%;
        flex-direction: row;
        justify-content: flex-end;
        /* pc nav 높이 */
    }
    .navbar-inverse {
        height: var(--navbar-height);
    }
    footer > .container,
    .navbar > .container {
        position: static;
        width: 100%;
        max-width: 1820px;
        gap: 20px;
        /* max-width: inherit; */
        padding: 0 20px;
        justify-content: center;
        align-items: flex-start;
    }
    .navbar-collapse {
        width: 100%;
    }
    .navbar-nav,
    .navbar-nav::after {
        transition: var(--navbar-transition);
    }
    .navbar-nav::after,
    .navbar-nav .dropdown-menu,
    .navbar-nav .dropdown.open::after {
        top: var(--navbar-height);
    }
    #site .navbar :is(.navbar-header, .navbar-inverse, .navbar-nav, .dropdown-menu, .navbar-nav > li > a) {
        transition: var(--navbar-transition);
        height: var(--navbar-height);
    }
    #site .navbar-nav::after {
        /* transition: opacity 0.1s, height 0.25s; */
        pointer-events: none;
        content: "";
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 0px;
        background: rgba(255, 255, 255, 0.92);
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
        z-index: -1;
        /* opacity: 0; */
    }
    #site .navbar-nav:hover {
        height: var(--navMax) !important;
    }
    #site .navbar-nav:hover::after {
        height: var(--navDrop);
        /* opacity: 1; */
    }
    .navbar-right {
        margin-right: -30px;
    }
    #site .navbar-inverse :is(.navbar-right, .navbar-right > li) {
        float: inherit !important;
    }
    #site .navbar-inverse :is(.navbar-right, .navbar-right > li > a) {
        display: flex;
        /* pc nav 대메뉴 */
    }
    #site .navbar-nav {
        overflow: hidden;
        justify-content: center;
    }
    #site .navbar-inverse .navbar-nav > li {
        width: clamp(115px, 10vw, 160px);
    }
    #site .navbar-inverse .navbar-nav > li > a {
        justify-content: center;
        align-items: center;
        padding: 0px 32px;
        font-size: clamp(15px, 2vw, 18px);
        text-transform: uppercase;
        letter-spacing: 0;
        font-weight: 500;
    }
    #site .navbar-inverse .navbar-nav > li > a::after {
        content: "";
        width: 0;
        height: 3px;
        position: absolute;
        left: 50%;
        bottom: 0;
        margin: 0 !important;
        transform: translateX(-50%);
        background: #222;
        opacity: 0;
        border: none;
        transition: all 0.3s;
    }
    #site .navbar-inverse .navbar-nav > li:hover > a::after {
        width: 90px;
        opacity: 1;
        /* pc nav 드롭다운 박스 */
    }
    #site .navbar-inverse .navbar-nav .dropdown-menu {
        transition: 0.5s;
        display: flex !important;
        flex-direction: column;
        width: 100%;
        height: calc(100% - var(--navbar-height));
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        border: 0;
        padding: 0;
        text-align: center;
        margin-top: 22px;
        margin-bottom: 22px;
        opacity: 0;
    }
    #site .navbar-inverse:hover .navbar-nav .dropdown-menu {
        opacity: 1;
        /* pc nav 드롭다운 메뉴*/
    }
    #site .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: var(--navDropMenu) !important;
        padding: 10px 25px 10px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        background: transparent;
        letter-spacing: -0.025em;
        color: #333;
    }
    #site .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
        color: #000;
        font-weight: 600;
        /* nav 메뉴 클릭 및 후버 시 */
    }
    #site .navbar-inverse .navbar-nav > li:is(:hover, :focus) > a,
    #site .navbar-inverse .navbar-nav > li:is(:hover, :focus) :is(a.dropdown-toggle, .dropdown-menu) {
        /* background: #222; */
        color: #000;
        font-weight: 600;
        /* [  navbar-custom-scorll-change  ] */
    }
    .navbar:not(.scroll) {
        background-color: var(--navbar-scroll-background-color);
        border-bottom: 1px solid transparent;
    }
    .navbar:is(.top) {
        /* --navbar-height: 80px; */
        --navbar-scroll-filter: invert(1);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 400;
        --navbar-scroll-background-color: transparent;
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:is(:hover, .scroll) {
        --navbar-height: 80px;
        --navbar-scroll-filter: invert(0);
        --navbar-scroll-color: #333;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 500;
        --navbar-scroll-background-color: rgba(255, 255, 255, 0.7);
    }
    .navbar:where(.top, .scroll) {
        --navbar-transition: 0.5s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
        border-bottom: 1px solid #e0e0e0;
    }
    .navbar:where(.top, .scroll) .navbar-brand img {
        filter: var(--navbar-scroll-filter);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a:where(:hover, :focus),
    .navbar:where(.top, .scroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover) !important;
    }
}
/* /* [ navbar-responsive-mobile `md` applies to small devices (landscape phones, less than 768px) ]*/
@media (width <= 767.98px) {
    .navbar {
        width: 100%;
        margin: 0;
        background-color: transparent;
        /* 드롭다운 배경 */
        /* background-color: rgba(255, 255, 255, 0.7); */
    }
    .navbar::before {
        content: "";
        opacity: 0;
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #000;
    }
    .navbar > .container {
        height: var(--navbar-height);
        max-width: 100%;
        flex-direction: column;
        padding: 0;
    }
    .navbar.open {
        overflow: unset;
        height: unset;
        opacity: 0.95;
    }
    .navbar.open > .container {
        height: auto;
    }
    .navbar.open::before {
        transition: opacity 0.3s;
        opacity: 0.5;
    }
    .navbar:where(.navbar-collapse, .navbar-form) {
        border-color: transparent;
        /* nav 상단메뉴*/
    }
    .navbar .navbar-header {
        z-index: 100;
        flex-shrink: 0;
        justify-content: space-between;
        width: 100%;
        height: var(--navbar-height);
        margin: 0 !important;
        border-bottom: 1px solid #ddd;
        /* background-color: #fff; */
        background-color: rgba(255, 255, 255, 0.7);
    }
    .navbar.open .navbar-header {
        background-color: #fff;
    }
    .navbar .navbar-header :where(.navbar-brand, .navbar-brand:hover, .navbar-brand:focus) {
        margin: 0 0 0 15px !important;
    }
    .navbar .navbar-header::before,
    .navbar .navbar-header::after {
        display: none;
        /* nav 햄버거 메뉴 */
    }
    .navbar .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 15px 0 0;
    }
    .navbar .navbar-toggle::before {
        transition: 0.35s;
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 2.2em;
        font-variation-settings: var(--gms-500-out);
    }
    .navbar .navbar-toggle > * {
        display: none;
    }
    .navbar .navbar-toggle:where(:hover, :focus) {
        background: none;
    }
    .navbar.open .navbar-toggle::before {
        content: "\e5cd";
        /* nav 드롭다운 */
    }
    .navbar .navbar-collapse {
        transition: 0.3s;
        overflow: hidden;
        position: sticky;
        top: 0;
        display: flex;
        align-items: flex-start;
        border: 0;
        height: 0;
        max-height: unset;
        transform: translateY(-100%);
    }
    :where(.navbar .navbar-collapse, .navbar .navbar-collapse ul.navbar-right) {
        padding: 0;
        margin: 0 !important;
        width: 100%;
    }
    .navbar.open .navbar-collapse {
        transform: translateY(0%);
        /* nav 드롭다운 > 드롭다운 메뉴 */
    }
    .navbar ul.navbar-right {
        overflow: hidden auto;
        flex-wrap: nowrap;
        max-height: 100svh;
    }
    .navbar.open ul.navbar-right {
        height: calc(100vh - var(--navbar-height));
    }
    .navbar ul.navbar-right > li {
        width: 100%;
        background-color: var(--navbar-dropdown-background-color);
        /* background-color: rgba(255, 255, 255, 0.7); */
    }
    .navbar ul.navbar-right > li > a {
        height: var(--navbar-dropdown-height);
        margin: var(--navbar-dropdown-margin);
        padding-inline: 0;
        border-bottom: 1px solid #ddd;
        /* nav 대메뉴, 드롭다운 메뉴 공통 */
    }
    :where(.navbar ul.navbar-right > li > a, .navbar ul.navbar-right > li.open > ul.dropdown-menu a) {
        display: flex;
        justify-content: start;
        align-items: center;
        /* nav 대메뉴 클릭&후버 시 */
    }
    :where(.navbar ul.navbar-right > .open > a, .navbar ul.navbar-right > .open > a:focus, .navbar ul.navbar-right > .open > a:hover) {
        background-color: inherit;
        color: inherit;
    }
    :where(.navbar ul.navbar-right > li > a:where(:hover, :focus), .navbar ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle) {
        background: #fff !important;
        /* svh 미지원 시 */
    }
    @supports not (height: 100svh) {
        .navbar ul.navbar-right {
            max-height: calc(var(--navbar-height) - 100vh);
        }
    }
    .navbar .dropdown-toggle::after {
        all: unset;
        content: "\e5cf";
        font-family: var(--gms);
        font-variation-settings: var(--gms-300-out);
        margin-left: auto;
        font-size: 1.5em;
    }
    .navbar .dropdown.open .dropdown-toggle {
        color: var(--page-point-color);
        font-weight: 600;
    }
    .navbar .dropdown.open .dropdown-toggle::after {
        content: "\e5ce";
        color: var(--page-point-color);
        font-variation-settings: var(--gms-400-out);
        /* nav .dropdown-menu */
    }
    .navbar ul.dropdown-menu {
        position: relative !important;
        z-index: 100;
        display: none;
        border-radius: 0;
        margin-top: -1px;
        top: unset;
        float: unset;
        padding: 0;
        background-color: #f7f7f7;
    }
    .navbar ul.dropdown-menu > li > a {
        height: var(--navbar-dropdown-menu-height);
        padding: var(--navbar-dropdown-margin);
        font-size: 15px !important;
    }
    .navbar ul.dropdown-menu > li + li > a {
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }
}
/* ==================[ footer ]================== */
#site footer {
    margin-top: 0px;
    padding: clamp(40px, 6vw, 50px) 0 50px;
    background-color: #060606;
    position: relative;
}
.footer-wrap {
    display: flex;
    align-items: flex-start;
    /* flex-wrap: wrap; */
    gap: 15px;
}
img.footer-logo {
    opacity: 0.7;
    margin-top: 5px;
    margin-right: 30px;
    width: clamp(100px, 28vw, 186px);
}
.footer-info {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    padding-left: 10px;
}
.footer-info li {
    display: inline-block;
    margin-right: 12px;
    line-height: 1.55;
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(11px, 2.5vw, 13px);
}
.footer-info li strong {
    color: #bcbcbc;
    font-weight: 500;
    font-size: 14.5px;
}
li.copyright {
    display: inline-block;
    margin-top: 3px;
    font-size: clamp(10px, 1vw, 12px);
    color: #666;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site footer{
        padding-bottom: 20px;
    }
    img.footer-logo {
        margin-right: 0;
        margin-top: 9px;
    }
    .footer-wrap {
        position: relative;
        justify-content: center;
        flex-wrap: nowrap;
        padding-bottom: 30px;
        margin-bottom: 10px;
    }
    .footer-info {
        /* display: grid; */
        /* grid-template-columns: repeat(2, minmax(0, max-content)); */
        position: static;
        gap: 2px 10px;
    }
    .footer-info li:first-child {
        grid-column: span 2;
    }
    .footer-info li {
        white-space: nowrap;
    }
    li.copyright {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        text-align: center;
    }
}
/* 로그인 버튼 */
#loginBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    padding: 8px 11px;
    background: transparent;
    color: #888;
    line-height: 1;
    border-radius: 0;
    border-radius: 0.35rem;
    font-size: clamp(11px, 2vw, 12px);
    margin-left: auto;
    position: absolute;
    right: 100px;
    bottom: 25px;
}
#loginBtn:hover {
    background: #333;
    color: #fff;
    border-color: var(--backgorund-color);
    font-weight: 500;
}
#loginBtn span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-500-out);
    /* 모바일 md */
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #loginBtn {
        position: static;
        margin-left: 15px;
        margin-top: 15px;
        display: none;
    }
    footer > .container {
        max-width: 100%;
    }
}
#scrolltop {
    position: fixed;
    z-index: 1000;
    right: 50px;
    bottom: 50px;
    display: none;
    font-size: 18px;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: #fff;
    background: #086f79;
}
#scrolltop .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
/* mobile*/
@media (max-width: 767px) {
    .footer-info {
        margin-top: 5px;
        padding: 0;
        max-width: clamp(215px, 55vw, 230px);
    }
    .footer-info li {
        display: block;
        line-height: 1.25;
        /* margin-bottom: 5px; */
    }
    .footer-info li + li {
        border: 0;
        margin-left: 0;
        padding-left: 0;
        margin-right: 0;
    }
    #scrolltop {
        right: 15px;
        bottom: 30px;
    }
}
/* 스크롤버튼 */
#scrollTop {
    --width: 40px;
    --bottom: 25px;
    all: unset;
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    /* position: sticky; */
    right: 25px;
    bottom: var(--bottom);
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--width);
    /* margin: calc((var(--width) + var(--bottom)) * -1) 0 var(--bottom) auto; */
    padding: 0;
    background: var(--page-point-color);
    /* border: 1px solid #666; */
    aspect-ratio: 1;
    text-align: center;
    color: #fff;
}
#scrollTop::before {
    content: "\e5d8";
    font-family: var(--gms) !important;
    font-variation-settings: var(--gms-300-out);
    font-size: 1.75rem;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ==================[ component ]================== */
.arrow {
    flex: 0;
    align-self: center;
}
.arrow::before {
    content: "\e5cc";
    display: block;
    font-family: var(--gms);
    font-size: 54px;
    font-variation-settings: var(--gms-300-out);
    color: #333;
}
/* ==================[ subpage ]================== */
/* [ subpage-header ] */
.subpage-header {
    position: relative;
    /* height: clamp(220px, 50vw, 570px); */
    height: clamp(310px, 45vw, 440px);
    padding-top: var(--navbar-height);
    background-color: #888;
}
.subpage-header .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--background-image) no-repeat center / cover;
}
.subpage-header.visual01 {
    --background-image: url(/public/img/sub/sub-top01.jpg);
}
.subpage-header.visual01 .bg {
    background-position: center 5%;
}
.subpage-header.visual02 {
    --background-image: url(/public/img/sub/sub-top02-2.jpg);
}
.subpage-header.visual03 {
    --background-image: url(/public/img/sub/sub-top03-2.jpg);
}
.subpage-header.visual04 {
    --background-image: url(/public/img/sub/sub-top04.jpg);
}
.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    /* gap: 26px; */
    gap: clamp(10px, 5vw, 20px);
}
.subpage-title h2 {
    margin-top: 0;
    line-height: 1;
    text-align: center;
    font-weight: 600;
    color: #fff;
    /* font-size: 55px; */
    font-size: clamp(32px, 3vw, 52px);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.subpage-title h2:only-child {
    margin-top: 0;
}
.subpage-title p {
    font-size: clamp(15px, 3vw, 19px);
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.78;
    letter-spacing: -0.01em;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    .subpage-header {
        padding-top: var(--navbar-height);
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .subpage-header h2 {
        margin-top: 20px;
    }
}
/* [ subpage-navbar ] */
#bs01 .snb {
    display: none;
}
.snb {
    --snb-height: clamp(45px, 5vw, 52px);
    position: relative;
    z-index: 10;
    /* border-bottom: 1px solid #dedede; */
    margin-top: clamp(30px, 5vw, 55px);
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
}
.snb li {
    flex: 0 1 15%;
}
.snb li + li {
    margin-left: -1px;
}
.snb a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: clamp(15px, 3vw, 17px);
    height: var(--snb-height);
    color: #5f5f5f;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    padding-bottom: 2px;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.snb li.active a {
    background: var(--page-point-color);
    border-color: var(--page-point-color);
    font-weight: 500;
    color: #fff;
    /* & li.active a::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -1px;
   display: block;
   width: 100%;
   height: 2px;
   background: var(--page-point-color);
   } */
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .snb li {
        flex-grow: 1;
    }
}
/* [ subpage-title-level ] */
/* 공통 */
:where(.title-h3, .title-h4, .title-h5) :where(p, li) {
    font-weight: 400;
    line-height: 1.6;
}
/* h3 */
.subpage .title-h3 {
    margin-bottom: clamp(60px, 5vw, 85px);
    text-align: center;
}
.subpage .title-h3:only-child {
    margin-bottom: 0;
}
.subpage .title-h3 > h3 {
    font-weight: 600;
    font-size: clamp(32px, 3vw, 40px);
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #111;
}
.subpage .title-h3 > p {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 500;
}
.subpage .title-h3 > * + * {
    margin-top: clamp(15px, 5vw, 30px);
}
.subpage .title-h3:has(p) {
    margin-bottom: clamp(50px, 5vw, 70px);
}
/* h4 */
.subpage .title-h4 {
    margin-bottom: 20px;
}
*:not([class*="title"]) + .subpage .title-h4 {
    margin-top: 50px;
}
.subpage .title-h4 > h4 {
    font-weight: 600;
    font-size: 28px;
    color: #222;
}
.subpage .title-h4 > p {
    font-size: 18px;
}
.subpage .title-h4 > * + * {
    margin-top: 15px;
}
/* h5 */
.subpage .title-h5 {
    margin-bottom: 15px;
}
*:not([class*="title"]) + .subpage .title-h5 {
    margin-top: 30px;
}
.subpage .title-h5 > h5 {
    font-size: 24px;
    font-weight: 500;
}
.subpage .title-h5 > p {
    font-size: 16px;
}
.subpage .title-h5 > * + * {
    margin-top: 15px;
}
/* [ subpage-content ] */
.subpage {
    overflow: hidden;
    position: relative;
}
.subpage section {
    padding: clamp(70px, 15vw, 100px) 0 clamp(100px, 15vw, 150px);
    min-height: 300px;
}
.subpage section:nth-child(even) {
    background-color: #f7f7f7;
}
.greet-wrap {
    display: flex;
    flex-flow: row-reverse;
    gap: clamp(50px, 5vw, 120px);
}
.greet-wrap .img-box {
    flex: 0 1 auto;
    width: 38%;
    background-color: #ccc;
}
.greet-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.greet-wrap .top {
    position: relative;
    padding-right: 0;
    margin: 0 0 clamp(30px, 5vw, 40px);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    color: #b4b4b4;
    line-height: 1.342;
    letter-spacing: -0.015em;
}
.greet-wrap .top strong {
    font-weight: 600;
}
.greet-wrap p {
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.55;
    letter-spacing: -0.02em;
}
.greet-wrap p + p {
    margin-top: clamp(15px, 5vw, 26px);
}
.greet-wrap .name {
    margin: 40px 0 0;
    padding-right: 0;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.greet-wrap .name span {
    margin-bottom: 4px;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 400;
    display: inline-block;
    margin-right: 4px;
}
.greet-wrap .name small {
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
}
.greet-wrap .name strong {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    line-height: 1.3;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .greet-wrap {
        flex-direction: column;
    }
    .greet-wrap .img-box {
        width: 100%;
        aspect-ratio: 5/3;
    }
}
.ov-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 3vw, 20px);
}
.ov-wrap .col {
    padding: 58px 30px 53px;
    text-align: center;
    border: clamp(6px, 1vw, 10px) solid #eee;
}
.ov-wrap .col .material-symbols-outlined {
    font-size: clamp(48px, 3vw, 55px);
    margin-bottom: clamp(10px, 3vw, 25px);
    color: #222;
}
.ov-wrap .col h5 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
}
.ov-wrap .col p {
    margin-top: 7px;
    font-size: clamp(15px, 3vw, 17px);
    font-weight: 400;
    color: #666;
}
.ov-wrap .col small {
    display: block;
    font-size: 12px;
    margin-top: 0px;
    color: #999;
    margin-bottom: -18px;
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (width <= 991.98px) {
    .ov-wrap .col {
        flex: 1 1 40%;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (width <= 575.98px) {
    .ov-wrap {
        justify-content: center;
    }
    .ov-wrap .col {
        flex: 1 1 100%;
        padding: 35px 30px 30px;
        max-width: 250px;
    }
}
.map-wrap iframe {
    width: 100%;
    height: clamp(300px, 25vw, 400px);
    border-radius: 0;
}
.map-wrap .info {
    display: flex;
    margin-top: 30px;
    gap: clamp(10px, 3vw, 25px);
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    .map-wrap .tel {
        margin-left: auto;
    }
}
.map-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(15px, 3vw, 17px);
    letter-spacing: 0;
    font-weight: 500;
    color: #333;
}
.map-wrap li.addr {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.map-wrap li span.material-symbols-outlined {
    flex-shrink: 0;
    font-size: 14px;
    font-variation-settings: var(--gms-700-out), var(--gms-grad-zero);
    color: #fff;
    background: var(--page-point-color);
    border-radius: 50%;
    padding: 7px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .map-wrap .info {
        flex-direction: column;
    }
}
.slogan-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: clamp(20px, 5vw, 35px);
    max-width: 940px;
    margin-inline: auto;
    margin-bottom: clamp(50px, 10vw, 85px);
    text-align: center;
}
.slogan-wrap .col {
    flex: 0 1 auto;
}
.slogan-wrap .img-box {
    /* flex-shrink: 0; */
}
.slogan-wrap .img-box img {
    mix-blend-mode: multiply;
}
.slogan-wrap p {
    font-size: clamp(18px, 3vw, 24px);
    color: #333;
    letter-spacing: -0.02em;
    line-height: 1.6;
    font-weight: 500;
}
.num-wrap {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
}
.num-wrap .col {
    padding: 0px 40px 40px 40px;
    border: 1px solid #d0d0d0;
    border-top: 1px solid #222;
}
.num-wrap h5 {
    /* display: flex; */
    flex-flow: column;
    align-items: center;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    letter-spacing: -0.01em;
    padding-bottom: clamp(20px, 5vw, 35px);
    line-height: 1.4;
    border-bottom: 1px solid #ddd;
    text-align: center;
}
.num-wrap h5 .num {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    background: #2f2f2f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto clamp(25px, 5vw, 45px);
}
.num-wrap ul {
    padding: clamp(20px, 5vw, 35px) 0px 0;
}
.num-wrap li {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 3px;
    position: relative;
    font-size: clamp(14px, 3vw, 16px);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .num-wrap {
        flex-direction: column;
    }
    .num-wrap .col {
        padding: 0 20px 20px 20px;
    }
}
.goal-wrap {
    display: flex;
    /* align-items: center; */
}
.goal-wrap .li-cir {
    padding: 11px 33px 0;
}
.goal-wrap .emp {
    color: #222;
    font-weight: 600;
}
.goal-wrap li {
    padding-left: 16px;
}
.goal-wrap .item {
    position: relative;
    border: 1px solid #d0d0d0;
}
.goal-wrap .item {
    min-height: 320px;
}
.goal-wrap .arrow::before {
    color: #bbb;
    font-size: 55px;
    margin: 0 -5px;
}
.goal-wrap .item h5 {
    text-align: center;
    margin: -1px -1px 0;
    font-weight: 500;
    background: var(--page-point-color);
    letter-spacing: -0.02em;
    color: #fff;
    padding: clamp(10px, 3vw, 15px) 0;
    font-size: clamp(17px, 3vw, 20px);
}
.goal-wrap .item:nth-child(1) h5 {
    background: #5f5f5f;
}
.goal-wrap .item:nth-child(3) h5 {
    background: #404040;
}
.goal-wrap li {
    box-sizing: border-box;
    margin-left: 0;
    font-size: clamp(15px, 3vw, 17px);
    line-height: 1.5;
    letter-spacing: -0.02em;
    padding: 25px 20px;
    min-height: 130px;
}
.goal-wrap li + li {
    border-top: 1px solid #ddd;
}
.goal-wrap li::before {
    left: 6px;
    top: 35px;
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (width <= 991.98px) {
    .goal-wrap {
        flex-direction: column;
    }
    .goal-wrap li {
        min-height: auto;
        padding-block: 20px;
    }
    .goal-wrap li::before {
        top: 29px;
    }
    .goal-wrap .item {
        min-height: auto;
    }
    .goal-wrap .arrow::before {
        content: "\e5cf";
    }
    .goal-wrap .li-cir {
        padding: 0 10px;
    }
}
.work-wrap {
    display: flex;
    gap: 20px;
    margin-top: 65px;
}
.work-wrap > .col {
    background: #f5f5f5;
}
.work-wrap dl {
    padding: 45px 50px 50px;
}
.work-wrap dd,
.work-wrap dt {
    padding: 8px 0px;
    border-bottom: 1px solid #ddd;
    letter-spacing: -0.02em;
}
.work-wrap dt {
    position: relative;
    margin: 0 0 clamp(10px, 2vw, 31px);
    padding: 0 0 0 20px;
    font-size: clamp(18px, 3vw, 20px);
    color: #111;
    font-weight: 600;
    border: none;
}
.work-wrap dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: clamp(11px, 2vw, 11px);
    border-radius: 50%;
    width: 7px;
    height: 7px;
    background: #333;
}
.work-wrap dd {
    font-size: clamp(15px, 3vw, 16px);
    margin: 0 20px 0;
}
.work-wrap dd:last-child {
    border-bottom: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 991.98px) {
    .work-wrap dl {
        padding: 30px 20px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .work-wrap {
        flex-direction: column;
    }
    .work-wrap dt::before {
        width: 5px;
        height: 5px;
        left: 5px;
    }
}
.area-wrap {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}
.area-wrap .col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.area-wrap .c01 {
    --color: #9ea4ad;
}
.area-wrap .c02 {
    --color: #7b8ea5;
}
.area-wrap .c03 {
    --color: #5b6e89;
}
.area-wrap .c04 {
    --color: #4e5d72;
}
.area-wrap .header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: clamp(5px, 2vw, 10px) solid var(--color);
    aspect-ratio: 1;
    max-width: clamp(190px, 15vw, 235px);
    margin-inline: auto;
    border-radius: 9999px;
}
.area-wrap .header span {
    color: var(--color);
    font-size: 55px;
}
.area-wrap .header h5 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    margin-top: clamp(5px, 1vw, 13px);
    color: #2f2f2f;
    letter-spacing: -0.02em;
}
.area-wrap .line {
    position: relative;
    width: 1px;
    margin-inline: auto;
    height: 30px;
    background: #d0d0d0;
}
.area-wrap .line::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 7px;
    height: 7px;
    /* background: #2f2f2f; */
    border-radius: 50%;
    margin-left: -3px;
    margin-top: -4px;
}
.area-wrap .info {
    padding: clamp(20px, 5vw, 30px) clamp(15px, 3vw, 25px);
    flex: 1;
    font-size: 16px;
    /* text-align: center; */
    /* min-height: 115px; */
    min-height: 200px;
    border: 1px solid #d0d0d0;
    /* max-height: 200px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.area-wrap .info :is(li, p) {
    box-sizing: border-box;
    line-height: 1.65;
    letter-spacing: -0.02em;
    color: #333;
    font-size: clamp(14px, 3vw, 16px);
    width: 100%;
}
.area-wrap .info ul {
    width: 100%;
}
.area-wrap .info li + li {
    margin-top: 10px;
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (width <= 991.98px) {
    .area-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 20px;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (width <= 575.98px) {
    .area-wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .area-wrap .info {
        min-height: auto;
    }
}
/* ==================[ mainpage ]================== */
/* [ main-carousel ] */
#mainCarousel .item {
    /* 반응형(1200px~): ~600px / 최대 높이: 850px / 슬라이드 풀페이지*/
    height: max(clamp(600px, 5vw, 750px), 100svh);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #mainCarousel .item {
        height: max(700px, calc(100svh - var(--navbar-height)));
    }
}
#mainCarousel .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: rgb(0, 0, 0, 0.5); */
}
#mainCarousel .item:first-child {
    background-position: top center;
}
.carousel-caption {
    top: 51%;
    right: 0;
    left: 0;
    bottom: inherit;
    text-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 1360px;
    padding-inline: 20px;
}
.carousel-caption h1 {
    position: relative;
    font-size: clamp(28px, 3.9vw, 54px);
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0;
    color: inherit;
    text-align: left;
}
.carousel-caption h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 450;
    letter-spacing: 0.05em;
    margin-bottom: clamp(1rem, 2vw, 2.5rem);
}
.carousel-caption p {
    margin-top: 25px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: inherit;
}
.carousel-control.left {
    --control-left: 0;
    --control-content: "\e2ea";
}
.carousel-control.right {
    --control-right: 0;
    --control-content: "\e5e1";
}
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--control-left);
    right: var(--control-right);
    display: flex;
    align-items: center;
    opacity: 1;
    width: 10%;
    height: 100%;
    background: transparent;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
}
.carousel-control span.glyphicon {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: clamp(40px, 5vw, 64px);
    margin: 0;
}
.carousel-control span.glyphicon::before {
    content: var(--control-content);
    color: #fff;
    font-family: var(--gms) !important;
    font-variation-settings: var(--gms-100-out);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .carousel-control {
        display: none;
    }
}
/* [ indicators ] */
.carousel-indicators {
    --indicators-circle: clamp(8px, 2vw, 11px);
    --indicators-gap: 8px;
    --indicators-bottom: 40px;
    --indicators-content: center;
    --indicators-color-normal: rgba(255, 255, 255, 0.5);
    --indicators-color-active: #fff;
    z-index: 15;
    position: absolute;
    left: 50%;
    translate: -50% 0;
    bottom: var(--indicators-bottom);
    width: 100%;
    display: flex;
    justify-content: var(--indicators-content);
    gap: var(--indicators-gap);
    margin: 0;
    text-align: center;
    list-style: none;
}
.carousel-indicators li {
    cursor: pointer;
    opacity: 1;
    background-color: var(--indicators-color-normal);
    transition: ease-in-out 0.15s all;
    width: var(--indicators-circle);
    height: auto;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    aspect-ratio: 1;
    border: 0;
    margin: 0;
}
.carousel-indicators li.active {
    background: var(--indicators-color-active);
    box-shadow: none;
}
/* [ main-content ] */
.mainpage {
    overflow: hidden;
    position: relative;
}
.mainpage section {
    position: relative;
    padding-block: clamp(80px, 10vw, 100px) clamp(80px, 10vw, 120px);
}
.mainpage h3 {
    font-size: clamp(36px, 5vw, 50px);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}
/* [ main-widget ] */
[class^="board_box"] {
    margin-bottom: 0;
}
.page-header {
    margin-block: 0 30px;
    border-bottom: 1px solid #000;
}
.page-header h4 {
    display: inline-block;
    font-size: clamp(18px, 3vw, 22px);
}
.page-header i::before {
    position: relative;
    display: block;
    content: "\e145" !important;
    translate: 0 2px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 500;
    color: #000;
}
.type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.type_list li {
    padding: 0;
    display: flex;
}
.type_list a:hover {
    text-decoration: underline;
}
.type_list :where(li, a) {
    line-height: 1;
    font-size: clamp(14px, 3vw, 16px);
    color: #000;
}
.type_list .info span:not(.regdate) {
    display: none;
}
.type_thumb {
    display: grid;
    grid-template-columns: repeat(2, minmax(1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}
.type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
.type_thumb .thumb {
    aspect-ratio: 1.6666666667;
    height: auto;
}
.type_thumb .bottom {
    padding: 0;
}
.type_thumb .info {
    display: none;
}
.type_thumb .title {
    padding: 0;
    margin-top: 5px;
}
.type_thumb .title a {
    font-size: clamp(15px, 3vw, 17px);
}
/* [ main-popup ] */
#mainPopup {
    position: relative;
    top: calc(var(--navbar-height) - 140px);
}
.main_popup {
    border: 0;
    border-radius: 0;
    background-color: transparent !important;
}
.main_popup button.close {
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
}
.main_popup span.material-symbols-outlined {
    font-variation-settings: var(--gms-100-out);
    font-size: inherit;
}
.main_popup .main_popup_contents {
    overflow: hidden;
    padding: 10px;
    background: #fff;
}
.main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
}
.main_popup_optional :where(label, div) {
    opacity: 0.8;
}
.main_popup_optional :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
.main_popup_optional :where(label, div, span) {
    float: unset !important;
    line-height: 1;
}
.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 400;
}
.main_popup_optional label span.material-symbols-outlined {
    font-size: 1.25rem;
    margin-right: 2px;
}
/* ==================[ table ]================== */
.table-style {
    border: 1px solid #ddd;
}
.table-style :where(th, td) {
    text-align: center;
    padding: 12px;
    font-size: 16px;
    vertical-align: middle;
}
.table-style thead th {
    border-bottom: 0;
    background-color: var(--page-point-color);
    border: 1px solid var(--page-point-color-dark);
    color: #fff;
}
.table-style ul {
    text-align: left;
}
.table-spec {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
}
.table-spec :where(th, td) {
    text-align: center;
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
    border-right: 0 1px 1px 0 solid var(--border-color);
}
.table-spec td {
    color: #444;
}
.table-spec thead th {
    border-bottom: 0;
    background-color: #eee;
    border: 1px solid var(--border-color);
    color: #222;
    font-weight: 600;
}
/* ==================[ board ]================== */
/* 게시판 숨김 */
:where(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: none;
    visibility: hidden;
}
.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: 70px;
    justify-content: center;
    align-items: center;
}
.board_wrapper :where(.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;
}
: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;
    gap: clamp(7px, 5vw, 10px) clamp(15px, 3vw, 30px);
}
:where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
:where(.member_wrapper, .board_wrapper) .checkbox label {
    font-size: 1rem;
}
: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;
    /* color: #555; */
    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) .custom_checkbox: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;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-block: 0 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
#bbsArea .category_wrap li {
    margin: 0;
}
#bbsArea .category_wrap a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}
#bbsArea .category_wrap a:hover {
    color: #111;
}
#bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}
/* 게시판 custom*/
:where(#bbsArea) :where([class*="wrap"]) {
    margin: 0;
    /* 게시판 노출 */
}
:where(#bbsArea) :where(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    visibility: visible;
    margin-top: 0;
}
:where(#bbsArea) .board_wrapper + :where(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}
:where(#bbsArea) .pagination_wrap + .search_wrap {
    margin-top: 30px;
}
:where(#bbsArea) .pagination_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
:where(#bbsArea) .pagination_wrap li.active :where(a, a:hover, a:focus) {
    text-decoration: underline;
    color: #222;
}
:where(#bbsArea) .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
}
:where(#bbsArea) .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
    /* 검색 */
}
:where(#bbsArea) .search_wrap #search_kind {
    line-height: 1;
    /* 게시글 작성 */
}
:where(#bbsArea) .search_wrap .write_btn_wrap {
    margin-top: 0;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    /* 게시판 목록 하단 */
    :where(#bbsArea) .search_wrap .write_btn_wrap {
        width: 100%;
    }
    :where(#bbsArea) .search_wrap #write_btn {
        width: 100%;
        min-width: auto;
    }
}
:where(#bbsArea) .badge {
    display: inline-flex;
    translate: 0 0px;
    background-color: #000;
    border-radius: 0;
    padding: 4px 7px;
    margin-right: 0px;
    /* 게시글 수정 */
}
:where(#bbsArea) .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
:where(#bbsArea) .option_wrap .list_btn_wrap {
    position: static;
    /* 게시글 댓글 */
}
:where(#bbsArea) .reply_wrap h4 {
    text-align: left;
    font-size: clamp(15px, 3vw, 17px);
}
:where(#bbsArea) .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
:is(:where(#bbsArea) .reply_wrap #reply_modify_btn, :where(#bbsArea) .reply_wrap .text-left + button) {
    margin-left: auto;
}
:where(#bbsArea) .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
:where(#bbsArea) .reply_wrap #reply_list .info {
    display: flex;
    gap: 10px;
    height: 40px;
}
:where(#bbsArea) .reply_wrap #reply_list :where([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
:where(#bbsArea) .reply_wrap #reply_list :where([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
:where(#bbsArea) .header_wrap span {
    color: #999;
    font-size: 12px;
}
:where(#bbsArea) .header_wrap strong {
    color: #999;
}
/* 게시글 작성 */
.board_wrapper .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}
.board_wrapper .table.board_write_table tbody th {
    background-color: transparent;
    font-weight: 700;
}
.board_wrapper .table.board_write_table tbody td {
    padding-block: 0px;
}
.board_wrapper .table.board_write_table .text-muted {
    margin-top: 8px;
}
.board_wrapper .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
.board_wrapper .table.board_write_table .files .fileInput input {
    width: 100%;
}
.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
.board_wrapper .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
}
.board_wrapper .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
    /* 휴지통 버튼 */
}
.board_wrapper .table.board_write_table .files .refresh {
    cursor: pointer;
}
.board_wrapper .table.board_write_table .files .refresh:hover {
    color: #ec0909;
    /* 파일 추가 버튼 */
}
.board_wrapper .table.board_write_table .files + #File_add {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
}
.board_wrapper .table.board_write_table .files + #File_add .fa-plus {
    line-height: 0;
    /* input 가로 */
}
.board_wrapper .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
    width: 100%;
    /* 필수 입력 항목 */
}
.board_wrapper .table.board_write_table :where(th > span, span.required_text) {
    position: static;
    margin: -0.15em 3px 0 0;
}
@media (width >= 768px) {
    /* 모바일 md */
    .board_wrapper .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
}
@media (width <= 767.98px) {
    .board_wrapper .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100% !important;
    }
    .board_wrapper .table.board_write_table #delete_thumb {
        width: 100%;
    }
}
/* 게시글 상세 */
.board_data_view {
    border-top: 1px solid #333;
}
.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 30px 15px;
    text-align: left;
}
.board_data_view .header_wrap .title {
    font-weight: 600;
    font-size: 25px;
    /* 게시글 상세 리셋*/
}
.board_data_view .contents_wrap .contents_inner {
    font-size: 14px;
}
.board_data_view .contents_wrap {
    padding-inline: 15px;
}
.board_data_view .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
    font-size: 16px;
}
.board_data_view .contents_wrap :where(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside;
}
.board_data_view .contents_wrap ul li {
    list-style-type: disc;
}
.board_data_view .contents_wrap ol li {
    list-style-type: decimal;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .board_data_view .download_wrap tr {
        display: flex;
        flex-direction: column;
    }
    .board_data_view .download_wrap tr > * {
        width: 100%;
    }
    .board_data_view .download_wrap tr th {
        padding-bottom: 10px;
    }
    .board_data_view .download_wrap tr a {
        word-break: break-all;
    }
    .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }
}
/* input */
.form-control {
    padding: 0.5rem 0.85rem;
}
.form-control[type="file"] {
    line-height: 2.8;
    padding: 0 0.8rem;
    margin: 0;
}
.wr_form_item .form-control {
    background-color: transparent;
    padding-right: 35px;
}
/* 자동입력방지 */
#wr_captcha {
    margin-top: 0 !important;
}
#captcha {
    z-index: 10;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: 40px;
    border-color: transparent;
}
#captcha + br {
    display: none;
}
#captcha + br + input {
    margin-left: -1px;
}
#captcha + br + input:focus {
    z-index: 15;
}
td:has(#captcha) {
    --display: flex !important;
    gap: 0 !important;
}
/* [ board-columns ] */
:where(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}
@media (width >= 576px) {
    :where(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
@media (width >= 768px) {
    :where(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
:where(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
    /* 등록된 [상품/게시글]이 없습니다 문구 */
}
:where(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}
:where(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}
/* [ board-list ] */
/* 게시판 리스트, 현황 */
:where(.board_list_list, .board_status_list) .table_default {
    border-top: 1px solid #333;
    margin-bottom: 0;
}
:where(.board_list_list, .board_status_list) .table_default :where(th, td) {
    padding: 14px 18px;
    font-size: clamp(15px, 2.5vw, 15px);
    border-bottom: 1px solid #ddd;
}
:where(.board_list_list, .board_status_list) .table_default td {
    color: #888;
}
:where(.board_list_list, .board_status_list) .table_default td:only-child {
    display: table-cell;
}
:where(.board_list_list, .board_status_list) .table_default thead th {
    background: #f5f5f5;
    font-weight: 600;
    font-size: clamp(15px, 2.5vw, 16px);
}
:where(.board_list_list, .board_status_list) .table_default tbody th.num {
    font-weight: normal;
}
:where(.board_list_list, .board_status_list) .table_default tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    font-size: clamp(16px, 3vw, 17px);
    color: #222;
    text-overflow: ellipsis;
    font-weight: 500;
}
:where(.board_list_list, .board_status_list) .table_default tbody .subject a:hover {
    text-decoration: underline;
    text-underline-position: under;
}
:where(.board_list_list, .board_status_list) .table_default.table_responsive tbody th {
    margin-bottom: 0;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :where(.board_list_list, .board_status_list) .table_default :where(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    :where(.board_list_list, .board_status_list) .table_default .subject {
        width: 100%;
    }
    :where(.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 :where(.left, .right) {
    width: auto;
    height: auto;
}
.table_blog dd a {
    font-weight: 500;
}
:where(.table_blog dd:hover a, .table_blog dd a:where(:hover, :focus)) {
    color: var(--page-point-color);
    /* 모바일 md */
}
@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);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .table_blog dd .right {
        padding-top: 0 !important;
    }
    .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;
    /* 모바일 md */
}
@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: 0;
}
:where(.table_video, .table_blog2, .table_pd) img.thumb {
    --display: block;
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
    background-size: cover;
    background-color: #ccc;
}
:where(.table_video, .table_blog2, .table_pd) span.thumb {
    display: none;
}
:where(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}
:where(.table_video, .table_blog2) .bottom {
    margin-top: 15px;
    padding: 0;
}
:where(.table_video, .table_blog2) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 0;
    padding: 0;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info span {
    padding: 0;
}
/* [ board-form ] */
:where(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
:where(.board_wrapper form[id*="form"] table.table, .board_wrapper form[id*="form"] :where(th, td)) {
    padding: unset;
    width: unset;
    height: unset;
    border: 0;
    line-height: 1;
    font-size: 1rem;
}
.board_wrapper form[id*="form"] table.table {
    width: 100%;
    border-top: 0;
}
.board_wrapper form[id*="form"] table.table th {
    --padding: 0;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    /* 모바일 md */
}
@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;
}
.board_wrapper form[id*="form"] table.table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: flex-start;
    gap: 20px;
    padding: clamp(18px, 3vw, 20px) 10px;
    border-bottom: 1px solid #ccc;
}
.board_wrapper form[id*="form"] table.table tbody tr:first-child {
    border-top: 1px solid #000;
}
.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 !important;
}
/* ==================[ member ]================== */
:is(.find_container, .login_container) .member_wrapper {
    width: 400px;
}
:is(.find_container, .login_container) .member_wrapper .form-group {
    height: 40px;
}
: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, 50px) clamp(20px, 3vw, 40px);
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: inherit;
    background: #fff;
    /* 모바일 md */
}
@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;
    margin: 0 auto;
}
.member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}
.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 14px);
    margin-bottom: 20px;
}
.member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .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_box + .checkbox {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.75em 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;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .member_wrapper .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
/* [ form ] */
.member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
.member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}
.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 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: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
/* [ member-login ] */
:where(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px !important;
}
:where(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #fff;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :where(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 150px 0 150px;
        height: auto;
    }
}
:where(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (width >= 992px) {
    :where(#find_idpw, .login_wrapper) {
        height: 100vh;
    }
}
@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;
    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;
    /* 모바일 md */
}
@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;
    }
}
/* 모바일 md */
@media (width <= 767.98px) {
    .member_wrapper #join_form th {
        padding: 10px 20px !important;
        margin-bottom: 10px;
    }
    .member_wrapper #join_form td {
        --display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    .member_wrapper #join_form td > div:has(textarea) {
        width: 100%;
    }
    .member_wrapper #join_form td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 20px;
    }
    .member_wrapper #join_form td[style="vertical-align:middle"] span {
        margin-top: 0 !important;
    }
    .member_wrapper #join_form td input:not(#mb_mailing) {
        width: 100% !important;
    }
    .member_wrapper #join_form tr:last-child td {
        display: block !important;
    }
}
.member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
.member_wrapper .table tbody th {
    width: auto;
    padding-inline: 25px 15px;
    background-color: rgba(0, 0, 0, 0.03);
}
.member_wrapper .table tbody th span {
    color: var(--page-point-color);
}
.member_wrapper .table tbody td {
    padding-inline: 15px;
}
.member_wrapper .table tbody :where(th, td) {
    --display: block;
    padding-block: 12px;
    font-size: clamp(13px, 3vw, 14px);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block !important;
        width: 100% !important;
    }
    .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2vw, 17px);
    }
    .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }
    .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;
    }
}
