@charset "utf-8";

/* ==================[ Variable ]================== */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #2197bd;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #117a9c;
    --page-point-color-hover: var(--page-point-color-dark);
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 92px);
    /* container */
    --container-padding-inline: 15px;
    /* form */
    --form-height: 42px;
    /* snb */
    --snb-height: 60px;
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}
@supports not (max-height: 100svh) {
    :root {
        --svh100: 100vh;
    }
}
/* ==================[ Reset ]================== */
html {
    font-size: 14px;
}
#site {
    padding-top: 0;
    font-family: var(--page-font-family);
}
/* [ FOUC START 2405 ] */
#site > *:not(#force__wrapper) {
    visibility: hidden;
}
#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}
/* [ FOUC END ] */

#site.modal-open {
    overflow: unset !important;
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0 !important;
}
* {
    word-break: keep-all;
    float: unset !important;
}
.cke_resizer_ltr {
    float: right !important;
}
:where(*::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 */
:is(ol, ul, li, dl) {
    all: unset;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
    all: unset;
    display: block;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    box-sizing: border-box;
    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: #000;
}
: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;
}
/* expend 숨김 */
.caret {
    display: none !important;
}
/* button */
.btn {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    place-content: center;
    place-items: center;
    font-size: clamp(13px, 5vw, 15px);
    line-height: 1;
    height: 42px;
    padding: 0 1em;
    border-radius: 4px;
    outline: none !important;
}
.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;
}

/* image */
.img-box {
    position: relative;
    display: flex;
    /* background-color: #ccc; */
}
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
img.img-cover {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
/* layout */
: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;
}
/* modal  */
.modal-backdrop {
    display: none !important;
}
.modal-open .modal {
    z-index: 10000;
    display: flex;
    width: 100%;
    justify-content: center;
}
.modal-body {
    padding: 30px;
}
.modal .modal-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 22px);
}
.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);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal.fade .modal-dialog {
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    /* width: 100%; */
}
.modal-open .modal {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
}
#delete_modal.in + .modal {
    display: none !important;
}
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

/* 구글맵 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-300-out), var(--gms-grad-zero);
    user-select: none;
}
/* ==================[ common ]================== */
/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    padding-inline: var(--container-padding-inline) !important;
}
[class*="container"]::before,
[class*="container"]::after {
    content: none;
}
/* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
@media (width >= 1260px) {
    [class*="container"] {
        max-width: 1230px;
    }
}
/* list-style */
:where(ol, ul)[class*="li-"] {
    display: flex;
    flex-direction: column;
}
:where(img) + :where(ol, ul)[class*="li-"] {
    margin-top: 20px;
}
:where(ol, ul)[class*="li-"] > li {
    position: relative;
    padding-left: 0.8em;
}
.li-check > li {
    position: relative;
    padding-left: 1.3em;
    font-size: 15px;
}
:where(ol, ul)[class*="li-"] small {
    font-size: 0.85em;
}
/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    display: block;
    width: 0.3em;
    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 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(20px, 2vw, 30px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(15px, 2vw, 18px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(14px, 2vw, 16px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(150px, 15vw, 220px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
}
.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
.navbar a {
    cursor: pointer;
}
.navbar .navbar-header {
    margin-inline: 0 !important;
}
.navbar :where(*):before,
.navbar :where(*):after {
    content: none;
}
.navbar {
    all: unset;
    z-index: 5000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #fff;
    border-bottom: 0px solid #ddd;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
}
/* 로고 */
.navbar .navbar-brand,
.navbar .navbar-brand:is(:hover, :focus) {
    display: block;
    width: var(--navbar-logo-width);
    margin-left: 0 !important;
}
.navbar .navbar-brand img {
    width: var(--navbar-logo-width);
    /* margin-top: 4px; */
    margin-bottom: 10px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .navbar .navbar-brand img {
        margin-bottom: 0;
    }
}
/* 텍스트 로고 */
.navbar .navbar-brand span {
    position: relative;
    display: block;
    font-size: var(--navbar-logo-font-size);
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}
/* 메인메뉴 */
.navbar .navbar-right > li > a {
    z-index: 100;
    font-size: var(--navbar-menu-font-size);
    color: #000;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: -0.4px;
}
.navbar .navbar-right :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
    position: relative;
    z-index: 100;
    color: var(--page-point-color);
    background-color: transparent;
    text-shadow: 0 0 0.01em var(--page-point-color);
    /* border-bottom: 3px solid var(--page-point-color); */
}
/* 서브 드롭다운메뉴 */
.navbar .navbar-right :is(.dropdown-menu) {
    z-index: 50;
    background-color: #fff;
}
.navbar .navbar-right :is(.dropdown-menu) a {
    all: unset;
    cursor: pointer;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: #333;
    width: 100%;
}
.navbar .navbar-right :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: var(--page-point-color);
    text-decoration: underline;
}
.navbar #gnbauth i {
    display: none;
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    /* 메인메뉴 */
    .navbar .navbar-collapse {
        display: flex !important;
        align-self: stretch;
    }
    .navbar .navbar-right {
        display: flex;
        align-self: stretch;
    }
    .navbar .navbar-right > li {
        position: relative;
        display: flex;
    }
    .navbar .navbar-right > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background-color: transparent;
        padding-inline: var(--navbar-menu-padding-inline);
        padding-block: 7px 0;
        letter-spacing: 0;
    }
    .navbar .navbar-right :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
        /* transform: translateY(1px); */
    }
    .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
        margin-right: calc(var(--navbar-menu-padding-inline) * -1);
    }
    /* 데스크탑 서브 드롭다운메뉴 */
    .navbar .dropdown-menu {
        all: unset;
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        border-radius: 6px;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
        margin-top: 0px !important;
        padding: 25px;
        min-width: 180px;
        gap: 12px;
        opacity: 0;
        transform-origin: center top;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    @keyframes menuOpen {
        0% {
            opacity: 0;
            scale: 1 0.5;
        }
        100% {
            opacity: 1;
            scale: 1 1;
        }
    }
    #site .navbar .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        font-weight: 400;
        justify-content: center;
        text-align: center;
    }
    /* [  navbar-custom-scorll-change  ] */
    .navbar:is(.top) {
        /* --navbar-height: 80px; */
        --navbar-scroll-filter: grayscale(1) brightness(10) invert(0);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 400;
        --navbar-scroll-background-color: transparent;
        /* --navbar-logo-width: 120px; */
        background-color: var(--navbar-scroll-background-color);
        border-color: rgba(255, 255, 255, 0);
    }
    .navbar:not(.scroll) {
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:is(:hover, .scroll) {
        /* --navbar-height: 100px; */
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #333;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 600;
        --navbar-scroll-background-color: #fff;
        /* --navbar-logo-width: 150px; */
    }
    .navbar:where(.top, .scroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:where(.top, .scroll) .navbar-brand img {
        transition: width 0.25s;
        filter: var(--navbar-scroll-filter);
    }
    .navbar:where(.top, .scroll) .navbar-brand span {
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a:where(:hover, :focus),
    .navbar:where(.top, .scroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover) !important;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    /* 배경 */
    body::before {
        transition: 0.35s;
        content: "";
        display: block;
        z-index: 1000;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        animation: menuHeight 0s 0.35s forwards;
    }
    body.menu-overlay::before {
        opacity: 1;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        background-color: rgba(0, 0, 0, 0.5);
        animation: none;
    }
    @keyframes menuHeight {
        from {
            height: 100%;
        }
        to {
            height: 0;
        }
    }
    .navbar {
        overflow: hidden;
        animation: menuHidden 0s 0.401s forwards;
    }
    @keyframes menuHidden {
        from {
            overflow: hidden;
        }
        to {
            overflow: visible;
        }
    }
    .navbar .navbar-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .navbar-brand {
        order: 1;
    }
    .navbar .navbar-toggle {
        order: 2;
    }
    .navbar .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0;
    }
    .navbar .navbar-toggle::before {
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 2em;
        font-variation-settings: var(--gms-500-out);
    }
    .navbar .navbar-toggle > * {
        display: none;
    }
    .navbar .navbar-toggle:where(:hover, :focus) {
        background: none !important;
    }
    .navbar .navbar-toggle.open::before {
        content: "\e5cd";
    }
    .navbar .navbar-collapse {
        transition: 0.4s;
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid #eee;
        max-height: 0;
        height: auto !important;
    }
    @keyframes menuHeight {
        from {
            height: 100%;
        }
        to {
            height: 0;
        }
    }
    .navbar .navbar-collapse .navbar-right {
        display: flex;
        flex-direction: column;
        overflow: hidden auto;
        position: relative;
        width: 100%;
        padding-block: 0px;
    }
    .navbar .navbar-collapse.open {
        transition: all 0.5s;
        max-height: var(--svh100);
    }
    .navbar .navbar-right > li {
        transition: inherit;
    }
    .navbar .navbar-right > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 55px;
        background-color: #fff !important;
        border-bottom: 1px solid #ddd !important;
    }
    .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);
    }
    .navbar .navbar-right .dropdown-menu {
        /* transition: 0.75s; */
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #eee !important;
        padding: 0 !important;
        max-height: 0;
    }
    .navbar .navbar-right .dropdown-menu a {
        width: 100%;
        display: block;
        color: #555 !important;
        padding: 10px 15px !important;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        opacity: 1;
        max-height: var(--svh100);
    }
}
/* ==================[ footer ]================== */
footer {
    margin-top: 0px;
    background-color: #2c2e33;
    /* left logo */
    color: #fff;
}
footer img {
    opacity: 0.95;
    width: 200px;
    /* 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: #666;
    font-size: 13px;
}
footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 0 10px;
}
footer .footer-logo {
    flex-shrink: 0;
    width: 120px;
}
footer .footer-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 55px 0 55px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    footer .footer-wrap {
        flex-direction: column;
        gap: 20px;
    }
}
#floating {
    z-index: 10000;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 220px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    /* border: 1px solid #6b929e; */
    background: linear-gradient(49deg, #3db0bb 0%, #397aca 100%);
    box-shadow: 0.5rem 0.5rem 1.5rem rgba(0, 0, 0, 0.21);
}
#floating .contact-box {
}
#floating .contact-box .inner {
    /* padding: 30px; */
}
#floating .contact-box h5 {
    font-size: 18px;
    font-weight: 500;
    padding: 25px 0 10px;
    color: #fff;
    text-align: left;
    padding-left: 22px;
}

