@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap");
/* Nesting Css */

/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #609aec;
    --page-point-color2: #0e3e61;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #376db9;
    --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;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 100px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: 62px;
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* board */
    --form-height: 42px;
    --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;
    }
}

/* ---------------------------- Reset ---------------------------- */
* {
    box-sizing: border-box;
    word-break: keep-all;
    float: unset;
    -webkit-tap-highlight-color: transparent;
    &::before,
    &::after {
        content: none;
    }
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 14px;
}
#site {
    margin: 0;
    padding: 0;
    font-family: var(--page-font-family);
    > .container {
        max-width: inherit;
        width: 100%;
        padding: 0;
    }
    /* FOUC */
    > *:not(#force__wrapper) {
        visibility: hidden;
    }
    &.loaded > *:not(#force__wrapper) {
        visibility: visible;
    }
    .hide {
        display: none !important;
    }
}
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
select::-ms-expand {
    display: none;
}
form,
fieldset {
    all: unset;
    box-sizing: border-box;
    display: block;
}
/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
.cke_screen_reader_only {
    bottom: 0;
}
.cke_resizer_ltr {
    float: right;
}
.cke_reset_all {
    *,
    a,
    textarea {
        white-space: wrap !important;
    }
}
.caret {
    display: none;
}
/* 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;
}
figure {
    margin: 0;
}
/* ---------------------------- 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;
    letter-spacing: -0.025em;
}
:is(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    color: #000;
}
:is(p, li, dd, small) {
    color: #555;
}
:is(small, .small) {
    font-size: 0.8em;
}
br {
    visibility: visible;
    opacity: 0;
}
.big {
    font-size: 1.2em;
}
a:not(.btn) {
    text-decoration: none;
    color: inherit;
}
a:not(.btn):where(:focus, :hover) {
    text-decoration: unset;
    color: unset;
}
.text-danger {
    color: var(--page-danger-color);
}

/* ---------------------------- 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: 2px;
    outline: none;
    white-space: nowrap;

    &:is(.btn-primary) {
        background-color: var(--page-point-color);
        border: 1px solid var(--page-point-color);
        color: #fff;
        &:is(:hover, :focus) {
            background-color: var(--page-point-color-hover);
        }
    }
    &.btn-danger {
        background-color: var(--page-danger-color);
        border: 1px solid var(--page-danger-color);
        &:is(:hover, :focus) {
            background-color: var(--page-danger-color-hover);
        }
    }
    &.btn-outline-primary {
        background: none;
        border: 1px solid var(--page-point-color);
        color: var(--page-point-color);
        &:is(:hover, :focus) {
            background-color: var(--page-point-color);
            color: #fff;
        }
    }
    &.btn-outline-danger {
        background: none;
        border: 1px solid var(--page-danger-color);
        color: var(--page-danger-color);
        &:is(:hover, :focus) {
            background-color: var(--page-danger-color);
            color: #fff;
        }
    }
    &:is(.btn-secondary, .btn-default) {
        background-color: var(--page-grey-color);
        border: 1px solid var(--page-grey-color);
        color: #000;
        &:is(:hover, :focus) {
            background-color: var(--page-grey-color-hover);
        }
    }
    &.btn-dark {
        background-color: var(--page-dark-color);
        border: 1px solid var(--page-dark-color);
        color: #fff;
        &:is(:hover, :focus) {
            background-color: var(--page-dark-color-hover);
        }
    }
    &.btn-outline-dark {
        border: 1px solid var(--page-dark-color);
        color: var(--page-dark-color);
        &:is(:hover, :focus) {
            background-color: var(--page-dark-color);
            color: #fff;
        }
    }
    &.btn-lg {
        font-size: clamp(14px, 5vw, 16px);
        height: 50px;
    }
    &.btn-danger {
        color: #fff;
    }
    /* [hover] PC 환경에서만 :hover 효과 적용  */
    @media (hover: hover) {
        &.btn-primary:where(:hover, :focus) {
            background-color: var(--page-point-color-hover);
            border-color: var(--page-point-color-hover);
        }
        &.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;
    &.border {
        justify-content: center;
        /* padding: 40px; */
        /* border: 1px solid #ccc; */
        /* border-radius: 20px; */
        & + .title-h4 {
            border-top: 2px dotted #dee3eb;
            padding-top: 120px;
        }
    }
    & + .caption {
        padding: 30px;
        background-color: #f7f7f7;
        text-align: center;
        font-size: 17px;
        margin-top: 30px;
        b {
            display: inline-block;
            margin-right: 10px;
        }
    }
}

.source {
    position: absolute;
    /* bottom: -30px; */
    right: 0;
    /* left: 0; */
    bottom: -16px;
    text-align: center;
    font-size: 11px;
    color: #aaa !important;
    /* mix-blend-mode: difference; */
    /* opacity: 0.6; */
    letter-spacing: 0.03em;
    /* padding: 5px 8px; */
    line-height: 1;
    /* border-radius: 7px; */
    /* background-color: rgba(0,0,0,0.25); */
    &:hover{
    color: #222!important;
        text-decoration: underline;
    }
}

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

/* ---------------------------- Layout ---------------------------- */
:where(.container, .row) {
    position: relative;
}
/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
    &::before,
    &::after {
        content: none;
    }
    /* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
    @media (min-width: 1260px) {
        & {
            max-width: 1230px;
        }
    }
}
.row {
    margin: 0;
    &::before,
    &::after {
        content: none;
    }
}
:where([class*="row-"], [class*="-row"]) {
    display: flex;
    gap: 30px;
}
.clearfix {
    width: 100%;
}
.col {
    flex: 1;
    padding: 0;
    &.auto {
        flex: 0 1 auto;
    }
}
/* 그리드 행 */
[grid-rowspan="1"] {
    grid-row: span 1;
}
[grid-rowspan="2"] {
    grid-row: span 2;
}
[grid-rowspan="3"] {
    grid-row: span 3;
}
[grid-rowspan="4"] {
    grid-row: span 4;
}
[grid-rowspan="5"] {
    grid-row: span 5;
}
[grid-rowspan="6"] {
    grid-row: span 6;
}
[grid-rowspan="7"] {
    grid-row: span 7;
}
[grid-rowspan="8"] {
    grid-row: span 8;
}
[grid-rowspan="9"] {
    grid-row: span 9;
}
[grid-rowspan="10"] {
    grid-row: span 10;
}
[grid-rowspan="11"] {
    grid-row: span 11;
}
[grid-rowspan="12"] {
    grid-row: span 12;
}
/* 그리드 열 */
[grid-colspan="1"] {
    grid-column: span 1;
}
[grid-colspan="2"] {
    grid-column: span 2;
}
[grid-colspan="3"] {
    grid-column: span 3;
}
[grid-colspan="4"] {
    grid-column: span 4;
}
[grid-colspan="5"] {
    grid-column: span 5;
}
[grid-colspan="6"] {
    grid-column: span 6;
}
[grid-colspan="7"] {
    grid-column: span 7;
}
[grid-colspan="8"] {
    grid-column: span 8;
}
[grid-colspan="9"] {
    grid-column: span 9;
}
[grid-colspan="10"] {
    grid-column: span 10;
}
[grid-colspan="11"] {
    grid-column: span 11;
}
[grid-colspan="12"] {
    grid-column: span 12;
}
:is([class*="hidden"]) {
    display: none;
    @media (min-width: 320px) {
        &[class*="-xs"] {
            display: inherit;
        }
    }
    /* // Small devices (landscape phones, 576px and up) */
    @media (min-width: 576px) {
        &[class*="-sm"] {
            display: inherit;
        }
    }
    /* // Medium devices (tablets, 768px and up) */
    @media (min-width: 768px) {
        &[class*="-md"] {
            display: inherit;
        }
    }
    /* // Large devices (desktops, 992px and up) */
    @media (min-width: 992px) {
        &[class*="-lg"] {
            display: inherit;
        }
    }
    /* // X-Large devices (large desktops, 1200px and up) */
    @media (min-width: 1200px) {
        &[class*="-xl"] {
            display: inherit;
        }
    }
    /* // XX-Large devices (larger desktops, 1400px and up) */
    @media (min-width: 1400px) {
        &[class*="-xxl"] {
            display: inherit;
        }
    }
}
:is([class*="visible"]) {
    display: none;
    @media (max-width: 319.98px) {
        &[class*="-xs"] {
            display: inherit;
        }
    }
    /* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
    @media (max-width: 575.98px) {
        &[class*="-sm"] {
            display: inherit;
        }
    }
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    @media (max-width: 767.98px) {
        &[class*="-md"] {
            display: inherit;
        }
    }
    /* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
    @media (max-width: 991.98px) {
        &[class*="-lg"] {
            display: inherit;
        }
    }
    /* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
    @media (max-width: 1199.98px) {
        &[class*="-xl"] {
            display: inherit;
        }
    }
    /* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
    @media (max-width: 1399.98px) {
        &[class*="-xxl"] {
            display: inherit;
        }
    }
}
.center-block {
    display: block;
    margin-inline: auto;
}
.center-flex {
    display: flex;
    margin-inline: auto;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
/* ---------------------------- Modal, Jquery Ui ---------------------------- */
.ui-widget {
    font-family: inherit;
    z-index: 10000;
    :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;
        padding-right: 0;

        .navbar {
            padding-right: 0;
        }
    }
}

