@charset "utf-8";
/* 10page builder demo site core css */
/* version 24.11 */
/* - css 통합 (bs3, global, etc) */
@font-face {
    font-family: "GmarketSans";
    src: url("/assets/fonts/gmarket/GmarketSansTTFLight.ttf") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "GmarketSans";
    src: url("/assets/fonts/gmarket/GmarketSansTTFMedium.ttf") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "GmarketSans";
    src: url("/assets/fonts/gmarket/GmarketSansTTFBold.ttf") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #1c54e4;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #0836ac;
    --page-point-color-hover: var(--page-point-color-dark);
    --page-danger-color: #f32222;
    --page-danger-color-hover: #cc0a0a;
    --page-dark-color: #4f5356;
    --page-dark-color-hover: #333;
    --page-grey-color: #d5d5d5;
    --page-grey-color-hover: #c4c4c4;
    /* ozhean */
    --oz-blue: #3f67eb;
    --oz-gold: #d0a87d;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 86px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: 67px;
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* board */
    --form-height: 47px;
    --radius-sm: 7px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}
/* svh 미지원 */
@supports not (max-height: 100svh) {
    :root {
        --svh100: 100vh;
    }
}
@media (max-width: 767.98px) {
    :root {
        --container-padding-inline: 30px;
    }
    .qna .subpage-content {
        --container-padding-inline: 10px;
    }
}
/* fouc */
#site > *:not(#force__wrapper) {
    visibility: hidden;
}
#site.loaded > *:not(#force__wrapper) {
    visibility: visible;
}

/* ---------------------------- Reset ---------------------------- */
* {
    box-sizing: border-box;
    word-break: keep-all;
    float: unset;
    -webkit-tap-highlight-color: transparent;
}
:where(*::before, *::after) {
    content: none;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 14px;
}
html:has(.ft-body) {
    overflow: hidden;
}
#site {
    margin: 0;
    padding: 0;
    font-family: var(--page-font-family);
}
#site:has(.subpage-header) {
    padding-top: var(--navbar-height);
}
.navbar-login-button,
.navbar-right {
    --page-font-family: "NanumSquare", sans-serif;
    font-family: var(--page-font-family) !important;
}
.mainpage {
    --page-font-family: "Pretendard Variable", sans-serif;
    font-family: var(--page-font-family) !important;
}
.navbar-lang-button {
    --page-font-family: "notokr", sans-serif;
    font-family: var(--page-font-family) !important;
}
.subpage {
    font-family: var(--page-font-family) !important;
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
}
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
figure {
    margin: 0;
}
select::-ms-expand {
    display: none;
}
form,
fieldset {
    all: unset;
    box-sizing: border-box;
    display: block;
}
/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
.cke_screen_reader_only {
    bottom: 0;
}
.cke_resizer_ltr {
    float: right;
}
.caret {
    display: none;
}
#site .hide {
    display: none !important;
}
/* material-symbols */
.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
    user-select: none;
}

/* ---------------------------- Paragraph ---------------------------- */
:is(ol, ul, li, dl) {
    all: unset;
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
    all: unset;
    box-sizing: border-box;
    display: block;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.5;
}
:is(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    /* color: #000; */
    color: #444;
}
b{
    font-weight: 700;
}
:is(p, li, dd, small) {
    color: #333;
}
:is(small, .small) {
    font-size: 0.8em;
}
br {
    visibility: visible;
    opacity: 0;
}
.big {
    font-size: 1.2em;
    display: inline-block;
    margin-bottom: 0.5em;
}
a:not(.btn) {
    text-decoration: none;
    color: inherit;
}
a:not(.btn):where(:focus, :hover) {
    text-decoration: unset;
    color: unset;
}
.text-danger {
    color: var(--page-danger-color);
}

.gmarket700 {
    font-family: "GmarketSans";
    font-weight: 700;
}

/* ---------------------------- Button ---------------------------- */
.btn {
    all: unset;
    box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    place-content: center;
    place-items: center;
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1;
    height: var(--form-height);
    padding: 0 1.2em;
    /* border-radius: var(--radius-sm); */
    outline: none;
    white-space: nowrap;
}
.btn:is(.btn-primary) {
    background-color: var(--page-point-color);
    border: 1px solid var(--page-point-color);
    color: #fff;
}
.btn:is(.btn-primary):is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
}
.btn.btn-danger {
    background-color: var(--page-danger-color);
    border: 1px solid var(--page-danger-color);
}
.btn.btn-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color-hover);
}
.btn.btn-outline-primary {
    background: none;
    border: 1px solid var(--page-point-color);
    color: var(--page-point-color);
}
.btn.btn-outline-primary:is(:hover, :focus) {
    background-color: var(--page-point-color);
    color: #fff;
}
.btn.btn-outline-danger {
    background: none;
    border: 1px solid var(--page-danger-color);
    color: var(--page-danger-color);
}
.btn.btn-outline-danger:is(:hover, :focus) {
    background-color: var(--page-danger-color);
    color: #fff;
}
.btn:is(.btn-secondary, .btn-default) {
    background-color: var(--page-grey-color);
    border: 1px solid var(--page-grey-color);
    color: #000;
}
.btn:is(.btn-secondary, .btn-default):is(:hover, :focus) {
    background-color: var(--page-grey-color-hover);
}
.btn.btn-dark {
    background-color: var(--page-dark-color);
    border: 1px solid var(--page-dark-color);
    color: #fff;
}
.btn.btn-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color-hover);
}
.btn.btn-outline-dark {
    border: 1px solid var(--page-dark-color);
    color: var(--page-dark-color);
}
.btn.btn-outline-dark:is(:hover, :focus) {
    background-color: var(--page-dark-color);
    color: #fff;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
}
.btn.btn-danger {
    color: #fff;
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
@media (hover: hover) {
    .btn.btn-primary:where(:hover, :focus) {
        background-color: var(--page-point-color-hover);
        border-color: var(--page-point-color-hover);
    }
    .btn.btn-secondary:where(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
}
/* 버튼 비활성화 */
button[disabled] {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
    filter: grayscale(1);
}

/* ---------------------------- Image ---------------------------- */
.img-box {
    position: relative;
    display: flex;
}
.img-responsive {
    display: flex;
    max-width: 100%;
    height: auto;
}
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ---------------------------- Layout ---------------------------- */
:where(.container, .row) {
    position: relative;
}
/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
}
[class*="container"]::before,
[class*="container"]::after {
    content: none;
}
/* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
@media (min-width: 1290px) {
    [class*="container"] {
        max-width: 1260px;
    }
}
.row {
    margin: 0;
}
:where([class*="row-"], [class*="-row"]) {
    display: flex;
    gap: 30px;
}
.row::before,
.row::after {
    content: none;
}
.clearfix {
    width: 100%;
}
.col {
    flex: 1;
    padding: 0;
}
.col.auto {
    flex: 0 1 auto;
}
.col[rowspan="2"] {
    grid-row: span 2;
}
.col[rowspan="3"] {
    grid-row: span 3;
}
.col[colspan="2"] {
    grid-column: span 2;
}
.col[colspan="3"] {
    grid-column: span 3;
}
:is([class*="hidden"]) {
    display: none;
}
:is([class*="visible"]) {
    display: none;
}
/* 소형 */
@media (min-width: 320px) {
    .hidden-xs {
        display: flex;
    }
}
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hidden-sm {
        display: flex;
    }
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hidden-md {
        display: flex;
    }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hidden-lg {
        display: flex;
    }
}
/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hidden-xl {
        display: flex;
    }
}
/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hidden-xxl {
        display: flex;
    }
}
/* 소형 */
@media (max-width: 319.98px) {
    .visible-xs {
        display: flex;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (max-width: 575.98px) {
    .visible-sm {
        display: flex;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .visible-md {
        display: flex;
    }
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (max-width: 991.98px) {
    .visible-lg {
        display: flex;
    }
}
/* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
@media (max-width: 1199.98px) {
    .visible-xl {
        display: flex;
    }
}
/* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
@media (max-width: 1399.98px) {
    .visible-xxl {
        display: flex;
    }
}
.center-block {
    display: block;
    margin-inline: auto;
}

/* ---------------------------- Modal, Jquery Ui ---------------------------- */
.ui-widget {
    font-family: inherit;
    z-index: 10000;
}
.ui-widget :is(input, select, textarea, button) {
    font-family: inherit;
}
.ui-datepicker select:is(.ui-datepicker-month, .ui-datepicker-year) {
    -webkit-appearance: none;
    background: none;
    border: 0;
    width: auto;
}
#site.modal-open {
    overflow: unset;
}
#site.modal-open,
#site.modal-open .navbar {
    padding-right: 0;
}
.modal-backdrop {
    display: none;
}
.modal {
    z-index: 10000;
    display: flex;
    width: 100%;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal-open .modal {
    z-index: 10000;
    display: flex !important;
    width: 100%;
    justify-content: center;
}
.modal.in {
    z-index: 20000;
    scale: 1;
}
.modal:not(.in) {
    display: none;
    opacity: 0;
    scale: 0;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal .modal-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #e5e5e5; */
    padding: 20px;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 18px);
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal .modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.6;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal.fade {
    opacity: 0;
}
.modal.fade.in {
    animation: modalFade 0.25s 0s forwards;
}
.modal.fade.in .modal-dialog {
    animation: modalPop 0.35s 0.05s forwards;
}
@keyframes modalFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes modalPop {
    0% {
        scale: 0.9;
    }
    50% {
        scale: 1.015;
    }
    100% {
        scale: 1;
    }
}
.modal .modal-title {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.modal.fade .modal-dialog {
    position: relative;
    transform: translate(0, 0) !important;
    margin: 0;
    border-radius: 15px;
    /* overflow: hidden; */
    height: fit-content;
    margin-block: auto;
    scale: 0.9;
    width: 100%;
}
@media (min-width: 768px) {
    .modal-sm {
        max-width: 300px;
    }
}
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 600px;
        margin: 30px auto;
    }
}
.modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    /* -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); */
    /* box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); */
    outline: 0;
    border-radius: 0;
    border: 0;
}
@media (min-width: 768px) {
    .modal .modal-content {
        -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
        box-shadow: none;
    }
}
.modal .modal-footer {
    display: flex;
    gap: 5px;
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
    flex: 1;
}
#delete_modal.in + .modal {
    display: none;
}
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}
.pop-modal .modal-content {
    background-color: transparent;
}
.pop-modal .modal-dialog {
    max-width: 1000px;
}
.pop-modal .modal-body {
    padding: 0;
}
.pop-modal.fade .modal-dialog {
    border-radius: 0;
}
.pop-modal .modal-header .close {
    color: #fff;
    opacity: 0.5;
}
.pop-modal img {
    /* scale: 0.9; */
}

@media (max-width: 767.98px) {
    #site .pop-modal .modal-dialog {
        transform: translate(0, 0) scale(0.9) !important;
    }
    #site .pop-modal .modal-header {
        padding-inline: 0;
    }
}
/* ---------------------------- iframe ---------------------------- */
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"]
{
    width: auto;
    height: auto;
    aspect-ratio: 5/3;
    margin-bottom: -6px;
    background-color: #e5e3df;
}
/* 외부동영상 */
iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: auto;
    height: auto;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: var(--radius-md);
}
.youtube-box {
    max-width: 900px;
    margin-inline: auto;
}
.youtube-box iframe {
    width: 100%;
}
#bbsArea .board_video_view iframe:where([src*="youtube"], [title*="YouTube"], [src*="player.vimeo.com"]) {
    width: 100%;
}
/* [ IFRAME END ] */

/* ---------------------------- common ---------------------------- */
/* list-style */
:where(ol, ul)[class*="li-"] {
    display: flex;
    flex-direction: column;
}
:where(img) + :where(ol, ul)[class*="li-"] {
    margin-top: 20px;
}
:where(ol, ul)[class*="li-"] > li {
    position: relative;
    padding-left: 0.8em;
}
.li-check {
    gap: 8px;
}
.li-check > li {
    position: relative;
    padding-left: 1.3em;
    font-size: clamp(14px, 3vw, 18px);
    letter-spacing: -0.01em;
}
:where(ol, ul)[class*="li-"] small {
    font-size: 0.85em;
}
/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    width: 0.3em;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--page-point-color);
}
/* dash */
.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}
/* number */
.li-num > li {
    counter-increment: listNum;
    padding-left: 27px;
}
.li-num > li::before {
    content: counter(listNum, decimal-leading-) "";
    position: absolute;
    top: 0.25em;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    width: 18px;
    padding-top: 2px;
    padding-right: 1px;
    line-height: 0;
    color: var(--page-point-color);
    font-size: 11px;
    font-weight: 700;
}
/* check */
.li-check > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    font-size: 20px;
    line-height: 1;
    left: 0px;
    display: block;
    width: 13px;
    height: 7px;
    background: url(/public/img/sub/00common/check-icon.png) no-repeat center / cover;
}
#oz02 .li-check > li::before {
    width: 17px;
    height: 13px;
    top: 0.4em;
    background: url(/public/img/sub/00common/check-icon2.png) no-repeat center / cover;
}

