@charset "utf-8";
/* Nesting Css */
/* 폰트 파일 */
/* @import url("/assets/fonts/gmarket/gmarketsans.css"); */
/* @import url("/assets/fonts/pretendard/variable/pretendardvariable.css"); */

/* ---------------------------- Variable ---------------------------- */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    /* page global color */
    --page-point-color: #ff9619;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #d47300;
    --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;
    /* swiper */
    --swiper-theme-color: var(--page-point-color) !important;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 100px);
    /* container */
    --container-padding-inline: 15px;
    /* snb */
    --snb-height: 67px;
    /* common */
    --radius: 15px;
    --svh100: 100svh;
    /* board */
    --form-height: 47px;
    --radius-sm: 7px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}
/* svh 미지원 */
@supports not (max-height: 100svh) {
    :root {
        --svh100: 100vh;
    }
}
@media (max-width: 991.98px) {
    :root {
        --container-padding-inline: 20px;
    }
}
/* ---------------------------- 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);
    /* display: none; */
    opacity: 0;
    > .container {
        max-width: inherit;
        width: 100%;
        padding: 0;
    }
    /* FOUC */
    > *:not(#force__wrapper) {
        visibility: hidden;
    }
    &.loaded {
        /* display: block; */
        opacity: 1;
        > *:not(#force__wrapper) {
            visibility: visible;
        }
    }
    .hide {
        /* display: none !important; */
        opacity: 1 !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;
}
: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: var(--radius-sm);
    outline: none;
    white-space: nowrap;
    &:is(.btn-primary, #btn_modify) {
        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);
        }
    }
    &:is(#btn_delete, .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;
    }
    /* <a href="/public/download/2505/" download class="btn btn-down"><b>다운로드</b><span class="material-symbols-outlined">sim_card_download </span></a> */
    &.btn-down {
        margin-top: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-inline: clamp(20px, 2vw, 30px) clamp(15px, 2vw, 25px);
        width: fit-content;
        margin-inline: auto;
        color: #fff;
        height: clamp(50px, 5vw, 60px);
        border: 1px solid #333;
        background: #fff;
        color: #222;
        & span {
            color: #222;
            font-variation-settings: var(--gms-500-out);
        }
        & b {
            color: inherit;
            font-size: clamp(14px, 2vw, 18px);
            font-weight: 600;
        }
    }
    /* [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);
        }
        &.btn-down {
            &:hover {
                background: #222;
                color: #fff;
                span {
                    color: inherit;
                }
            }
        }
    }
}
/* 버튼 비활성화 */
button[disabled] {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
    filter: grayscale(1);
}

/* ---------------------------- Image ---------------------------- */
.img-box {
    position: relative;
    display: flex;
}
.img-responsive {
    display: flex;
    max-width: 100%;
    height: auto;
}
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
.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: 1460px) {
        & {
            max-width: 1430px;
        }
    }
    @media (max-width: 991.98px) {
        & {
            max-width: 800px;
        }
    }
}
.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: 30px;
    }
    .modal-header {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e5e5e5;
        padding: 20px 30px;
        &::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: 25px 30px;
        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;
        overflow: auto;
    }
}
#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;
}
#site .bootstrap-timepicker-widget {
    display: none !important;
}

/* ---------------------------- 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;
        color: #555;
        font-size: clamp(15px,2vw,17px);
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 27.2px */
        letter-spacing: -0.255px;
    }
    :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.2em;
        aspect-ratio: 1;
        border-radius: 50%;
        background-color: #f7941d;
    }
}
/* dash */
.li-dash {
    > li::before {
        content: "";
        position: absolute;
        top: 0.7em;
        left: 0;
        line-height: 0;
        background: #f7941d;
        width: 5px;
        height: 2px;
    }
}
/* number */
.li-num {
    > li {
        counter-increment: listNum;
        padding-left: 27px;
        &::before {
            content: counter(listNum, decimal-leading-) "";
            position: absolute;
            top: 0.25em;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid var(--page-point-color);
            border-radius: 50%;
            aspect-ratio: 1;
            width: 18px;
            padding-top: 2px;
            padding-right: 1px;
            line-height: 0;
            color: var(--page-point-color);
            font-size: 11px;
            font-weight: 700;
        }
    }
}
/* check */
.li-check {
    > li {
        position: relative;
        padding-left: 1.3em;
        font-size: 15px;
        &::before {
            content: "\e5ca";
            font-family: var(--gms);
            position: absolute;
            top: 0.1em;
            font-size: 20px;
            line-height: 1;
            left: -0.2em;
            display: block;
            color: var(--page-point-color);
            font-variation-settings: var(--gms-600-out);
        }
    }
}
/* ---------------------------- navbar ---------------------------- */
/* [ navbar 재작업 ] */
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 2vw, 40px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(15px, 2vw, 18px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(14px, 2vw, 16px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(80px, 15vw, 148px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
    all: unset;
    box-sizing: border-box;
    z-index: 5000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #000;
    /* border-bottom: 1px solid #ddd; */
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    :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);
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: #fff;
    /* font-size: 18px; */
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
}
.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);
    /* text-shadow: 0 0 0.01em 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: 500;
        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: 1700px;
            /* 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: 6px;
                box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
                margin-top: 0px;
                padding: 25px;
                min-width: 200px;
                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);
        }
    }
    /* [  navbar-custom-scorll-change  ] */
    .navbar {
        &:is(.navTop) {
            /* --navbar-height: 80px; */
            /* --navbar-scroll-filter: grayscale(1) brightness(10) invert(0); */
            --navbar-scroll-background-color: transparent;
            /* --navbar-logo-width: 170px; */
            background-color: var(--navbar-scroll-background-color);
            /* border-color: rgba(255, 255, 255, 0.25); */
        }
        &:not(.navScroll) {
            background-color: var(--navbar-scroll-background-color);
        }
        &:is(:hover, .navScroll) {
            /* --navbar-height: 100px; */
            /* --navbar-scroll-filter: unset; */
            --navbar-scroll-background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            /* --navbar-logo-width: 150px; */
        }
        &:where(.navTop, .navScroll) {
            --navbar-transition: 0.3s;
            transition: var(--navbar-transition);
            height: var(--navbar-height);
            background-color: var(--navbar-scroll-background-color);
        }
    }
}
/* [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;
        .container {
            --container-padding-inline: 15px;
            max-width: 100%;
        }
        .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-300-out);
            color: #fff;
        }
        &: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: #000;
                    border-bottom: 1px solid #333;
                    font-weight: 400;
                }
            }
        }
        &.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: #111;
    .container {
        max-width: 1700px;
    }
    img {
        /* opacity: 0.95; */
        /* filter: grayscale(1) invert(1); */
    }
    li {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        font-style: normal;
        font-weight: 200;
        line-height: 150%;
        letter-spacing: 0.02em;
         /* 21px */
        b {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            margin-right: 5px;
        }
        &.corp {
            /* margin-bottom: 5px; */

            strong {
                color: #fff;
                font-size: 14px;
                font-style: normal;
                font-weight: 600;
                line-height: 150%; /* 21px */
            }
        }
        &.copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            font-style: normal;
            font-weight: 200;
            line-height: normal;
            margin-top: 17px;
        }
    }
    .footer-info {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        line-height: 1.5;
        color: #444;
        gap: 2px 15px;
        @media(max-width:767.98px){/*md*/
            text-align: center;
            justify-content: center;
        }
    }
    .footer-logo {
        flex-shrink: 0;
        width: clamp(100px,10vw,128px);
    }
    .footer-wrap {
        display: flex;
        /* align-items: center; */
        gap: 100px;
        padding: 50px 0 50px;
    }
    .line {
        color: rgba(85, 85, 85, 0.3);
        font-family: Pretendard;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        transform: translateY(1px);
    }
    /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
    @media (max-width: 767.98px) {
        .footer-wrap {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
    }
}
#loginBtn {
    mix-blend-mode: screen;
    /* background-color: #f7f7f7; */

    a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 8px 13px;
        background: transparent;
        color: #7d7d7d;
        line-height: 1;
        border-radius: 0;
        border: none;
        border-radius: 0;
        font-size: clamp(11px, 2vw, 12px);
        background: rgba(255, 255, 255, 0.07);
        &: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;
    }
}