.modal-backdrop {
    display: none;
}

.modal {
    z-index: 10000;
    display: flex;
    width: 100%;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    &.fade {
        opacity: 0;
        &.in {
            animation: modalFade 0.25s 0s forwards;
            .modal-dialog {
                animation: modalPop 0.35s 0.05s forwards;
            }
        }
    }
    &.in {
        z-index: 20000;
        scale: 1;
    }
    &:not(.in) {
        display: none;
        opacity: 0;
        scale: 0;
    }
    .modal-body {
        position: relative;
        padding: 20px;
    }
    .modal-header {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e5e5e5;
        padding: 20px;
        &::before,
        &::after {
            content: none;
        }
        .modal-title {
            font-size: clamp(17px, 3vw, 18px);
            line-height: 1;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-weight: 600;
        }
        .close {
            line-height: 0;
            margin-top: 0;
            opacity: 0.2;
            padding: 0;
            cursor: pointer;
            background: none;
            border: 0;
            appearance: none;
            font-size: 21px;
            font-weight: 700;
            color: #000;
            text-shadow: 0 1px 0 #fff;
            span {
                font-variation-settings: var(--gms-400-out);
                font-size: 32px;
            }
            &:hover {
                opacity: 1;
            }
        }
    }
    .modal-footer {
        display: flex;
        gap: 5px;
        padding: 15px;
        text-align: right;
        border-top: 1px solid #e5e5e5;
        .btn {
            flex: 1;
        }
    }
    .modal-title {
        line-height: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: 600;
    }
    .modal-content {
        position: relative;
        background-color: #fff;
        background-clip: padding-box;
        border: none;
        border-radius: 0;
        box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
        outline: 0;
        @media (min-width: 768px) {
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
        }
    }
    .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;

        @media (min-width: 768px) {
            max-width: 600px;
            margin: 30px auto;
        }
    }
    .modal-sm {
        @media (min-width: 768px) {
            max-width: 300px;
        }
    }
}
.modal-open {
    .modal {
        z-index: 10000;
        display: flex !important;
        width: 100%;
        justify-content: center;
    }
}
#delete_modal {
    &.in + .modal {
        display: none;
    }
}
@keyframes modalFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes modalPop {
    0% {
        scale: 0.9;
    }
    50% {
        scale: 1.015;
    }
    100% {
        scale: 1;
    }
}
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

/* ---------------------------- 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);
}
#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;
    > li {
        position: relative;
        padding-left: 0.8em;
    }
    :where(img) + & {
        margin-top: 20px;
    }
    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 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;

    > li {
        counter-increment: listNum;
        font-size: 20px;
        font-weight: 500;
        padding: 40px 30px;
        display: flex;
        align-items: center;
        gap: 20px;
        background: #f2f6fd;
        aspect-ratio: 5/4;
        flex-direction: column;
        text-align: center;
        color: var(--page-point-color2);
        border-radius: 2px;

        &::before {
            content: counter(listNum, decimal-leading-) "";
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            aspect-ratio: 1;
            width: 36px;
            padding-right: 1px;
            font-size: 18px;
            font-weight: 700;
            background: #fff;
            font-family: "Noto Serif KR", serif;
            color: var(--page-point-color-hover);
        }
    }
}
#cl03 .li-num li {
    aspect-ratio: 1;
}
/* check */
.li-check {
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 0;
    display: flex;
    /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
    max-width: 1000px;
    margin: auto;
    justify-content: center;
    > li {
        position: relative;
        font-size: 20px;
        display: flex;
        gap: 20px;
        font-weight: 600;
        flex-direction: column;
        padding: 0 40px;
        text-align: center;
        align-items: center;
        flex: 0 1 24%;
        color: #333;

        &::before {
            content: "\e131";
            font-family: var(--gms);
            font-size: 54px;
            line-height: 1;
            display: flex;
            color: var(--page-point-color-dark);
            font-variation-settings: var(--gms-300-out);
            aspect-ratio: 1;
            background: #f5f6f9;
            width: 150px;
            border-radius: 50%;
            text-align: center;
            justify-content: center;
            align-items: center;
        }
    }
}
#cl01 .li-check li:nth-child(1)::before {
    content: "\e98e";
}
#cl01 .li-check li:nth-child(2)::before {
    content: "\f6dd";
}
#cl01 .li-check li:nth-child(3)::before {
    content: "\e0a0";
}
#cl01 .li-check li:nth-child(4)::before {
    content: "\f89c";
}
#cl01 .li-check li:nth-child(5)::before {
    content: "\eaa2";
}
#cl01 .li-check li:nth-child(6)::before {
    content: "\e632";
}
#cl02 .li-check li:nth-child(1)::before {
    content: "\f21a";
}
#cl02 .li-check li:nth-child(2)::before {
    content: "\e651";
}
#cl02 .li-check li:nth-child(3)::before {
    content: "\e131";
}
#cl02 .li-check li:nth-child(4)::before {
    content: "\e046";
}
/* ---------------------------- navbar ---------------------------- */
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 2vw, 30px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(15px, 2vw, 19px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(14px, 2vw, 16px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(150px, 25vw, 320px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
    all: unset;
    box-sizing: border-box;
    z-index: 5000;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #fff;
    border-bottom: 1px solid #eee;
    :is(ul, li, a) {
        all: unset;
        box-sizing: border-box;
    }
    a {
        cursor: pointer;
    }
    :where(*):before,
    :where(*):after {
        content: none;
    }
    #gnbauth i {
        display: none;
    }
    .navbar-header {
        margin-inline: 0;
    }
    .container {
        display: flex;
        justify-content: space-between;
        height: 100%;
        align-items: center;
        gap: clamp(20px, 5vw, 60px);
    }
}
/* 로고 */
.navbar .navbar-brand {
    &,
    &:is(:hover, :focus) {
        display: block;
        width: var(--navbar-logo-width);
        margin-left: 0;
    }
    img {
        width: var(--navbar-logo-width);
    }
    /* 텍스트 로고 */
    span {
        position: relative;
        display: block;
        font-size: var(--navbar-logo-font-size);
        font-weight: 700;
        color: #000;
        white-space: nowrap;
    }
}
/* 메인메뉴 */
.navbar .navbar-right > li > a {
    z-index: 100;
    font-size: var(--navbar-menu-font-size);
    color: #000;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: -0.4px;
}
.navbar :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
    position: relative;
    z-index: 100;
    color: var(--page-point-color);
    /* background-color: transparent; */
    text-shadow: 0 0 0.01em var(--page-point-color);
    /* border-bottom: 3px solid var(--page-point-color); */
}
/* 서브 드롭다운메뉴 */
.navbar :is(.dropdown-menu) {
    z-index: 50;
    background-color: #fff;
    a {
        all: unset;
        box-sizing: border-box;
        cursor: pointer;
        transition: none;
        font-size: var(--navbar-dropdown-menu-font-size);
        font-weight: 400;
        color: #333;
        width: 100%;
        &:hover {
            background-color: inherit;
            color: var(--page-point-color);
            text-decoration: underline;
        }
    }
}