@media (max-width: 767.98px) {
    #oz02 .li-check > li::before {
        scale: 0.7;
        top: 0.25em;
    }
}
/* ---------------------------- navbar ---------------------------- */
.navbar-side-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 1vw, 30px);
}
#site .navbar-login-button {
    margin-inline: -15px clamp(15px, 1vw, 30px);
}
#site .navbar-login-button ul {
    display: flex;
}
#site .navbar-login-button a {
    display: block;
    font-weight: 700;
    padding-inline: 15px;
    font-size: var(--navbar-menu-font-size);
    line-height: 1;
}
#site .navbar-login-button li + li a {
    border-left: 2px solid #fff;
}
html.logined .navbar-login-button ul:is(.guest, .admin) {
    display: none !important;
}
html:not(.logined) .navbar-login-button ul:is(.logined, .admin) {
    display: none !important;
}
html.is_adm .navbar-login-button ul.logined {
    display: none !important;
}
html.is_adm .navbar-login-button ul.admin {
    display: flex !important;
}
#site .navbar-lang-button {
    display: none;
}
#site .navbar-lang-button ul {
    display: flex;
    gap: 5px;
}
#site .navbar-lang-button a {
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    height: 28px;
    padding: 5px 7px;
    font-size: 13px;
    border: 1px solid #fff;
    border-radius: 4px;
}
#site .navbar-lang-button a:hover {
    background-color: #333;
    color: #fff;
}
.navbar #navbar_side_toggle {
    /* z-index: 1050; */
    position: relative;
    cursor: pointer;
    border: 0;
    display: flex;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    color: currentColor;
    z-index: 2000;
    color: inherit;
    width: 40px;
    height: 40px;
    /* height: 20px; */
    font-size: 18px;
    /* gap: 7px; */
    /* margin-left: auto; */
}
.menu-open #navbar_side_toggle {
    /* right: clamp(100px,10vw,290px); */
    top: 10px;
}
@media (max-width: 1230px) {
    .menu-open #navbar_side_toggle {
        right: 0px;
        top: 0;
    }
}
#navbar_side_toggle > span.material-symbols-outlined {
    /* transition: 0.25s; */
    position: absolute;
    font-size: clamp(28px, 2.5vw, 42px);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    font-variation-settings: var(--gms-400-out), var(--gms-grad-zero);
}
#navbar_side_toggle.close .menu-icon,
#navbar_side_toggle .close-icon {
    opacity: 0;
}
#navbar_side_toggle.close .close-icon {
    display: block;
    opacity: 1;
    z-index: 1000;
    color: #fff;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (min-width: 768px) {
    #navbar-side-menu {
        /* z-index: 1005; */
        transition: 0.6s;
        position: fixed;
        z-index: -1;
        right: 0;
        /* padding-block: var(--navbar-height); */
        top: 0;
        /* bottom: 0; */
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 60px 50px;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        pointer-events: none;
    }

    #navbar-side-menu .side-menu-wrap {
        position: relative;
        width: 100%;
        height: 80%;
        background-color: #fff;
        border-radius: 20px;
    }
    #navbar-side-menu #gnbauth {
        display: none;
    }
    #navbar-side-menu.open {
        z-index: 1005;
        opacity: 1;
        pointer-events: all;
        transform: translateY(0%);
        /* border-top: 1px solid #ccc; */
    }
    #navbar-side-menu .menu-inner {
        justify-self: flex-start;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
    }
    #navbar-side-menu .menu-inner > ul {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: minmax(0, auto);
        /* margin-top: 70px; */
        padding: 100px 60px;
        align-items: flex-start;
        gap: 80px;
    }
    #navbar-side-menu .menu-inner > ul > li {
        transition: 0.5s;
        height: 100%;
        color: #000;
        display: flex;
        flex-direction: column;
        /* text-align: center; */
        /* padding-inline: 30px; */
        /* opacity: 0.75; */
    }
    #navbar-side-menu .menu-inner > ul > li > ul {
        display: flex;
        gap: 12px;
        flex-direction: column;
    }
    #navbar-side-menu .menu-inner > ul > li:hover {
        opacity: 1;
    }
    #navbar-side-menu .menu-inner > ul > li > a {
        position: relative;
        display: block;
        cursor: default;
        letter-spacing: -0.015em;
        background-color: transparent;
        font-size: 16px;
        font-weight: 700;
        padding-bottom: 12px;
        margin-bottom: 17px;
        border-bottom: 3px solid #ccc;
        width: 100%;
    }
    #navbar-side-menu .menu-inner > ul > li > a::after {
        content: "";
        display: block;
        width: 35px;
        height: 3px;
        background-color: #3595eb;
        position: absolute;
        left: 0;
        bottom: -3px;
    }
    #navbar-side-menu .menu-inner > ul > li > ul a {
        font-size: 16px;
        font-weight: 300;
        /* opacity: 0.8; */
    }
    #navbar-side-menu .menu-inner > ul > li > ul a:hover {
        text-shadow: none;
        opacity: 1;
        text-decoration: underline;
        text-underline-position: under;
    }
}
@media (max-height: 700px) {
    #navbar-side-menu .menu-inner {
        justify-content: flex-start;
    }
    #navbar-side-menu .menu-inner > ul {
        padding-block: 50px;
        row-gap: 30px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #navbar_side_toggle.close .close-icon {
        color: #000;
    }
    #navbar-side-menu {
        transition: 0.6s;
        position: fixed;
        z-index: -1;
        right: 0;
        top: 0;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* gap: 60px 50px; */
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        pointer-events: none;
    }

    #navbar-side-menu .side-menu-wrap {
        transition: 0.5s;
        position: relative;
        width: calc(100% - 50px);
        height: 100%;
        transform: none;
        top: 0;
        right: -100%;
        /* width: 100%; */
        /* height: 80%; */
        background-color: #fff;
        padding: 20px;
        opacity: 0;
        /* border-radius: 20px; */
    }
    #navbar-side-menu.open .side-menu-wrap {
        right: 0;
        opacity: 1;
        overflow-y: auto;
        /* padding: 20px; */
    }
    #navbar-side-menu #gnbauth {
        display: none;
    }
    #navbar-side-menu.open {
        z-index: 1005;
        opacity: 1;
        pointer-events: all;
        /* transform: translateY(0%); */
        /* right: 0; */
        /* border-top: 1px solid #ccc; */
    }
    #navbar-side-menu .container {
        justify-content: flex-end;
        align-items: stretch;
        padding: 0;
    }
    #navbar-side-menu .mo-menu-top {
        flex-direction: column;
    }
    #navbar-side-menu .mo-logo {
        width: 240px;
    }
    #navbar-side-menu .mo-login-button {
        margin-block: 20px;
    }
    #navbar-side-menu .mo-login-button ul {
        display: flex;
        gap: 5px;
    }
    html.logined #navbar-side-menu .mo-login-button ul:is(.guest, .admin) {
        display: none !important;
    }
    html:not(.logined) #navbar-side-menu .mo-login-button ul:is(.logined, .admin) {
        display: none !important;
    }
    html.is_adm #navbar-side-menu .mo-login-button ul.logined {
        display: none !important;
    }
    html.is_adm #navbar-side-menu .mo-login-button ul.admin {
        display: flex !important;
    }
    #navbar-side-menu .mo-login-button a {
        color: #6e6e6e;
        border: 1px solid #6e6e6e;
        padding: 10px 15px;
        line-height: 1;
        display: inline-block;
        border-radius: 4px;
    }
    #navbar-side-menu .mo-contact {
        background-color: #f8f8f8;
        padding-block: 12px;
        border-block: 1px solid #b0b0b0;
        margin-bottom: 20px;
    }
    #navbar-side-menu .mo-contact ul {
        display: flex;
    }
    #navbar-side-menu .mo-contact li {
        flex: 1;
        text-align: center;
        /* display: flex; */
        /* flex-direction: column; */
        /* align-items: center; */
        /* text-align: center; */
    }
    #navbar-side-menu .mo-contact li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    #navbar-side-menu .mo-contact li a img {
        height: 25px;
        object-fit: contain;
    }
    #navbar-side-menu .mo-contact li a b {
        font-size: 12px;
    }
    #navbar-side-menu .mo-contact img {
        width: 30px;
    }
    #navbar-side-menu .mo-menu-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #navbar-side-menu .mo-menu-inner > ul {
        color: #000;
        grid-auto-flow: row dense;
    }
    #navbar-side-menu .mo-menu-inner > ul > li {
        display: flex;
        flex-direction: column;
    }
    #navbar-side-menu .mo-menu-inner > ul > li > a {
        display: flex;
        /* padding-block: 10px; */
        height: 42px;
        justify-content: space-between;
        align-items: center;
        padding-left: 10px;
        background-color: #fff;
        color: #000;
        font-weight: 500;
        margin-bottom: -1px;
        border-block: 1px solid #878787;
    }
    #navbar-side-menu .mo-menu-inner > ul > li > a::after {
        content: "\e5cc";
        font-family: var(--gms);
        font-size: 22px;
        opacity: 0.25;
    }
    #navbar-side-menu .mo-menu-inner > ul > li > ul {
        display: flex;
        flex-direction: column;
        background-color: #fafafa;
        display: none;
    }
    #navbar-side-menu .mo-menu-inner > ul > li.open > ul {
        display: flex;
    }
    #navbar-side-menu .mo-menu-inner > ul > li.open > a::after {
        rotate: 90deg;
        opacity: 1;
    }
    #navbar-side-menu .mo-menu-inner > ul > li > ul a {
        display: flex;
        height: 42px;
        align-items: center;
        padding-left: 10px;
        border-bottom: solid 1px #d3d3d3;
        color: #333;
    }
}
@media (max-width: 363.98px) {
    #navbar-side-menu .mo-menu-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}
@media (max-width: 1460px) {
    .navbar-side-wrap {
        gap: 0;
    }
    #site .navbar-login-button {
        margin-right: 0;
    }
}
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(10px, 1.1vw, 20px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(13px, 1.5vw, 17px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(13px, 2vw, 15px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(220px, 70vw, 380px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
}
.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
.navbar a {
    cursor: pointer;
}
.navbar .navbar-header {
    margin-inline: 0;
}
.navbar :where(*):before,
.navbar :where(*):after {
    content: none;
}
.navbar {
    all: unset;
    box-sizing: border-box;
    z-index: 5000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    /* background-color: #fff; */
    border-bottom: 0;
    backdrop-filter: blur(5px);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: clamp(10px, 1.5vw, 30px);
}
/* 로고 */
.navbar .navbar-brand,
.navbar .navbar-brand:is(:hover, :focus) {
    display: block;
    width: var(--navbar-logo-width);
    margin-left: 0;
}
.navbar .navbar-brand img {
    width: var(--navbar-logo-width);
}
/* 텍스트 로고 */
.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;
    letter-spacing: -0.002em;
}
.navbar :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
    position: relative;
    z-index: 100;
    /* color: var(--page-point-color); */
    color: #333;
    /* background-color: transparent; */
    /* text-shadow: 0 0 0.01em var(--page-point-color); */
    /* border-bottom: 3px solid var(--page-point-color); */
}
/* 서브 드롭다운메뉴 */
.navbar :is(.dropdown-menu) {
    z-index: 50;
    background-color: #fff;
}
.navbar :where(.dropdown-menu) a {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: #999;
    width: 100%;
}
.navbar :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: #333;
    text-decoration: underline;
}
.navbar #gnbauth {
    display: none !important;
}
.navbar #gnbauth i {
    display: none;
}
.is_adm .navbar #gnbauth {
    display: none !important;
}
/* [  navbar-custom-scorll-change  ] */
.navbar:is(.navTop) {
    /* --navbar-height: 80px; */
    --navbar-scroll-filter: unset;
    --navbar-scroll-color: #333;
    --navbar-scroll-color-hover: #333;
    --navbar-scroll-font-weight: 500;
    --navbar-scroll-background-color: transparent;
}
.navbar:not(.navScroll) {
    background-color: var(--navbar-scroll-background-color);
}
#site .navbar:is(:hover, .navScroll) {
    /* --navbar-height: 100px; */
    --navbar-scroll-filter: unset;
    --navbar-scroll-color: #333;
    --navbar-scroll-color-hover: #333;
    --navbar-scroll-font-weight: 500;
    --navbar-scroll-background-color: rgba(255, 255, 255, 0.7);
    /* --navbar-logo-width: 150px; */
}
.navbar:where(.navTop, .navScroll) {
    --navbar-transition: 0.3s;
    transition: var(--navbar-transition);
    height: var(--navbar-height);
    background-color: var(--navbar-scroll-background-color);
}
.navbar:where(.navTop, .navScroll) .navbar-brand img {
    transition: width 0.25s;
    filter: var(--navbar-scroll-filter);
}
.navbar:where(.navTop, .navScroll) .navbar-brand span {
    color: var(--navbar-scroll-color);
}
#site .navbar:where(.navTop, .navScroll) :is(.navbar-lang-button, .navbar-login-button) a {
    border-color: var(--navbar-scroll-color);
}
.navbar:where(.navTop, .navScroll) :is(.navbar-lang-button, .navbar-login-button) a,
.navbar:where(.navTop, .navScroll) #navbar_side_toggle span {
    color: var(--navbar-scroll-color);
}
.navbar:where(.navTop, .navScroll) ul.navbar-right > li > a {
    color: var(--navbar-scroll-color);
}
.navbar:where(.navTop, .navScroll) ul.navbar-right > li > a:where(:hover, :focus),
.navbar:where(.navTop, .navScroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
    color: var(--navbar-scroll-color-hover) !important;
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    /* wide */
    .navbar > .container {
        /* display: grid; */
        /* grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1.5fr); */
        /* display: flex; */
        max-width: 100%;
        padding-inline: clamp(10px, 3vw, 50px);
    }
    /* 메인메뉴 */
    .navbar .navbar-collapse {
        display: flex;
        align-self: stretch;
        height: auto !important;
    }
    .navbar .navbar-toggle {
        display: none;
    }
    .navbar .navbar-right {
        display: flex;
        align-self: stretch;
    }
    .navbar .navbar-right > li {
        position: relative;
        display: flex;
    }
    .navbar .navbar-right > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
        height: 100%;
        background-color: transparent;
        padding-inline: var(--navbar-menu-padding-inline);
        padding-block: 0;
        font-weight: 700;
    }
    /* 데스크탑 서브 드롭다운메뉴 */
    .navbar .navbar-right .dropdown-menu {
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: var(--navbar-menu-padding-inline);
        top: 100%;
        /* transform: translateX(-50%); */
        display: none;
        flex-direction: column;
        border-radius: 6px;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
        margin-top: 0px;
        padding: 15px 25px;
        min-width: 200px;
        gap: 0;
        opacity: 0;
        transform-origin: center top;
        text-align: center;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    @keyframes menuOpen {
        0% {
            opacity: 0;
            margin-top: -40px;
            /* scale: 1 0.5; */
        }
        100% {
            opacity: 1;
            margin-top: -10px;
            /* scale: 1 1; */
        }
    }
    .navbar .navbar-right .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 0 0 2px;
        letter-spacing: -0.04em;
        padding-block: 10px;
        /* border-bottom: 1px solid transparent; */
        white-space: nowrap;
        text-align: center;
        /* justify-content: center; */
    }
    .navbar .navbar-right .dropdown-menu li + li a {
        border-top: 1px solid #ccc;
        /* padding-top: 30px; */
    }
}
@media (max-width: 1400px) {
    .navbar .navbar-collapse {
        display: none;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .navbar-toggle,
    #site .navbar-login-button {
        display: none;
    }
    .navbar .container {
        padding-inline: 15px 8px;
    }
}
/* ---------------------------- footer ---------------------------- */
footer :is(li, a) {
    color: #343434;
}
.footer-top {
    padding-block: 70px 60px;
    border-top: 1px solid #ddd;
}
.footer-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 135px;
}
.footer-info{
    margin-right: -1rem;
}
.footer-logo {
    flex-shrink: 0;
}
.footer-address {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 20px;
}
.footer-address li {
    font-size: clamp(13px, 3vw, 17px);
}
.footer-copyright {
    margin-top: 25px;
}
.footer-copyright li {
    font-size: clamp(11px, 2vw, 15px);
}
.footer-address li.clearfix {
    width: 100%;
}
.footer-bottom {
    border-top: 1px solid #666;
}
.footer-bottom .footer-menu {
    display: flex;
    align-items: center;
    height: 87px;
}
.footer-bottom .footer-menu li {
    flex-grow: 1;
}
.footer-bottom .footer-menu li + li {
    border-left: 1px solid #343434;
}
.footer-bottom .footer-menu a {
    display: block;
    line-height: 1;
    width: fit-content;
    margin-inline: auto;
    font-size: clamp(13px, 2vw, 17px);
    text-align: center;
}
.footer-bottom .footer-menu a:hover {
    text-decoration: underline;
    color: #222;
}
@media (max-width: 767.98px) {
    .footer-top {
        padding: 50px 0px;
    }
    .footer-logo {
        max-width: 300px;
        margin-right: 30px;
    }
    .footer-top .container {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    .footer-bottom .footer-menu {
        /* flex-direction: column; */
        flex-wrap: wrap;
        height: auto;
        padding: 30px 55px 30px 0px;
        /* justify-content: center; */
        gap: 10px 10px;
    }
    .footer-bottom .footer-menu a {
        margin: 0;
    }
    .footer-bottom .footer-menu li {
        flex-grow: 0;
    }
    .footer-bottom .footer-menu li + li {
        border: 0;
    }
    .footer-bottom {
        border-top: 0;
        background-color: #f7f7f7;
    }
}
/* ---------------------------- subpage ---------------------------- */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top0.jpg);
    position: relative;
    height: clamp(240px, 25vw, 470px);
}
/* 자주하는 질문 */
.qna .subpage-header {
    --background-image: url(/public/img/sub/00common/qna-top-bg2.jpg);
}
@media (max-width: 767.98px) {
    .qna .subpage-header .bg {
        background-position-x: 80%;
    }
}
/* 병원소개 */
/* 의료진 소개 */
.doctors .subpage-header {
    --background-image: url(/public/img/sub/01oz/doctors-top-bg.jpg);
}
/* 오시는길 */
.location .subpage-header {
    --background-image: url(/public/img/sub/01oz/location-top-bg2.jpg);
}
/* 오시는길 */
.media .subpage-header {
    --background-image: url(/public/img/sub/01oz/media-top-bg.jpg);
}
/* 전후사진 */
.before-after .subpage-header {
    --background-image: url(/public/img/sub/07co/bfaf-top-bg.jpg);
}
/* 공지사항 */
.notice .subpage-header {
    --background-image: url(/public/img/sub/07co/notice-top-bg2.jpg);
}
/* 수술후주의사항 */
.caution .subpage-header {
    --background-image: url(/public/img/sub/07co/notice-top-bg.jpg);
}
.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
@media (max-width: 767.98px) {
    .subpage-title {
        padding-inline: 0;
    }
}
.subpage-title h2 {
    line-height: 1;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 46px);
    color: #fff;
}
.subpage-title p {
    display: block;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 350;
    letter-spacing: -0.2px;
    color: #fff;
}
.breadcrumb ul {
    background: none;
    padding: 0;
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    gap: 5px;
    margin-block: 30px 0px;
}
.breadcrumb li {
    position: relative;
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}
.breadcrumb li:last-child {
    font-weight: 500;
    color: #333;
}
.breadcrumb li.arrow:before {
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 200;
    display: block;
    font-size: 1.7rem;
    line-height: 0;
}
.breadcrumb .home {
    /* line-height: 1; */
}
.breadcrumb .home::before {
    content: "";
    background-image: url(/public/img/sub/00common/house.png);
    background-size: cover;
    width: 19px;
    height: 16px;
    font-weight: 200;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
    transform: translateY(2px);
    line-height: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
}
@media (max-width: 767.98px) {
    .breadcrumb {
        scale: 0.8;
        transform-origin: left top;
    }
}
/* [ subpage-navbar ] */
.snb {
    position: relative;
    z-index: 10;
    margin-top: 100px;
    /* border-bottom: 1px solid #dedede; */
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
    gap: 10px;
}
.snb li {
    flex: 0 1 400px;
}
.snb a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    font-family: "Gmarketsans", sans-serif;
    height: var(--snb-height);
    border: 1px solid #222;
    color: #222;
}
.snb a.active {
    background-color: #222;
    color: #fff;
}
/* [ subpage-title-template ] */
.title-h3 {
    text-align: center;
    margin-bottom: clamp(50px, 5vw, 100px);
}
.title-h3:only-child {
    margin-bottom: 0px;
}
.title-h3 h3 {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.25;
    letter-spacing: -0.043em;
}
.title-h3 h3 span.thin {
    font-weight: 200;
}
.title-h3 h3 span.exp {
    display: block;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    letter-spacing: -0.2px;
    line-height: 1;
    /* margin-top: 10px; */
}
.title-h3 h3 span.exp:first-child {
    margin-bottom: 30px;
}
.title-h3 h3 span.exp:last-child {
    margin-top: 10px;
    font-weight: 300;
}
.title-h3 p {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: -0.2px;
}
.title-h3 h3 + p {
    margin-top: 10px;
}
.title-h3 p b.blue {
    color: var(--oz-blue);
    display: inline-block;
    margin-right: 20px;
}
[class*="title-h"] .line {
    content: "";
    display: block;
    width: 160px;
    height: 1px;
    background-color: #ddd;
    margin: clamp(20px, 5vw, 45px) auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
[class*="title-h"] .line::before {
    content: "";
    box-sizing: border-box;
    display: block;
    width: 20px;
    border-radius: 50%;
    aspect-ratio: 1;
    border: 4px solid var(--oz-blue);
    background-color: #fff;
}
[class*="title-h"] :is(.line + p, .line + p + p) {
    margin-top: 35px;
}
.caption-wrap {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
}
.caption-wrap > p {
    margin-top: 10px;
}
* + p.caption {
    margin-top: clamp(20px, 5vw, 50px);
}
p.caption {
    font-weight: 300;
    font-size: clamp(12px, 3vw, 16px);
    text-align: center;
    display: block;
    line-height: 16px;
}
.caption-box {
    width: fit-content;
    margin-inline: auto;
    font-weight: 450;
    border-radius: 30px;
    border: 1px solid var(--oz-blue);
    background: #eaf0fc;
    padding: 5px 30px;
}
.caption-box p {
    display: flex;
    align-items: center;
    letter-spacing: -0.2px;
    font-size: clamp(14px, 2vw, 18px);
    color: var(--oz-blue);
    gap: 10px;
}
.caption-box p img {
    width: 24px;
}
.caption-box p b {
    color: inherit;
}
.baby .caption-box p {
    text-align: center;
}
@media (max-width: 767.98px) {
    [class*="title-h"] .line::before {
        scale: 0.75;
    }
    .spilus .caption-box p {
        display: block;
        text-align: center;
    }
    .baby .caption-box p {
        text-align: center;
    }
    .baby .se02 .caption-box p {
        flex-direction: column;
    }
}
/* h5 end */
/* [ subpage-content ] */
.subpage section {
    position: relative;
    padding-block: clamp(80px, 15vw, 140px);
    /* min-height: 300px; */
}

.subpage-header + .subpage-content .se01 {
    padding-block: clamp(80px, 15vw, 170px) clamp(100px, 15vw, 160px);
}
.subpage .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;
    background-color: #fff;
}
.subpage .bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.subpage .se-visual {
    --background-image: url(/public/img/sub/00common/se-visual-bg01.jpg);
    position: relative;
    padding-block: 250px 230px;
    background: var(--background-image) no-repeat center / cover;
    height: 1100px;
}
@media (max-width: 767.98px) {
    .subpage .se-visual {
        padding-block: 120px 70px;
        height: auto;
    }
}
/* 소아국소마취수술 */
.baby .se-visual {
    --background-image: url(/public/img/sub/02nv/baby-visual-bg.jpg);
}
/* 상처봉합/치료 */
.wound .se-visual {
    --background-image: url(/public/img/sub/04wo/wound-visual-bg.jpg);
}
.detail-wrap {
    display: flex;
    justify-content: center;
    align-self: stretch;
    gap: 60px;
}
.detail-wrap > img {
    /* flex: 0 1 190px; */
    max-width: 190px;
    border-radius: 15px;
}
.detail-wrap .col {
    max-width: 350px;
    aspect-ratio: 5/3;
}
.detail-wrap .col img {
    border-radius: 10px;
}
.detail-wrap .col p {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
}
.detail-wrap .item {
    position: relative;
}
.detail-wrap .item p {
    position: absolute;
    left: 18px;
    bottom: 15px;
    color: #fff;
    font-size: 16px;
}
.burn .detail-wrap .item p::before {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    left: -7px;
    width: 5px;
    aspect-ratio: 1;
    background-color: #fff;
}
.detail-wrap + .caption-box {
    margin-top: 50px;
}
@media (max-width: 767.98px) {
    .detail-wrap {
        flex-wrap: wrap;
        gap: 15px;
    }
    .detail-wrap > img {
        width: 40%;
    }
    .botox .detail-wrap {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .botox .detail-wrap .col {
        flex: 0 1 auto;
        aspect-ratio: unset;
    }
}
.subpage .se-visual + section {
    margin-top: 65px;
}
.subpage .se-visual .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.subpage .se-visual span.thin {
    font-weight: 200;
}
.subpage .se-visual strong.big-point {
    display: block;
    white-space: nowrap;
    font-family: "GmarketSans", sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 7vw, 120px);
    margin-top: 120px;
    color: #fff;
    opacity: 0.5;
}