#floating .contact-box p.tel {
    font-size: 27px;
    font-weight: 900;
    color: #fff;
}
#floating .contact-box p.email {
    font-size: 16px;
    color: #a8eaff;
}
#floating .contact-box a.btn {
    display: block;
    width: auto;
    margin: 0px 30px;
    margin-top: 25px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 30px;
    color: #000000;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.034em;
    /* box-shadow: 0 6px 9px 0px rgba(0, 0, 0, 0.1); */
}
#floating .contact-box .time {
    margin-top: 15px;
    width: fit-content;
    margin-inline: auto;
}
#floating .contact-box .time li {
    display: flex;
    font-size: 16px;
    gap: 10px;
    font-weight: 500;
    color: #fff;
}
#floating .contact-box .time li + li {
    margin-top: 5px;
}
#floating .contact-box .time li b {
    width: 30px;
    flex-shrink: 0;
    color: #fff;
    font-weight: 600;
}

#floating .sns-box {
    display: flex;
    /* flex-direction: column; */
    /* margin-top: 20px; */
    padding: 20px 0 0;
}
#floating .sns-box .sns {
    flex: 1;
    /* flex-shrink: 0; */
    width: 100%;
    height: 73px;
    gap: 6px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-weight: 500;
    aspect-ratio: 1;
    font-size: 13px;
    background-color: #222;
    /* background-color: var(--page-point-color-dark); */
}
#floating .sns-box .sns.news:hover {
    background-color: #c30707;
}
#floating .sns-box .sns.blog:hover {
    background-color: #2fb44a;
}
#floating .sns-box .sns.youtube:hover {
    background-color: #e12f2f;
}
#floating .sns-box .sns img {
    height: 20px;
    object-fit: contain;
    object-position: center;
}
#floating .sns-box .sns i {
    height: 20px;
    font-size: 18px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #floating {
        transition: 0.5s;
        left: 10px;
        right: 10px;
        bottom: 10px;
        height: 50px;
        width: auto;
        max-width: 300px;
        margin-inline: auto;
    }
    #floating:hover {
        bottom: 10px;
        height: 360px;
    }
    #floating .contact-box h5 {
        transition: 0.25s;
        text-align: center;
        padding-left: 0;
        padding-block: 12px 15px;
        /* padding-bottom: 30px; */
    }
    #floating:hover h5 {
        padding-block: 25px 10px;
    }
}
/* 로그인 버튼 */
#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;
    }
}
/* ==================[ subpage ]================== */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top01.jpg);
    position: relative;
    height: clamp(250px, 25vw, 400px);
    background-color: #888;
}
.subpage-header .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--background-image) no-repeat center / cover;
    filter: brightness(0.6);
}
.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: var(--navbar-height);
}
.subpage-title h2 {
    line-height: 1;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: clamp(32px, 5vw, 54px);
}
/* [ subpage-navbar ] */
.snb {
    position: relative;
    z-index: 10;
    background: #0b3278;
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
}
.snb li {
    flex: 1;
}
.snb a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    height: var(--snb-height);
    color: rgba(255, 255, 255, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.snb a:hover,
.snb a:focus {
    color: #fff;
}
.snb li:first-child a {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.snb li.active a {
    background: #fff;
    font-weight: 700;
    color: #1e468c;
    padding-top: 5px;
}
.snb li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--page-point-color);
    display: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .snb {
        display: none;
    }
}
/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
.subpage [class*="title-h"] {
    --h-line-height: 1.5;
    --p-font-weight: 400;
    --p-color: #333;
    --p-line-height: 1.5;
}
.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);
}
/* 제목+본문 간격 */
.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 [class*="title-h"] > span.mini + :is(h2, h3, h4, h5, h6) {
    margin-top: 0px;
}
.subpage .title-h3 {
    position: relative;
    --h-font-size: 32px;
    --h-font-weight: 700;
    --h-color: var();
    --h-color: #007eb3;
    --text-between: 10px;
    margin-bottom: 50px;
    display: none;
}
.subpage .title-h4 {
    --h-font-size: clamp(22px, 3vw, 42px);
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: clamp(16px,3vw,22px);
    --p-font-weight: 600;
    --text-between: 30px;
    --title-between: clamp(70px, 5vw, 120px);
    margin-bottom: clamp(30px, 5vw, 60px);
    --h-letter-spacing: -0.034em;
    position: relative;
    --h-line-height: 1.4;
}
.subpage .title-h4 .mini {
    display: inline-block;
    padding: 8px 15px;
    line-height: 1;
    background-color: var(--page-point-color);
    font-size: clamp(14px,2vw,18px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0;
    border-radius: 2px;
}
.subpage .title-h4:has(p) {
    margin-bottom: 50px;
}
.subpage .title-h4 li + li {
    margin-top: 5px;
}
.subpage :is(.title-h4, .title-h5) + .title-h4 {
    margin-top: 160px;
}
.subpage .title-h4 b {
    font-weight: 700;
    color: inherit;
}
#site .subpage .title-h4 p:only-child {
    font-size: 16px;
    font-weight: 450;
}
.subpage .title-h4 :is(img, img + p) {
    margin-top: 30px;
}
.subpage .title-h4 span.point {
    color: var(--page-point-color);
}
.subpage .title-h4.greeting h4 {
    margin-bottom: clamp(30px, 5vw, 60px);
}
.subpage .title-h4.greeting p {
    line-height: 1.8;
    margin-top: clamp(15px, 5vw, 35px);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: -0.034em;
}