/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    /* wide */
    .navbar {
        > .container {
            /* display: grid; */
            /* grid-template-columns: minmax(0, 1fr) minmax(0, auto); */
            max-width: 100%;
            padding-inline: 50px;
        }
        /* 메인메뉴 */
        .navbar-collapse {
            display: flex;
            align-self: stretch;
            height: auto !important;
        }
        .navbar-toggle {
            display: none;
        }
    }
    .navbar .navbar-right {
        display: flex;
        align-self: stretch;
        > li {
            position: relative;
            display: flex;
            > a {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100%;
                background-color: transparent;
                padding-inline: var(--navbar-menu-padding-inline);
                padding-block: 0;
                font-weight: 500;
            }
            /* 데스크탑 서브 드롭다운메뉴 */
            .dropdown-menu {
                box-sizing: border-box;
                z-index: 5;
                overflow: hidden;
                position: absolute;
                left: 50%;
                top: 100%;
                transform: translateX(-50%);
                display: none;
                flex-direction: column;
                border-radius: 0 0 6px 6px;
                box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
                margin-top: 0px;
                padding: 20px;
                min-width: 180px;
                gap: 15px;
                opacity: 0;
                transform-origin: center top;
                text-align: center;
                a {
                    display: flex;
                    line-height: 1.1;
                    padding: 0 0 2px;
                    letter-spacing: -0.04em;
                    border-bottom: 1px solid transparent;
                    white-space: nowrap;
                    text-align: center;
                    justify-content: center;
                }
            }
            &.open .dropdown-menu {
                display: flex;
                animation: menuOpen 0.25s forwards;
            }
        }
        > :is(li:not(#gnbauth):last-child, li#gnbauth) {
            margin-right: calc(var(--navbar-menu-padding-inline) * -1);
        }
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    /* 배경 */
    body::before {
        transition: 0.35s;
        content: "";
        display: block;
        z-index: 1000;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
        animation: menuHeight 0s 0.35s forwards;
    }
    body.menu-overlay::before {
        opacity: 1;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        background-color: rgba(0, 0, 0, 0.5);
        animation: none;
    }
    .navbar {
        overflow: hidden;
        animation: menuHidden 0s 0.401s forwards;
        .navbar-header {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .navbar-brand {
            order: 1;
        }
    }
    .navbar .navbar-toggle {
        all: unset;
        box-sizing: border-box;
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0;
        cursor: pointer;
        > * {
            display: none;
        }
        &::before {
            content: "\e5d2";
            font-family: var(--gms);
            font-size: 1.8em;
            font-variation-settings: var(--gms-500-out);
        }
        &:where(:hover, :focus) {
            background: none;
        }
        &.open::before {
            content: "\e5cd";
        }
    }
    .navbar .navbar-collapse {
        transition: 0.4s;
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid #eee;
        max-height: 0;
        height: auto !important;
        .navbar-right {
            display: flex;
            flex-direction: column;
            overflow: hidden auto;
            position: relative;
            width: 100%;
            padding-block: 0px;
            > li {
                transition: inherit;
                > a {
                    display: flex;
                    align-items: center;
                    width: 100%;
                    height: 55px;
                    padding: 0 15px;
                    background-color: #fff;
                    border-bottom: 1px solid #ddd;
                }
            }
        }
        &.open {
            transition: all 0.5s;
            max-height: var(--svh100);
        }
    }
    .navbar .dropdown {
        .dropdown-menu {
            /* transition: 0.75s; */
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background-color: #eee;
            padding: 0;
            max-height: 0;
            a {
                /* width: 100%; */
                display: block;
                color: #555;
                padding: 10px 15px;
            }
        }
        .dropdown-toggle::after {
            all: unset;
            box-sizing: border-box;
            content: "\e5cf";
            font-family: var(--gms);
            font-variation-settings: var(--gms-300-out);
            margin-left: auto;
            font-size: 1.5em;
        }
        &.open {
            .dropdown-menu {
                opacity: 1;
                max-height: var(--svh100);
            }
            .dropdown-toggle {
                color: var(--page-point-color);
                font-weight: 600;
                &::after {
                    content: "\e5ce";
                    color: var(--page-point-color);
                    font-variation-settings: var(--gms-400-out);
                }
            }
        }
    }
}
@keyframes menuOpen {
    0% {
        opacity: 0;
        scale: 1 0.5;
    }
    100% {
        opacity: 1;
        scale: 1 1;
    }
}
@keyframes menuHeight {
    from {
        height: 100%;
    }
    to {
        height: 0;
    }
}
@keyframes menuHidden {
    from {
        overflow: hidden;
    }
    to {
        overflow: visible;
    }
}
/* ---------------------------- footer ---------------------------- */
footer {
    margin-top: 0px;
    background-color: #f9f9f9;
    color: #000000;
    img {
        opacity: 0.95;
        filter: grayscale(1) invert(1);
    }
    li {
        font-size: clamp(13px, 2vw, 15px);
        line-height: 1.8;
        color: #888;
        &.corp {
            margin-bottom: 10px;
            strong {
                font-weight: 500;
                font-size: 16px;
                color: #666;
            }
        }
        &.copyright {
            margin-top: 12px;
            color: #bbb;
            font-size: 13px;
        }
    }
    .footer-info {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        line-height: 1.5;
        color: #444;
        gap: 0 10px;
    }
    .footer-logo {
        flex-shrink: 0;
        width: 120px;
    }
    .footer-wrap {
        display: flex;
        align-items: center;
        gap: 50px;
        padding: 55px 0 60px;
    }
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    @media (max-width: 767.98px) {
        .footer-wrap {
            flex-direction: column;
            gap: 20px;
        }
    }
}
/* 로그인 버튼 */
#loginBtn {
    a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 8px 13px;
        background: transparent;
        color: #7d7d7d;
        line-height: 1;
        border-radius: 0;
        border: 1px solid #ddd;
        border-radius: 0;
        font-size: clamp(11px, 2vw, 12px);
        /* background: rgba(255, 255, 255, 0.07); */
        &:hover {
            background: #333;
            color: #fff;
            border-color: var(--backgorund-color);
        }
        span.material-symbols-outlined {
            font-size: 1rem;
            margin-right: 5px;
            font-variation-settings: var(--gms-500-out);
        }
        html.logined &[href="/member/login"] {
            display: none;
        }
        html:not(.logined) &[href="/member/logout"] {
            display: none;
        }
    }
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
    #loginBtn {
        margin-left: auto;
        align-self: flex-end;
    }
}
/* 스크롤버튼 */
#scrollTop {
    --width: 60px;
    --bottom: 25px;
    all: unset;
    box-sizing: border-box;
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    right: 25px;
    bottom: var(--bottom);
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--width);
    padding: 0;
    background: var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    text-align: center;
    color: #fff;

    &::before {
        content: "\e5d8";
        font-family: var(--gms);
        font-variation-settings: var(--gms-300-out);
        font-size: 2.4rem;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ---------------------------- subpage ---------------------------- */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top0.jpg);
    position: relative;
    height: 400px;
    .bg {
        position: absolute;
        left: 0;
        top: 0;
        background: var(--background-image) #f6f6f1 no-repeat center / cover;
        /* filter: brightness(0.6); */
    }
    .subpage-title {
        z-index: 2;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        h2 {
            line-height: 1;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 700;
            color: var(--page-point-color2);
            font-size: 50px;
            font-family: "Noto Serif KR", serif;
            &::before {
                content: "서울굿슬립정신건강의학과";
                display: block;
                font-size: 15px;
                letter-spacing: 0.2em;
                margin-bottom: 20px;
                margin-left: 3px;
                font-weight: 500;
                opacity: 0.8;
                font-family: "Pretendard Variable";
            }
        }
    }
}
/* [ subpage-navbar ] */
.snb {
    position: relative;
    z-index: 10;
    margin-top: -62px;
    ul {
        position: relative;
        display: flex;
        margin: 0;
        justify-content: left;
        background-color: rgb(110, 165, 197, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 15px 15px 0 0;
        overflow: hidden;
        li {
            flex: 1;

            a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                text-align: center;
                line-height: 1;
                font-size: 18px;
                height: var(--snb-height);
                color: #fff;
            }
            &.active a {
                background: #fff;
                font-weight: 700;
                color: var(--page-point-color2);
                border-radius: 15px 15px 0 0;
                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -1px;
                    display: block;
                    width: 100%;
                    height: 2px;
                    background: var(--page-point-color);
                    display: none;
                }
            }
        }
    }
}
/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
[class*="title-h"] {
    --h-line-height: 1.5;
    --h-letter-spacing: -0.03em;
    --p-font-weight: 400;
    --p-color: #606060;
    --p-line-height: 1.6;
    &:only-child {
        margin-bottom: 0;
    }
    a {
        color: #337ab7;
        &:hover {
            text-decoration: underline;
            color: #1b5c94;
        }
    }
    p.big {
        font-size: 22px;
    }
    span.color {
        font-weight: 600;
        color: #000;
    }
    /* 제목 */
    & > :is(h2, h3, h4, h5, h6) {
        font-size: var(--h-font-size);
        font-weight: var(--h-font-weight);
        color: var(--h-color);
        line-height: var(--h-line-height);
        letter-spacing: var(--h-letter-spacing);
    }
    /* 본문 */
    & > :is(p, ul, ol) {
        font-size: var(--p-font-size);
        font-weight: var(--p-font-weight);
        color: var(--p-color);
        line-height: var(--p-line-height);
        letter-spacing: -0.015em;
    }
    /* 본문+본문 간격 */
    & > *:not(:is(h2, h3, h4, h5, h6)) + * {
        margin-top: calc(var(--text-between) + 10px);
    }
}
/* h3 start */
.title-h3 {
    position: relative;
    --h-font-size: 40px;
    --h-color: #333;
    --p-font-size: 20px;
    --text-between: 10px;
    margin-bottom: 100px;
    text-align: center;

    h3 {
        font-family: "Noto Serif KR", serif;
        color: var(--page-point-color2);
        font-weight: 700;
    }

    & + .title-h4 {
        margin-top: 0;
    }
    h3 + p {
        margin: 30px auto;
        max-width: 1000px;
    }
    p + p {
        margin: 30px auto;
        max-width: 1000px;
    }
}
/* h3 end */