.subpage .se-banner {
    height: clamp(500px, 35vw, 800px);
    margin-block: 100px;
}
.subpage .se-banner .container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.subpage .se-banner :is(h3, span, p) {
    color: #fff;
}
.clinic .se-banner {
    --background-image: url(/public/img/sub/04wo/clinic-04-bg.jpg);
}
@media (max-width: 767.98px) {
    .subpage .se-visual + section {
        margin-top: 0;
    }
    .subpage .se-visual strong.big-point {
        margin-top: 50px;
        font-size: 32px;
        opacity: 1;
    }
}
/* about 오체안 */
#site.ft-body {
    overflow: hidden;
    height: 100vh;
    padding-top: 0 !important;
}
.fullpage-tp {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.fullpage-tp .section {
    padding-block: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: -100%;
    transition: bottom 0.7s;
}
.fullpage-tp .container {
    height: 100%;
}
.fullpage-tp .inner {
    height: 100%;
}
.fullpage-tp .section:first-child {
    bottom: 0;
}
.ft-nav {
    display: block !important;
    z-index: 2000;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.ft-nav > li {
    display: block;
    list-style: none;
    height: 16px;
    width: 16px;
    background: #ddd;
    border-radius: 0px;
    margin-top: 10px;
    transition: background 0.7s;
    cursor: pointer;
}
.ft-nav > li.active {
    background: #ff9845;
}
.about .se01 .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.about .se01 h1 {
    font-size: 24px;
    font-weight: 600;
    color: #ff9845;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.about .se01 h1 img {
    height: 110px;
    max-width: 100%;
}
.about .se01 .arrow {
    z-index: 700;
    position: absolute;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    bottom: 30px;
}
.about .se01 .arrow img {
    max-width: 100%;
    width: 30px;
}
.about .text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.about .text h4 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.about .text p {
    line-height: 30px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    color: #fff;
}
.about .text p b {
    color: inherit;
}
.about .se02 {
    --background-image: url(/public/img/sub/01oz/oz01-se02-bg2.jpg);
}
.about .se03 {
    --background-image: url(/public/img/sub/01oz/oz01-se03-bg2.jpg);
}
.about .se04 {
    --background-image: url(/public/img/sub/01oz/oz01-se04-bg.jpg);
}
.about .se05 {
    --background-image: url(/public/img/sub/01oz/oz01-se05-bg.jpg);
}
.about .se06 .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .ft-nav {
        transform-origin: right center;
        scale: 0.6;
        right: 10px;
    }
    .about .se01 h1 {
        scale: 0.8;
    }
    .about .se01 .arrow {
        bottom: 100px;
    }
    .about .text p {
        line-height: 1.5;
    }
    .about .se06 .inner {
        padding-top: 50px;
        padding-inline: 0px;
    }
    .about .title-h3 h3 span.thin {
        display: block;
    }
}
/* 의료진 소개 */
.subpage .se-profile {
    background-color: #f6f6f6;
    padding-block: 50px 0;
}

#oz02 .se-profile + section {
    padding-top: clamp(50px, 15vw, 100px);
}

.profile-wrap {
    display: flex;
}
.profile-wrap .img-box {
    justify-content: center;
}
.profile-wrap .info {
    align-self: center;
}
.profile-wrap .detail{
    margin-top: 0.5rem;
}
.profile-wrap .detail p{
    color:  #444;
font-family: "Ownglyph OZ";
font-size: 1.5rem;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.profile-wrap .title span {
    font-family: "GmarketSans";
    font-size: clamp(18px, 3vw, 24px);
    opacity: 0.4;
    margin-bottom: 17px;
    display: block;
    font-weight: 700;
}
.profile-wrap .title p {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.profile-wrap .title h4 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 200;
    /* margin-bottom: clamp(30px, 5vw, 50px); */
    letter-spacing: -0.015em;
    color: #444;
}
.profile-wrap .title h4 b{
    font-weight: 700;
}
.carrer-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.carrer-wrap .col{
    flex: 0.4;
}

@media (max-width: 767.98px) {
    .profile-wrap {
        flex-direction: column;
        gap: 40px;
        /* padding-inline: 15px; */
        padding-bottom: 40px;
    }
    .carrer-wrap {
        flex-direction: column;
        gap: 8px;
        /* padding-inline: 15px; */
    }
}
/* 오시는길 */
.map-wrap {
    display: flex;
}
.map-wrap .map {
    display: flex;
    flex-direction: column;
    flex: 0 1 50%;
}
.map-wrap .map ul {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}
.map-wrap .map li {
    display: inline-block;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 400;
    background-color: #d5d5d5;
    padding: 1px 8px 1px 8px;
    margin-left: 8px;
}
.map-wrap :is(.root_daum_roughmap_landing) {
    flex: 1;
}
.map-wrap :is(.wrap_map) {
    height: 100% !important;
}
.map-wrap :is(.root_daum_roughmap_landing, .wrap_map) {
    width: 100% !important;
    height: 100%;
}
.map-wrap .roughmap_maker_label .roughmap_lebel_text {
    color: transparent;
    font-size: 15px;
    padding: 10px 20px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.25));
}
.map-wrap .roughmap_maker_label .roughmap_lebel_text.loaded {
    color: #000;
}
.map-wrap .info {
    padding-left: 80px;
    padding-block: 30px 0;
}
.map-wrap .info dl + dl {
    margin-top: clamp(20px, 5vw, 50px);
}
.map-wrap .info dt {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: 8px;
}
.map-wrap .info dd {
    font-size: clamp(14px, 2vw, 16px);
}
.map-wrap .info li {
    display: flex;
    margin-bottom: 5px;
}
.map-wrap .info b {
    flex-shrink: 0;
    display: inline-block;
    width: 60px;
    margin-right: 5px;
    font-weight: 500;
}
.map-wrap .info small {
    display: block;
    font-size: 14px;
}
.map-wrap .contact {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}
.map-wrap .contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    max-width: clamp(80px, 15vw, 115px);
    width: 100%;
    color: #fff;
    text-align: center;
    border-radius: 9999px;
    background-color: #343434;
    font-size: clamp(15px, 2vw, 18px);
}

@media (max-width: 767.98px) {
    .map-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .map-wrap .map {
        flex: 0 1 auto;
        aspect-ratio: 1;
    }
    .map-wrap .map ul {
        justify-content: center;
    }
    .map-wrap .info {
        padding: 0;
    }
    .map-wrap .contact {
        justify-content: center;
    }
}
.sns-box {
    display: flex;
    justify-content: center;
    margin-top: 75px;
    max-width: 1000px;
    margin-inline: auto;
}
.sns-box img {
    height: clamp(20px, 3vw, 34px);
}
.sns-box a {
    flex: 1;
    /* flex: 0 1 290px; */
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 25px);
    justify-content: center;
    font-size: clamp(16px, 2vw, 18px);
}
.sns-box a + a {
    border-left: 1px solid #333;
}
@media (max-width: 767.98px) {
    .sns-box {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    .sns-box a + a {
        border: 0;
    }
}
.subpage .se-gallery {
    padding-block: 0;
}
.gallery-wrap {
    display: flex;
}
.gallery-wrap a {
    position: relative;
    overflow: hidden;
    flex: 1;
}
.gallery-wrap span.inner {
    transition: 0.25s;
    position: absolute;
    left: 0;
    top: -50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
}
.gallery-wrap a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9990px;
    width: clamp(50px, 15vw, 80px);
    aspect-ratio: 1;
    background-color: var(--oz-blue);
}
.gallery-wrap a:hover > span.inner {
    top: 0;
    opacity: 1;
}
.gallery-wrap a .icon img {
}
@media (max-width: 767.98px) {
    .gallery-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-wrap a .icon img {
        height: 20px;
    }
}
.pop-gallery-wrap .swiper-pagination {
    left: 10px;
    bottom: unset;
    top: 0;
    width: fit-content;
    top: -45px;
    color: #ccc;
    font-size: 18px;
}
.pop-gallery-wrap .swiper-pagination-current {
    font-weight: 700;
    color: #fff;
}
.pop-gallery-wrap .swiper-button-prev {
    left: -100px;
}
.pop-gallery-wrap .swiper-button-next {
    right: -100px;
}
.pop-gallery-wrap .swiper-button-next:after,
.pop-gallery-wrap .swiper-button-prev:after {
    color: #fff;
}
@media (max-width: 767.98px) {
    .pop-gallery-wrap :is(.swiper-button-next, .swiper-button-prev) {
        position: static !important;
        top: 0;
        margin-top: 30px;
    }
    .pop-gallery-wrap .swiper-indicators-wrap {
        display: flex;
        justify-content: space-between;
    }
}
#site .se-channel {
    padding-block: 0;
    background-color: var(--oz-blue);
}
.channel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 40px;
    max-width: 1100px;
    margin-inline: auto;
    gap: 7rem;
}
.channel-wrap .info {
    display: flex;
    gap: 40px;
}
.channel-wrap .info a {
    display: flex;
    width: 60px;
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, 1);
}
@media (max-width: 767.98px) {
    .channel-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .channel-wrap .info {
        gap: 15px;
        scale: 0.8;
    }
    .channel-wrap img {
        max-width: 250px;
    }
}
/* 모반수술 */

/* 공통 템플릿 */
/* OZHEAN Plastic Surgery */
.info-wrap {
    display: flex;
    justify-content: center;
}
.info-wrap .icon {
    display: inline-block;
    /* max-height: 60px; */
    height: 60px;
}
.info-wrap .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 60px;
}
.info-wrap .col {
    flex: 0 1 310px;
    text-align: center;
    padding-block: 20px;
}
.info-wrap .col + .col {
    border-left: 1px solid #c8c8c8;
}
.info-wrap .col h6 {
    margin-block: 25px 10px;
    font-weight: 800;
    font-size: 18px;
}
.info-wrap .col h6 span.color{
    color: var(--page-point-color);
}
.info-wrap .col p {
    font-weight: 400;
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.info-wrap.circle {
    gap: 40px;
}
.info-wrap.circle .col {
    position: relative;
    aspect-ratio: 1;
    justify-content: center;
    background-color: #e9eaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    /* padding-top: 90px; */
}
.info-wrap.circle .col + .col {
    border: 0;
}
.info-wrap.circle .col + .col::before {
    content: "\e5e1";
    font-family: var(--gms);
    font-variation-settings: var(--gms-100-out);
    position: absolute;
    left: -41px;
    font-size: 42px;
}
@media (max-width: 767.98px) {
    .info-wrap {
        flex-direction: column;
    }
    .info-wrap.circle{
        max-width: 300px;
        margin-inline: auto;
    }
    .info-wrap .col {
        flex: 0 1 auto;
        height: auto;
        padding-block: 25px;
    }
    .info-wrap .col + .col {
        border-top: 1px solid #c8c8c8;
        border-left: 0;
    }
    .info-wrap.circle .col + .col::before{
        left: unset;
        rotate: 90deg;
        top: -45px;
        bottom: unset;
    }
}
/* 구분 */
.division-wrap {
    display: flex;
    justify-content: center;
    gap: 18px;
    gap: 30px;
}
.division-wrap .col {
    flex: 0 1 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    padding: 30px 10px 30px;
    border: 1px solid #ddd;
    text-align: center;
    /* height: 340px; */
}
.division-wrap img {
    max-width: 130px;
    margin-bottom: 20px;
}
.division-wrap h5 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}
.division-wrap h5::after {
    content: "";
    width: 25px;
    height: 4px;
    display: block;
    margin: 20px auto;
    background-color: var(--oz-blue);
}
.division-wrap p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5;
}
@media (max-width: 767.98px) {
    .division-wrap {
        flex-direction: column;
        gap: 15px;
    }
    .division-wrap .col {
        border-radius: 14px;
    }
}
/* 수술 후 조직 검사*/
.step-wrap {
    max-width: 1080px;
    margin-inline: auto;
    justify-content: center;
    display: flex;
    gap: 10px;
    padding-top: 70px;
}
.step-wrap img {
    margin-top: -70px;
    margin-inline: auto;
    max-width: clamp(120px, 15vw, 170px);
}
.step-wrap .col {
    flex: 1;
    padding: 0px 35px 23px 35px;
    position: relative;
    width: 100%;
    text-align: center;
}
.step-wrap .col:nth-child(1) {
    background: #eaf0fc;
}
.step-wrap .col:nth-child(2) {
    background: #dae1fb;
}
.step-wrap .col:nth-child(3) {
    background: #c5d1f9;
}
.step-wrap .col:nth-child(4) {
    background: #b2c2f6;
}
.step-wrap p {
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    margin-block: 25px;
    padding-bottom: 25px;
    height: 80px;
    border-bottom: 1px solid #fff;
}
.step-wrap span.num {
    font-family: "GmarketSans";
    font-weight: 500;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: block;
    font-size: clamp(20px, 3vw, 22px);
}
.step-wrap + .caption-wrap {
    margin-top: clamp(20px, 5vw, 50px);
}
.step-wrap.sc01-05-wrap .col {
    flex: 0 1 260px;
}
@media (max-width: 767.98px) {
    .step-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0;
    }
    /* .sc01-05-wrap{
        display: flex;
        flex-direction: column;
    } */
    .step-wrap .col {
        padding-inline: 10px;
        margin-top: 60px;
    }
}
/* 성형외과 전문의 */
.doctor-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.title-h3 + .doctor-wrap {
    margin-top: -20px;
}
.doctor-wrap .col {
    flex: 0 1 400px;
    text-align: center;
}
.doctor-wrap p {
    font-size: clamp(16px, 2vw, 18px);
    letter-spacing: -0.005em;
    line-height: 1.4;
}
.doctor-wrap h5 {
    font-size: clamp(20px, 5vw, 24px);
    letter-spacing: -0.005em;
    line-height: 1.2;
    color: #343434;
}
.doctor-wrap .info {
    position: relative;
    z-index: 10;
    border-radius: 20px;
    background: rgba(255, 255, 255, 56%);
    border: 1px solid #fff;
    padding: 17px 10px;
    max-width: 250px;
    margin: -160px auto 0;
    text-align: center;
}
@media (max-width: 767.98px) {
    .doctor-wrap img {
        max-width: 280px;
        margin-inline: auto;
    }
    .doctor-wrap .info {
        margin-top: -120px;
    }
}
/* 성형외과 전문의의 수술 노하우 */
.knowhow-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-inline: auto;
}
.knowhow-wrap .img-box {
    flex: 0 1 353px;
}
.knowhow-wrap .info {
    flex: 0 1 550px;
}
.knowhow-wrap h4 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 20px;
}
.knowhow-wrap h4 span.thin {
    font-weight: 200;
}
.knowhow-wrap span.en {
    font-family: "GmarketSans";
    font-weight: 500;
    font-weight: 700;
    color: #e1e1e1;
    margin-bottom: 2px;
    line-height: 1;
    display: block;
    font-size: clamp(18px, 2vw, 30px);
}
.knowhow-wrap .detail {
    border-top: 1px solid #222;
}
.knowhow-wrap .detail small {
    font-size: 13px;
    margin-top: 30px;
    display: block;
}
.knowhow-wrap .detail dl {
    margin: 0;
    /* display: flex; */
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.5fr);
    display: grid;
    align-items: center;
    /* text-align: center; */
    padding: 40px 00px;
    position: relative;
    list-style: none;
    border-bottom: 1px solid #ddd;
    gap: 20px;
}
.knowhow-wrap .detail dt {
    text-align: center;
    font-weight: 700;
}
.knowhow-wrap .detail :is(dt, dd) {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.4;
    letter-spacing: -0.015em;
}