.subpage .title-h5 {
    --h-font-size: clamp(22px,3vw,25px);
    --h-font-weight: 700;
    --p-font-size: clamp(16px,2vw,18px);
    --text-between: 8px;
    --title-between: 50px;
    margin-bottom: 30px;
    --h-letter-spacing: -0.034em;
}
.subpage .title-h4 + .title-h5 {
    margin-top: 50px;
}
.subpage .title-h5 + .title-h5 {
    margin-top: 28px;
}
.subpage .title-h5:has(p, ul) {
    margin-bottom: 25px;
}
.subpage .title-h5.spacing {
    margin-top: clamp(30px,5vw,70px);
    margin-bottom: clamp(30px,5vw,60px);
}
.subpage :is(.container, section) > :where(img, [class*="-wrap"]) + :where(img, [class*="-wrap"]) {
    margin-top: 50px;
}
/* [ subpage-content ] */
.subpage {
    overflow: hidden;
    position: relative;
}
.subpage section {
    padding: clamp(60px, 15vw, 120px) 0 clamp(70px, 15vw, 180px);
}
.subpage section:nth-child(even) {
    padding-top: 140px;
    background-color: #efeff0;
}
.subpage section:nth-child(even) + section {
    padding-top: clamp(70px,15vw,140px);
}
.subpage [class*="-wrap"] + [class*="-wrap"] {
    margin-top: 70px;
}
.subpage .bg {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
    background-color: #fff;
}
.row-wrap {
    display: flex;
}
#ab03 .title-h5 {
    border-top: 1px solid #ddd;
    display: flex;
    padding-top: 25px;
}

#ab03 .row-wrap {
    gap: 50px;
}

#ab03 .title-h5 h5 {
    width: 30%;
    font-size: clamp(20px, 3vw, 28px);
    position: relative;
}

#ab03 .title-h5 h5::before {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    top: -28px;
}

#ab03 .title-h5 ul li {
    font-weight: 500;
}

#ab03 .title-h5 ul li + li {
    margin-top: 5px;
}
#sl01 .banner-wrap {
    margin-top: clamp(30px,5vw,50px);
    height: 600px;
}
#ab03 .banner-wrap {
    height: 500px;
}
.banner-wrap {
    position: relative;
    overflow: hidden;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50px 0 50px 0;
}
.banner-wrap h5 {
    font-size: clamp(22px,3vw,34px);
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -0.025em;
    line-height: 1.6;
}
.banner-wrap h5 b {
    color: inherit;
}
.banner-wrap h5 + p::before {
    content: "";
    display: block;
    margin: 30px auto 50px;
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
}
.banner-wrap p {
    text-align: center;
    font-size: clamp(15px,2vw,17px);
    color: #fff;
}
.banner-wrap p:only-child {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #ab03 .banner-wrap {
        height: auto;
        padding: 40px;
        border-radius: 20px 0 20px 0;
    }
    #ab03 .row-wrap {
        flex-direction: column;
    }
    #ab03 .title-h5 {
        flex-direction: column;
    }
    #ab03 .title-h5 ul li {
        font-size: 16px;
    }
    #sl01 .banner-wrap{
        height: auto;
        padding: 50px 20px;
        border-radius: 20px 0 20px 0;
    }
    .banner-wrap h5{
        margin-bottom: 20px;
    }
    .banner-wrap h5 + p::before{
        margin-block: 20px;
    }
}
.research-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding: 30px 0 70px;
    gap: 30px;
}