/* h4 start */
.title-h4 {
    --h-font-size: 28px;
    --h-font-weight: 700;
    --h-color: #333;
    --p-font-size: 18px;
    --text-between: 15px;
    margin-block: 120px 25px;
    letter-spacing: -0.01em;
    position: relative;

    &:has(p) {
        margin-bottom: 40px;
    }
    & + & {
        /* margin-top: 80px; */
        border-top: 2px dotted #dee3eb;
        padding-top: 120px;
    }
    & + .title-h5 {
        margin-top: 0px;
    }
    h4 {
        text-align: center;
        font-family: "Noto Serif KR", serif;
        font-size: 34px;
        font-weight: 700;
        color: var(--page-point-color2);
        letter-spacing: -0.034em;
        margin-bottom: 60px;
    }
    p {
        margin-top: 20px;
        text-align: center;
    }
}
/* h4 end */

/* h5 start */
.title-h5 {
    --h-font-size: 20px;
    --h-font-weight: 600;
    --h-color: #000;
    --p-font-size: 15px;
    --text-between: 8px;
    margin-top: 50px;
    margin-bottom: 15px;
    & + & {
        margin-top: 40px;
    }
    &:has(p, ul) {
        margin-bottom: 15px;
    }
}
/* h5 end */
/* [ subpage-content ] */
.subpage-content {
    section {
        padding: 110px 0 180px;
        min-height: 300px;
    }
}

.intro-wrap {
    display: flex;
    /* gap: 50px; */

    .info {
        padding-block: 30px 0;
        padding-right: 50px;
        flex: 0 1 auto;
        width: 50%;
    }
    .name {
        margin-bottom: 80px;
        font-family: "Noto Serif KR", serif;
        span {
            display: block;
            font-size: 20px;
            font-weight: 800;
            color: var(--page-point-color);
            margin-bottom: 30px;
            letter-spacing: -0.034em;
        }
        h4 {
            font-size: 22px;
            letter-spacing: 0.15em;
            font-weight: 500;
            color: #333;
            b {
                font-size: 42px;
                font-weight: 600;
                letter-spacing: 0.2em;
            }
        }
    }
    dl {
        margin-bottom: 50px;
        dt {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        dd {
            font-size: 20px;
            li {
                margin-bottom: 7px;
                font-size: 18px;
                color: #333;
            }
        }
    }
    .profile {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f7f7f7;
        border-radius: 20px;

        img {
            /* display: none; */
        }
        &::before {
            /* content: "Seoul good sleep psychiatric clinic"; */
            text-transform: uppercase;
            display: block;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
            line-height: 1.5;
            opacity: 0.1;
            letter-spacing: -0.025em;
        }
    }
}

.view-wrap {
    .swiper {
        position: relative;
        border-radius: 7px;
    }
    .swiper-slide {
        position: relative;
        .img-box {
            /* aspect-ratio: 21/9; */
            height: 700px;
            background-color: #f7f7f7;
            display: flex;
            justify-content: center;
            align-items: center;

            img {
                /* display: none; */
                z-index: 1;
            }
            &::before {
                /* content: "Seoul good sleep psychiatric clinic"; */
                text-transform: uppercase;
                display: block;
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 10px;
                opacity: 0.1;
            }
        }
        p {
            position: absolute;
            left: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 15px 20px;
            font-size: 20px;
            font-weight: 500;
            text-align: center;
            width: 100%;
            /* backdrop-filter: blur(10px); */
            z-index: 5;
            /* display: none; */
        }
    }
    .swiper-indicators-wrap {
        display: flex;
        .swiper-pagination {
            position: static;
        }
        [role="button"] {
            /* display: none; */
        }
        .swiper-pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;

            > span {
                display: block;
                margin: 0;
                width: 30px;
                background-color: var(--page-point-color);
                height: 5px;
                border-radius: 0;
            }
        }
        .swiper-button-next {
            right: -50px;
            margin-top: 40px;
        }
        .swiper-button-prev {
            left: -50px;
            margin-top: 40px;
        }
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #ddd;
}

.top-wrap {
    /* margin-bottom: 150px; */

    .img-box {
        height: 500px;
        background-color: #ccc;
        border-radius: 10px;
        position: relative;
        overflow: hidden;

        img {
            object-fit: cover;
            object-position: 50% 20%;
            width: 100%;
            height: 100%;
        }
    }
    .info {
        margin-top: 80px;
    }
    h4 {
        font-size: 30px;
        font-weight: 700;
    }
}

/* number zigzag */
.target-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    #cl02 & {
        margin-top: 50px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .col {
        counter-increment: itemNum;
        display: flex;
        /* align-items: center; */
        /* gap: 100px; */
        padding: 40px 50px;
        border-radius: 10px;
        background: #f5f8fe;
        /* box-shadow: 0px 3px 15px 0px rgba(132, 170, 212, 0.2); */
        /* border: 1px solid #d6e5ff; */

        > * {
            flex: 1;
        }
        & + & {
            /* margin-top: 140px; */
        }
        &:nth-child(even) {
            /* flex-direction: row-reverse; */
            .info {
                /* text-align: right; */
            }
        }

        .img-box {
            aspect-ratio: 5/3;
            /* max-width: 500px; */
            width: 100%;
            background-color: #f7f7f7;
            display: none;
        }
        .info {
            flex: 1;
            &::before {
                content: counter(itemNum, decimal-leading-zero) "";
                font-size: 22px;
                font-weight: 900;
                /* opacity: 0.2; */
                display: block;
                margin-bottom: 20px;
                color: #a6c7f6;
            }
            dt {
                font-size: 28px;
                font-weight: 700;
                margin-bottom: 40px;
                font-family: "Noto Serif KR", serif;
                letter-spacing: -0.034em;
                color: var(--page-point-color2);
            }
            dd {
                font-size: 18px;
                margin-bottom: 10px;
                li {
                    margin-bottom: 7px;
                    font-size: 18px;
                }
            }
        }
    }
}