/* ---------------------------- 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))); */
            /* 뷰포트가 작을 때 (최소 높이) */
            @media (max-width: 767.98px) {
                height: 700px;
            }
            @media(max-width:575.98px){/*sm*/
                height: 600px;
            }
            /* 중간 크기일 때 (중간 높이) */
            @media (min-width: 768px) {
                height: calc(var(--svh100));
                @media (max-height: 900px) {
                    height: 800px;
                }
            }
            .swiper-bg {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                /* filter: brightness(0.5); */

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }
            .swiper-caption {
                position: static;
                z-index: 10;
                text-align: center;
                color: #fff;
                margin-top: var(--navbar-height);
                @media(max-width:767.98px){/*md*/
                    margin-top: 0;
                }
                .scroll-down {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    margin-bottom: 30px;
                    p {
                        color: #fff;
                        text-align: center;
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 135%; /* 18.9px */
                        letter-spacing: -0.28px;
                        opacity: 0.8;
                    }
                }
                .swiper-link {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                }
                .swiper-link-btn {
                    display: none;
                    span::before {
                        content: "더보기";
                    }
                }
                h1 {
                    color: #fff;
                    text-align: left;
                    text-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
                    font-size: clamp(54px,5vw,78px);
                    font-style: normal;
                    font-weight: 600;
                    line-height: 135%; /* 105.3px */
                    letter-spacing: -1.56px;
                    width: fit-content;
                    margin-inline: auto;
                    
                    @media(max-width:991.98px){/*lg*/
                        text-align: center;
                    }
                    @media(max-width:575.98px){/*sm*/
                        font-size: 32px;
                        br{
                            display: none;
                        }
                    }
                    .line {
                        display: inline-block;
                        vertical-align: middle;
                        width: 150px;
                        height: 3px;
                        margin-right: 30px;
                        margin-left: 180px;
                        background: #ff9619;
                        @media(max-width:991.98px){/*lg*/
                            margin-left: 0;
                        }
                        @media(max-width:767.98px){/*md*/
                            display: none;
                        }
                    }
                }
                p {
                    color: #fff;
                    text-align: center;
                    text-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
                    font-size: clamp(16px,3vw,22px);
                    font-style: normal;
                    line-height: 135%; /* 29.7px */
                    margin-top: 50px;
                }
            }
        }
    }
}
/* 이미지 arrow ver */
#mainCarouselSwiper [class*="swiper-button"] {
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    width: 10%;
    height: 100%;
    display: none;

    &::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);
        width: 40px;
        aspect-ratio: 80/150;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        opacity: 0.5;
    }

    &:hover::before {
        color: rgb(255, 255, 255, 1);
        opacity: 1;
    }

    &.swiper-button-next {
        right: 0;

        &::before {
            content: "";
            background-image: url(/public/img/icons/SVG/arrow/arrow@25.04/arrow_next.svg);
        }
    }

    &.swiper-button-prev {
        &::before {
            content: "";
            background-image: url(/public/img/icons/SVG/arrow/arrow@25.04/arrow_prev.svg);
        }
    }
}
#mainCarouselSwiper .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;
            }
        }
    }
}
#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 1;
    gap: 6px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0);
    transition: ease-in-out 0.2s all;
    margin: 0;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}