/* 피지샘모반 */
.sebaceous .knowhow-wrap:not([data-type]) {
    gap: 30px;
    max-width: 1070px;
}
.sebaceous .knowhow-wrap:not([data-type]) > * {
    flex: 1;
}
.sebaceous .knowhow-wrap:not([data-type]) .detail dl {
    padding-block: 25px;
}

/* 소아국소마취 */
.baby .knowhow-wrap:not([data-type]) {
    gap: 50px;
    max-width: 1160px;
    margin-top: clamp(30px, 5vw, 100px);
}
.baby .knowhow-wrap:not([data-type]) h4 {
    font-size: 22px;
}
.baby .knowhow-wrap:not([data-type]) p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 30px;
}
.baby .knowhow-wrap:not([data-type]) > * {
    flex: 1;
}
.baby .knowhow-wrap:not([data-type]) .detail dl {
    padding-block: 14px;
    grid-template-columns: minmax(0, 70px) minmax(0, auto);
    gap: 10px;
}
.baby .knowhow-wrap:not([data-type]) .detail:has(p) {
    border: 0;
    /* border-bottom: 1px solid #ccc; */
    /* padding-bottom: 40px; */
}
/* 보톡스 */
.botox .knowhow-wrap:not([data-type]) > * {
    flex: 1;
}

@media (max-width: 767.98px) {
    .knowhow-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 50px;
    }
    .knowhow-wrap .img-box {
        flex: 0 1 auto;
    }
    .knowhow-wrap .detail dl {
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 7px;
        padding: 20px 5px;
    }
    .knowhow-wrap .info {
        flex: 0 1 auto;
    }
}

/* 자세히 알아보기 */
.subpage .se-more {
    background-color: #f6f6f6;
    padding-block: 70px;
}
.subpage .se-more .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subpage .se-more .info {
    text-align: center;
}
.subpage .se-more .info p {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: -0.02em;
}
.subpage .se-more .btn {
    width: fit-content;
    padding: 5px clamp(20px, 3vw, 40px);
    background-color: var(--oz-blue);
    color: #fff;
    border-radius: 9999px;
    line-height: 1;
    margin-top: 20px;
}

/* 리얼 리뷰 */
.subpage .se-review {
    background-color: #f6f6f6;
    padding-block: 70px;
}
.review-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    padding: 0 30px;
}
.review-wrap h3 {
    font-family: "GmarketSans", sans-serif;
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.review-wrap p {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: -0.2px;
}
.review-wrap .info {
    max-width: 530px;
}
.review-wrap .info .item + .item {
    margin-top: 20px;
}
@media (max-width: 767.98px) {
    .review-wrap {
        flex-direction: column;
        padding: 0;
        gap: 40px;
    }
    .review-wrap .title {
        text-align: center;
    }
}
/* 실비보험 */
.subpage .se-ins {
    background-color: #f4f4f4;
}
.subpage .se-ins .title-h3 {
    margin-bottom: 50px;
}
.ins-wrap {
    display: flex;
    max-width: 1080px;
    margin-inline: auto;
    gap: 20px;
}
.ins-wrap .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    aspect-ratio: 1;
    border-radius: 30px;
    background-color: #fff;
    padding: 30px 30px 40px;
    text-align: center;
}
.ins-wrap .col img {
    height: clamp(35px, 5vw, 41px);
}
.ins-wrap .info {
    align-self: stretch;
}
.ins-wrap span.num {
    font-size: clamp(22px, 3vw, 36px);
    color: #e0e0e0;
    font-family: "GmarketSans", sans-serif;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.ins-wrap h5 {
    margin-block: 23px 14px;
    font-size: clamp(16px, 5vw, 22px);
    font-weight: 700;
    color: #3f67eb;
}
.ins-wrap p {
    letter-spacing: -0.4px;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 18px);
    text-align: center;
}
@media (max-width: 767.98px) {
    .ins-wrap {
        flex-direction: column;
    }
    .ins-wrap .col {
        aspect-ratio: unset;
    }
}
/* OZHEAN Specialized */
.sp-wrap {
    display: flex;
    gap: 18px;
    gap: 25px;
}
.sp-wrap .col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    padding: 65px 10px 30px;
    border: 1px solid #ddd;
    text-align: center;
    height: 340px;
}
.sp-wrap h5 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    letter-spacing: -0.03em;
}
.sp-wrap h5::after {
    content: "";
    width: 25px;
    height: clamp(3px, 1vw, 4px);
    display: block;
    margin: clamp(12px, 3vw, 30px) auto;
    background-color: var(--oz-blue);
}
.sp-wrap p {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.65;
    letter-spacing: -0.03em;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .sp-wrap {
        flex-direction: column;
        /* display: grid; */
        /* grid-template-columns: repeat(2,minmax(0,1fr)); */
        gap: 10px;
    }
    .sp-wrap .col {
        height: auto;
        padding: 30px 10px;
        border-radius: 15px;
    }
    .about .sp-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about .sp-wrap .col {
        padding-block: 20px;
    }
    .about .sp-wrap h5 {
        font-size: 14px;
    }
    .about .sp-wrap p {
        font-size: 13px;
    }
}
/* 박스 */
.box-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.box-wrap + ul {
    width: fit-content;
    margin: 60px auto 0;
}
.box-wrap .col {
    flex: 0 1 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    padding: 50px 10px;
    border: 1px solid #ddd;
    text-align: center;
}
.box-wrap .col.point {
    background-color: #f6f8fe;
    border-color: #d4d9e7;
}
.box-wrap .col.tip {
    background-color: #3f67eb;
    border-color: #3f67eb;
}

.box-wrap * + h5 {
    margin-top: clamp(10px, 3vw, 20px);
}
.box-wrap h5 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}
.box-wrap h5::after {
    content: "";
    width: 25px;
    height: 4px;
    display: block;
    margin: clamp(20px, 5vw, 30px) auto;
    background-color: var(--oz-blue);
}
.box-wrap .col.tip h5::after {
    background-color: #fff;
}
.box-wrap p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.65;
    letter-spacing: -0.03em;
}
.box-wrap p + small {
    margin: 6px 0 0 0;
    letter-spacing: -0.1px;
    font-weight: 300;
    font-size: 13px;
    text-align: center;
    display: block;
    line-height: 18px;
}
.box-wrap a.btn {
    background-color: #fff;
    color: #3f67eb;
    font-family: "GmarketSans", sans-serif;
    font-weight: 700;
    margin-top: 30px;
    height: 30px;
    border-radius: 5px;
}
.box-wrap .col.tip :is(h5, p, small) {
    color: #fff;
}

/* 양성종양이란? */
.box-wrap.ba04-02-wrap .col {
    flex-basis: 250px;
    height: 290px;
}
/* 상처가 났을 때, 당황하지 마시고 이렇게 따라해 보세요 */
.box-wrap.wo01-02-wrap .col {
    flex-basis: 320px;
}
/* 봉합실 */
.box-wrap.wo01-10-wrap {
    flex-wrap: nowrap;
    gap: 20px;
}
.box-wrap.wo01-10-wrap .col {
    justify-content: center;
}
/* 4STEP 흉터 ZERO SYSTEM */
.box-wrap.wo01-11-wrap {
    gap: 15px;
}
.box-wrap.wo01-11-wrap .col {
    flex-basis: 275px;
    padding-bottom: 30px;
    aspect-ratio: 1;
}
/* 켈로이드 흉터 */
.box-wrap.sc01-03-wrap {
    gap: 80px;
}
.box-wrap.sc01-03-wrap .col {
    flex-basis: 320px;
}
/* 외상흉터 */
.box-wrap.sc02-03-wrap {
    /* gap: 30px; */
}
.box-wrap.sp05-03-wrap .col,
.box-wrap.sc02-03-wrap .col {
    justify-content: center;
    flex-basis: 290px;
    padding-bottom: 30px;
    aspect-ratio: 1;
}
.box-wrap.sp05-05-wrap {
    flex-wrap: nowrap;
}
@media (max-width: 767.98px) {
    #site .box-wrap {
        flex-direction: column;
        /* display: grid; */
        /* grid-template-columns: repeat(2, minmax(0,1fr)); */
        gap: 15px;
    }
    #site .box-wrap.sc02-03-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #site .box-wrap .col {
        height: auto;
        padding: 30px 15px;
        border-radius: 20px;
        aspect-ratio: unset;
        flex: 0 1 auto;
    }
    .box-wrap.wo01-11-wrap .col:nth-child(1) {
        order: 1;
    }
    .box-wrap.wo01-11-wrap .col:nth-child(2) {
        order: 2;
    }
    .box-wrap.wo01-11-wrap .col:nth-child(3) {
        order: 3;
    }
    .box-wrap.wo01-11-wrap .col:nth-child(4) {
        order: 4;
    }
    .box-wrap.wo01-11-wrap .col:nth-child(5) {
        order: 5;
    }
    .box-wrap.wo01-11-wrap .col:nth-child(6) {
        order: 999;
    }
    .box-wrap.wo01-11-wrap .col:nth-child(7) {
        order: 6;
    }
}
.line-wrap {
    display: flex;
}
.line-wrap .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.line-wrap .col + .col {
    border-left: 1px solid #ccc;
}
.line-wrap h5 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    margin-bottom: 10px;
}
.line-wrap p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    letter-spacing: -0.04px;
}
@media (max-width: 767.98px) {
    .line-wrap {
        flex-direction: column;
    }
    .line-wrap .col {
        padding-block: 30px;
    }
    .line-wrap .col + .col {
        border-top: 1px solid #ccc;
        border-left: 0;
    }
}
/* 개별 */
/* 모반수술 */
/* 기타 모반 수술 */
.nevus-wrap {
    display: flex;
    align-items: flex-end;
}
.nevus-wrap .info {
    padding-left: 50px;
}
.nevus-wrap .title {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}
.nevus-wrap .title span.num {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 800;
    font-style: italic;
    font-family: "Roboto";
    margin-right: 12px;
    line-height: 1;
    transform: translateY(3px);
    color: #333;
}
.nevus-wrap .title h4 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin-right: 8px;
    line-height: 1;
}
.nevus-wrap .title small {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 100;
    font-style: italic;
    display: inline-block;
    margin-bottom: 0px;
    letter-spacing: -0.4px;
    color: #000;
    line-height: 1;
}
.nevus-wrap .detail p {
    height: 151px;
    padding-top: 19px;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -1px;
    padding-bottom: 30px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #878787;
}
.nevus-wrap .square {
    width: 100%;
    display: flex;
    padding-top: 22px;
}

.nevus-wrap .square li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 158px;
    height: 106px;
    border: 1px solid #c3c3c3;
    margin-right: 8px;
    font-size: clamp(13px, 2vw, 16px);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.tumor .nevus-wrap {
    align-items: center;
}
.tumor .nevus-wrap .detail p {
    height: auto;
}
.tumor .nevus-wrap .detail p:nth-child(2) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
    padding-top: 0;
}
.tumor .nevus-wrap .detail p:only-child {
    border-bottom: 0;
    margin-bottom: 0;
}
.tumor .nevus-wrap .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.tumor .nevus-wrap .title .num {
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {
    .nevus-wrap {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .nevus-wrap .info {
        padding-left: 0;
    }
    .nevus-wrap .square li {
        width: auto;
        flex: 1;
        height: auto;
        padding: 10px 15px;
    }
    .nevus-wrap .detail p {
        height: auto;
    }
}

/* qna */
.qna-wrap {
    order: 10;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    /* border-top: 1px solid #333; */
    background-color: #fff;
    margin-block: 30px;
}
.qna-wrap .text-center {
    text-align: center;
}
.qna-wrap .title {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-top: 17px;
    padding-bottom: 19px;
    padding-right: 70px;
    padding: 17px 20px 19px 50px;
    font-weight: 500;
    height: clamp(52px, 5vw, 64px);
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    color: #333;
    letter-spacing: -0.02em;
}
#site .qna-wrap .col :is(.title, .info) {
    padding-left: 60px;
    position: relative;
}
.qna-wrap .title {
    font-size: clamp(16px, 3vw, 18px);
    gap: 30px;
    justify-content: space-between;
}
.qna-wrap .mark {
    position: absolute;
    display: flex;
    align-items: flex-end;
    left: 22px;
    /* width: 35px; */
    line-height: 1;
    gap: 3px;
}
.qna-wrap .info .mark {
    /* top: 45px; */
    transform: translateY(5px);
}
.qna-wrap .title .mark::before {
    content: "Q";
}
.qna-wrap .info .mark::before {
    content: "A";
}
.qna-wrap .mark::before {
    position: relative;
    transform: translateY(-1px);
    display: block;
    width: 14px;
    /* height: auto; */
    /* background: transparent; */
    font-weight: 600;
    flex-shrink: 0;
    font-size: 20px;
}
.qna-wrap .mark::after {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background-color: #222;
}
.qna-wrap .title::after {
    transition: 0.3s;
    content: "\e5cf";
    font-family: var(--gms) !important;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 32px);
    /* margin-left: auto; */
}

.qna-wrap .col.active .title::after {
    transform: rotate(180deg);
}

.qna-wrap .info {
    overflow: hidden;
    display: none;
    margin-top: 0 !important;
    padding-block: 40px;
    padding-inline: 50px 70px;
    background: #f0f0f0;
}
.qna-wrap .info h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}
.qna-wrap .info p + h6 {
    margin-top: 15px;
}
.qna-wrap .info :is(p, li) {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}
.qna-wrap .info :is(p, li) + :is(p, li) {
    margin-top: 20px;
}
.qna-wrap .info a {
    color: #3b6bb8;
}
.qna-wrap .info a:hover {
    color: #14418a;
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .qna-wrap .ans {
        padding: 25px;
    }
    .qna-wrap .info {
        padding: 20px;
    }
    .qna-wrap .title {
        height: auto;
        padding-block: 15px;
    }
}