/* map */
.map-wrap {
    display: flex;
    gap: 100px;

    .kakao-map {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #eee;
        flex: 0 1 auto;
        width: 50%;

        :is(.root_daum_roughmap, .wrap_map, .map) {
            width: 100%;
            height: 100% !important;
        }
        .map_border,
        .cont {
            display: none;
        }
    }
    .info {
        padding-block: 80px 20px;
    }
    dl {
        & + & {
            margin-top: 80px;
        }
        dt {
            gap: 3px;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 15px;
            font-family: "Noto Serif KR", serif;
            display: flex;
            color: var(--page-point-color-dark);
            &:before {
                content: "\e8b5";
                font-family: var(--gms);
                font-size: 32px;
                line-height: 1.2;
                display: inline-block;
                font-variation-settings: var(--gms-300-out);
                /* color: var(--page-point-color); */
            }
        }
        dd {
            font-size: 20px;
            small {
                display: block;
                font-size: 15px;
            }
        }
        ul {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        &.time {
            li {
                display: grid;
                grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
                span.day {
                    font-weight: 600;
                    font-family: "Noto Serif KR", serif;
                    color: var(--page-point-color2);
                    font-size: 17px;
                    padding-left: 5px;
                    text-align: start;
                }
                span.time {
                    color: #333;
                    font-size: 17px;
                    letter-spacing: 0;
                }
            }
            li + li {
                margin-top: 3px;
            }
        }
        &.location {
            dt {
                &:before {
                    content: "\e55e";
                }
            }
            dd {
                font-size: 18px;
                font-weight: 600;
                color: #333;
            }
        }
        small {
            display: block;
            margin-top: 5px;
            font-weight: 400;
        }
    }
    ul.map-btn {
        display: flex;
        margin-top: 80px;
        gap: 10px;
        /* display: none; */
        li {
            flex: 1;
            max-width: 160px;
            background: #f3cd2d;
            a {
                display: flex;
                justify-content: center;
                align-items: center;
                color: #fff;
                height: 54px;
                font-size: 16px;
                border-radius: 3px;
                font-weight: 500;
            }
        }
        li.naver {
            background: #3fc754;
        }
    }
}

.dept-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 30px;
    .col {
        counter-increment: itemNum;
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        padding: 30px;
        /* border: 1px solid #ddd; */
        border-radius: 10px;
        box-shadow: 0px 5px 20px 0px rgba(132, 170, 212, 0.2);

        &::before {
            /* content: "SUBJECT" " " counter(itemNum, decimal-leading-zero) ""; */
            font-size: 14px;
            font-weight: 500;
            color: var(--page-point-color);
            letter-spacing: 0.3em;
        }
        #ht02 &::before {
            /* content: "SUBJECT" " " counter(itemNum, decimal-leading-zero) ""; */
        }
        .img-box {
            /* max-width: 70%; */
            width: 100%;
            /* aspect-ratio: 1; */
            /* border-radius: 10px; */
            /* height: 400px; */
            background-color: #ccc;
            position: relative;
            /* overflow: hidden; */
            height: 400px;
            
            img{
                width: 100%;
            }
        }
        .info {
            h5 {
                font-size: 22px;
                margin: 10px 0 15px;
                font-family: "Noto Serif KR", serif;
                font-weight: 600;
            }
            ul {
                margin-top: 20px;
                display: flex;
                flex-wrap: wrap;
                gap: 10px;

                li {
                    font-size: 17px;
                }
            }
        }
    }
}

.step-wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
    .col {
        display: flex;
        align-items: center;
        padding: 0 0 30px;
        border-radius: 10px;
        gap: 30px;
        font-size: 18px;
        font-weight: 500;
        flex-direction: column;
        border: 1px solid #eef4ff;
        aspect-ratio: 1;
        position: relative;
        box-shadow: 0px 3px 15px 0px rgba(132, 170, 212, 0.2);
        span {
            background-color: #87b9ff;
            padding: 17px;
            color: #fff;
            border-radius: 10px 10px 0 0;
            font-weight: 500;
            letter-spacing: 0.05em;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            font-size: 18px;
        }
        p {
            text-align: center;
            font-size: 18px;
            padding: 0 20px;
        }
        & + .col:before {
            content: "\e5e1";
            position: absolute;
            font-family: var(--gms);
            font-size: 28px;
            line-height: 1;
            color: #9cbff0;
            font-variation-settings: var(--gms-300-out);
            left: -34px;
            top: 14%;
            transform: translateY(-50%);
        }
    }
    & + .title-h4 {
        border-top: 2px dotted #dee3eb;
        padding-top: 120px;
    }
}

.process-wrap {
    margin-top: 70px;
    .col {
        display: flex;
        align-items: center;
        /* gap: 15px; */
        max-width: 1000px;
        margin: auto;
        &:nth-child(1) {
            --col-rgb-color: 96, 154, 236;
        }
        &:nth-child(2) {
            --col-rgb-color: 144, 144, 144;
        }
        .arrow {
            &::before {
                content: "\e5df";
                font-family: var(--gms);
                font-variation-settings: var(--gms-100-out);
                font-size: 60px;
                color: var(--page-point-color);
            }
        }
        .item {
            flex: 1;
            padding: 20px 30px;
            /* background-color: #f7f7f7; */
            border: 1px solid #b7cdf2;
            text-align: center;
            font-size: 20px;
            font-weight: 500;
            border-radius: 10px;
            color: var(--page-point-color-dark);

            &:nth-child(1) {
                /* background-color: rgba(var(--col-rgb-color), 0.5); */
                color: var(--page-point-color-dark);
            }
            &:nth-child(3) {
                /* background-color: rgba(var(--col-rgb-color), 0.75); */
                /* color: #fff; */
            }
            &:nth-child(5) {
                background-color: rgba(var(--col-rgb-color), 1);
                border-color: rgba(var(--col-rgb-color), 1);
                color: #fff;
            }
        }
        & + & {
            margin-top: 20px;
        }
    }
}

#cs01 #snbArea {
    display: none;
}

#cs01 .subpage-title h2 {
    margin-bottom: 0;
}