.research-box > h5 {
    position: static;
    color: #333;
    font-size: 25px;
    width: 25%;
    font-weight: 700;
    /* position: relative; */
}
.research-box > h5::before {
    content: "";
    display: block;
    width: 25%;
    height: 3px;
    background: #333;
    position: absolute;
    top: -1px;
}

.research-box + .research-box {
}
.research-wrap {
    width: 75%;
}

.research-wrap .img-box {
    display: flex;
    gap: 20px;
    padding-top: 30px;
}
.research-wrap .img-box .col {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ccc;
    overflow: hidden;
    border-radius: 50%;
    padding: 20px;
}
.research-wrap .img-box .col h5 {
    font-weight: 600;
    font-size: clamp(16px, 2vw, 24px);
    color: #fff;
    word-break: break-all;
    text-align: center;
}
.research-wrap > p {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 500;
    padding-top: 10px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .research-wrap {
        width: 100%;
    }
    .research-box {
        position: relative;
        width: 100%;
        padding-top: 20px;
        display: flex;
        gap: 0px;
        flex-direction: column;
        padding-bottom: 0;
    }
    .research-box + .research-box {
        margin-top: 50px;
    }
    .research-box > h5 {
        width: 100%;
        font-size: 21px;
    }
    .research-wrap .img-box {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

.caption-box {
    margin-top: 50px;
    font-size: 16px;
    border-radius: 3px;
    background: #f4f4f4;
    padding: 15px 20px;
}
.caption-box h5 {
    font-size: 16px;
    font-weight: 700;
}
.caption-box p {
    font-size: clamp(14px, 2vw, 15px);
}

.step-box {
    background: #fff;
    border-radius: 20px;
    padding: clamp(25px,3vw,60px) clamp(20px,3vw,60px) clamp(35px,3vw,70px);
    box-shadow: 0px 11px 30px 0px rgba(0, 0, 0, 0.1);
}

.step-box + .step-box {
    margin-top: 30px;
}

.step-box .title-h4 h4 {
    font-size: clamp(26px,3vw,40px);
}

.step-box .title-h4 p {
    font-size: clamp(15px,2vw,18px);
    font-weight: 400;
    letter-spacing: -0.034em;
    line-height: 1.7;
    margin-top: clamp(15px,5vw,30px);
}
.step-box.step01 .point {
    font-size: clamp(16px,3vw,20px);
    font-weight: 500;
}
#sl01 .se02 {
    padding: clamp(60px,10vw,100px) 0;
}
#sl01 .caption-box {
    margin-top: 30px;
    background: transparent;
    padding: 0;
}
#sl01 .caption-box p {
    font-size: clamp(16px,2vw,18px);
    line-height: 1.7;
}
.vision-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.vision-wrap .col {
    display: flex;
    /* text-align: center; */
    gap: 20px;
}
.vision-wrap .col h5 {
    font-size: clamp(16px, 3vw, 21px);
    font-weight: 500;
    width: 20%;
    background: linear-gradient(118deg, #5eaacb 0%, #6aa5be 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px 0 30px 0;
}
.vision-wrap .col p {
    font-size: clamp(14px, 2vw, 18px);
    height: 90px;
    border: 1px solid #bcd3de;
    padding: 0 40px;
    display: flex;
    align-items: center;
    border-radius: 30px 0 30px 0;
    width: calc(80% - 20px);
    font-weight: 500;
    color: #003e60;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #site .vision-wrap .col {
        flex-direction: column;
        gap: 10px;
    }
    #site .vision-wrap .col > * {
        width: 100%;
    }
    #site .vision-wrap .col h5 {
        padding: 10px;
        border-radius: 10px 0 10px 0;
    }
    #site .vision-wrap .col p {
        padding: 10px 20px;
        height: auto;
    }
}

/* greet */
.greet-wrap {
    display: flex;
    gap: 70px;
}
.greet-wrap .profile {
    flex: 0 1 22%;
}
.greet-wrap .profile img {
    border-radius: 10px;
}
#site .greet-wrap .title-h4 {
    margin-bottom: 0;
    flex: 1;
}
.greet-wrap .info {
    padding-block: 20px;
}
.greet-wrap h5 {
    font-size: 24px;
    font-weight: 400;
}
.greet-wrap h5 span.color {
    font-weight: 700;
}

.greet-wrap p.name {
    line-height: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
    text-align: right;
    font-size: 20px;
    margin-top: 25px;
}
.greet-wrap p.name b {
    font-size: 120%;
    letter-spacing: 0.1em;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .greet-wrap {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .greet-wrap .profile {
        max-width: 200px;
        width: 100%;
        margin-inline: auto;
        text-align: center;
    }
    .greet-wrap p.name {
        justify-content: center;
        flex-direction: column;
        font-size: 16px;
    }
}
#site .card-wrap {
    margin-top: clamp(70px, 10vw, 120px);
    display: flex;
    gap: clamp(40px, 5vw, 70px);
    flex-direction: column;
}
.card-wrap .col {
    display: flex;
    gap: 8%;
    align-items: center;
}
.card-wrap .img-box {
    aspect-ratio: 5/2.5;
    background-color: #888;
    border-radius: 10px;
    overflow: hidden;
    width: 40%;
}
.card-wrap .info {
    width: 54%;
}
.card-wrap p {
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 500;
    letter-spacing: -0.034em;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 1.2;
    gap: 8px;
}
.card-wrap p span {
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
    color: #3c98bf;
    margin-bottom: 10px;
}
.card-wrap p span.point {
    color: #333;
    font-size: clamp(16px, 3vw, 22px);
    margin: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .card-wrap .col {
        gap: 30px;
        flex-direction: column;
    }
    .card-wrap .img-box {
        width: 100%;
    }
    .card-wrap .info {
        width: 100%;
    }
}
.history-wrap {
    display: flex;
    gap: 0 13%;
}
.history-wrap .info {
    width: 53%;
    flex: auto;
}
.history-wrap .img-box {
    width: 35%;
    flex: auto;
}
.history-wrap .img-box img {
    height: fit-content;
}
.history-wrap dl {
    position: relative;
    padding-left: 60px;
    padding-block: 30px;
    border-left: 1px solid #ccc;
    display: flex;
    align-items: center;
}
.history-wrap dl::before {
    content: "";
    display: block;
    width: 13px;
    aspect-ratio: 1;
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--page-point-color);
    border-radius: 50%;
}
.history-wrap dl dt {
    font-size: 32px;
    font-weight: 700;
    width: 120px;
    letter-spacing: -0.034em;
    flex-shrink: 0;
    color: #102f78;
}
.history-wrap dl dd {
    font-size: clamp(16px, 2vw, 17px);
    color: #222;
    letter-spacing: -0.02em;
    font-weight: 500;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .history-wrap {
        flex-direction: column;
        justify-content: flex-start;
        gap: 40px;
    }
    .history-wrap .img-box {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
        /* height: auto; */
        /* aspect-ratio: 5/3; */
    }
    .history-wrap .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .history-wrap dl {
        /* width: 100%; */
        align-items: flex-start;
        flex-direction: column;
        padding-left: 40px;
    }
    .history-wrap .info {
        width: 100%;
        padding-left: 20px;
    }
}
.refer-wrap :is(.writer, .regdate, .hits, .writer_col, .regdate_col, .hits_col) {
    display: none;
}