/* [ mainpage ] */
.mainpage {
    :is(.bg) {
        z-index: -1;
        position: absolute;
        left: 0;
        top: 0;
    }

    .content {
        position: relative;
        padding-block: 130px 150px;
        @media(max-width:991.98px){/*lg*/
            padding-block: 80px 100px;
        }
        @media(max-width:575.98px){/*sm*/
            padding-block: 60px; 70px;
        }
    }
    .main-about {
        .bg {
            bottom: 0;
            top: auto;
            left: 0;
            right: 0;
            height: auto;
            /* object-fit: contain; */
            /* object-position: bottom; */
        }
        @media(max-width:575.98px){/*sm*/
            .img-box{
                height: 150px;
                img{
                    object-fit: cover;
                }
            }
        }
    }
    .main-products {
        * {
            color: #fff;
            .li-dash {
                > li::before {
                        width: 7px;
                }
            }
        }
        
    }
    .main-skill {
        background: linear-gradient(106deg, #f9eddf 6.62%, #f3f3f3 99.45%);
    }
}
.m-title-h3 {
    margin-block: 0px 100px;
    @media(max-width:991.98px){/*lg*/
        margin-bottom: 70px;
    }
    @media(max-width:575.98px){/*sm*/
        margin-bottom: 40px;
    }
    h3 {
        color: #111;
        font-size: clamp(34px,6vw,65px);
        font-style: normal;
        font-weight: 600;
        line-height: 135%; /* 87.75px */
        letter-spacing: -1.95px;
        @media(max-width:991.98px){/*lg*/
            text-align: center;
        }
    }
    p {
        font-size: 20px;
        margin-top: 10px;
    }
    &:has(a) {
        display: flex;
        justify-content: space-between;
        a {
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 600;
        }
    }
    &:only-child {
        margin-top: 150px;
        @media(max-width:991.98px){/*lg*/
            margin-top: 100px;
        }
        @media(max-width:575.98px){/*sm*/
            margin-top: 70px;
        }
    }
}
.m-title-h4 {
    margin-block: 140px 80px;
    @media(max-width:991.98px){/*lg*/
        margin-block: 100px 20px;
    }
    @media(max-width:575.98px){/*sm*/
        margin-top: 70px;
    }
    h4 {
        color: #222;
        font-size: clamp(28px,3vw,36px);
        font-style: normal;
        font-weight: 700;
        line-height: 140%; /* 50.4px */
        letter-spacing: -1.08px;
        
        
        
        
        
        
        @media(max-width:991.98px){/*lg*/
            text-align: center;
        }
    }
}
.m-edge-wrap {
    display: flex;
    justify-content: center;
    @media(max-width:767.98px){/*md*/
        flex-direction: column;align-items: center;margin-block: 50px 100px;
    }

    .col {
        display: flex;
        max-width: 370px;
        aspect-ratio: 1;
        width: 100%;
        padding: 65px 40px 40px 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* gap: 35px; */
        border-radius: 500px;
        background: #ed8100;
        color: #fff;
        margin-inline: -10px;
        @media(max-width:767.98px){/*md*/
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            margin-inline: 0;
            margin-block: -15px;
            max-width: 300px;
            padding: 25px;
            padding-top: 40px;
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
        }

        &:nth-child(2) {
            background-color: #263460;
        }
        &:nth-child(3) {
            background-color: #232323;
        }
        * {
            color: #fff;
        }
        small {
            color: #fff;
            text-align: center;
            font-size: 20px;
            font-style: normal;
            font-weight: 300;
            line-height: 100%; /* 20px */
            letter-spacing: -0.2px;
        }
        p {
            color: #fff;
            text-align: center;
            font-size: clamp(16px,2vw,24px);
            font-style: normal;
            font-weight: 500;
            line-height: 130%; /* 31.2px */
            margin-block: 20px 35px;
        }
        span.material-symbols-outlined {
            font-size: 54px;
        }
    }
}
.m-history-wrap {
    p {
        color: #222;
        text-align: center;
        font-size: clamp(16px,2vw,24px);
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 38.4px */
        letter-spacing: -0.72px;
        z-index: 1000;
        @media(max-width:575.98px){/*sm*/
            br{
                display: none;
            }
        }
        &::after {
            content: "";
            display: block;
            width: 2px;
            height: 80px;
            background: #f7941d;
            margin-inline: auto;
            margin-bottom: -40px;
            margin-top: 48px;
            @media(max-width:575.98px){/*sm*/
                height: 40px;
                margin-bottom: -20px;
                margin-top: 30px;
            }
        }
    }
    .img-box {
        overflow: hidden;
        border-radius: 12px;
    }
}
.m-cert-wrap {
    display: flex;
    justify-content: center;
    gap: 90px;
    @media(max-width:991.98px){/*lg*/
        gap: 30px;
    }
    @media(max-width:767.98px){/*md*/
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .col {
        flex: 0 1 auto;
        display: flex;
        width: 240px;
        aspect-ratio: 1;
        /* padding: 67px 73px 67px 72px; */
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        border: 2px solid #d3d3d3;
        background: #fff;
        box-shadow: 5px 10px 30px -2px rgba(0, 0, 0, 0.1);
        padding: 30px;
        @media(max-width:575.98px){/*sm*/
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            max-width: 100%;
            width: 100%;
            /* aspect-ratio: 5/2; */
            height: 160px;
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
        }
    }
}
.m-products-wrap {
    @media(max-width:767.98px){/*md*/
        max-width: 500px;margin-inline: auto;
    }
    .box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        padding-bottom: 50px;
        margin-bottom: 50px;
        gap: clamp(30px,5vw,70px);
        align-items: center;
        @media(max-width:767.98px){/*md*/
            flex-direction: column;
            margin-inline: auto;
        }
        &:last-child {
            padding-bottom: 0;
            margin-bottom: 0;
            border-bottom: 0;
        }
        .img-box {
            overflow: hidden;
            border-radius: 12px;
            background: #fff;
            flex-shrink: 0;
            @media(max-width:991.98px){/*lg*/
                max-width: 300px;
                aspect-ratio: 1;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            @media(max-width:767.98px){/*md*/
                
                
                
                
                
                
                
                
                
                aspect-ratio: 5/3;
                max-width: 100%;
                width: 100%;
                
                
                
                
                
                
                
                
                
            }
        }
        h5 {
            display: flex;
            align-items: center;
            color: #fff;
            font-size: clamp(20px,2vw,28px);
            font-style: normal;
            font-weight: 600;
            line-height: 135%; /* 37.8px */
            letter-spacing: -0.84px;
            margin-bottom: 25px;
            gap: 20px;
            @media(max-width:575.98px){/*sm*/
                gap: 15px;
            }
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            span.material-symbols-outlined {
                display: flex;
                padding: 10px;
                justify-content: center;
                align-items: center;
                gap: 10px;
                border-radius: 6px;
                background: #f7941d;
                font-size: clamp(28px,3vw,42px);
                flex-shrink: 0;
            }
        }
        ul {
            gap: 8px;
        }
        li {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(14px,1.5vw,18px);
            font-style: normal;
            font-weight: 200;
            line-height: 140%; /* 25.2px */
            letter-spacing: -0.015em;
        }
    }
}
.m-skill-wrap {
    /* display: flex; */
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    @media(max-width:991.98px){/*lg*/
        display: flex;
        flex-wrap:wrap;
        justify-content: center;
    }
    .col {
            /* text-align: center; */
            
            @media(max-width:991.98px){/*lg*/
                flex: 0 0 40%;
            }
        @media(max-width:575.98px){/*sm*/
            flex-basis: 100%;
        }
        }

    .icon {
        display: flex;
        box-sizing: content-box;
        width: 120px;
        aspect-ratio: 1;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 100px;
        border: 12px solid #f8d7b0;
        background: #f7941d;
        color: #fff;
        margin-inline: auto;
        margin-bottom: 30px;
        position: relative;
        @media(max-width:575.98px){/*sm*/
            width: 100px;
        }
        span.material-symbols-outlined {
            font-size: clamp(32px,3vw,46px);
            font-variation-settings: var(--gms-500-out);
        }
        &::after {
            content: "";
            display: block;
            width: 1px;
            height: 42px;
            background: #D5BEA2;
            bottom: -42px;
            position: absolute;
        }
    }
    &.line {
        width: 1px;
        height: 40px;
        background: #d5bea2;
        margin-inline: auto;
    }
    .info {
        display: flex;
        padding: 25px 30px 30px 20px;
        flex-direction: column;
        align-items: center;
        flex: 1 0 0;
        align-self: stretch;
        border-radius: 12px;
        background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
        min-height: 440px;
        @media(max-width:767.98px){/*md*/
            min-height: unset;
        }
        h5 {
            color: #222;
            text-align: center;
            font-size: clamp(20px,2vw,24px);
            font-style: normal;
            font-weight: 600;
            line-height: 155%; /* 37.2px */
            letter-spacing: -0.48px;
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            &::after {
                content: "";
                display: block;
                width: 100%;
                height: 1px;
                background: linear-gradient(90deg, #fff 0%, #f7941d 50%, #fff 100%);
                margin-block: 24px;
            }
        }
        ul {
            width: 100%;
            gap: 6px;
            li {
                color: #666;
                font-size: clamp(14px,2vw,16px);
                font-style: normal;
                font-weight: 400;
                line-height: 140%; /* 22.4px */
                letter-spacing: -0.3px;
            }
        }
    }
}
.m-info-wrap {
    display: flex;
    justify-content: space-between;
    /* gap: 240px; */
    gap: 50px;
    @media(max-width:991.98px){/*lg*/
        flex-direction: column;gap: 30px;
    }
    .inner{
        max-width: 845px;
    }
    .m-title-h4 {
        margin-top: 0;
        margin: 0;
        h4 {
            white-space: nowrap;
            @media(max-width:991.98px){/*lg*/
                text-align: center;
                white-space: normal;
            }
        }
    }
    .box {
        display: flex;
        padding: 24px 20px;
        align-items: flex-start;
        gap: 60px;
        align-self: stretch;
        border-bottom: 1px solid #ddd;
        @media(max-width:575.98px){/*sm*/
            
            
            
            
            flex-direction: column;
            gap: 10px;
            padding-inline: 10px;
            
            
            
            
        }
        &:first-child {
            border-top: 1px solid #222;
        }
        h5 {
            max-width: 140px;
            flex-shrink: 0;
            width: 100%;
            color: #222;
            font-size: clamp(15px,2vw,17px);
            font-style: normal;
            font-weight: 600;
            line-height: 155%; /* 26.35px */
            letter-spacing: -0.255px;
        }
        p {
            color: #555;
            font-size: clamp(15px,2vw,17px);
            font-style: normal;
            font-weight: 400;
            line-height: 155%; /* 26.35px */
            letter-spacing: -0.255px;
        }
    }
}
.m-map-wrap {
    .info {
        display: flex;
        gap: clamp(30px,8vw,100px);
        padding: 50px 30px;
        border-top: 1px solid #222;
        align-items: center;
        @media(max-width:1399.98px){/*xxl*/
            display: grid;
            grid-template-columns: repeat(2,minmax(0,1fr));
            gap: 30px;
            padding-inline: 15px;
            
        }
        @media(max-width:991.98px){/*lg*/
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 30px;
        }
        @media(max-width:575.98px){/*sm*/
            padding-block: 35px;
        }
        
        
        
        
        
        
        
        .item {
            display: flex;
            align-items: center;
            gap: 18px;
            span.material-symbols-outlined {
                font-size: clamp(42px,5vw,60px);
                flex-shrink: 0;
            }
            h5 {
                color: #d77908;
                font-size: 16px;
                font-style: normal;
                font-weight: 600;
                line-height: normal;
                letter-spacing: -0.48px;
            }
            p {
                color: #222;
                font-size: clamp(15px,1.5vw,18px);
                font-style: normal;
                font-weight: 700;
                line-height: 150%; /* 27px */
                letter-spacing: -0.54px;
                margin-top: 5px;
                white-space: nowrap;
                
                
                @media(max-width:575.98px){/*sm*/
                    white-space: normal;font-weight: 500;
                }
            }
        }
        .btn {
            display: flex;
            width: 131px;
            height: 45px;
            padding: 10px;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-left: auto;
            color: #fff;
            border-radius: 100px;
            background: #222;
            @media(max-width:991.98px){/*lg*/
                margin-left: 0;
            }
            @media(max-width:575.98px){/*sm*/
                max-width: 100%;
                width: 100%;
            }
        }
    }
    iframe {
        width: 100%;
        height: 430px;
        border-radius: 12px;
        background: #ccc;
        @media(max-width:575.98px){/*sm*/
            aspect-ratio: 1;
            height: auto;
        }
    }
}
/* [ 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 {
        cursor: pointer;
        padding: 0;
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        padding-block: 27px;
        padding-right: 50px;
        justify-content: space-between;
        gap: 17px;
        border-bottom: 1px solid #eee;

        &:hover {
            a {
                text-decoration: underline;
            }
        }

        &::after {
            content: "\e145";
            font-family: var(--gms);
            position: absolute;
            right: 0;
            font-size: 36px;
            color: #2ba1ea;
            top: 50%;
            transform: translateY(-50%);
            font-weight: 300;
        }

        &.no_bd_text {
            justify-content: center;
        }
        .info {
            color: #666;

            font-size: 15px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            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;
            color: #333;

            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: -1px;
        }
        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;
    }
}

/* 게시판 스와이퍼 */
.mainpage .type_swiper_s1 {
    position: relative;
    padding-bottom: 50px;
    .top {
        position: relative;
        display: block;
        aspect-ratio: 5/3;
        overflow: hidden;
    }
    &[data-board-option="goods"] {
        .top {
            aspect-ratio: 1;
        }
    }
    .thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .bottom {
        padding-top: 15px;
        &[data-bottom="list"] {
            padding: 0;
        }
        .title {
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            a {
                font-size: 18px;
                font-weight: 500;
                color: #222;
            }
        }
        .info {
            margin-top: 5px;
            display: flex;
            gap: 10px;
            opacity: 0.7;
            font-size: 12px;
        }
    }
    .cate {
        background-color: var(--page-point-color);
        color: #fff;
        display: flex;
        align-items: center;
        width: fit-content;
        padding-inline: 5px;
        height: 20px;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 5px;
    }
    .swiper:not(.swiper-initialized) {
        .swiper-wrapper {
            display: flex;
            overflow: hidden;
            gap: 30px;
            pointer-events: none;
            user-select: none;
        }
        .swiper-slide {
            width: 300px;
            flex-shrink: 0;
        }
        &::before {
            content: '게시판 위젯 [data-swiper-id="' var(--board-option) '"]에 Swiper가 적용되지 않았습니다.';
            z-index: 100;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background-color: rgba(255, 255, 255, 0.9);
            color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            font-weight: 500;
        }
    }
    [class*="swiper-button"] {
        display: flex;
        align-items: center;
        top: 0;
        margin: 0;
        opacity: 1;
        width: fit-content;
        height: 100%;
        &::after {
            content: none;
        }
        &::before {
            position: relative;
            font-family: "Font Awesome 5 Free";
            right: auto;
            top: 0;
            width: auto;
            line-height: 1;
            font-size: 32px;
            font-weight: 900;
            color: var(--page-point-color);
            opacity: 0.5;
        }
        &:hover::before {
            opacity: 1;
        }
        &.swiper-button-next {
            right: -50px;
            &::before {
                content: "\f054";
            }
        }
        &.swiper-button-prev {
            left: -50px;
            &::before {
                content: "\f053";
            }
        }
    }
    .contents_preview {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        padding: 0 1px;
        height: 40px;
        margin-top: 5px;
    }
}

/* [ main-popup ] */
#site #mainPopup {
    position: relative;
    top: 50px;
    .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;
            video {
                display: block;
            }
            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: 767.98px) {
            &[class*="main_popup_"] {
                left: 15px;
                right: 15px;
                transform: none;
                width: fit-content;
                margin-inline: auto;
            }
        }
    }
}
/* ---------------------------- 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: #f8f8f8;

        th.num {
            &::before {
                content: "공지사항";
                display: flex;
                padding: 5px 15px;
                justify-content: center;
                align-items: center;
                gap: 10px;
                border-radius: 2px;
                background: #4472c4;
                color: #fff;
                position: absolute;
                width: fit-content;
                margin-inline: auto;
                left: 0;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                /* bottom: 50%; */
            }
        }

        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;
                .badge {
                    display: none !important;
                }
            }
            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;
            }
        }
    }
}
#site .list-wrap {
    colgroup {
        .regdate_col,
        .num_col {
            width: 150px;
        }
        .hits_col,
        .writer_col {
            width: 130px;
        }
    }
}
/* 게시판 노출 */
#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: 3px;
    padding: 3px 7px;
    margin-block: -3px;
    margin-right: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