/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
    position: relative;
    width: 100%;
    .swiper {
        display: block !important;
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            height: max(clamp(600px, 70vw, 750px), calc(var(--svh100) - var(--navbar-height)));
            .swiper-bg {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                filter: brightness(0.9);
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }
            .swiper-caption {
                position: relative;
                z-index: 10;
                text-align: center;
                color: #fff;
                .swiper-link {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                }
                .swiper-link-btn {
                    display: none;
                    span::before {
                        content: "더보기";
                    }
                }
                h1 {
                    position: relative;
                    font-size: 64px;
                    line-height: 1.5;
                    font-weight: 600;
                    letter-spacing: 0;
                    margin: 0 0 50px;
                    color: inherit;

                    span.corp {
                        text-transform: uppercase;
                        display: block;
                        font-size: 30%;
                        font-weight: 500;
                        letter-spacing: 0.075em;
                        margin-bottom: 10px;
                        font-family: "Noto Serif KR", serif;
                    }
                }
                p {
                    margin-top: 25px;
                    font-size: clamp(18px, 2.5vw, 22px);
                    font-weight: 300;
                    letter-spacing: -0.01em;
                    color: inherit;
                }
            }
        }
    }
    [class*="swiper-button"] {
        display: flex;
        align-items: center;
        top: 0;
        margin: 0;
        opacity: 1;
        width: 10%;
        height: 100%;
        &::after {
            content: none;
        }
        &::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);
        }
        &:hover::before {
            color: rgb(255, 255, 255, 1);
        }
        &.swiper-button-next {
            right: 0;
            &::before {
                content: "\e5e1";
            }
        }
        &.swiper-button-prev {
            &::before {
                content: "\e2ea";
            }
        }
        @media (max-width: 767.98px) {
            & {
                display: none;
            }
        }
    }
    .swiper-pagination-container {
        z-index: 10;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        .swiper-pagination {
            position: static;
            display: flex;
            justify-content: center;
            height: auto;
            line-height: 1;
            gap: 7px;
            span {
                width: 11px;
                height: 11px;
                border: 0;
                border-radius: 50px;
                margin: 0 4px;
                backdrop-filter: blur(10px);
                &.swiper-pagination-bullet {
                    opacity: 1;
                    background-color: rgba(255, 255, 255, 0.5);
                    transition: ease-in-out 0.2s all;
                    margin: 0;
                }
                &.swiper-pagination-bullet-active {
                    background: #fff;
                    box-shadow: none;
                }
            }
        }
    }
}

/* [ mainpage ] */
.mainpage {
    :is(.bg) {
        z-index: -1;
        position: absolute;
        left: 0;
        top: 0;
        background-color: #fff;
        filter: brightness(0.8);
    }
    section {
        position: relative;
        padding-block: 120px;

        &:nth-child(odd) {
            background: linear-gradient(to bottom, #f5f9ff 30%, #fff 100%);
        }
    }
}
.m-title-h3 {
    margin-bottom: 70px;
    text-align: center;

    h3 {
        font-size: clamp(32px, 5vw, 46px);
        font-weight: 700;
        color: var(--page-point-color2);
        font-family: "Noto Serif KR", serif;
    }
    p {
        font-size: 17px;
        margin-top: 15px;
        color: var(--page-point-color);
        letter-spacing: 0.2em;
    }
    &:has(a) {
        display: flex;
        justify-content: space-between;
        a {
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 600;
        }
    }
}

/* [ main-widget ] */
.mainpage [class^="board_box"] {
    margin-bottom: 0;
}
.mainpage .page-header {
    margin-block: 0 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    h4 {
        display: inline-block;
        font-size: clamp(18px, 3vw, 22px);
    }
    i::before {
        position: relative;
        display: block;
        content: "\e145";
        translate: 0 2px;
        font-family: var(--gms);
        font-variation-settings: var(--gms-300-out);
        font-size: clamp(18px, 3vw, 22px);
        font-weight: 500;
        color: #000;
    }
}
.mainpage .type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    li {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        &.no_bd_text {
            justify-content: center;
        }
        .info {
            opacity: 0.5;
            flex-shrink: 0;
            order: 5;

            span:not(.regdate) {
                display: none;
            }
        }
        .board_status_badge {
            order: 2;
            display: flex;
            line-height: 1;
            margin-right: auto;
            margin-left: 10px;
            background-color: var(--page-point-color) !important;
            color: #fff;
            padding: 5px 8px;
            align-items: center;
            font-size: 12px;
            margin-block: -5px;
            align-self: center;
            &.badge_wait {
                background-color: #a0a1a3 !important;
            }
            &.badge_progress {
            }
            &.badge_complete {
                background-color: #e40000 !important;
            }
        }
        span.subject {
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }
        a:hover {
            text-decoration: underline;
        }
        :where(li, a) {
            line-height: 1;
            font-size: clamp(14px, 3vw, 16px);
            color: #000;
        }
    }
}
.mainpage .type_thumb {
    display: grid;
    grid-template-columns: repeat(2, minmax(1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
    > div {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .inner {
        margin-top: 0;
        margin-bottom: 0;
        border: 0;
    }
    .thumb {
        aspect-ratio: 1.6666666667;
        height: auto;
    }
    .bottom {
        padding: 0;
        .title {
            padding: 0;
            margin-top: 5px;
            a {
                font-size: clamp(15px, 3vw, 17px);
            }
        }
    }
    .info {
        display: none;
    }
}
.mainpage :where(.type_video, [data-board-option="video"]) {
    .top a::before {
        content: "\f144";
        font-family: "font awesome 6 free";
        font-weight: 400;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 60px;
        color: #fff;
        opacity: 0.7;
        cursor: pointer;
    }
    .inner:hover .top a::before {
        opacity: 1;
    }
}

/* [ main-popup ] */
#site #mainPopup {
    position: relative;
    top: calc(var(--navbar-height) - 140px);
    .main_popup {
        display: none;
        position: absolute;
        top: 100px !important;
        min-width: 300px;
        z-index: 900;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background-color: transparent;
        &.show {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: var(--radius-sm);
        }
        button.close {
            all: unset;
            cursor: pointer;
            opacity: 1;
            margin: 0;
            height: auto;
            color: inherit;
            font-size: 1.75rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        span.material-symbols-outlined {
            line-height: 0.8;
            font-variation-settings: var(--gms-200-out);
            font-size: inherit;
        }
        .main_popup_contents {
            overflow: hidden;
            /* padding: 10px; */
            background: #fff;
            img {
                display: block;
                max-width: 100%;
                height: auto;
            }
        }
        .main_popup_optional {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 0;
            padding-inline: 7px 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: 40px;
            label {
                font-weight: 400;
                margin: 0;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                font-size: clamp(0.85rem, 2vw, 1rem);
                font-weight: 400;
                input[type="checkbox"] {
                    display: none;
                }
                span {
                    padding-left: 3px;
                    display: flex;
                    gap: 5px;
                    align-items: center;
                    &::before {
                        content: "\e8b5";
                        display: inline-block;
                        font-family: var(--gms);
                        font-variation-settings: var(--gms-300-out);
                        font-size: clamp(16px, 2vw, 18px);
                        /* transform: translateY(3px); */
                    }
                }
                :where(label, div) {
                    opacity: 0.8;
                    &:where(:hover, :focus) {
                        opacity: 1;
                    }
                }
                :where(label, div, span) {
                    line-height: 1;
                }
            }
        }
    }
    &.main_popup_left {
        left: 50px;
    }
    &.main_popup_center {
        left: 50%;
        transform: translate(-50%);
    }
    &.main_popup_right {
        right: 50px;
    }
    @media (max-width: 767px) {
        &.main_popup_left,
        &.main_popup_center,
        &.main_popup_right {
            left: 15px;
            right: 15px;
            transform: none;
        }
    }
}
/* ---------------------------- table ---------------------------- */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
}
:where(.table) {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    table-layout: fixed;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    border-spacing: 0;
}
:where(.table) :where(th, td) {
    vertical-align: top;
    line-height: 1.5;
}
.table-style {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
    border-top: 2px solid #222;
    background-color: #fff;
    margin: 0;
}
.table-style :is(th, td) {
    padding: 15px 19px;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid var(--border-color);
    text-align: center;
}
.table-style td {
    color: #444;
}
.table-style thead th {
    border-bottom: 0;
    background-color: #eee;
    border: 1px solid var(--border-color);
    color: #222;
    /* text-align: center; */
    font-weight: 600;
}
.table-style thead,
.table-style tbody:only-child {
    border-top: 2px solid var(--page-point-color);
}
.table-style tbody th {
    background-color: #f7f7f7;
    /* text-align: center; */
    font-weight: 600;
}
/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
    margin-block: 0;
    /* 게시글 공지사항 */
    tr.notice {
        background-color: #f7f7f7;
        td.subject {
            a {
                font-weight: 500;
                color: #000;
            }
            /* 게시글 아이콘 */
            .is_secret {
                order: 5;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            span {
                flex-shrink: 0;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                text-align: left;
                gap: 7px;
            }
            small {
                margin-top: 0;
                /* 잠금 아이콘 */
                &.lock {
                    order: 0;
                    translate: 0 -1px;
                    font-size: 0.9em;
                }
                /* 댓글 아이콘*/
                &.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;
                    &::before {
                        content: "[";
                    }
                    &::after {
                        content: "]";
                    }
                    & i {
                        display: none;
                    }
                }
            }
        }
        td.cate {
            &::before {
                content: "공지";
                color: #222;
            }
            span {
                display: none;
            }
        }
    }
}
/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper {
    &[id$="_view"] .btn {
        min-width: 60px;
        padding-inline: 10px;
        justify-content: center;
        align-items: center;
    }
    :is(.form-caption, .wr_caution) i {
        color: var(--page-point-color);
    }
    .wr_caution {
        padding-left: 18px;
    }
}
#site :where(.member_wrapper, .board_wrapper) {
    .text-center:not(td) {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
        & .btn + .btn {
            margin: 0;
        }
    }
    /* 게시판/주문폼/회원가입 버튼 */
    .btn.btn-lg,
    .btn + .btn:not(.btn-outline-danger) {
        min-width: 180px;
    }
    /* checkbox, radio */
    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);
    }
    .checkbox {
        margin: 0;
        label {
            cursor: pointer;
            width: fit-content;
        }
    }
    :where(.checkbox label, .radio label) {
        letter-spacing: -0.06em;
    }
    .custom_checkbox + span a {
        font-weight: 500;
        color: #1b54e4;
        text-decoration: underline;
    }
    :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type="checkbox"], input[type="radio"]) {
        position: static;
        margin: 0 5px 0 0;
    }
    :where(.checkbox, .radio) label {
        padding-left: 0;
        display: flex;
        align-items: center;
    }
    :where(.checkbox-inline, .radio-inline) {
        margin-block: 0;
        padding-left: 0;
        margin-left: 0;
        margin-top: 0;
    }
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    @media (max-width: 767.98px) {
        div.text-center {
            margin-top: 20px;
            /* margin-bottom: 50px; */
            /* padding-top: 30px; */
            display: flex;
            justify-content: center;
            width: 100%;
        }
        .text-center {
            .btn + .btn {
                margin-left: 0;
            }
            .btn.btn-lg {
                padding: 0;
                height: 50px;
                font-size: 14px;
            }
            :where(.btn.btn-lg, .btn + .btn) {
                flex: 1;
                min-width: inherit;
            }
        }
    }
}
/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px;
    ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0 20px;
        margin-bottom: 50px;
        li {
            margin: 0;
            a {
                color: #888;
                font-weight: 500;
                padding-bottom: 0;
                border-bottom: 0;
                font-size: 16px;
                &:hover {
                    color: #111;
                }
            }
            &.on :where(a, a:hover, a:focus) {
                color: #000;
                font-weight: 600;
            }
        }
    }
}
/* 게시판 노출 */
#bbsArea {
    position: relative;
    .board_data_view {
        border-top: 1px solid #333;
        border-bottom: 1px solid #aaa;
    }
    .write_btn_wrap {
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .btn-lg {
        width: 200px;
    }
    :is(.board_wrapper, .pagination_wrap, .search_wrap) {
        display: block;
        margin-top: 0;
    }
    .board_wrapper + .search_wrap {
        margin-top: 50px;
    }
    .board_wrapper + .pagination_wrap {
        margin-block: 50px;
    }
}