/* 양성종양/부이주 */
/* 피지낭종 */
/* 표피낭종 */
.ba02-02-wrap {
    display: flex;
    justify-content: center;
    gap: 120px;
}
.ba02-02-wrap .col {
    flex: 0 1 300px;
}
/* 표피낭종, 흉터가 남기 전 미리 제거하세요 */
.ba02-03-wrap .top {
    display: flex;
    justify-content: center;
    gap: 2px;
}
.ba02-03-wrap .bottom {
    margin-top: 50px;
    flex-direction: column;
}
@media (min-width: 768px) {
    .ba02-03-wrap .bottom img:first-child {
        margin-bottom: 10px;
        max-width: 1032px;
        margin-inline: auto;
    }
}
@media (max-width: 767.98px) {
    .ba02-02-wrap {
        gap: 20px;
    }
}
/* 피부섬유종 */
/* 피부섬유종, 작지만 작지않습니다 */
.dermatofibroma .se02 .title-h3 img {
    max-width: 170px;
    margin: 40px auto 30px;
}
.ba03-02-wrap {
    display: flex;
    justify-content: center;
    gap: 55px;
}
.ba03-02-wrap .col {
    flex: 0 1 265px;
}
@media (max-width: 767.98px) {
    .ba03-02-wrap {
        flex-direction: column;
        gap: 40px;
        padding-inline: 40px;
    }
    .ba03-02-wrap .col {
        flex: 0 1 auto;
    }
}
/* 약관 */
.lists .container {
    padding-block: clamp(60px, 15vw, 120px) 0;
}
.lists .title-h3 {
    margin-bottom: 50px;
}
.privacy-wrap {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
}

.privacy-wrap .item {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
    font-size: clamp(13px, 2vw, 15px);
    letter-spacing: -0.2px;
    line-height: 1.7;
    color: #868686;
    font-weight: 300;
}

.privacy-wrap p {
    display: block;
    color: #434343;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 600;
    margin-bottom: 15px;
}

.privacy-wrap p span {
    display: block;
    color: #434343;
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
}

.privacy-wrap span {
    display: block;
    color: #434343;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
@media (max-width: 767.98px) {
    .privacy-wrap {
        padding: 0;
    }
}
.table-privacy {
    padding-top: 16px;
    width: 100%;
    text-align: center;
}

.table-privacy table {
    width: 100%;
    text-align: center;
}
.table-privacy :is(th, td) {
    vertical-align: middle;
    font-size: clamp(12px, 2vw, 15px);
}
.table-privacy th {
    padding: 8px 0;
    color: #656565;
    background-color: #f8f8f8;
    border: 1px solid #868686;
}

.table-privacy td {
    padding: 4px 2px;
    border: 1px solid #868686;
}
/* 재증명발급 */
.online-cert .container {
    padding-block: clamp(50px, 15vw, 100px);
}
.online-cert h3 {
    font-family: "NanumSquare";
    font-size: clamp(22px, 5vw, 55px);
    letter-spacing: -0.02em;
    font-weight: 300;
    color: #222;
    margin: 0;
}
.online-cert h3 b {
    color: var(--oz-gold);
    font-weight: 900;
}
.online-cert h4 {
    font-family: "NanumSquare";
    margin-block: clamp(50px, 15vw, 100px) 25px;
    font-size: clamp(20px, 3vw, 32px);
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--oz-gold);
}
.cert-text-box {
    border: 1px solid #ccc;
    padding: clamp(15px, 3vw, 35px);
}
.cert-text-box:has(a:only-child) {
    padding: clamp(50px, 5vw, 100px) 50px;
}
.cert-text-box li {
    font-family: "NanumSquare";
    font-size: clamp(12px, 3vw, 18px);
    letter-spacing: -0.03em;
    line-height: 2;
    font-weight: 400;
    list-style: none;
    color: #222222;
    display: flex;
    position: relative;
    padding-left: 15px;
}
.cert-text-box li span.tit {
    flex-shrink: 0;
}
.cert-text-box > ul > li::before {
    content: ".";
    font-family: "NanumSquare";
    font-size: 18px;
    letter-spacing: -0.02em;
    font-weight: 400;
    list-style: none;
    color: #222222;
    display: flex;
    position: absolute;
    left: 3px;
    top: -5px;
}
.cert-text-box .color {
    text-decoration: underline;
    color: var(--oz-gold);
    font-weight: 700;
}
.cert-text-box a {
    width: fit-content;
    display: flex;
    padding: 15px clamp(20px, 3vw, 45px);
    gap: 20px;
    align-items: center;
    background-color: var(--oz-gold);
    color: #fff;
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 700;
}
.cert-text-box a[disabled] {
    pointer-events: none;
    opacity: 0.5;
}
.cert-text-box ul + a {
    margin-top: 30px;
}
.cert-text-box a img {
    height: 34px;
}

.img-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.img-wrap .col {
    flex: 0 1 auto;
}
@media(max-width:767.98px){
    .img-wrap{
flex-direction: column;}
}
/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
    position: relative;
    width: 100%;
}
#mainCarouselSwiper .swiper {
    display: block !important;
}
#mainCarouselSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: max(clamp(700px, 70vw, 850px), calc(var(--svh100) - var(--navbar-height))); */
    height: 1080px;
}
#mainCarouselSwiper .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* filter: brightness(0.5); */
}
#mainCarouselSwiper .swiper-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#mainCarouselSwiper .swiper-caption {
    position: relative;
    z-index: 10;
}
#mainCarouselSwiper .swiper-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#mainCarouselSwiper .swiper-link-btn {
    display: none;
}
#mainCarouselSwiper .swiper-link-btn span::before {
    content: "더보기";
}
#mainCarouselSwiper .swiper-caption {
    text-align: center;
    color: #fff;
}
#mainCarouselSwiper .swiper-caption h1 {
    position: relative;
    font-size: 52px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 20px;
    color: inherit;
}
#mainCarouselSwiper .swiper-caption p {
    margin-top: 25px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: inherit;
}
#mainCarouselSwiper [class*="swiper-button"] {
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    width: 10%;
    height: 100%;
}
#mainCarouselSwiper [class*="swiper-button"]::after {
    content: none;
}
#mainCarouselSwiper [class*="swiper-button"]::before {
    position: relative;
    right: auto;
    top: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-100-out);
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
}
#mainCarouselSwiper [class*="swiper-button"]:hover::before {
    color: rgb(255, 255, 255, 1);
}
#mainCarouselSwiper .swiper-button-next {
    right: 0;
}
#mainCarouselSwiper .swiper-button-next::before {
    content: "\e5e1";
}
#mainCarouselSwiper .swiper-button-prev::before {
    content: "\e2ea";
}
#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}
#mainCarouselSwiper .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 1;
    gap: 7px;
}
#mainCarouselSwiper .swiper-pagination span {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
    transition: ease-in-out 0.2s all;
    margin: 0;
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}
@media (width <= 767.98px) {
    #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
}

/* [ mainpage ] */
.mainpage :is(.bg) {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* object-position: center; */
    background-color: #fff;
    background: var(--background-image) no-repeat center / cover;
}
.mainpage section {
    position: relative;
    padding-block: clamp(80px, 10vw, 100px) clamp(80px, 10vw, 120px);
}
#site .main-video {
    padding-block: 0;
}
@media(min-width:768px){/*md*/
    #site .main-video{
        aspect-ratio: 1905/1070;
    }
}
.main-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#site .main-medical {
    position: absolute;
    width: 100%;
    margin-top: -115px;
    padding-block: 0;
    z-index: 100;
}
.m-medical-wrap {
    display: flex;
    gap: 15px;
    width: 100%;
}
.m-medical-wrap .col {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 7px 13px 13px 0px rgb(1 0 0 / 8%);
}
.m-medical-wrap .inner span {
    display: block;
}
.m-medical-wrap .inner {
    position: relative;
    overflow: hidden;
}
.m-medical-wrap h5 {
    font-weight: 700;
    font-size: clamp(17px, 3vw, 23px);
    letter-spacing: -0.005em;
    color: #343434;
    margin-bottom: clamp(12px, 3vw, 22px);
    line-height: 1.2;
}
.m-medical-wrap p {
    font-weight: 300;
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: -0.05em;
    color: #343434;
    line-height: 24.5px;
    margin-bottom: 0;
    line-height: 1.2;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */

@media (max-width: 767.98px) {
    #site .main-medical {
        position: static;
        /* margin: 80px 30px 80px 30px; */
        margin: 0;
        padding: 80px 0px;
    }
    .m-medical-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .m-medical-wrap .col {
        aspect-ratio: unset;
        padding-block: 40px;
    }
}
.mainpage .main-cases {
    background-color: #f4f4f4;
    padding-block: 300px 150px;
    text-align: center;
}
@media (max-width: 767.98px) {
    .mainpage .main-cases {
        padding-block: 200px;
    }
}
.main-cases .title {
    margin-bottom: clamp(30px, 5vw, 70px);
}
.main-cases .title p {
    font-size: clamp(17px, 3vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: #777777;
    font-weight: 300;
}
.main-cases .title h2 {
    margin-top: clamp(30px, 5vw, 60px);
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #343434;
}
.main-cases .title h2 b {
    /* font-size: 80px; */
    font-size: 155%;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: inherit;
}
.m-cases-wrap .info {
    /* margin: 75px 0 40px; */
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
.m-cases-wrap .info img {
    display: none;
}
.m-cases-wrap .info h3 {
    font-family: "GmarketSans", sans-serif;
    font-weight: 700;
    font-size: clamp(150px, 20vw, 230px);
    line-height: 1;
    text-align: center;
    background: url(/public/img/main/m-cases-number-bg.png) #000 no-repeat center / cover;
    background-clip: text;
    color: transparent;
    padding-top: 10px;
    margin-bottom: -30px;
}
.m-cases-wrap .info p {
    font-family: "GmarketSans", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.005em;
    color: #777777;
    width: 0;
}
.m-cases-wrap .date {
    font-size: clamp(10px, 3vw, 20px);
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: #777;
}
@media (max-width: 767.98px) {
    .m-cases-wrap .info h3 {
        font-size: 80px;
    }
    .m-cases-wrap .info p {
        display: none;
    }
}
.mainpage .main-doctors {
    --background-image: url(/public/img/main/m-doctors-bg.jpg);
    padding-block: 250px 150px;
}
.main-doctors .title {
    margin-bottom: clamp(50px, 5vw, 90px);
    text-align: center;
}
.main-doctors .title p {
    font-family: "GmarketSans", sans-serif;
    font-weight: 300;
    font-size: clamp(10px, 3vw, 18px);
    color: #303030;
    line-height: 1;
    letter-spacing: clamp(5px, 1vw, 11.5px);
    text-transform: uppercase;
}
.main-doctors .title h2 {
    font-size: clamp(28px, 8vw, 55px);
    margin-top: clamp(20px, 5vw, 45px);
    letter-spacing: -0.005rem;
    line-height: 1;
    font-weight: 700;
    color: #343434;
}
.m-doctors-wrap {
    display: flex;
    justify-content: center;
}
.m-doctors-wrap .col {
    flex: 0 1 auto;
}
.m-doctors-wrap .profile {
    position: relative;
    z-index: 10;
    border-radius: 20px;
    background: rgba(255, 255, 255, 56%);
    border: 1px solid #fff;
    padding: 17px 10px;
    max-width: 315px;
    margin: -180px auto 0;
    text-align: center;
}
.m-doctors-wrap .profile p {
    font-size: clamp(16px, 2vw, 18px);
    letter-spacing: -0.005em;
    line-height: 1.4;
}
.m-doctors-wrap .profile h5 {
    font-size: clamp(20px, 3vw, 24px);
    letter-spacing: -0.005em;
    line-height: 1.2;
    color: #000;
}
@media (max-width: 767.98px) {
    .mainpage .main-doctors {
        padding-block: 170px 130px;
    }
    .m-doctors-wrap .col {
        max-width: 300px;
    }
    .m-doctors-wrap .profile {
        margin-top: -120px;
    }
}
.mainpage .main-results {
    padding-block: 250px;
}
.m-results-wrap {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.m-results-wrap .title {
    margin-bottom: 80px;
}
.m-results-wrap .title > p {
    font-size: clamp(17px, 2vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.005em;
    font-weight: 300;
}
.m-results-wrap .title h2 {
    display: flex;
    align-items: center;
    font-size: clamp(28px, 5vw, 56px);
    letter-spacing: -0.005em;
    font-weight: 700;
    line-height: 1.2;
    margin-right: 25px;
    gap: 50px;
    margin-top: 10px;
}
.m-results-wrap .btn-style p {
    font-size: 16px;
    letter-spacing: -0.06em;
    line-height: 1.2;
    width: 75px;
    aspect-ratio: 1;
    /* height: 75px; */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 50%;
    position: relative;
    font-weight: 400;
}
.m-results-wrap .btn-style {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 30px;
}
.m-results-wrap .btn-style::before {
    content: "";
    left: 0;
    top: 50%;
    width: 45.75px;
    height: 6.94px;
    position: absolute;
    transform: translateY(-50%);
    background: url(/public/img/main/m-results-arrow.png) no-repeat right/ cover;
}
.m-results-wrap [role="tablist"] {
    flex-direction: column;
}
#site .m-results-wrap [role="tablist"] li {
    opacity: 0;
    transition: 1s;
    transform: translateY(80px);
}
#site .m-results-wrap [role="tablist"] li:nth-child(1) {
    transition-delay: 0.5s;
}
#site .m-results-wrap [role="tablist"] li:nth-child(2) {
    transition-delay: 0.75s;
}
#site .m-results-wrap [role="tablist"] li:nth-child(3) {
    transition-delay: 1s;
}
#site .m-results-wrap [role="tablist"] li:nth-child(4) {
    transition-delay: 1.25s;
}
#site .m-results-wrap [role="tablist"].ani.on li {
    opacity: 1;
    transform: translateY(0);
}
#site .m-results-wrap [role="tablist"] a {
    all: unset;
    cursor: pointer;
    display: flex;
    height: 80px;
    padding: 0 26px;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid rgb(52 52 52 / 5%);
}

#site .m-results-wrap [role="tablist"] .active a {
    box-shadow: 5px 5px 12px 0px rgb(1 0 0 / 8%);
    border-radius: 8px;
}
.m-results-wrap a b {
    font-family: "GmarketSans", sans-serif;
    font-size: clamp(10px, 2vw, 18px);
    letter-spacing: 0;
    line-height: 1.2;
    margin-right: 26px;
    color: #343434;
    opacity: 0.3;
}
.m-results-wrap a span.text {
    font-weight: 700;
    font-size: clamp(12px, 2vw, 24px);
    letter-spacing: -0.005em;
    line-height: 1.2;
    /* margin-right: 35px; */
    max-width: 150px;
    width: 100%;
    flex-shrink: 0;
}
.m-results-wrap a span.en {
    font-family: "GmarketSans", sans-serif;
    font-weight: 300;
    font-size: clamp(10px, 2vw, 16px);
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.m-results-wrap .results-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 240px));
    grid-auto-rows: minmax(0, 130px);
    gap: 20px;
    max-width: 500px;
    margin-right: 70px;
}
.m-results-wrap .results-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 767.98px) {
    .mainpage .main-results {
        /* padding-inline: 25px; */
        padding-block: 100px;
    }
    .m-results-wrap .title {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }
    .m-results-wrap {
        flex-direction: column;
        gap: 0px;
    }
    .m-results-wrap .title h2 {
        width: auto;
        justify-content: center;
        gap: 10px;
    }
    .m-results-wrap .btn-style {
        padding-left: 15px;
    }
    .m-results-wrap .btn-style p {
        width: 40px;
        font-size: 10px;
    }
    .m-results-wrap .btn-style::before {
        /* right: 0; */
        width: 24px;
    }
    #site .m-results-wrap [role="tablist"] {
        flex-direction: row;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    #site .m-results-wrap [role="tablist"] li {
        flex: 1;
        text-align: center;
    }
    #site .m-results-wrap [role="tablist"] a {
        flex-direction: column;
        padding: 0;
        height: 50px;
    }
    .m-results-wrap a b,
    #site .m-results-wrap [role="tablist"] .text {
        margin: 0;
        /* font-size: 14px; */
    }
    .m-results-wrap a span.en {
        scale: 0.5;
    }
    .m-results-wrap .results-box {
        margin-right: 0;
        grid-auto-rows: auto;
    }
}
.mainpage .main-youtube {
    --background-image: url(/public/img/main/m-youtube-bg.jpg);
    padding-block: 250px 250px;
}
.main-youtube .title {
    margin-bottom: clamp(70px, 5vw, 100px);
}
.main-youtube .title h2 {
    font-weight: 700;
    font-size: clamp(30px, 3vw, 56px);
    letter-spacing: -0.005em;
    line-height: 1.2;
    margin-right: 0;
    text-align: center;
    margin: 0;
}
.main-youtube .title p {
    font-weight: 350;
    font-size: clamp(14px, 3vw, 20px);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-top: clamp(15px, 5vw, 40px);
    margin-bottom: 0;
    text-align: center;
    color: #303030;
}
.m-youtube-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 800px) minmax(0, 390px);
    gap: 60px;
}
.m-youtube-wrap > a.more {
    position: absolute;
    right: 0;
    top: -40px;
    font-weight: 700;
}
.m-youtube-wrap .youtube-content {
}
.m-youtube-wrap .youtube-content .tab-pane {
}
.m-youtube-wrap .youtube-content iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    border-radius: 0;
}
#site .m-youtube-wrap [role="tablist"] {
    flex-direction: column;
    gap: 12px;
    margin: 0;
}
#site .m-youtube-wrap [role="tablist"] a {
    all: unset;
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 140px) minmax(0, auto);
    align-items: center;
    gap: 20px;
}
#site .m-youtube-wrap [role="tablist"] a .img-box::after {
    content: "VIEW";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 13px;
    border-radius: 6px;
    line-height: 1;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.005em;
    display: none;
    background-color: #3f67eb;
}
#site .m-youtube-wrap [role="tablist"] a:hover .img-box::after {
    display: flex;
}
#site .m-youtube-wrap [role="tablist"] a img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}
#site .m-youtube-wrap [role="tablist"] a .info {
    /* width: 100%; */
    position: relative;
    display: block;
}
#site .m-youtube-wrap [role="tablist"] :is(b, span.text) {
    /* white-space: nowrap; */
    font-size: 14px;
    letter-spacing: -0.005em;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