.subpage-content .container:has(.refer-wrap #board_data_view) :is(.title-h4, .partner-wrap) {
    display: none;
}

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

.icon-wrap .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    /* border: 1px solid #ccc; */
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    background: #ecf6fa;
}
.icon-wrap .col h6 {
    font-size: clamp(18px,3vw,22px);
    font-weight: 700;
    margin-bottom: 10px;
}
.icon-wrap .col p {
    font-size: clamp(14px,3vw,16px);
}
.icon-wrap .col .icon {
    display: flex;
    flex-shrink: 0;
    /* width: 200px; */
    justify-content: center;
    align-items: center;
}
.icon-wrap .col .icon span.material-symbols-outlined {
    font-size: 64px;
    color: #006e9d;
}

.icon-row-wrap {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #333;
}
.icon-row-wrap .col {
    display: flex;
    align-items: center;
    gap: clamp(20px,5vw,40px);
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}
.icon-row-wrap .icon {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: clamp(80px,3vw,100px);
    aspect-ratio: 1;
    background: linear-gradient(49deg, #8ec9cf 0%, #74abee 100%);
    border-radius: clamp(15px,3vw,30px);
    color: #fff;
}
.icon-row-wrap .icon span.material-symbols-outlined {
    font-size: 48px;
}
.icon-row-wrap dt {
    font-size: clamp(18px,3vw,22px);
    font-weight: 700;
    margin-bottom: 7px;
    color: #006e9d;
}
.icon-row-wrap dd {
    font-size: clamp(14px,2vw,16px);
}
.icon-row-wrap dd + dd {
    /* margin-top: 5px; */
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .icon-wrap{
        flex-direction: column;
    }
}
.qa-wrap .col {
    position: relative;
    border-bottom: 1px solid #ccc;
}
.qa-wrap .col:first-child {
    border-top: 2px solid #333;
}
.qa-wrap .col :is(dt, dd) {
    position: relative;
    padding: 30px 100px;
    font-size: 17px;
}
.qa-wrap .col :is(dt, dd)::before {
    content: "";
    display: block;
    position: absolute;
    left: 40px;
    top: 18px;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
}
.qa-wrap .col dt::before {
    content: "Q";
    color: #e40700;
}
.qa-wrap .col dd::before {
    content: "A";
    color: transparent;
}
.qa-wrap .col dt {
    font-weight: 700;
    font-size: 20px;
    background-color: #fff;
    padding: 20px 100px;
}
.qa-wrap .col dd {
    background-color: #f6f6f6;
    padding: 20px 100px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .qa-wrap .col dt{
        padding: 20px 60px;
    }
    .qa-wrap .col dd{
        padding: 20px 60px;
    }
    .qa-wrap .col dt::before{
        left: 20px;
        top: 20px;
    }
}
/* map */
#ab05 .se01 {
    padding-bottom: 50px;
}
#ab05.subpage .title-h3 {
    display: inherit;
    text-align: center;
}
.map-se {
    position: relative;
    padding-block: 0 !important;
}
.map-se iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
}
.map-se :is(.root_daum_roughmap, .root_daum_roughmap .map) {
    pointer-events: none;
    width: 100% !important ;
    height: 700px !important ;
}
.map-se .info {
    position: absolute;
    z-index: 1000;
    left: 12%;
    bottom: 12%;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.2);
    border: 1px solid #8ec0d6;
}
.map-se .info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: clamp(15px,3vw,30px);
}
.map-se .tel {
    margin-left: auto;
}
.map-se ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.map-se li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}
.map-se li.addr {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.map-se 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 (max-width: 767.98px) {
    .map-se :is(.root_daum_roughmap, .root_daum_roughmap .map) {
        height: 400px !important;
    }
    .map-se .info {
        position: static;
        border: 0;
        border-radius: 0;
    }
}
/* partnership */
.partner-wrap {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
}
.partner-wrap .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #eee;
    margin-left: -1px;
    margin-top: -1px;
    padding: 0 20px;
    height: clamp(100px, 5vw, 120px);
    font-size: 20px;
    font-weight: 700;
    color: #777;
    border-radius: 5px;
}
.partner-wrap .col img {
    mix-blend-mode: multiply;
    filter: brightness(1.02);
}
.partner-wrap .col p {
    display: none;
}
.partner-wrap .col p:only-child {
    display: block;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .partner-wrap .col {
        padding: 10px;
    }
    .partner-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* ==================[ mainpage ]================== */
/* [ main-swiper 2405.1 ] */
#site #mainCarouselSwiper .swiper-slide {
    height: max(clamp(600px, 70vw, 750px), calc(var(--svh100)));
}
#site #mainCarouselSwiper .swiper-slide .swiper-bg {
    filter: brightness(0.5);
}
#site #mainCarouselSwiper .swiper-caption h1 {
    position: relative;
    font-size: clamp(32px, 5vw, 74px);
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: inherit;
    /* text-align: left; */
}
#site #mainCarouselSwiper .swiper-caption p {
    margin-top: clamp(10px, 5vw, 25px);
    font-size: clamp(16px, 2.5vw, 26px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: inherit;
}
#site #mainCarouselSwiper [class*="swiper-button"]::after {
    content: none;
}
#site #mainCarouselSwiper [class*="swiper-button"]::before {
    font-family: var(--gms);
    font-variation-settings: var(--gms-100-out);
    font-size: 64px;
}
#site #mainCarouselSwiper .swiper-button-next::before {
    content: "\e5e1";
}
#site #mainCarouselSwiper .swiper-button-prev::before {
    content: "\e2ea";
}
#site #mainCarouselSwiper .swiper-pagination-container {
    bottom: 40px;
}
#site #mainCarouselSwiper .swiper-pagination {
    gap: 10px;
}
#site #mainCarouselSwiper .swiper-pagination span {
    width: 11px;
    height: 11px;
}
@media (width <= 767.98px) {
    #site #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
    #site #mainCarouselSwiper .swiper-slide {
        height: 600px;
    }
}
/* [ main-content ] */
.mainpage {
    overflow: hidden;
    position: relative;
}
.mainpage :is(.bg) {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background-color: #fff;
    filter: brightness(0.5);
}
.mainpage section {
    position: relative;
    padding-block: clamp(50px, 10vw, 130px) clamp(70px, 10vw, 160px);
}
.mainpage section + section {
    padding-top: 0;
}
.mainpage .title {
    display: flex;
    align-items: flex-end;
    margin-bottom: clamp(40px, 5vw, 80px);
}
.mainpage .title p {
    line-height: 1;
    font-size: 22px;
    padding-left: 15px;
    margin-left: 18px;
    margin-bottom: 12px;
    color: #555;
    border-left: 1px solid #d7d7d7;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.mainpage h3 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -0.034em;
    line-height: 1.4;
}
.m-ser-wrap {
    display: flex;
    gap: 20px;
}
.m-ser-wrap .col {
    position: relative;
    padding: 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    /* height: 340px; */
    aspect-ratio: 3/4;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.3s;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    filter: saturate(0.8);
}