#bbsArea .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    .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;
    border: 1px solid var(--page-grey-color);
    &: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;
                color: #222;
                text-align: center;

                font-size: 17px;
                font-style: normal;
                font-weight: 600;
                line-height: 140%; /* 23.8px */
                letter-spacing: -0.17px;
            }
        }
        tbody {
            th.num {
                font-weight: normal;
                vertical-align: middle;
            }
            td {
                padding-block: 27px;
                vertical-align: middle;
            }
            .subject a {
                /* width: 100%; */
                overflow: hidden;
                color: #333;
                text-overflow: ellipsis;
                white-space: nowrap;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                color: #222;

                font-style: normal;
                font-weight: 500;
                line-height: 140%; /* 25.2px */
                letter-spacing: -0.5px;
                font-size: clamp(15px, 3vw, 18px);
            }
            &.table_responsive th {
                margin-bottom: 0;
                border: 0;
            }
        }
    }
    :is(th, td) {
        padding: 20px 15px;
        font-size: clamp(15px, 3vw, 17px);
        border-bottom: 1px solid #eaeaea;
        text-align: center;
        font-style: normal;
        color: #777;
        text-align: center;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 21px */
        letter-spacing: -0.15px;
    }
    td {
        color: #777;
        text-align: center;
        &.subject {
            text-align: left;
            &.subject_secret {
                > span {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }
            }
        }
        &.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, 10vw, 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;
        }
    }
}
#find_idpw,
.mypage_container,
.join_wrapper,
.login_wrapper {
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    @media (max-width: 767.98px) {
        align-items: flex-start;
        padding-block: calc(var(--navbar-height) / 1.5) calc(var(--navbar-height) * 1.5);
    }
}