#bbsArea .pagination_wrap {
    & + .search_wrap {
        margin-top: 0px;
    }
    ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        li {
            a {
                display: inline-flex;
                justify-content: center;
                align-items: center;
                width: 32px;
                aspect-ratio: 1;
                font-size: 15px;
                border-radius: 9999px;
            }
            &:not(.active) a:hover {
                background-color: #eee;
            }
            &.active a {
                width: 28px;
                background-color: var(--page-point-color);
                color: #fff;
                font-weight: 700;
            }
            & + & {
                margin-left: -1px;
            }
        }
    }
    .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;
    #search_kind {
        cursor: pointer;
        line-height: 1;
    }
    .write_btn_wrap {
        margin-top: 0;
    }
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    @media (max-width: 767.98px) {
        & {
            flex-direction: column;
            max-width: 300px;
            margin-inline: auto;
        }
        .write_btn_wrap {
            position: static;
            display: flex;
            gap: 5px;
            width: 100%;
            > .btn {
                width: 100%;
                min-width: auto;
                flex: 1;
            }
        }
        select.form-control {
            max-width: 100% !important;
        }
    }
}
#bbsArea .badge {
    display: inline-flex;
    background-color: var(--page-point-color);
    border-radius: 1px;
    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;
    .list_btn_wrap {
        position: static;
    }
}
/* 게시글 헤더 */
#bbsArea .header_wrap {
    text-align: center;
    padding: 40px var(--container-padding-inline) 55px;
    border-bottom: 1px solid #aaa;
    h4.title {
        font-size: 26px;
        font-weight: 500;
        color: #000;
    }
    span {
        color: #666;
    }
    strong {
        color: #000;
        font-weight: 600;
    }
    .title {
        margin: 0;
        font-size: 24px;
    }
    .info {
        margin-top: 15px;
        opacity: 0.7;
        span {
            font-size: 14px;
            color: #000;
            & + & {
                margin-left: 9px;
            }
        }
    }
}

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

    @media (max-width: 539px) {
        .info .form-control {
            display: block;
            width: 100%;
            margin-bottom: 5px;
            & + & {
                margin-left: 0;
            }
        }
    }
}