.m-ser-wrap .col:hover {
    transform: translateY(-12px);
}

.m-ser-wrap .col:hover img {
    filter: brightness(0.9);
}
.m-ser-wrap .col strong {
    display: block;
    font-size: 24px;
    color: inherit;
    /* margin-bottom: 18px; */
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1.15;
}
.m-ser-wrap .col span.text {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.015em;
}
.m-ser-wrap .col span.material-symbols-outlined {
    margin-top: auto;
    font-size: 52px;
    display: none;
}
.m-ser-wrap .col img {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #fff;
    transition: all 0.3s;
    filter: brightness(0.6);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .m-ser-wrap {
        flex-direction: column;
    }
    .m-ser-wrap .col {
        aspect-ratio: 5/2.5;
        padding: 25px;
    }
    .m-ser-wrap .col small {
        color: inherit;
        display: flex !important;
        gap: 3px;
        align-items: center;
        margin-top: 7px;
        font-size: 14px;
        opacity: 0.75;
    }
    .m-ser-wrap .col small span.material-symbols-outlined {
        display: inline-block !important;
        font-size: 14px;
        margin: 0;
    }
}
.mainpage section.main-banner {
    padding-bottom: 0;
}
.mainpage .main-banner .inner {
    height: 320px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-flow: column;
    gap: 30px;
    color: #fff;
}
.mainpage .main-banner h4 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
}
.mainpage .main-banner .btn {
    width: 170px;
    padding-inline: 20px;
    height: 50px;
    justify-content: space-between;
    border: 1px solid #fff;
    background: transparent;
    font-size: 17px;
    transition: all 0.2s;
    border-radius: 0;
}

.mainpage .main-banner .btn:hover {
    background: #fff;
    color: #000;
    font-weight: 700;
}
/* [ main-widget ] */
[class^="board_box"] {
    margin-bottom: 0 !important;
}
.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 .bottom .title {
    padding: 0;
    margin-top: 5px;
}
.type_thumb .bottom .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;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_popup span.material-symbols-outlined {
    line-height: 0.8;
    font-variation-settings: var(--gms-100-out);
    font-size: inherit;
}
.main_popup .main_popup_contents {
    overflow: hidden;
    padding: 10px;
    background: #fff;
}
.main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 0px 7px 0px 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 35px;
}
.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;
    line-height: 0.8;
}
/* ==================[ table ]================== */
#site .table-style {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
    background-color: #fff;
    margin: 0;
    border-inline: 0;
}
#site .table-style :where(th, td) {
    padding: 15px 19px;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid var(--border-color);
    border-inline: 0;
}
#site .table-style td {
    color: #444;
}
#site .table-style thead th {
    border-bottom: 0;
    /* background-color: #eee; */
    border: 1px solid var(--border-color);
    color: #222;
    /* text-align: center; */
    font-weight: 600;
    border-inline: 0;
}
#site .table-style thead,
#site .table-style tbody:only-child {
    border-top: 2px solid #222;
    border-inline: 0;
}
#site .table-style tbody th {
    /* background-color: #f7f7f7; */
    /* text-align: center; */
    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;
}
:where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0 !important;
}
/* 게시판/주문폼/회원가입 버튼 */
:where(.member_wrapper, .board_wrapper) :where(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}
/* checkbox, radio */
#site :where(.member_wrapper, .board_wrapper) tbody td:has(.radio-inline, .checkbox-inline) {
    display: flex !important;
    flex-wrap: wrap;
    gap: clamp(5px, 2vw, 10px) clamp(15px, 3vw, 20px);
    font-size: clamp(14px, 2vw, 16px);
}
#site :where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
#site :where(.member_wrapper, .board_wrapper) .checkbox label {
    letter-spacing: 0;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