#find_idpw,
.login_wrapper {
    /* height: max(clamp(600px, 70vw, 750px), calc(var(--svh100) - var(--navbar-height))); */
    /* 뷰포트가 작을 때 (최소 높이) */
    @media (max-width: 767.98px) {
        height: auto;
    }
    /* 중간 크기일 때 (중간 높이) */
    @media (min-width: 768px) {
        height: calc(var(--svh100) - var(--navbar-height));
        @media (max-height: 900px) {
            height: 700px;
        }
    }
}
.privacy_container,
.agreement_container,
#site .member_wrapper {
    max-width: 1140px;
    padding-top: 120px;
    padding-bottom: 200px;
    margin: calc(var(--navbar-height) / 1.5) auto calc(var(--navbar-height) * 1.5);
    background-color: #f7f7f7;
    h1 {
        margin-top: 0;
        font-size: clamp(28px, 3vw, 38px);
        line-height: 1;
        font-weight: 700;
        text-align: center;
        border: 0;
        margin-bottom: clamp(30px, 5vw, 40px);
        padding-bottom: 0px;
        letter-spacing: -0.03em;

        & + p {
            line-height: 1.4;
            font-size: clamp(13px, 3vw, 15px);
            max-height: 80px;
            /* max-height: 200px; */
            margin-bottom: 30px;
            text-align: center;
            color: #666;
        }
    }
    .text-center {
        margin-top: 40px;
        .btn.btn-lg {
            padding-left: 40px;
            padding-right: 40px;
        }
    }
    #login_form {
        input {
            padding-left: 5px;
            font-size: 15px;
        }
        .form-group {
            overflow: hidden;
            border-radius: 9999px;

            &:focus-within label[class*="label-"]::before {
                color: #000;
            }
            label {
                position: relative;
                &[class*="label-"] {
                    /* text-indent: -9999px; */
                    /* aspect-ratio: 1; */
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    flex: 0 1 auto;
                    padding-inline: 20px 10px;
                }
                &::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;
                }
                &.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;
            margin-bottom: 7px !important;
        }
        &: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: 30px;

            tr {
                display: flex;
                flex-direction: column;
                gap: 10px;
                /* display: grid; */
                /* grid-template-columns: minmax(0, 1fr) minmax(0, 4fr); */
                margin-bottom: -1px;

                th {
                    font-size: 16px;
                    text-align: left;
                    width: auto;

                    span {
                        color: var(--page-point-color);
                    }
                }
                td {
                    display: flex;
                    gap: 10px;
                }
            }
            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;
                            }
                        }
                    }
                }
            }
        }
    }
}
#site :is(#find_idpw, .login_wrapper) .member_wrapper {
    max-width: 500px;
    margin-block: 0;
}
#site :is(#find_idpw, .login_wrapper, .join_wrapper, .mypage_container, .privacy_container, .agreement_container) .member_wrapper {
    background-color: #fff;
    padding-block: 70px;
}
/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
    display: flex;
    margin: 0;
    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;
        }
    }
}

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