#site .m-youtube-wrap [role="tablist"] b.subject {
    font-weight: 500;
    color: #212121;
}
#site .m-youtube-wrap [role="tablist"] span.text {
    font-size: 12px;
    color: #ababab;
    font-weight: 200;
}
#site .m-youtube-wrap [role="tablist"] a:hover b.subject {
    font-weight: 700;
}
#site .m-youtube-wrap [role="tablist"] a:hover span.text {
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .mainpage .main-youtube {
        padding: 120px 0px;
    }
    .m-youtube-wrap {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    #site .m-youtube-wrap [role="tablist"] {
        flex-direction: row;
        gap: 5px;
    }
    #site .m-youtube-wrap [role="tablist"] a {
        display: flex;
    }
    #site .m-youtube-wrap [role="tablist"] a .info {
        display: none;
    }
}

.mainpage .main-different {
    --background-image: url(/public/img/main/m-differ-bg.jpg);
    padding-block: 130px;
    .container{
        /* max-width: 1500px; */
    }
}
.main-different :is(h2, h4, h5, p, span, b) {
    color: #fff;
}
.m-differ-wrap {
    display: grid;
    justify-content: space-between;
    grid-template-columns: minmax(0, auto) minmax(0, 630px);
    align-items: center;
    margin-left: -5rem;
}
.m-differ-wrap .title h2 {
    font-family: "GmarketSans", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 5vw, 56px);
    letter-spacing: 0.01em;
    line-height: 1;
}
.m-differ-wrap .title h2 span {
    display: block;
}
.m-differ-wrap .title h2 span.t02 {
    margin-top: 18px;
    padding-left: 75px;
}
.m-differ-wrap .title p {
    font-weight: 300;
    letter-spacing: -0.005em;
    font-size: clamp(14px, 3vw, 24px);
    color: #fff;
    line-height: 1;
    margin-top: 20px;
    text-align: right;
}
.m-differ-wrap .differ-box {
    display: flex;
    align-items: center;
    gap: 40px;
}
.differ-box .column {
    flex: 1;
}
.differ-box .column .item + .item {
    margin-top: 40px;
}
.differ-box .item {
    display: flex;
    gap: 5px;
}
.differ-box .inner {
    transition: 0.25s;
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 24px;
    position: relative;
    min-height: auto;
    cursor: pointer;
    /* aspect-ratio: 3/4; */
}
.differ-box .inner:hover {
    background: rgba(255, 255, 255, 0.2);
}
.differ-box .inner span.num {
    font-family: "GmarketSans", sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 5vw, 80px);
    letter-spacing: -0.04rem;
    color: #3F67EB;
    line-height: 1;
    /* opacity: 0.5; */
    display: block;
    margin-bottom: 30px;
}
.differ-box .i05 span.num {
    margin-bottom: 20px;
}
.differ-box .inner span.details {
    display: block;
    margin-block: auto 0;
}
.differ-box .inner h5 {
    font-size: clamp(17px, 3vw, 24px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: #fff;
    /* margin-top: 52px; */
    text-align: center;
}
.differ-box .inner h5 span.thin {
    font-weight: 300;
}
.differ-box .inner p {
    font-weight: 300;
    font-size: clamp(13px, 3vw, 18px);
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #fff;
    margin-top: 30px;
    text-align: center;
}
.differ-box .en {
    text-orientation: sideways;
    writing-mode: vertical-lr;
    text-transform: uppercase;
    font-family: "GmarketSans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.15em;
    color: #fff;
}
@media (max-width: 767.98px) {
    .mainpage .main-different {
        padding: 100px 0px;
    }
    .m-differ-wrap {
        display: flex;
        flex-direction: column;
    }
    .m-differ-wrap .title {
        margin-bottom: 50px;
    }
    .m-differ-wrap .title h2 {
        text-align: center;
        line-height: 1.25;
    }
    .m-differ-wrap .title h2 span.t02 {
        margin: 0;
        padding: 0;
    }
    .m-differ-wrap .differ-box {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .m-differ-wrap .column {
        /* all: unset; */
    }
    .m-differ-wrap .column.active {
        top: 0;
    }
    .differ-box .inner {
        flex-direction: row;
        text-align: left;
        padding: 12px 20px;
        justify-content: flex-start;
        gap: 20px;
    }
    .differ-box .inner :is(p, h5) {
        text-align: left;
    }
    .differ-box .inner p {
        line-height: 1.5;
    }
    .differ-box .inner span.num {
        margin-bottom: 0;
    }
    .differ-box .inner p br {
        display: none;
    }
    .differ-box .column .item + .item {
        margin-top: 15px;
    }
}
.mainpage .main-location {
    padding-block: 220px;
}
.m-location-wrap {
    display: flex;
}
.m-location-wrap h4 {
    font-size: clamp(23px, 3vw, 30px);
    letter-spacing: -0.005em;
    color: #343434;
    line-height: 1;
    font-weight: 800;
    margin-bottom: clamp(10px, 5vw, 20px);
}
.m-location-wrap p.call {
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.005em;
    color: #343434;
    line-height: 1;
    margin-top: clamp(10px, 1vw, 18px);
    font-weight: 800;
}
.m-location-wrap dl.metro {
    margin-top: clamp(40px, 5vw, 70px);
}
.m-location-wrap dl.metro dt {
    font-size: 30px;
    letter-spacing: -0.005em;
    color: #343434;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 16px;
}
.m-location-wrap dl.metro dd {
    font-size: clamp(16px, 3vw, 24px);
    letter-spacing: -0.005em;
    color: #343434;
    line-height: 1.2;
    font-weight: 300;
}
.m-location-wrap ul.day li {
    font-size: clamp(14px, 3vw, 24px);
    display: flex;
    font-weight: 300;
}
.m-location-wrap ul.day b {
    margin-right: 48px;
    min-width: 80px;
    line-height: 1;
    flex-shrink: 0;
    font-weight: 600;
}
.m-location-wrap .time p {
    font-size: clamp(14px, 3vw, 18px);
    letter-spacing: -0.03em;
    color: #343434;
    margin-top: 37px;
    line-height: 1.4;
}
@media (max-width: 767.98px) {
    .mainpage .main-location {
        padding: 90px 0px;
    }
    .m-location-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .m-location-wrap h4 {
        margin-bottom: 10px;
    }
    .m-location-wrap ul.day b {
        margin-right: 0;
    }
    .differ-box .en {
        display: none;
    }
}
.mainpage .main-map {
    position: relative;
    overflow: hidden;
    height: clamp(400px, 15vw, 600px);
    padding-block: 0;
    pointer-events: none;
}
.mainpage .main-map :is(.map, .root_daum_roughmap_landing, .wrap_map) {
    width: 100% !important;
    height: 100%;
}
.main-map .roughmap_maker_label .roughmap_lebel_text {
    font-size: 17px;
    padding: 15px 25px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.25));
    transform: translateX(-10px);
}
.main-map .roughmap_maker_label:after {
    display: none;
    transform: translateX(-0px);
}
.main-map .root_daum_roughmap .wrap_btn_zoom {
    display: none;
}

/* ---------------------------- table ---------------------------- */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
    .table-responsive .table {
        min-width: 600px;
        table-layout: auto;
    }
}
:where(.table) {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    table-layout: fixed;
    border-spacing: 0;
}
:where(.table) :where(th, td) {
    vertical-align: top;
    line-height: 1.5;
}
.table-wrap.sp03-03-wrap {
    max-width: 1000px;
    margin-inline: auto;
}
.table-wrap.sp05-04-wrap {
    max-width: 1100px;
    margin-inline: auto;
    margin-top: 60px;
}
.table-wrap.sp05-04-wrap thead th {
    background-color: var(--page-point-color);
    border: 0;
    color: #fff;
}
.table-wrap.sp05-04-wrap tbody th {
    background-color: #ebf0fd;
}
.table-style {
    --border-color: #ddd;
    border: 1px solid var(--border-color);
    /* border-top: 2px solid #222; */
    background-color: #fff;
    margin: 0;
}

.table-style :is(th, td) {
    padding: 10px 20px;
    font-size: clamp(13px, 2vw, 15px);
    vertical-align: middle;
    border: 1px solid var(--border-color);
    text-align: center;
}
.table-style td {
    color: #444;
}
.table-style thead th {
    border-bottom: 0;
    background-color: #f1f1f1;
    border: 1px solid var(--border-color);
    color: #222;
    /* text-align: center; */
    font-weight: 600;
    border-block: 2px solid #222;
}
.table-style thead,
.table-style tbody:only-child {
    /* border-top: 2px solid var(--page-point-color); */
    /* border-block: 2px solid #222; */
    border-inline: 3px solid #fff;
}
.table-style {
    border: 2px solid #fff;
}
.table-style tbody th {
    /* background-color: #f7f7f7; */
    /* text-align: center; */
    font-weight: 600;
}
.table-style .text-left {
    text-align: left;
}

.table-cert thead th {
    background-color: #e7d3be;
    border-block: 0px solid #222;
    font-size: clamp(16px, 2vw, 20px);
    padding-block: clamp(10px, 5vw, 20px);
}

/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
    margin-block: 0;
}
/* 게시글 공지사항 */
.board_wrapper tr.notice {
    background-color: #f7f7f7;
}
.board_wrapper tr.notice td.subject a {
    font-weight: 500;
    color: #000;
}
.board_wrapper tr.notice td.cate span {
    display: none;
}
.board_wrapper tr.notice td.cate::before {
    content: "공지";
    color: #222;
}
/* 게시글 아이콘 */
.board_wrapper td.subject .is_secret {
    order: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board_wrapper td.subject span {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 7px;
}
.board_wrapper td.subject small {
    margin-top: 0;
}
/* 잠금 아이콘 */
.board_wrapper td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
}
/* 댓글 아이콘*/
.board_wrapper td.subject small.comment {
    opacity: 0.8;
    order: 1000;
    translate: 0 -1px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--page-point-color-dark);
    font-weight: 700;
}
.board_wrapper td.subject small.comment::before {
    content: "[";
}
.board_wrapper td.subject small.comment::after {
    content: "]";
}
.board_wrapper td.subject small.comment i {
    display: none;
}
/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper[id$="_view"] .btn {
    min-width: 60px;
    padding-inline: 10px;
    justify-content: center;
    align-items: center;
}
.board_wrapper :is(.form-caption, .wr_caution) i {
    color: var(--page-point-color);
}
.board_wrapper .wr_caution {
    padding-left: 18px;
}
:where(.member_wrapper, .board_wrapper) .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
:where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0;
}
/* 게시판/주문폼/회원가입 버튼 */
:where(.member_wrapper, .board_wrapper) :where(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}
/* checkbox, radio */
:where(.member_wrapper, .board_wrapper) tbody td:has(.radio-inline, .checkbox-inline) {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(5px, 2vw, 10px) clamp(15px, 3vw, 20px);
    font-size: clamp(14px, 2vw, 16px);
}
:where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
:where(.member_wrapper, .board_wrapper) .checkbox label {
    cursor: pointer;
    width: fit-content;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
:where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
    font-weight: 500;
    color: #1b54e4;
    text-decoration: underline;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type="checkbox"], input[type="radio"]) {
    position: static;
    margin: 0 5px 0 0;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .radio-inline) {
    margin-block: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 20px;
        /* margin-bottom: 50px; */
        /* padding-top: 30px; */
        display: flex;
        justify-content: center;
        width: 100%;
    }
    :where(.member_wrapper .text-center .btn + .btn) {
        margin-left: 0;
    }
    :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-bottom: 50px;
}
#bbsArea .category_wrap li {
    margin: 0;
}
#bbsArea .category_wrap a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 16px;
}
#bbsArea .category_wrap a:hover {
    color: #111;
}
#bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}
/* 게시판 노출 */
#bbsArea {
    position: relative;
}
#bbsArea .board_data_view {
    border-top: 1px solid #333;
    border-bottom: 1px solid #aaa;
}
#bbsArea .write_btn_wrap {
    position: absolute;
    right: 0;
    bottom: 0;
}
#bbsArea .btn-lg {
    width: 200px;
}
#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}
#bbsArea .board_wrapper + .search_wrap {
    margin-top: 60px;
}
#bbsArea .board_wrapper + .pagination_wrap {
    margin-block: 50px;
}
#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 0px;
}
#bbsArea .pagination_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
#bbsArea .pagination_wrap li + li {
    margin-left: -1px;
}
#bbsArea .pagination_wrap a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    aspect-ratio: 1;
    font-size: 15px;
    border-radius: 9999px;
}
#bbsArea .pagination_wrap li:not(.active) a:hover {
    background-color: #eee;
}
#bbsArea .pagination_wrap li.active a {
    width: 28px;
    background-color: var(--page-point-color);
    color: #fff;
    font-weight: 700;
}
#bbsArea .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 게시판 목록 하단 */
#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
}
#bbsArea .search_wrap #search_kind {
    cursor: pointer;
    line-height: 1;
}
#bbsArea .search_wrap .write_btn_wrap {
    margin-top: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .search_wrap {
        flex-direction: column;
        max-width: 350px;
        margin-inline: auto;
    }
    #bbsArea .search_wrap .write_btn_wrap {
        position: static;
        display: flex;
        gap: 5px;
        width: 100%;
    }
    #bbsArea select.form-control {
        max-width: 100% !important;
    }
    #bbsArea .search_wrap .write_btn_wrap > .btn {
        width: 100%;
        min-width: auto;
        flex: 1;
    }
}
#bbsArea .badge {
    display: inline-flex;
    background-color: var(--page-point-color);
    border-radius: 3px;
    padding: 3px 7px;
    margin-block: -3px;
    margin-right: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
#bbsArea .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
#bbsArea .option_wrap .list_btn_wrap {
    position: static;
}
/* 게시글 헤더 */
#bbsArea .header_wrap {
    text-align: center;
    padding: clamp(20px, 5vw, 40px) clamp(15px, 3vw, 30px) clamp(20px, 5vw, 50px);
    border-bottom: 1px solid #e6e6e6;
}
#bbsArea .header_wrap h4.title {
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 500;
    color: #000;
}
#bbsArea .header_wrap span {
    color: #666;
}
#bbsArea .header_wrap strong {
    color: #666;
    font-weight: 600;
}
#bbsArea .header_wrap .title {
    margin: 0;
    font-size: 24px;
}

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

#bbsArea .header_wrap .info span {
    font-size: clamp(11px, 3vw, 14px);
    color: #666;
}

#bbsArea .header_wrap .info span + span {
    margin-left: 9px;
}
/* 게시글 콘텐츠 */
#bbsArea .contents_wrap {
    padding: 50px 0px;
}
#bbsArea .contents_wrap .contents_inner {
    font-size: 14px;
}
#bbsArea .contents_wrap img {
    max-width: 100%;
    height: auto;
}
#bbsArea .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}
#bbsArea .contents_wrap a {
    color: #337ab7;
}
#bbsArea .contents_wrap a:hover {
    color: #1b5a92;
    text-decoration: underline;
}
#bbsArea .contents_wrap a:visited {
    color: #6c368b;
}
#bbsArea .contents_wrap a:visited:hover {
    color: #461b5f;
    text-decoration: underline;
}
#bbsArea .contents_wrap :is(.h1, h1) {
    font-size: 36px;
}
#bbsArea .contents_wrap :is(.h2, h2) {
    font-size: 30px;
}
#bbsArea .contents_wrap :is(.h3, h3) {
    font-size: 24px;
}
#bbsArea .contents_wrap :is(.h4, h4) {
    font-size: 18px;
}
#bbsArea .contents_wrap :is(.h5, h5) {
    font-size: 14px;
}
#bbsArea .contents_wrap :is(.h6, h6) {
    font-size: 12px;
}
#bbsArea .contents_wrap :is(.h1, .h2, .h3, h1, h2, h3) {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 500;
    color: inherit;
}
#bbsArea .contents_wrap :where(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside;
}
#bbsArea .contents_wrap ul li {
    list-style-type: disc;
}
#bbsArea .contents_wrap ol li {
    list-style-type: decimal;
}
/* 게시글 다운로드 */
#bbsArea :is(.download_wrap, .status_wrap) {
    padding: 15px;
    border-top: 1px solid #ddd;
}
#bbsArea :is(.download_wrap, .status_wrap) th {
    text-align: left;
    vertical-align: top;
    width: 100px;
}
#bbsArea :is(.download_wrap, .status_wrap) ul {
    display: flex;
    flex-direction: column;
    gap: 5px 10px;
    flex-wrap: wrap;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a {
    color: #000;
}
#bbsArea :is(.download_wrap, .status_wrap) a:hover {
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #bbsArea :is(.download_wrap, .status_wrap) ul {
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr {
        display: flex;
        flex-direction: column;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr > * {
        width: 100%;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr th {
        padding-bottom: 10px;
    }
    #bbsArea :is(.download_wrap, .status_wrap) tr a {
        word-break: break-all;
    }
}
/* 게시글 댓글 */
#bbsArea .reply_wrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
#bbsArea .reply_wrap h4 {
    position: static;
    text-align: left;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