#site :where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
    font-weight: 500;
    color: #1b54e4;
    text-decoration: underline;
}
#site :where(.member_wrapper, .board_wrapper) :where(.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;
}
#site :where(.member_wrapper, .board_wrapper) :where(.custom_checkbox, .custom_radio):checked + span::before {
    content: "\f14a";
    color: var(--page-point-color);
    font-weight: 900;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type="checkbox"], input[type="radio"]) {
    position: static;
    margin: 0 5px 0 0;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .radio-inline) {
    margin-block: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0 !important;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 0 !important;
        margin-bottom: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    #site :where(.member_wrapper .text-center .btn + .btn) {
        margin-left: 0 !important;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    #site :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 카테고리 / 분류 */
#site #bbsArea .category_wrap {
    margin-bottom: 50px;
}
#site #bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
#site #bbsArea .category_wrap li {
    margin: 0;
}
#site #bbsArea .category_wrap a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}
#site #bbsArea .category_wrap a:hover {
    color: #111;
}
#site #bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}
/* 게시판 custom*/
:is(#bbsArea) :is([class*="wrap"]) {
    margin: 0;
}
/* 게시판 노출 */
:is(#bbsArea) :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}
:is(#bbsArea) .board_wrapper + :is(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}
:is(#bbsArea) .pagination_wrap + .search_wrap {
    margin-top: 30px;
}
:is(#bbsArea) .pagination_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
:is(#bbsArea) .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
}
:is(#bbsArea) .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
}
/* 검색 */
:is(#bbsArea) .search_wrap #search_kind {
    line-height: 1;
}
/* 게시글 작성 */
:is(#bbsArea) .search_wrap .write_btn_wrap {
    margin-top: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    /* 게시판 목록 하단 */
    :is(#bbsArea) .search_wrap .write_btn_wrap {
        width: 100%;
    }
    :is(#bbsArea) .search_wrap #write_btn {
        width: 100%;
        min-width: auto;
    }
}
:is(#bbsArea) .badge {
    display: inline-flex;
    translate: 0 0px;
    background-color: #000;
    border-radius: 0;
    padding: 4px 7px;
    margin-right: 0px;
    /* 게시글 수정 */
}
:is(#bbsArea) .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
:is(#bbsArea) .option_wrap .list_btn_wrap {
    position: static;
    /* 게시글 댓글 */
}
:is(#bbsArea) .reply_wrap h4 {
    text-align: left;
    font-size: clamp(15px, 3vw, 17px);
}
:is(#bbsArea) .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
:is(:is(#bbsArea) .reply_wrap #reply_modify_btn, :is(#bbsArea) .reply_wrap .text-left + button) {
    margin-left: auto;
}
:is(#bbsArea) .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
:is(#bbsArea) .reply_wrap #reply_list .info {
    display: flex;
    gap: 10px;
    height: 40px;
}
:is(#bbsArea) .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
:is(#bbsArea) .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
:is(#bbsArea) .header_wrap span {
    color: #666;
}
:is(#bbsArea) .header_wrap strong {
    color: #444;
}
/* 게시글 작성 */
.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: 0px !important;
    border: 0;
}
.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 .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%;
}
/* 필수 입력 항목 */
#site .board_wrapper .table.board_write_table :where(th > span, span.required_text) {
    position: static;
    margin: 0 3px 0 0;
    letter-spacing: -0.025em;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    .board_wrapper .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@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-block: 40px;
}
.board_data_view .header_wrap h4.title {
    font-size: 28px;
    font-weight: 500;
    color: #000;
}
.board_data_view .contents_wrap .contents_inner {
    font-size: 14px;
}
.board_data_view .contents_wrap {
    padding-inline: 0;
}
.board_data_view .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}
.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;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@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;
    font-size: inherit;
    height: var(--form-height);
    border-radius: 4px;
}
.form-control[type="file"] {
    position: relative;
    width: 100% !important;
    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;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .form-control {
        width: 100%;
    }
}
.wr_form_item .form-control {
    background-color: transparent;
    padding-right: 35px;
}
/* 자동입력방지 */
#site #wr_captcha {
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 220px !important;
}
#site #captcha {
    z-index: 10;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: 40px;
    margin: 0;
    border-color: transparent;
}
#site #captcha + br {
    display: none;
}
#site #captcha + br + input {
    margin-left: -1px;
}
#site #captcha + br + input:focus {
    z-index: 15;
}
#site td:has(#captcha) {
    display: flex !important;
    gap: 0 !important;
}
/* [ board-columns ] */
#site :is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}
#site :is(.table_video, .table_blog2, .table_pd)::before,
#site :is(.table_video, .table_blog2, .table_pd)::after {
    content: none;
}
/* [min-small / portrait phones] 모바일, 576px 이상 ▲ */
@media (width >= 576px) {
    #site :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    #site :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
#site :is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
    /* 등록된 [상품/게시글]이 없습니다 문구 */
}
#site :is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}
#site :is(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}
/* [ board-list ] */
/* 게시판 리스트, 현황 */
#site :is(.board_list_list, .board_status_list) .table_default {
    border-top: 1px solid #333;
    margin-bottom: 0;
}
#site :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;
}
#site :is(.board_list_list, .board_status_list) .table_default td {
    color: #777;
}
#site :is(.board_list_list, .board_status_list) .table_default td:only-child {
    display: table-cell;
}
#site :is(.board_list_list, .board_status_list) .table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    color: #222;
    padding: 17px 15px;
}
#site :is(.board_list_list, .board_status_list) .table_default tbody th.num {
    font-weight: normal;
}
#site :is(.board_list_list, .board_status_list) .table_default tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    font-size: clamp(14px, 3vw, 17px);
    color: #333;
    text-overflow: ellipsis;
}
#site :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) {
    #site :is(.board_list_list, .board_status_list) .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    #site :is(.board_list_list, .board_status_list) .table_default .subject {
        width: 100%;
    }
    #site :is(.board_list_list, .board_status_list) .table_default .status {
        width: 35%;
    }
}