/* 게시글 작성 */
#bbsArea .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
    tbody td {
        padding: 0px;
        border: 0;
    }
    .text-muted i {
        color: var(--page-point-color);
    }
    .files {
        /* 파일 추가 버튼 */
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px 15px;
        flex: 1;
        #File_add {
            aspect-ratio: 1;
            width: auto;
            padding: 9px 12px;
            margin: 0;
        }
        & + #File_add {
            padding: 0;
            padding-left: 0;
            padding-right: 0;
            .fa-plus {
                line-height: 0;
            }
        }
        .fileInput {
            display: grid;
            grid-template-columns: minmax(0, auto) minmax(0, min-content);
            align-self: stretch;
            .file_add {
                padding: 6px 7px 5px;
            }
            .tempChk {
                text-align: right;
                font-size: 12px;
                margin-top: 5px;
                color: #555;
            }
        }
        & + .sumChk {
            padding-bottom: 0;
            margin-bottom: 0;
            border: 0;
        }
    }
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    @media (max-width: 767.98px) {
        .text-muted {
            width: 100%;
        }
    }
    /* 휴지통 버튼 */
    :is(.refresh, .delete_attach) {
        display: inline-block;
        color: #999;
        line-height: 40px;
        margin-left: 7px;
        margin-right: 7px;
        cursor: pointer;
        &:hover {
            color: #ec0909;
        }
    }
    /* 필수 입력 항목 */
    th:has(.required_text) > :where(span:first-child, span.required_text) {
        position: static;
        margin-right: 2px;
        color: var(--page-point-color);
    }
    /* textarea 글자수 */
    .frm_textarea_cnt {
        display: none;
    }
    /* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
    @media (min-width: 768px) {
        .files_upload_wrap {
            gap: 15px;
            display: flex;
            .btn {
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0;
                aspect-ratio: 1;
                height: 40px;
            }
        }
    }
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    @media (max-width: 767.98px) {
        .files {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        img[alt*="현재 대표 이미지"] {
            max-width: 100%;
        }
        #delete_thumb {
            width: 100%;
        }
        .files_upload_wrap {
            display: flex;
            flex-direction: column;
            .btn {
                width: 100%;
                aspect-ratio: inherit;
                margin-top: 15px;
            }
            .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;
    &: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);
    }
    &:not([readonly]):focus {
        border-color: var(--page-point-color);
    }
    &[type="file"] {
        position: relative;
        width: 100%;
        cursor: pointer;
        padding: 0 0.8rem;
        padding-left: 0;
        line-height: calc(var(--form-height) - 2px);
        margin: 0;
        &::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;
        }
        &:hover:not(:disabled):not([readonly])::file-selector-button {
            background-color: #e5e5e5;
        }
    }
}
#search_query.form-control {
    width: 100%;
    max-width: 320px;
    background-color: #eee;
    border: 1px solid transparent;
    &:focus {
        background-color: #fff;
        border-color: var(--page-point-color);
    }
}
textarea.form-control {
    padding-block: 0.9rem;
    line-height: 1.5;
}

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;
    &#wr_reply_captcha {
        max-width: 130px;
        width: 100% !important;
    }
    & + .clear-input {
        display: none;
        border: 0;
        background-color: transparent;
    }
    &.vaild-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;
            &::before {
                content: "\f00d";
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                font-size: 16px;
                line-height: 1;
            }
        }
    }
    & + .clear-input {
        display: none;
        border: 0;
        background-color: transparent;
        &:hover {
            color: var(--page-point-color);
        }
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-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;

    label {
        font-size: 13px;
    }

    @media (max-width: 768px) {
        & {
            display: flex;
            flex-direction: column;
        }
    }
}

.wr_form_item {
    position: relative;
    input.form-control {
        padding-right: 40px;
        background-color: transparent;
        padding-right: 35px;
    }
    :where(.input-group, .form-control) {
        width: 100%;
    }
}

.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;
        &::before {
            margin: 0;
            font-size: 1.25em;
            color: #555;
            content: "\e835";
            font-family: var(--gms);
            font-weight: 300;
            transform: translateY(-1px);
        }
    }
    &:checked + span::before {
        content: "\e834";
        font-weight: 900;
        color: var(--page-point-color);
    }
    &[disabled],
    &[disabled] + span {
        opacity: 0.5;
    }
}

.custom_radio {
    &[disabled],
    &[disabled] + span {
        opacity: 0.5;
    }
    &:checked + span::before {
        content: "\e837";
        font-weight: 900;
        color: var(--page-point-color);
    }
    + span::before {
        margin: 0;
        font-size: 1.25em;
        color: #555;
        content: "\e836";
        font-family: var(--gms);
        font-weight: 300;
        transform: translateY(-1px);
    }
}

.radio-inline {
    cursor: pointer;
    align-self: center;
    margin-top: 0 !important;
}

.status_wrap {
    [name="wr_status"] {
        display: none;
        &[disabled],
        &[disabled] + span {
            opacity: 0.5;
        }
        + span::before {
            margin: 0;
            font-size: 1.25em;
            color: #555;
            content: "\e836";
            font-family: var(--gms);
            font-weight: 300;
            transform: translateY(-1px);
        }

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

/* 자동입력방지 */
#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;
    &:hover {
        border-color: #222 !important;
    }
    + br {
        display: none;
        + input {
            margin: 0 0 0 -1px !important;
            border-radius: 0;
            margin-left: -1px;

            &: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);
    &::before,
    &::after {
        content: none;
    }
    > dd {
        width: 100%;
        padding: 0;
        &:not([class]) {
            grid-column: span var(--board-template-columns);
        }
        &.no_content {
            grid-column: span var(--board-template-columns);
        }
    }
}
@media (min-width: 576px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
@media (min-width: 768px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}

/* [ 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;
    }
    .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;
    }
    .status_badge_1 {
        background: #a0a1a3;
        color: #fff;
    }
    .status_badge_2 {
        background: var(--page-point-color);
        color: #fff;
    }
    .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%;
        thead {
            th {
                background: #fff;
                border-bottom: 1px solid #ccc;
                font-weight: 600;
                color: #222;
                font-size: 18px;
            }
        }
        tbody {
            th.num {
                font-weight: normal;
            }
            .subject a {
                /* width: 100%; */
                overflow: hidden;
                color: #333;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 18px;
            }
            &.table_responsive th {
                margin-bottom: 0;
                border: 0;
            }
        }
    }
    :is(th, td) {
        padding: 17px 15px;
        font-size: clamp(15px, 3vw, 16px);
        border-bottom: 1px solid #ddd;
    }
    td {
        color: #777;
        text-align: center;
        &.subject {
            text-align: left;
        }
        &.text-center {
            display: table-cell;
            text-align: center;
        }
    }
}

/* 반응형 스타일 */
@media (max-width: 767.98px) {
    :is(.board_list_list, .board_status_list, .cs_bd_wrapper) {
        :is(colgroup, .num, .regdate, .hits, .writer) {
            display: none;
        }
        .subject {
            width: 100%;
        }
        .status {
            width: 35%;
        }
    }
}

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

/* [ board-form ] */
:is(#form_history_list, #form_history_nologin) {
    .board_wrapper {
        padding: 0;
        background: transparent;
        min-height: auto;
    }
}

.board_wrapper {
    :where(form[id*="form"]) {
        :where(th, td, table.table) {
            border: 0;
            line-height: 1;
        }
        table {
            width: 100%;
            display: flex;
            border-top: 0;
        }
        th {
            padding: 0;
            font-weight: 700;
            display: flex;
            background-color: transparent;
            width: auto;
            border-top: 0;
        }
        :where(th, td) {
            font-size: 16px;
        }
        tbody {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            width: 100%;
            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;
            }
        }
        #item_agree {
            .checkbox {
                margin-top: 0;
            }
            label {
                font-size: clamp(13px, 2vw, 15px);
            }
        }
        #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"]) {
            th {
                margin-bottom: 15px;
            }

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

/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    text-align: left;
    h1 {
        font-size: clamp(28px, 3vw, 38px);
        font-weight: 700;
        margin-bottom: 40px;
    }
    .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) {
        & .member_wrapper {
            padding: 50px 30px;
        }
    }
}

/* 모바일 이미지 확장 스크롤 */
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 575.98px) {
    .scroll-box-xs {
        position: relative;
        &:not(.on)::before {
            cursor: pointer;
            box-sizing: content-box;
            content: "\e145";
            font-family: var(--gms);
            font-variation-settings: var(--gms-500-out);
            background-color: var(--page-point-color);
            border: 3px solid #fff;
            border-top: 0;
            border-right: 0;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            font-size: 22px;
            aspect-ratio: 1/1.02;
            position: absolute;
            right: 0;
            top: 0;
            z-index: 100;
            line-height: 0;
        }
        &.on {
            position: relative;
            overflow-x: auto;
            img {
                max-width: 900px;
                width: auto;
                height: auto;
            }
        }
    }
}
/* -------------------------------------------------------- */