#bbsArea .reply_wrap > h4 {
    /* order: 1; */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
#bbsArea .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
#bbsArea .reply_wrap .btn_wrap .pull-left {
    display: flex;
    gap: 5px;
}
:is(#bbsArea .reply_wrap #reply_modify_btn, #bbsArea .reply_wrap .text-left + button) {
    margin-left: auto;
}
#bbsArea .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
#bbsArea .reply_wrap #reply_list .info {
    display: flex;
    gap: 7px;
    /* height: 40px; */
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
#bbsArea .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
#bbsArea #reply_list {
    /* order: 3; */
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ccc;
    margin-block: 20px;
}
#bbsArea #reply_list .media {
    position: relative;
    margin: 0;
    padding: 20px 5px 40px;
}
#bbsArea #reply_list .media + .media {
    border-top: 1px solid #ddd;
}
#bbsArea #reply_list .media .media-left,
#bbsArea #reply_list .media > .pull-left {
    padding-right: 20px;
}
#bbsArea #reply_list .media .media-left img {
    border-radius: 100%;
}
#bbsArea #reply_list .media .media-body {
}
#bbsArea #reply_list .media .media-body {
    position: static;
}
#bbsArea #reply_list .media .media-body .info {
    position: absolute;
    /* right: 0; */
    left: 130px;
    bottom: 15px;
}
#bbsArea #reply_list .media .media-body .info .btn {
    display: inline-block;
    font-weight: 500;
    /* padding: 0 5px; */
    line-height: 1;
    font-size: 12px;
    vertical-align: middle;
    color: #333;
    height: auto;
    max-width: unset;
}
#bbsArea #reply_list .media .media-body .info span {
    color: #aaa;
    font-size: 13px;
    margin-left: 6px;
    vertical-align: middle;
}
#bbsArea #reply_list .media .media-heading .text-muted {
    color: #aaa;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 5px;
    margin-left: 0 !important;
}
#bbsArea #reply_list .media .media-body p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-all;
}
#bbsArea #reply_write .info .form-control {
    display: inline-block;
    width: 120px;
}
#bbsArea #reply_write .info .form-control + .form-control {
    margin-left: 2px;
}
#bbsArea #reply_write .contents {
    margin-top: 5px;
}
#bbsArea #reply_write .contents .form-control {
    height: 100px;
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
    padding: 10px 15px;
}
#bbsArea #reply_write .btn_wrap {
    margin-top: 5px;
    text-align: right;
}
#bbsArea #reply_write .btn_wrap .btn {
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 539px) {
    #bbsArea #reply_write .info .form-control {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    #bbsArea #reply_write .info .form-control + .form-control {
        margin-left: 0;
    }
}

/* 게시글 작성 */
#bbsArea .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}
#bbsArea .table.board_write_table tbody td {
    padding: 0px;
    border: 0;
}
#bbsArea .table.board_write_table .text-muted {
}
#bbsArea .table.board_write_table .text-muted i {
    color: var(--page-point-color);
}
#bbsArea .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
#bbsArea .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
#bbsArea .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}
#bbsArea .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #bbsArea .table.board_write_table .text-muted {
        width: 100%;
    }
}
/* 휴지통 버튼 */
#bbsArea .table.board_write_table :is(.refresh, .delete_attach) {
    display: inline-block;
    color: #999;
    line-height: 40px;
    margin-left: 7px;
    margin-right: 7px;
    cursor: pointer;
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach):hover {
    color: #ec0909;
}
/* 파일 추가 버튼 */
#bbsArea .table.board_write_table .files {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 15px;
    flex: 1;
}
#bbsArea .table.board_write_table #File_add {
    aspect-ratio: 1;
    width: auto;
    padding: 9px 12px;
    margin: 0;
}
#bbsArea .table.board_write_table .files + #File_add {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
}
#bbsArea .table.board_write_table .files + #File_add .fa-plus {
    line-height: 0;
}
/* input 가로 */
/* #bbsArea .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
    width: 100%;
} */
/* 필수 입력 항목 */
#bbsArea .table.board_write_table th:has(.required_text) > :where(span:first-child, span.required_text) {
    position: static;
    margin-right: 2px;
    color: var(--page-point-color);
}
/* textarea 글자수 */
#bbsArea .frm_textarea_cnt {
    display: none;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    #bbsArea .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        aspect-ratio: 1;
        height: 40px;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #bbsArea .table.board_write_table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #bbsArea .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100%;
    }
    #bbsArea .table.board_write_table #delete_thumb {
        width: 100%;
    }
    #bbsArea .table.board_write_table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #bbsArea .table.board_write_table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    #bbsArea .table.board_write_table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }
}
/* input */
.form-control {
    width: 100%;
    font-family: var(--page-font-family);
    padding: 0.6rem 0.85rem;
    font-size: clamp(14px, 2vw, 16px);
    height: var(--form-height);
    /* border-radius: 4px; */
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--page-grey-color);
    color: #333;
}
#search_query.form-control {
    width: 100%;
    max-width: 320px;
    /* background-color: #eee; */
    /* border: 1px solid transparent; */
}
#search_query.form-control:focus {
    background-color: #fff;
    border-color: var(--page-point-color);
}
textarea.form-control {
    padding-block: 0.9rem;
    line-height: 1.5;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border-color: var(--page-grey-color);
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08);
}
.form-control:not([readonly]):focus {
    border-color: var(--page-point-color);
}
.form-control[type="file"] {
    position: relative;
    width: 100%;
    cursor: pointer;
    padding: 0 0.8rem;
    padding-left: 0;
    line-height: calc(var(--form-height) - 2px);
    margin: 0;
}
.form-control[type="file"]::file-selector-button {
    width: 80px;
    margin-right: 10px;
    font-family: inherit;
    position: relative;
    left: 0;
    height: 100%;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
}
.form-control[type="file"]:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #e5e5e5;
}
select.form-control {
    -webkit-appearance: none;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzIiICAgdmlld0JveD0iMCAwIDQ4MCA0ODAiICAgaGVpZ2h0PSI0ODAiICAgd2lkdGg9IjQ4MCI+ICA8bWV0YWRhdGEgICAgIGlkPSJtZXRhZGF0YTEwIj4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzOCIgLz4gIDxwYXRoICAgICBpZD0icGF0aDQiICAgICBkPSJNIDE0MCwxOTAgMjQwLDI5MCAzNDAsMTkwIFoiIC8+PC9zdmc+);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) 11px;
    background-origin: border-box;
    padding-right: 23px;
    max-width: 100px;
}
.wr_add_button select.form-control {
    max-width: 100%;
}
select.form-control#wr_cate {
    max-width: 200px;
}
input.form-control {
    -webkit-appearance: none;
    padding-right: 20px;
}
input.form-control#wr_reply_captcha {
    max-width: 130px;
    width: 100% !important;
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control.valid-text + .clear-input {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 100%;
    color: #bbb;
    top: 0;
    right: 0;
    border: 1px solid transparent;
}
input.form-control.valid-text + .clear-input::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}
input.form-control + .clear-input:hover {
    color: var(--page-point-color);
}
input.form-control + .clear-input {
    display: none;
    border: 0;
    background-color: transparent;
}
input.form-control.valid-text + .clear-input {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 100%;
    color: #bbb;
    top: 0;
    right: 0;
    border: 1px solid transparent;
}
input.form-control.valid-text + .clear-input::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}
input.form-control + .clear-input:hover {
    color: var(--page-point-color);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .form-control {
        width: 100%;
    }
}
.wr_form_wrap {
    display: grid;
    grid-template-columns: 1fr 0.5fr 2fr;
    gap: 10px;
    padding: 3px 0 0;
}
.wr_form_wrap label {
    font-size: 13px;
}
.wr_form_item {
    position: relative;
}
.wr_form_item input.form-control {
    padding-right: 40px;
}
.wr_form_item :where(.input-group, .form-control) {
    width: 100%;
}
@media (max-width: 768px) {
    .wr_form_wrap {
        display: flex;
        flex-direction: column;
    }
}
.wr_form_item .form-control {
    background-color: transparent;
    padding-right: 35px;
}
.custom_file {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}
.checkbox-inline + .checkbox-inline {
    margin-left: 20px;
}

:is(.custom_radio, .custom_checkbox) {
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
}
:is(.custom_radio, .custom_checkbox, .status_wrap input) + span {
    user-select: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.custom_checkbox + span {
    user-select: none;
}
.custom_checkbox + span::before {
    margin: 0 0 0 0;
    font-size: 1.25em;
    color: #555;
    content: "\e835";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
.custom_checkbox:checked + span::before {
    content: "\e834";
    font-weight: 900;
    color: var(--page-point-color);
}
.custom_checkbox[disabled],
.custom_checkbox[disabled] + span {
    opacity: 0.5;
}
.radio-inline {
    cursor: pointer;
    align-self: center;
    margin-top: 0 !important;
}
.status_wrap [name="wr_status"] {
    display: none;
}
:is(.custom_radio, .status_wrap [name="wr_status"]) + span::before {
    margin: 0 0 0 0;
    font-size: 1.25em;
    color: #555;
    content: "\e836";
    font-family: var(--gms);
    font-weight: 300;
    transform: translateY(-1px);
}
:is(.custom_radio, .status_wrap [name="wr_status"]):checked + span::before {
    content: "\e837";
    font-weight: 900;
    color: var(--page-point-color);
}
:is(.custom_radio, .status_wrap [name="wr_status"])[disabled],
:is(.custom_radio, .status_wrap [name="wr_status"])[disabled] + span {
    opacity: 0.5;
}
/* 자동입력방지 */
#wr_captcha {
    margin-top: 0;
    width: 100%;
    max-width: 220px;
}
#captcha {
    z-index: 10;
    cursor: pointer;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: var(--form-height) !important;
    margin: 0;
    border: 1px solid transparent;
}
#captcha:hover {
    border-color: #222 !important;
}
#captcha + br {
    display: none;
}
#captcha + br + input {
    margin: 0 0 0 -1px !important;
    border-radius: 0;
    /* border-left: 0; */
    margin-left: -1px;
}
#captcha + br + input:focus {
    z-index: 15;
}
td:has(#captcha) {
    display: flex;
    gap: 0;
}
/* [ board-columns ] */
:is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}
:is(.table_video, .table_blog2, .table_pd)::before,
:is(.table_video, .table_blog2, .table_pd)::after {
    content: none;
}
/* [min-small / portrait phones] 모바일, 576px 이상 ▲ */
@media (width >= 576px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
    /* 등록된 [상품/게시글]이 없습니다 문구 */
}
:is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}
/* [ board-video ] */
.table_video .top a:before {
    content: "\e1c4";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
}
.table_video .inner:hover .top a:before {
    opacity: 1;
}
.type_video .thumb {
    background-color: #000;
}
/* [ board-list ] */
/* 게시판 리스트, 현황 */
.board_status_list .status_badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}
.board_status_list .status_badge_1 {
    background: #a0a1a3;
    color: #fff;
}

.board_status_list .status_badge_2 {
    background: var(--page-point-color);
    color: #fff;
}

.board_status_list .status_badge_3 {
    background: #e1e1e1;
    color: #888;
}

:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default {
    border: 0;
    border-spacing: 0;
    border-top: 1px solid #333;
    margin-bottom: 0;
    width: 100%;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(th, td) {
    padding: 17px 15px;
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #ddd;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td {
    color: #777;
    text-align: center;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.text-center {
    display: table-cell;
    text-align: center;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
    color: #222;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody th.num {
    font-weight: normal;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_responsive tbody th {
    margin-bottom: 0;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .subject {
        width: 100%;
    }
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .status {
        width: 35%;
    }
}

/* [ board-blog A ] */
.table_blog {
    border-top: 2px solid #222;
}
.table_blog .info {
    display: none;
}
.table_blog dd {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, auto);
    align-items: flex-start;
    gap: 40px;
    padding-block: 40px;
    border-bottom: 1px solid #ddd;
}
.table_blog .no_post {
    grid-column: span 2;
}
.table_blog .right {
    display: flex;
    flex-direction: column;
    gap: 15px 15px;
    align-items: flex-start;
    padding-right: 30px;
}
.table_blog .right .info {
    justify-content: flex-end;
    align-items: center;
    align-self: center;
    grid-column: 2;
    grid-row: span 2;
    margin-bottom: 0;
}
.table_blog .right :where(.writer, .hits) {
    display: none;
}
.table_blog .right a {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 22px;
    color: #000;
}
.table_blog .right a:has(.badge) {
    padding-top: 28px;
    margin-top: 5px;
}
.table_blog .badge {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
}
.table_blog .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.table_blog .right p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
}
@media (max-width: 768px) {
    .table_blog dd {
        display: flex;
        flex-direction: column;
    }
    .table_blog .right {
        padding-right: 0;
    }
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .badge {
    margin-top: 0px;
}
:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
:where(.table_video, .table_blog2, .table_pd) .top {
    position: relative;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) span.thumb + img.thumb {
    display: block;
    aspect-ratio: 5/3;
    object-fit: cover;
    width: 100%;
    /* max-width: 400px; */
    height: auto;
    background-color: #ccc;
    /* border-radius: var(--radius-md); */
}
:is(.table_pd) a span.thumb + img.thumb {
    aspect-ratio: 1;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none;
}
:is(.table_video, .table_blog2, .table_pd) dd {
    margin-bottom: 0;
}
:is(.table_video, .table_blog2, .table_pd) .bottom {
    margin-top: 15px;
    padding: 0;
}
:is(.table_video, .table_blog2, .table_pd) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
    padding: 0;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview {
    margin-top: 10px;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview * {
    all: unset;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    opacity: 0.6;
    letter-spacing: -0.4px;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info span {
    padding: 0;
    font-size: 13px;
    line-height: 1;
}

.before-after :is(.table_video, .table_blog, .table_blog2, .table_pd) span.thumb + img.thumb {
    background-color: transparent;
    aspect-ratio: 63/41;
    border-radius: 0;
}
.before-after :where(.table_video, .table_blog2, .table_pd, .table_blog) .info {
    display: none;
}
.before-after :where(.table_video, .table_blog2, .table_pd) .badge {
    display: none !important;
}
.before-after :where(.table_video, .table_blog2, .table_pd, .table_blog) .title {
    text-align: center;
}
.before-after :is(.table_video, .table_blog2, .table_pd) :where(.inner .bottom) a::before {
    content: "\e2e6";
    display: inline-block;
    font-family: var(--gms);
    font-size: 24px;
    line-height: 1;
    transform: translateY(6px);
}
/* [ board-form ] */
:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
.board_wrapper :where(form[id*="form"]) :where(th, td, table.table) {
    border: 0;
    line-height: 1;
}
.board_wrapper :where(form[id*="form"]) table {
    width: 100%;
    display: flex;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) th {
    padding: 0;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    width: auto;
    border-top: 0;
}
.board_wrapper :where(form[id*="form"]) :where(th, td) {
    font-size: 16px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .board_wrapper :where(form[id*="form"]) th {
        margin-bottom: 15px;
    }
}
.board_wrapper :where(form[id*="form"]) tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    /* gap: 25px; */
}
.board_wrapper :where(form[id*="form"]) tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: flex-start;
    gap: 15px;
    padding: 25px 10px;
    border-bottom: 1px solid #ccc;
}
.board_wrapper :where(form[id*="form"]) #item_agree .checkbox {
    margin-top: 0;
}
/* 동의 */
.board_wrapper :where(form[id*="form"]) #item_agree label,
.board_wrapper :where(form[id*="form"]) #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
/* 주문내역 숨김 */
:where(.form-wrap, form) #list_btn {
    display: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .board_wrapper :where(form[id*="form"]) table.table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}
/* ---------------------------- member ---------------------------- */
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group {
    height: 52px;
}
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group input {
    border: 0;
    padding-left: 0;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .form-group {
    height: 45px;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
    padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 60px);
    /* border: 1px solid #ddd; */
    border-radius: 30px;
    background: #fff;
}
:is(.find_container, .join_container, .join_write_container) .member_wrapper {
    /* max-width: 900px; */
}
:is(.find_container, .login_container) :is(.member_wrapper) {
    max-width: 500px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) {
        width: 100%;
        padding-inline: 20px;
    }
    :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
        width: 100%;
        padding-block: 50px;
        margin: 0 auto;
        border-radius: 10px;
    }
}
.member_wrapper {
    max-width: 1140px;
    padding-top: 120px;
    padding-bottom: 200px;
    margin: 0 auto;
}
.member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
    letter-spacing: -0.03em;
}
.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 15px);
    height: 80px;
    /* max-height: 200px; */
    margin-bottom: 0;
    text-align: center;
    color: #666;
}
.member_wrapper .text-center {
    margin-top: 40px;
}
.member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.member_wrapper #login_form input {
    padding-left: 5px;
    font-size: 15px;
}
#login_form .form-group label {
    position: relative;
}
#login_form .form-group label[class*="label-"] {
    /* display: inline-block; */
    text-indent: -9999px;
}
#login_form .form-group label::before {
    position: absolute;
    text-indent: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 22px;
    color: #888;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