/* 모바일 이미지 확장 스크롤 */
/* [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;
            }
        }
    }
}

/* tabs(상품 게시판, 일반 탭) */
[role="tabpanel"] {
    [role="tablist"] {
        display: flex;
        margin-bottom: 60px;
    }
    [role="presentation"] {
        flex: 1;
        & + & {
            margin-left: -1px;
        }
        [role="tab"] {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 62px;
            font-size: 20px;
            border: 1px solid #ccc;
            color: #666;
        }
        &.active [role="tab"] {
            z-index: 10;
            background-color: var(--page-point-color);
            border-color: var(--page-point-color);
            font-weight: 600;
            color: #fff;
        }
    }
    .tab-pane {
        opacity: 0;
        animation: tabShow 0.3s forwards;
    }
    .tab-content > :not(.active) {
        display: none;
    }
}
@keyframes tabShow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* 캘린더 */
.calendar-wrap#bbsArea {
    [class*="container"] {
        padding: 0;
    }
    .fc .fc-toolbar > * > * {
        float: unset;
        margin: 0;
    }
    #fullcalendar {
        a {
            text-decoration: none !important;
        }
    }

    #calendar_loading {
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.75);
        z-index: 1000;
        font-size: 36px;
        text-align: center;
        padding-top: 10%;
    }

    .calendar_wrapper {
        position: relative;
        margin-block: 0;
        font-family: inherit;

        .fc-toolbar {
            h2 {
                font-size: 1.5em;
                font-weight: 700;
            }
        }
    }

    .fc-widget-header {
        thead > tr {
            background-color: #fafafa;
        }
    }

    .fc-day-number,
    .fc-ltr .fc-popover .fc-header .fc-title,
    .fc-rtl .fc-popover .fc-header .fc-close {
        /* font-family: "Open Sans", "notokr", sans-serif; */
    }

    .fc-day-header {
        span {
            font-size: 0.875em;
        }
    }

    .fc-unthemed {
        td.fc-today {
            background-color: #e5f5fd;
        }
    }

    .fc {
        th.fc-day-header {
            padding-block: 5px;
        }
    }

    .fc-basic-view {
        .fc-day-number {
            font-weight: bold;
            padding: 5px 10px;
        }
    }

    .fc-sat {
        color: #2151ff;
        .fc-day-number {
            color: #2151ff;
        }
    }

    .fc-sun {
        color: #ff0051;

        .fc-day-number {
            color: #ff0051;
        }
    }

    .fc-day-grid-event {
        /* margin: 2px 2px 0; */
        padding: 8px 7px 5px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 25px;
        box-sizing: border-box;
    }

    .fc-ltr .fc-h-event.fc-not-start,
    .fc-rtl .fc-h-event.fc-not-end {
        padding-left: 10px;
    }

    .fc-event {
        cursor: pointer;
        border-color: var(--page-dark-color);
        max-width: 100%;
        /* display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis; */
        overflow: hidden;
        /* white-space: nowrap; */
        .fc-time {
            font-weight: 500;
        }
        &:focus {
            text-decoration: none !important;
        }

        &.fc-chk {
            .fc-title {
                text-decoration: line-through;
            }
        }
    }

    .fc-event,
    .fc-event-dot {
        cursor: pointer;
        /* background-color: var(--page-point-color) !important */
        background-color: #fff !important;
        color: var(--page-point-color) !important;
        font-weight: 700;
        border: 1px solid var(--page-point-color) !important;

        &:hover {
            background-color: var(--page-point-color) !important;
            color: #fff !important;
        }
        &.gcal-holiday-event {
            background-color: #fa1313 !important;
            color: #fff !important;
            border: 0 !important;
            pointer-events: none;
        }
    }

    .fc-button {
        outline: none !important;
    }

    .fc-more {
        color: var(--page-dark-color);

        &:hover,
        &:focus {
            color: #333;
        }
    }

    .fc-popover {
        .fc-header {
            padding: 8px 10px 5px;
            font-size: 0.875em;
            font-weight: 700;
        }
    }

    .fc-unthemed .fc-popover .fc-header .fc-close {
        margin-top: 3px;
    }

    .fc-toolbar {
        button {
            padding: 0 1em;
        }
    }

    .fc-state-default {
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: none;

        &:not([disabled]):hover {
            background: #ddd;
        }

        &.fc-state-active {
            background: var(--page-point-color);
            border-color: var(--page-point-color);
            color: #fff;

            &:hover,
            &:focus {
                background: #333;
                border-color: #333;
                color: #fff;
            }
        }
    }

    .fc-toolbar {
        &.fc-header-toolbar {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
            > * {
                float: unset;
            }
            @media (max-width: 767.98px) {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .fc-center {
                grid-row: 1;
                grid-column: 2;
                gap: 20px;
            }
            .fc-left {
                display: flex;
                gap: 10px;
            }
            .fc-right {
                grid-column: 3;
            }
        }
        .fc-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    .form-horizontal {
        .control-label {
            padding-top: 12px;
        }
    }

    @media (max-width: 539px) {
        .fc-toolbar {
            .fc-left {
                width: 100%;
                text-align: center;

                > * {
                    float: none;
                    display: inline-block;
                    vertical-align: top;
                }
            }

            .fc-center {
                float: left;
                display: block;
                width: 100%;
                margin: 10px 0 0;

                > * {
                    float: none;
                    display: inline-block;
                    vertical-align: top;
                }
            }
        }
    }

    .writedata_start_time,
    .writedata_end_time {
        display: inline-block;

        &.hide {
            display: none;
        }
    }

    #calendarModal_view {
        .modal-body {
            padding: 0 15px;
        }

        @media (min-width: 768px) {
            .modal-body > .row > div[class^="col-"] {
                min-height: 400px;
            }
        }

        @media (max-width: 767.98px) {
            .modal-body {
                font-size: 13px;
            }
        }

        .view_left {
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
            padding: 20px 40px;
            font-family: "Open Sans", sans-serif;
            box-shadow: inset 0px 100px 100px -100px rgba(0, 0, 0, 0.75);
        }

        span[id^="viewdata_"] {
            display: block;
            margin: 20px 0;

            .year {
                display: block;
                font-weight: 400;
                font-size: 1.25em;
            }

            .date {
                font-weight: 700;
                font-size: 2em;
                margin-right: 0.5em;
            }

            .time {
                opacity: 0.75;
                font-size: 1.25em;
                font-weight: 700;
            }
        }

        #viewdata_end {
            &::before {
                content: "\f078";
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                display: block;
                font-size: 2em;
                margin: 0 0 25px;
                opacity: 0.5;
                animation: fadeArrow 2s infinite;
            }

            @media (max-width: 767.98px) {
                &::before {
                    content: "\f054";
                    float: left;
                    margin-top: 12px;
                    margin-left: -25px;
                    margin-right: 25px;
                }
            }
        }

        .view_right {
            padding: 20px 40px;
            font-family: "Open Sans", "notokr", sans-serif;
        }

        #viewdata_title {
            font-size: 1.875em;
            font-weight: 700;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            user-select: none;

            .viewdata_status {
                margin-right: 0.2em;
                display: none;

                &::before {
                    content: "\f0c8";
                    font-family: "Font Awesome 6 Free";
                    font-weight: 400;
                    cursor: pointer;
                }

                &.chk::before {
                    content: "\f14a";
                    opacity: 0.5;
                }
            }

            &.chk {
                .viewdata_status {
                    display: inline-block;
                }

                .text.chk {
                    text-decoration: line-through;
                    opacity: 0.5;
                }
            }
        }

        #viewdata_location {
            opacity: 0.5;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        #viewdata_description {
            margin-top: 0;
            position: relative;
            height: 180px;

            .inner {
                line-height: 1.6;
                color: #555;
                height: 180px;
                overflow-x: hidden;
                overflow-y: auto;
                padding: 20px 20px 20px 0;
                word-break: keep-all;
                position: absolute;
                z-index: 100;
                width: 100%;
            }

            &::before {
                content: "";
                position: absolute;
                top: 0;
                right: 20px;
                left: 0;
                height: 20px;
                background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                z-index: 101;
            }

            &::after {
                content: "";
                position: absolute;
                bottom: 0;
                right: 20px;
                left: 0;
                height: 20px;
                background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
                z-index: 101;
            }
        }

        #viewdata_writer {
            opacity: 0.5;
            text-align: right;
            position: absolute;
            right: 40px;
            bottom: 12px;

            @media (max-width: 767.98px) {
                position: relative;
                bottom: 0;
                right: 0;
            }
        }

        #viewdata_option {
            text-align: right;
            position: absolute;
            right: 28px;
            bottom: 20px;

            .btn.btn-link {
                color: #fff;
                text-decoration: none !important;

                &:hover {
                    background-color: rgba(255, 255, 255, 0.25);
                }
            }

            @media (max-width: 767.98px) {
                position: relative;
                bottom: 0;
                right: -12px;
            }
        }
    }
}