/* [ board-blog ] */
#site .table_blog dd::after,
#site .table_blog dd .info {
    display: none;
}
#site .table_blog dd {
    cursor: pointer;
    display: flex;
    gap: 35px;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding: 50px 0px;
}
#site .table_blog dd:hover {
    background-color: transparent;
}
#site .table_blog dd :is(.left, .right) {
    width: auto;
    height: auto;
}
#site .table_blog dd a {
    font-weight: 500;
}
#site :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) {
    #site .table_blog dd {
        flex-direction: column;
        gap: 0;
    }
}
#site .table_blog dd .right {
    display: flex;
    flex-direction: column;
    gap: 5px 15px;
    align-items: flex-start;
    width: auto;
    flex: 1;
}
#site .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;
}
#site .table_blog dd .right :where(.writer, .hits) {
    display: none;
}
#site .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;
}
#site .table_blog dd .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#site .table_blog dd .right p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .table_blog dd .right {
        padding-top: 0 !important;
    }
    #site .table_blog dd .right p {
        line-height: 1.5;
    }
}
#site .table_blog dd .left {
    flex: 0 1 auto;
    width: 200px;
}
#site .table_blog dd .left .thumb {
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .table_blog dd .left {
        width: 100%;
        padding-left: 0;
        margin-right: 0;
    }
}
#site :where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
#site :is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb + img.thumb {
    display: block !important;
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
    background-size: cover;
    background-color: #ccc;
}
#site :is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none;
}
#site :is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}
#site :is(.table_video, .table_blog2) .bottom {
    margin-top: 15px;
    padding: 0;
}
#site :is(.table_video, .table_blog2) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
}
#site :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 ] */
#site :is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
#site :is(.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;
}
#site .board_wrapper form[id*="form"] table.table {
    width: 100%;
    border-top: 0;
}
#site .board_wrapper form[id*="form"] table.table th {
    padding: 0 !important;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    width: auto;
    border-top: 0;
}
#site .board_wrapper form[id*="form"] table.table :is(th, td) {
    font-size: clamp(14px, 2vw, 16px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .board_wrapper form[id*="form"] table.table th {
        margin-bottom: 15px;
    }
}
#site .board_wrapper form[id*="form"] table.table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#site .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;
}
#site .board_wrapper form[id*="form"] table.table tbody tr:first-child {
    border-top: 1px solid #000;
}
#site .board_wrapper form[id*="form"] #item_agree .checkbox {
    margin-top: 0;
}
/* 동의 */
#site .board_wrapper form[id*="form"] #item_agree label,
#site .board_wrapper form[id*="form"] #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
/* 주문내역 숨김 */
#site :where(.form-wrap, form) #list_btn {
    display: none !important;
}
/* ==================[ member ]================== */
#site :is(.find_container, .login_container) .member_wrapper {
    width: 400px;
}
#site :is(.find_container, .login_container) .member_wrapper .form-group {
    height: 40px;
}
#site :is(.find_container, .login_container) .member_wrapper .form-group input {
    border: 0;
    padding-left: 0;
}
#site :is(.find_container, .join_container, .join_write_container, .login_container) .form-group {
    height: 45px;
}
#site :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;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :is(.find_container, .join_container, .join_write_container, .login_container) {
        width: 100%;
        padding: 0 15px;
    }
    #site :is(.find_container, .join_container, .join_write_container, .login_container) .member_wrapper {
        width: 100%;
        margin: 0 auto;
    }
}
#site .member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}
#site .member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}
#site .member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 14px);
    margin-bottom: 20px;
}
#site .member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
#site .member_wrapper #login_form input {
    padding-left: 5px !important;
}
#site #login_form .form-group label {
    position: relative;
}
#site #login_form .form-group label[class*="label-"] {
    display: inline-block;
    text-indent: -9999px;
}
#site #login_form .form-group label::before {
    position: absolute;
    text-indent: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 20px;
    color: #888;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
#site #login_form .form-group:focus-within label[class*="label-"]::before {
    color: #000;
}
#site #login_form .form-group label.label-id::before {
    content: "\e7fd" !important;
}
#site #login_form .form-group label.label-pw::before {
    content: "\e897" !important;
}
#site #login_form .form-group label.label-email::before {
    content: "\e0e6" !important;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .member_wrapper {
        padding: 60px 30px;
    }
    #site .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    #site .member_wrapper #login_form input {
        border: 0;
        /* padding-left: 0; */
        padding-right: 35px;
    }
}
#site .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);
}
#site .member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
#site .member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
#site .member_wrapper .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
#site .member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .member_wrapper .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
/* [ form ] */
#site .member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
#site .member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}
#site .member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
#site .member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
#site .member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px !important;
}
#site .member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-400-out);
    font-size: 1.25rem;
    color: #000;
}
#site .member_wrapper .form-group > label:nth-child(1) {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
#site .member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
/* [ member-login ] */
#site :is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px !important;
    width: 100%;
}
#site :is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #fff;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 30px 0 100px;
        height: auto;
    }
}
#site :where(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
@media (width >= 992px) {
    #site :where(#find_idpw, .login_wrapper) {
        height: calc(var(--svh100) - var(--navbar-height));
    }
}
/* [min-lager / tablet] 브라우저 높이 700 이하 */
@media (height <= 700px) {
    #site :where(#find_idpw, .login_wrapper) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
#site .member_wrapper .login_extra {
    margin-top: 30px;
}
#site .member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
#site .member_wrapper .login_extra li > a {
    font-size: clamp(13px, 3vw, 14px);
}
#site .member_wrapper .login_extra li + li {
    margin-left: 0;
}
#site .member_wrapper .login_extra li + li::before {
    content: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #site .member_wrapper .login_extra li + li::before {
        content: none;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .member_wrapper #join_form tr th {
        padding: 10px 20px !important;
        margin-bottom: 10px;
    }
    #site .member_wrapper #join_form tr td {
        display: flex !important;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    #site .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 20px;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0 !important;
    }
    #site .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100% !important;
    }
}
#site .member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}
#site .member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#site .member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
#site .member_wrapper .table tbody tr th {
    width: auto;
    padding-inline: 25px 15px;
    background-color: rgba(0, 0, 0, 0.03);
}
#site .member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
#site .member_wrapper .table tbody tr td {
    padding-inline: 15px;
}
#site .member_wrapper .table tbody tr :where(th, td) {
    display: block;
    padding-block: 12px;
    font-size: clamp(13px, 3vw, 14px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block !important;
        width: 100% !important;
    }
    #site .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2vw, 17px);
    }
    #site .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }
    #site .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #site .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .files .file_add {
        position: relative;
        right: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}
/* [ member-privacy ] */
#site :is(.privacy_container, .agreement_container) {
    text-align: left;
}
#site :is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
#site :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) {
    #site :where(.privacy_container, .agreement_container) .member_wrapper {
        padding: 50px 30px;
    }
}

.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
    border-radius: 20px;
}
.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 74px;
    margin-bottom: 20px;
}
.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}