#login_form .form-group:focus-within label[class*="label-"]::before {
    color: #000;
}
#login_form .form-group label.label-id::before {
    content: "\e7fd";
}
#login_form .form-group label.label-pw::before {
    content: "\e897";
}
#login_form .form-group label.label-email::before {
    content: "\e0e6";
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper {
        padding: 60px 30px;
    }
    .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    .member_wrapper #login_form input {
        border: 0;
        /* padding-left: 0; */
        padding-right: 35px;
    }
}
.member_wrapper .join_agree .join_agree_box {
    width: auto;
    height: 250px;
    border: 1px solid var(--page-grey-color);
    padding: 15px;
    overflow-y: scroll;
    line-height: 1.5;
}

.member_wrapper .join_agree_box + .checkbox {
    margin: 0;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 3vw, 15px);
}
.member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
.member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.member_wrapper .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
.member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
/* [ form ] */
.member_wrapper .form-group {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
.member_wrapper .form-group > * {
    width: auto;
    padding: 0;
}
.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px;
}
.member_wrapper .form-group:nth-of-type(2) {
    margin-bottom: 0px;
}
.member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-400-out);
    font-size: 1.25rem;
    color: #000;
}
.member_wrapper .form-group > label:nth-child(1) {
    width: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-3px);
}
.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
/* [ member-login ] */
:is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px;
    width: 100%;
    border-radius: 9999px;
}
#site :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
    z-index: 10;
    width: 100%;
    padding-block: 180px 120px;
    background: #f7f7f7;
}
#site .mypage_container {
    padding-inline: 15px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
        margin-top: 0;
        position: relative;
        padding-block: 150px;
        height: auto;
    }
}
:where(#find_idpw, .login_wrapper, .mypage_container) {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
@media (width >= 992px) {
    :where(#find_idpw, .login_wrapper) {
        padding: 0;
        /* height: calc(var(--svh100) - var(--navbar-height)); */
        height: vaR(--svh100);
    }
}
/* [min-lager / tablet] 브라우저 높이 700 이하 */
@media (height <= 700px) {
    :where(#find_idpw, .login_wrapper, .mypage_container) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
.member_wrapper .login_extra {
    margin-top: 30px;
}
.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
.member_wrapper .login_extra li > a {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .login_extra li + li {
    margin-left: 0;
}
.member_wrapper .login_extra li + li::before {
    content: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .member_wrapper .login_extra li + li::before {
        content: none;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .member_wrapper #join_form tr th {
        padding: 0px;
        margin-bottom: 0;
    }
    .member_wrapper #join_form tr td {
        display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 0px;
    }
    .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0;
    }
    .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100%;
    }
}
.member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}
.member_wrapper .table {
    width: 100%;
}
.member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}
.member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
.member_wrapper .table tbody tr th {
    text-align: left;
    width: auto;
}
.member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
.member_wrapper .table tbody tr td {
    padding-inline: 15px;
    display: flex;
    gap: 5px;
}
.member_wrapper .table tbody tr :where(th, td) {
    display: block;
    font-size: clamp(13px, 3vw, 15px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .member_wrapper .table tbody tr :where(th, td) {
        display: block;
        width: 100%;
        font-size: clamp(15px, 2vw, 17px);
    }
    .member_wrapper .table tbody tr th {
        padding: 10px 30px;
    }
    .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    .member_wrapper .table .files_upload_wrap .files .file_add {
        position: relative;
        right: auto;
    }
    .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}
/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    text-align: left;
}
:is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
:where(.privacy_container, .agreement_container) .privacy_body {
    font-size: 1rem;
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    :where(.privacy_container, .agreement_container) .member_wrapper {
        padding: 50px 30px;
    }
}

/* tabs */
[role="tabpanel"] [role="tablist"] {
    display: flex;
    margin-bottom: 60px;
}
[role="tabpanel"] [role="presentation"] {
    flex: 1;
}
[role="tabpanel"] [role="presentation"] + [role="presentation"] {
    margin-left: -1px;
}
[role="tabpanel"] [role="tab"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(42px, 5vw, 62px);
    font-size: 20px;
    border: 1px solid #ccc;
    color: #666;
}
[role="tabpanel"] [role="presentation"].active [role="tab"] {
    z-index: 10;
    background-color: var(--page-point-color);
    border-color: var(--page-point-color);
    font-weight: 600;
    color: #fff;
}
[role="tabpanel"] .tab-content > :not(.active) {
    display: none;
}
.payment-wrap {
    max-width: 1000px;
    margin-inline: auto;
}
.payment-wrap [role="tabpanel"] [role="tab"] {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #f0f0f0;
    border: 0;
    font-size: clamp(15px, 2vw, 18px);
}
.payment-wrap [role="tabpanel"] [role="tablist"] {
    margin-bottom: 30px;
}
.payment-wrap [role="tabpanel"] [role="presentation"].active [role="tab"] {
    background-color: #37a8ec;
}
.notice-box {
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 40px;
    border: 1px solid #e2e2e2;
    background: #f6f6f6;
    padding: 25px 30px;
}
.notice-box h6 {
    font-size: 15px;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    [role="tabpanel"] [role="tablist"] {
    }
}
/* =================================== popup =================================== */
#swiperPopup:not(.show) {
    display: none !important;
}
#swiperPopup.show {
    border: 0 !important;
    position: fixed;
    left: 0;
    top: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 10000;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.85);
}
#swiperPopup .swiper {
    max-width: 1180px;
    /* background-color: #000; */
    opacity: 0;
    animation: popupAni 0.5s forwards;
    margin-bottom: 50px;
}
@keyframes popupAni {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
#swiperPopup .swiper-slide:not(.show) {
    display: none;
}
#swiperPopup .swiper-slide.show {
    pointer-events: none;
    user-select: none;
    border: 0 !important;
    position: static !important;
    transform: none !important;
    left: 0;
    top: 0;
    margin-bottom: 0;
    min-width: auto;
    box-shadow: none;
    aspect-ratio: 1182/655;
    background-color: #000;
    border-radius: 0;
}
#swiperPopup .main_popup_contents {
    padding: 0;
    width: 100%;
    background-color: #000;
}
#swiperPopup .main_popup_contents p {
    position: static;
}
#swiperPopup .main_popup_contents img {
    /* position: absolute; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-fit: cover;
    object-position: center;
}
#swiperPopup .swiper-slide .main_popup_optional {
    display: none;
}
#swiperPopup #swiper_popup_close {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
}
#swiperPopup #swiper_popup_close img {
    width: 25px;
}
#swiperPopup .swiper_popup_optional {
    display: flex;
    height: 50px;
    /* padding: 10px; */
    gap: 5px;
    /* background-color: #000; */
    justify-content: flex-end;
    align-items: start;
    color: #fff;
}
#swiperPopup .swiper_popup_optional label {
    height: 100%;
    margin: 0;
    padding: 0;
}
#swiperPopup .swiper_popup_optional button {
    cursor: pointer;
    display: inline-flex;
    gap: 3px;
    height: 100%;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    opacity: 1 !important;
    text-shadow: none;
    overflow: hidden;
}
#swiperPopup .swiper_popup_optional span.material-symbols-outlined {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* width: 16px; */
    font-size: 42px;
}
#swiperPopup .swiper_popup_optional span.text {
    display: inline-block;
    translate: 0 1px;
    line-height: 1;
}
#swiperPopup .swiper-pagination {
    overflow-y: hidden;
    overflow-x: auto;
    position: relative;
    bottom: 0;
    display: flex;
    align-items: center;
    width: auto;
    margin-right: -1px;
    height: clamp(32px, 5cqw, 45px);
}

#swiperPopup .swiper-pagination .tab_bullet {
    transition: 0.3s;
    flex: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 0;
    background-color: #fff;
    margin: 0;
    color: #000 !important;
    opacity: 1;
    padding: 0 20px;
}

#swiperPopup .swiper-pagination .tab_bullet p {
    color: inherit;
    font-size: clamp(11px, 1.5cqw, 16px);
    white-space: nowrap;
}

#swiperPopup .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #3694eb;
    color: #fff !important;
}
@media (hover: hover) {
    #swiperPopup .swiper-pagination .tab_bullet:hover {
        background-color: #3694eb;
        color: #fff !important;
    }
}
@media (max-width: 767px) {
    #swiperPopup .swiper-pagination .tab_bullet {
        width: 100%;
        flex: inherit;
    }
}
#swiperPopup .popupTitle {
    display: none;
}
#swiperPopup .popupTitle p {
    display: none;
}
#swiperPopup .popupTitle + p {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 2509 */
@media (min-width: 768px) {
    #swiperPopup .swiper-slide.show img.mo {
        display: none;
    }
}
@media (max-width: 767.98px) {
    #swiperPopup .swiper {
        max-width: 350px !important;
    }
    #swiperPopup .swiper_popup_optional span.material-symbols-outlined {
        transform: translateY(0.025em);
    }
    #swiperPopup .swiper,
    #swiperPopup .swiper_popup_optional {
        background-color: transparent;
        padding: 0;
    }
    #swiperPopup .swiper-slide.show img.pc {
        display: none;
    }
    #swiperPopup .swiper-slide.show {
        aspect-ratio: 0.7058823529;
        pointer-events: unset;
    }
    #swiperPopup .swiper-slide.show img {
        align-self: center;
        object-fit: contain;
    }
    #swiperPopup .swiper-slide.show img.mo {
        object-fit: cover;
        object-position: center;
    }
    #swiperPopup .main_popup_contents {
        height: 100%;
    }
    #swiperPopup .swiper-pagination {
        gap: 10px;
        height: unset;
        justify-content: center;
        margin-top: 15px;
    }
    #swiperPopup .swiper-pagination p {
        display: none;
    }
    #swiperPopup .swiper-pagination .tab_bullet {
        border-radius: 9999px;
        aspect-ratio: 1;
        width: 12px;
        height: auto;
        padding: 0;
    }
    #swiperPopup .swiper_popup_optional button{
        background-color: transparent;
        font-size: 14px;
    }
    #swiperPopup #swiper_popup_close img{
        width: 15px;
    }
}

.quick-menu {
    transform-origin: right bottom;
    position: fixed;
    right: 50px;
    bottom: 110px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    user-select: none;
}
.quick-menu .menu {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.quick-menu .menu .inner {
    display: flex;
    /* gap: 26px; */
    height: 66px;
    background: #fff;
    border-radius: 6px;
    padding: 15px 0px;
    padding-right: 20px;
    align-items: center;
    box-shadow: 4px 4px 9.5px 2px rgb(1 0 0 / 6%);
}
.quick-menu .menu .inner figure {
    width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.quick-menu .menu .txt b {
    font-size: 18px;
    letter-spacing: -0.1px;
    margin-bottom: 5px;
    line-height: 16px;
    color: #000;
}
.quick-menu .menu .txt small {
    display: block;
    font-size: 14px;
    letter-spacing: -0.005px;
    margin-bottom: 0;
    color: #ababab;
    line-height: 1;
    font-weight: 700;
    margin-top: 5px;
}
@media (max-width: 1199.98px) {
    .quick-menu {
        scale: 0.8;
        bottom: 50px;
    }
}
@media (max-width: 767.98px) {
    .quick-menu {
        right: 15px;
        bottom: 20px;
        scale: 0.55;
    }
    .quick-menu .menu {
        display: none;
        /* transition: 1s; */
        overflow: hidden;
        /* height: 0px; */
    }
    .quick-menu.open .menu {
        display: flex;
    }
}
.ani {
    --opacity: 0;
    /* 등급 (해당 숫자만큼 곱함) */
    --s-level: 4;
    --d-level: 0;
    --t-level: 4;
    /* 위치값 */
    --value: 25px;
    /* 트랜지션 기본 속도 */
    --duration-second: 0.25s;
    --delay-second: 0.25s;
    /* 트랜지션 계산 */
    --duration: calc(var(--duration-second) * var(--s-level));
    --delay: calc(var(--delay-second) * var(--d-level));
    /* 트랜지션 프로퍼티 */
    --property: all;
    /* 트랜지션 효과 */
    --timing-function: ease;
    /* transform */
    --translate: calc(var(--value) * var(--t-level));
    --scale: 1;
    /* default */
    opacity: var(--opacity);
    transition-duration: var(--duration);
    transition-delay: var(--delay);
    transition-property: var(--property);
    transition-timing-function: var(--timing-function);
    translate: var(--translateX) var(--translateY);
    scale: var(--scale);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    /* setting */
    /* effect */
    .ani {
        --delay: 0 !important;
    }
}
.ani[class*="fade"] {
    /* --scale: 0.95; */
    --opacity: 0;
    filter: blur(2px);
}
.ani[class*="show"] {
    --opacity: 1;
}
/* s : spped / d : delay / t : translate */
/* spped */
.ani[class*="-s0"] {
    --s-level: 0;
}
.ani[class*="-s05"] {
    --s-level: 0.5;
}
.ani[class*="-s1"] {
    --s-level: 1;
}
.ani[class*="-s2"] {
    --s-level: 2;
}
.ani[class*="-s3"] {
    --s-level: 3;
}
.ani[class*="-s4"] {
    --s-level: 4;
}
.ani[class*="-s5"] {
    --s-level: 5;
}
/* delay */
.ani[class*="-d0"] {
    --d-level: 0;
}
.ani[class*="-d05"] {
    --d-level: 0.5;
}
.ani[class*="-d1"] {
    --d-level: 1;
}
.ani[class*="-d2"] {
    --d-level: 1.25;
}
.ani[class*="-d3"] {
    --d-level: 1.5;
}
.ani[class*="-d4"] {
    --d-level: 1.75;
}
.ani[class*="-d5"] {
    --d-level: 2;
}
.ani[class*="-d6"] {
    --d-level: 2.25;
}
.ani[class*="-d7"] {
    --d-level: 2.5;
}
.ani[class*="-d8"] {
    --d-level: 2.75;
}
.ani[class*="-d9"] {
    --d-level: 3;
    /* translate */
}
.ani[class*="-t0"] {
    --t-level: 0;
}
.ani[class*="-t05"] {
    --t-level: 0.5;
}
.ani[class*="-t1"] {
    --t-level: 1;
}
.ani[class*="-t2"] {
    --t-level: 2;
}
.ani[class*="-t3"] {
    --t-level: 3;
}
.ani[class*="-t4"] {
    --t-level: 4;
}
.ani[class*="-t5"] {
    --t-level: 5;
}
.ani[class*="-tx2"] {
    --t-level: 20;
}
.ani[class*="-tx3"] {
    --t-level: 30;
}
/* timing-function */
.ani[class*="-ease"] {
    --timing-function: ease;
}
.ani[class*="-ease-in"] {
    --timing-function: ease-in;
}
.ani[class*="-ease-out"] {
    --timing-function: ease-out;
}
.ani[class*="-ease-in-out"] {
    --timing-function: ease-in-out;
}
.ani[class*="-linear"] {
    --timing-function: linear;
}
/* extension */
/* 아래 -> 위 */
.ani[class*="-upper"] {
    --translateX: 0;
    --translateY: var(--translate);
}
/* 위 -> 아래 */
.ani[class*="-under"] {
    --translateX: 0;
    --translateY: calc(var(--translate) * -1);
}
/* 좌측 -> 우측 */
.ani[class*="-left"] {
    --translateX: calc(var(--translate) * -1);
    --translateY: 0;
}
/* 우측 -> 좌측 */
.ani[class*="-right"] {
    --translateX: var(--translate);
    --translateY: 0;
}
/* 크기 */
.ani[class*="-scale"] {
}
/* 증가 */
.ani[class*="-scale"][class*="-up"] {
    --scale: 0.5;
}
/* 감소 */
.ani[class*="-scale"][class*="-down"] {
    --scale: 1.5;
}
/* animation */
.ani.custom {
    --opacity-0: 0;
    --opacity-100: 1;
    --transform-0: translate(0, 0);
    --transform-100: translate(0, 0);
    --opacity: 0;
    animation: ani-custom var(--duration) var(--timing-function) var(--delay) forwards;
}
/* active */
.ani.on {
    opacity: 1;
}
.ani.on[class*="fade"] {
    --translate: 0;
    --scale: 1;
    --opacity: 1;
    filter: blur(0px);
}
.ani.on[class*="show"] {
    --translate: 0;
    --scale: 1;
}
/* keyframes animation */
@keyframes ani-custom {
    0% {
        opacity: var(--opacity-0);
        transform: var(--transform-0);
    }
    100% {
        opacity: var(--opacity-100);
        transform: var(--transform-100);
    }
}