@keyframes fadeArrow {
    0% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.25;
    }
}

#calendarModal_write {
    display: flex;
    .hide {
        display: none;
    }
    .form-horizontal {
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .col-sm-2 {
        display: block;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 9px;
    }
    .col-sm-9 {
        display: grid;
        /* grid-template-columns: minmax(0,150px) minmax(0,150px) minmax(0,150px) minmax(0,150px); */
        align-items: center;
        gap: 10px;
        [for="writedata_start"] + & {
            grid-template-columns: minmax(0, 150px) minmax(0, min-content) minmax(0, 150px) minmax(0, 150px);
        }
        &:has(.hide) {
            /* .writedata_end_time + label{
                grid-column: 1;
                grid-row: 2;
        
    } */
        }
        label {
            font-size: 16px;
            margin-right: 30px;
        }
        .hasDatepicker {
            max-width: 150px;
            width: 100% !important;
        }
        .writedata_end_time,
        .writedata_start_time {
            display: flex;
            gap: 5px;
            &.hide {
                display: none;
            }
            .form-control {
                flex: 1;
            }
        }
        .writedata_start_time {
            grid-column: 1;
            grid-row: 2;
        }
        .writedata_end_time {
            grid-column: 3;
            grid-row: 2;
        }
    }
    #writedata_description {
        width: 100% !important;
        height: 150px !important;
        resize: none;
    }
    .writedata_end_time + label {
        display: flex;
        gap: 5px;
        cursor: pointer;
    }
    #write_use_time + span {
        white-space: nowrap;
    }
}

#calendarModal_view {
    overflow-y: auto;
    .modal-dialog {
        @media (min-width: 768px) {
            max-width: 700px;
            width: 100%;
            margin: auto auto;
        }
        .modal-body {
            padding: 40px;
        }
    }
    .visible-xs {
        display: none !important;
    }
    .row {
        display: flex;
        flex-direction: column-reverse;
        position: static;
    }
    .view_left {
        background-color: transparent !important;
        display: flex;
        justify-content: flex-end;
        * {
            color: #000;
        }
        [data-dismiss] + .row {
            position: absolute;
            left: 40px;
            top: 40px;
            display: flex;
            flex-direction: row;
            > div {
                display: flex;
            }
            > div + div #viewdata_end {
                &::before {
                    content: " ~ ";
                    display: block;
                    margin-inline: 10px 0;
                }
            }
        }
        .btn {
            flex: 1;
            color: #fff !important;
            i {
                display: none;
            }
        }
    }
    .view_right {
        display: flex;
        flex-direction: column;
        margin-top: 70px;
        .close {
            all: unset;
            aspect-ratio: 1;
            cursor: pointer;
            width: 40px;
            text-align: center;
            position: absolute;
            right: 25px;
            top: 30px;
            font-size: 38px !important;
            line-height: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000 !important;

            &::after {
                font-size: 24px;
            }
            &:hover {
                opacity: 1 !important;
            }
        }
        #viewdata_title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 30px;

            span.text {
                word-break: break-all;
            }
            & + #viewdata_description {
            }
        }
        #viewdata_location {
            font-size: 15px;
            padding: 6px 15px 6px 10px;
            color: var(--page-point-color);
            border: 1px solid var(--page-point-color);
            /* background-color: var(--page-point-color); */
            border-radius: 9999px;
            margin-block: -10px 30px;
            font-weight: 700;
            /* color: #fff; */
            width: fit-content;

            i {
                font-size: 0.8em;
                transform: translateY(-1px);
            }
        }
        #viewdata_description {
            font-size: 16px;
            line-height: 1.6;
            padding-block: 30px;
            border-top: 1px solid #222;
            border-bottom: 1px solid #ccc;
            margin-bottom: 20px;
        }
        #viewdata_writer {
            opacity: 0.7;
            display: flex;
            justify-content: flex-end;
            font-size: 13px;
            i {
                display: none;
            }
        }
    }
    #viewdata_end,
    #viewdata_start {
        font-size: 24px;
        display: flex;
        gap: 10px;
        left: 40px;
        top: 40px;
        font-size: 18px;
        font-weight: 600;

        span {
            color: #444 !important;
        }
    }
    #viewdata_option {
        position: static;
        display: flex;
        gap: 5px;
        margin-top: 30px;
    }
}

/* -------------------------------------------------------- */
#site .main_login_other {
    margin-top: 15px;
}
#site .main_login_other .row {
    display: flex;
    justify-content: center;
    gap: 5px;
}
@media (max-width: 575.98px) {
    #site .main_login_other .row {
        /*sm*/
        flex-direction: column;
    }
}
#site .main_login_other .row > div {
    flex: 1;
}
#site .main_login_other .row .btn {
    min-width: 100%;
    width: 100%;
    gap: 10px;
    border-radius: 9999px;
    font-weight: 600;
}
#site .main_login_other .row .btn::before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 1;
}
#site .main_login_other #naver_login_btn {
    background-color: #03c75a;
    color: #fff;
}
#site .main_login_other #naver_login_btn::before {
    background: url("/public/img/icons/SVG/sns/naver_login_symbol_white.svg") no-repeat center / contain;
    width: 17px;
}
#site .main_login_other #kakao_login_btn {
    background-color: #fee500;
    color: #181600;
}
#site .main_login_other #kakao_login_btn::before {
    background: url("/public/img/icons/SVG/sns/kakao_login_symbol.svg") no-repeat center / contain;
}
