@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;600;800&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

/* bootstrap5 */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css");

* {
    word-break: keep-all;
    float: unset !important;
}

/* =================================== 전역 변수 =================================== */
:root {
    /* font-family */
    --page-font-family: "Noto Sans", "Pretendard Variable", sans-serif;
    /* navbar */
    --navbar-height: 95px;
    /* font-size default (desktop / mobile)*/
    --page-font-size: 14px;
    /* page global color */
    --page-point-color: #0057bb;
    --page-point-color-dark: #00408a;
    --page-point-color-hover: var(--page-point-color-dark);
    /* grid */
    --grid-1fr: minmax(0, 1fr);
    --grid-repeat-2: repeat(2, var(--grid-1fr));
    --grid-repeat-3: repeat(3, var(--grid-1fr));
    --grid-repeat-4: repeat(4, var(--grid-1fr));
    --grid-repeat-5: repeat(5, var(--grid-1fr));
    --grid-repeat-6: repeat(6, var(--grid-1fr));
    --grid-repeat-7: repeat(7, var(--grid-1fr));
    --grid-repeat-8: repeat(8, var(--grid-1fr));
    --grid-repeat-9: repeat(9, var(--grid-1fr));
    --grid-repeat-10: repeat(10, var(--grid-1fr));
    --grid-repeat-11: repeat(11, var(--grid-1fr));
    --grid-repeat-12: repeat(12, var(--grid-1fr));
    /* 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-wght-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-wght-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-wght-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-wght-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-wght-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-wght-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-wght-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-wght-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-wght-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-wght-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-wght-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-wght-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-wght-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-wght-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}

/* =================================== 홈페이지 리셋 =================================== */
html,
body#site {
    /* 홈페이지 기본 폰트 사이즈 */
    font-size: var(--page-font-size) !important;
}

body#site {
    display: none;
    font-family: var(--page-font-family);
    /* padding-top: var(--navbar-height) !important; */
    padding-top: 0;
}

body#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0;
}

/* material-symbols */
span.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-wght-300-out), var(--gms-grad-zero);
    user-select: none;
}

/* selection */
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}

/* input 색상 초기화 */
input:is(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* image */
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}

.img-box {
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Paragraph */

:is(ol, ul, li, dl) {
    all: unset;
    display: block;
}

:is(dt, dd, li) {
    display: inline-block;
}

:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
    letter-spacing: -0.01em;
}

:is(p, li, td) {
    color: #444;
}

br {
    visibility: visible;
    opacity: 0;
}

:is(.big) {
    font-size: 1.2em;
}

:is(small, .small) {
    font-size: 0.75em;
}

/* button/anchor */
a,
button {
    all: unset;
    cursor: pointer;
    box-sizing: border-box;
}

a:focus,
a:hover {
    text-decoration: unset;
    color: unset;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(13px, 5vw, 15px) !important;
    line-height: 1;
    height: 40px;
    padding: 0 1em !important;
    border-radius: 0;
}

.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px) !important;
    height: 50px;
}

.btn-outline-primary {
    --bs-btn-active-bg: var(--page-point-color-dark) !important;
    --bs-btn-hover-border-color: var(--page-point-color) !important;
}

button[disabled] {
    pointer-events: none !important;
    user-select: none;
    filter: grayscale(1);
}

/* 게시판/주문폼/회원가입 버튼 */
:is(.member_wrapper, .board_wrapper) .text-center :is(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}

/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper[id$="_view"] .btn {
    min-width: 70px;
    justify-content: center;
    align-items: center;
}

@media (hover: hover) {
    .btn.btn-primary:is(:hover, :focus) {
        background-color: var(--page-point-color-hover);
        border-color: var(--page-point-color-hover);
    }
    .btn.btn-secondary:is(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
}

/* =================================== bootstrap reset =================================== */
[class*="container"] {
    --bs-gutter-x: 20px;
}

/* 모바일 */
@media (width <= 767px) {
    .container {
        max-width: none;
        width: 100%;
    }
}

/* 노트북 */
@media (width >= 1400px) {
    .container {
        max-width: 1240px;
        max-width: 1200px;
    }
}

:where(.container, .row) {
    position: relative;
}

.row::before,
.row::after,
.container::before,
.container::after {
    content: none;
    display: none;
}

.row {
    margin: 0;
}

.clearfix {
    width: 100%;
}

.col {
    --flex-col-2: calc((100% - (var(--gap) * (2 - 1))) / 2);
    --flex-col-3: calc((100% - (var(--gap) * (3 - 1))) / 3);
    --flex-col-4: calc((100% - (var(--gap) * (4 - 1))) / 4);
    --flex-col-5: calc((100% - (var(--gap) * (5 - 1))) / 5);
    --flex-col-6: calc((100% - (var(--gap) * (6 - 1))) / 6);
    --flex-col-7: calc((100% - (var(--gap) * (7 - 1))) / 7);
    --flex-col-8: calc((100% - (var(--gap) * (8 - 1))) / 8);
    --flex-col-9: calc((100% - (var(--gap) * (9 - 1))) / 9);
    --flex-col-10: calc((100% - (var(--gap) * (10 - 1))) / 10);
    --flex-col-11: calc((100% - (var(--gap) * (11 - 1))) / 11);
    --flex-col-12: calc((100% - (var(--gap) * (12 - 1))) / 12);
    padding: 0;
}

[class*="wrap"] > .col {
    flex: 0 1 auto;
}

.row > * {
    float: unset;
    padding: 0;
}

/* modal */
.modal.fade.in,
.modal.show {
    transition: 0.25s;
    opacity: 1 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal .modal-content {
    padding: 7px 5px;
    border-radius: 0.5em;
}

.modal .modal-header {
    flex-direction: row-reverse;
    align-items: center;
}

.modal .modal-title {
    font-size: clamp(17px, 3vw, 20px);
}

.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}

.modal .modal-footer {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
}

.modal .modal-footer .btn {
    flex: 1;
    min-width: inherit !important;
    margin: 0;
}

.modal .btn.btn-default {
    background-color: #5d5d5d;
    color: #fff;
}

.modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.6;
}

.modal-header .close span {
    font-variation-settings: var(--gms-wght-400-out);
}

.modal-header .close:hover {
    opacity: 1;
}

/* =================================== iframe =================================== */
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"]
{
    background-color: #e5e3df;
    margin-bottom: -6px;
}

/* 유튜브 iframe */
iframe[title*="YouTube"] {
    aspect-ratio: 16/9;
    background-color: #000;
}

/*=================================== list-type =================================== */
:is(.li-cir, .li-dash) {
    display: flex;
    flex-direction: column;
}

:is(.li-cir, .li-dash) > li {
    position: relative;
    padding-left: 0.8em;
}

.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    width: 0.35em;
    aspect-ratio: 1;
    border-radius: 50%;
    /* background-color: var(--page-point-color); */
}

.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}
.li-check {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.li-check li {
    flex: 0 1 auto;
    display: flex;
    align-items: start;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    color: #333;
}
.li-check li::before {
    content: "\e2e6";
    font-variation-settings: var(--gms-wght-600-out);
    font-family: var(--gms);
    margin-right: 7px;
    color: var(--page-point-color);
    font-size: 24px;
}
/* =================================== 애니메이션 =================================== */
.ani {
    --opacity-0: 0;
    --opacity-100: 1;
    --transform-0: translate(0, 0);
    --transform-100: translate(0, 0);
    --radius-0: inherit;
    --radius-100: inherit;
    /* overflow: hidden; */
    opacity: 0;
}

.ani .col {
    --radius-0: inherit;
    --radius-100: inherit;
}

@keyframes ani_fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes ani_upper {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes ani_parent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes ani_custom {
    0% {
        border-radius: var(--radius-0);
        opacity: var(--opacity-0);
        transform: var(--transform-0);
    }
    100% {
        border-radius: var(--radius-100);
        opacity: var(--opacity-100);
        transform: var(--transform-100);
    }
}
/* =================================== navbar =================================== */
/* 공통 */
#gnbauth i {
    /* display: none; */
}
#gnbauth i::before {
    content: "\f2bd";
}
.navbar:before,
.navbar:after,
.navbar *::before,
.navbar *::after {
    content: none;
}

.navbar .caret {
    display: none;
}

:is(.navbar-header, .navbar > .container) {
    display: flex;
}

.navbar .navbar-header {
    justify-content: center;
    align-items: center;
}

.navbar > .container {
    justify-content: space-between;
}

.navbar ul.navbar-right {
    margin-right: 0 !important;
}

.li-lang {
    & {
        display: flex;
        align-items: center;
        margin-right: -5px;
        margin-left: 20px;
        border-radius: 3px;
        /* display: none !important; */
    }
    /* `md` applies to small devices (landscape phones, less than 768px) */
    @media (width <= 767.98px) {
        & {
            margin-left: auto;
            margin-right: 10px;
        }
    }
}
.li-lang .dropdown-toggle {
    & {
        display: flex;
        align-items: center;
        gap: 0px;
    }
    & span {
        line-height: 1;
    }
    .top & span,
    .top &::after,
    .top &::before {
        color: #fff;
    }
    .scroll & span,
    .scroll &::after,
    .scroll &::before {
        color: #000;
    }
}
.li-lang .dropdown-toggle::before {
    all: unset;
    content: "\e894";
    font-family: var(--gms);
    line-height: 1;
    margin-right: 5px;
    font-size: 16px;
}
.li-lang .dropdown-toggle::after {
    all: unset;
    content: "\e5cf";
    font-family: var(--gms);
    line-height: 1;
    margin-left: 3px;
}
.li-lang.open .dropdown-toggle::after {
    content: "\e5ce";
}
.li-lang .dropdown-toggle .flag-icon {
    aspect-ratio: 4/3;
    width: 18px;
    border: 1px solid #ccc;
}

.li-lang .dropdown-toggle p {
    display: flex;
    align-items: center;
    gap: 7px;
}

.li-lang.open .dropdown-menu {
    & {
        display: flex;
        flex-direction: column; /* gap: 10px; */
        min-width: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 17px;
        margin-top: 10px;
    }
    /* `md` applies to small devices (landscape phones, less than 768px) */
    @media (width <= 767.98px) {
        & {
            margin-top: 0;
        }
    }
}

.li-lang button[disabled] {
    display: none;
}

.li-lang .lang-change-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    padding: 10px 0;
}
.li-lang .lang-change-btn.active + .lang-change-btn {
    border-top: 0;
}
.li-lang .lang-change-btn + .lang-change-btn {
    border-top: 1px solid #ccc;
}

.li-lang .lang-change-btn .flag-icon {
    width: 20px;
    aspect-ratio: 4/3;
}

/* 상단 메뉴 */
.navbar,
.navbar-custom {
    /* --navbar-transition: 0.3s; */
    --navbar-point-color: var(--page-point-color);
    /* 메인메뉴 .navbar ul.navbar-right > li > a*/
    --dropdown-padding: 0px clamp(15px, 1.8vw, 18px);
    --dropdown-font-size: clamp(15px, 2vw, 16px);
    /* 서브메뉴 .navbar ul.navbar-right .dropdown-menu */
    --dropdown-menu-padding: 10px clamp(15px, 2vw, 25px);
    --dropdown-menu-font-size: clamp(13px, 2vw, 15px);
    /* 로고 */
    --navbar-logo-width: clamp(150px, 15vw, 200px);
    position: fixed;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    border: 0;
    padding: 0;
}

/* nav 로고 */
.navbar a:is(.navbar-brand, .navbar-brand:hover, .navbar-brand:focus) {
    width: var(--navbar-logo-width);
    height: auto;
    margin: 0;
    padding: 0;
    color: #000;
}

/* nav 텍스트 로고 */
.navbar a.navbar-brand span {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 700;
}

/* nav 메인 메뉴*/
.navbar ul.navbar-right > li > a {
    position: relative;
    font-weight: 500;
    color: #222;
    font-size: var(--dropdown-font-size);
}

/* nav 대메뉴 클릭&후버 시 */
.navbar ul.navbar-right > li > a:is(:hover, :focus),
.navbar ul.navbar-right > li:is(:hover, :focus) .dropdown-toggle {
    background: none !important;
    color: var(--navbar-point-color) !important;
}

/* nav 서브메뉴 dropdown-menu background */
.navbar ul.navbar-right ul.dropdown-menu {
    position: absolute;
    background: #000;
    flex-direction: column;
}

.navbar ul.navbar-right > li.open > ul.dropdown-menu {
    display: flex !important;
}

/* nav 서브메뉴 dropdown-menu color */
.navbar ul.navbar-right > li.open > ul.dropdown-menu > li > a {
    color: #fff;
    font-size: var(--dropdown-menu-font-size);
    height: var(--dropdown-menu-height);
}

/* nav 서브메뉴 dropdown-menu hover */
.navbar ul.navbar-right > li.open > ul.dropdown-menu > li > a:hover {
    background: var(--navbar-point-color);
    color: #fff;
}

@media (width >= 768px) {
    :root {
        --navbar-mega-dropdown-height: 300px;
        --navbar-mega-dropdown-padding: 40px;
    }
    .navbar:not(.navbar-custom) {
        display: none !important;
    }
    .navbar-mega,
    .navbar-mega .navbar-custom-brand img,
    .navbar-mega .navbar-custom-header,
    .navbar-mega #gnb_custom_auth li a,
    .navbar-mega .navbar-custom-menu li {
        transition: 0.25s;
    }

    .navbar-mega .navbar-custom-dropdown {
        transition-delay: 0.05s;
        transition-duration: 0.35s;
    }

    .navbar-custom {
        z-index: 5000;
        position: fixed;
        top: 0;
        width: 100%;
        height: var(--navbar-height);
    }

    .navbar-custom .navbar-custom-header {
        position: relative;
        z-index: 10;
        height: var(--navbar-height);
        border-bottom: 1px solid rgb(175 175 175 / 25%);
    }

    .navbar-custom:is(:hover, .scroll) .navbar-custom-header {
        background-color: #fff;
    }

    .navbar-custom .navbar-custom-header .container {
        display: flex;
        gap: 40px;
        align-items: center;
        height: 100%;
        /* `lg` applies to medium devices (tablets, less than 992px) */
        @media (width <= 991.98px) {
            max-width: unset;
        }
    }
    .navbar-custom-brand img {
        width: var(--navbar-logo-width);
    }

    .navbar-custom-menu {
        display: flex;
        flex: 1;
        align-self: stretch;
    }

    .navbar-custom:is(:hover, :focus) .navbar-custom-menu {
        opacity: 1;
    }

    .navbar-custom-menu ul {
        width: 100%;
        display: flex;
    }
    .navbar-custom-menu :is(ul, li) {
        align-self: stretch;
    }

    .navbar-custom-right {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
        align-self: stretch;
    }
    .navbar-custom-right .contact-btn,
    .navbar-custom-right #gnbauth > a {
        transition: 0.25s;
        line-height: 1;
        padding: 9px 20px 10px;
    }
    .top .navbar-custom-right .contact-btn,
    .navbar-custom-right #gnbauth > a {
        border: 1px solid rgb(255 255 255 / 40%);
        color: #fff;
    }
    .top .navbar-custom-right .contact-btn {
        border: 1px solid #0177ff;
        background-color: #0177ff;
        color: #fff;
    }
    .navbar-mega:hover .navbar-custom-right .contact-btn,
    .scroll .navbar-custom-right .contact-btn {
        border: 1px solid var(--page-point-color);
        background-color: var(--page-point-color);
        color: #fff;
    }
    .navbar-mega:hover .navbar-custom-right #gnbauth > a,
    .scroll .navbar-custom-right #gnbauth > a {
        border: 1px solid #ddd;
    }

    .navbar-mega .navbar-custom-right .contact-btn:hover {
        background-color: var(--page-point-color-dark);
    }

    #gnb_custom_auth > li > a,
    .navbar-custom-menu li {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: var(--dropdown-padding);
        font-size: var(--dropdown-font-size);
        gap: 5px;
        text-transform: uppercase;
    }

    #gnb_custom_auth .dropdown-menu {
        min-width: 100%;
        left: 50%;
        top: calc(100% + 10px);
        transform: translateX(-50%);
    }

    #gnb_custom_auth .dropdown-menu li {
        width: 100%;
    }

    #gnb_custom_auth #gnbauth > a {
        font-size: 13px;
        font-weight: 400;
    }

    #gnb_custom_auth .dropdown-menu > li > a {
        padding: 3px 15px;
    }

    .navbar-mega .navbar-custom-dropdown {
        z-index: 1;
        position: relative;
        overflow: hidden;
        opacity: 0;
        background-color: #fff;
        box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
        padding: 0px;
        height: 0px;
    }

    .navbar-mega .navbar-custom-dropdown.open {
        opacity: 1;
        height: var(--navbar-mega-dropdown-height);
    }
    .navbar-mega .navbar-custom-dropdown.open .container {
        height: 100%;
        padding-block: var(--navbar-mega-dropdown-padding);
    }

    .navbar-mega .navbar-custom-dropdown .dropdown-wrap {
        opacity: 0;
        display: none;
        gap: 50px;
        height: 100%;
        width: 100%;
    }

    .navbar-mega .navbar-custom-dropdown .dropdown-wrap.open {
        opacity: 1;
        display: flex;
    }
    .navbar-mega .dropdown-wrap h5 {
        width: 15%;
        font-size: 24px;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
        display: none;
    }
    .navbar-mega .dropdown-wrap ul {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 28px;
        justify-content: center;
        padding-right: 50px;
    }
    .navbar-mega .dropdown-wrap ul li {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }
    .navbar-mega .dropdown-wrap ul a {
        /* font-size: var(--dropdown-menu-font-size); */
        font-size: 22px;
        padding-bottom: 13px;
        font-weight: 800;
        color: #444;
    }

    .navbar-mega .dropdown-wrap ul a::after {
        content: "\e5e1";
        font-family: var(--gms);
        font-variation-settings: var(--gms-wght-700-fill);
        /*     position: absolute; */
        right: 0;
        font-size: 20px;
        margin-left: 18px;
        vertical-align: middle;
    }
    .navbar-mega .dropdown-wrap ul a:hover {
        color: var(--page-point-color);
    }
    .navbar-mega .dropdown-wrap .img-box {
        position: relative;
        transition: none;
        aspect-ratio: 5/3;
        height: calc(var(--navbar-mega-dropdown-height) - (var(--navbar-mega-dropdown-padding) * 2));
        background-color: #ccc;
    }
    .navbar-mega .dropdown-wrap .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .navbar-mega .dropdown-wrap .img-box p {
        position: absolute;
        left: 25px;
        top: 25px;
        letter-spacing: 0;
        font-size: 30px;
        line-height: 1;
        text-transform: uppercase;
        font-weight: 600;
        display: none;
    }

    .navbar-custom:not(.scroll) {
        background-color: var(--navbar-scroll-background-color);
    }

    .navbar-custom.top {
        --navbar-scroll-filter: grayscale(1) invert(1) brightness(2);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 600;
        --navbar-scroll-background-color: transparent;
        background-color: var(--navbar-scroll-background-color);
        box-shadow: none;
    }

    .navbar-custom:is(:hover, .scroll) {
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #333;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 600;
        /* --navbar-scorll-letter-spacing: -0.02em; */
        --navbar-scroll-background-color: #fff;
    }

    .navbar-custom:is(.top, .scroll) {
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
        backdrop-filter: blur(5px);
    }
    .navbar-custom:is(.top, .scroll) .navbar-custom-brand img {
        filter: var(--navbar-scroll-filter);
    }
    .navbar-custom:is(.top, .scroll) #gnb_custom_auth li a,
    .navbar-custom:is(.top, .scroll) .navbar-custom-menu li {
        font-weight: var(--navbar-scroll-font-weight);
        letter-spacing: var(--navbar-scorll-letter-spacing);
        color: var(--navbar-scroll-color);
    }
    .navbar-custom:is(.top, .scroll) .navbar-custom-menu li:is(:hover, :focus),
    .navbar-custom:is(.top, .scroll) .navbar-custom-menu li.on {
        color: var(--navbar-scroll-color-hover);
    }
}

@media (width <= 767px) {
    :root {
        --navbar-height: 70px;
    }
    .navbar-custom {
        display: none;
    }
    .navbar {
        --dropdown-height: 55px;
        --dropdown-margin: 0px 15px;
        --dropdown-menu-height: 50px;
        --dropdown-background-color: #fff;
        width: 100%;
        /* overflow: hidden; */
        margin: 0;
        background-color: transparent;
        /* height: var(--navbar-height); */
    }

    .navbar.open {
        overflow: unset;
        height: unset;
    }

    /* 드롭다운 배경 */
    .navbar::before {
        content: "";
        opacity: 0;
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #000;
        /* background: linear-gradient(to bottom, black 20vh, transparent); */
    }

    .navbar.open::before {
        transition: opacity 0.3s;
        opacity: 0.5;
    }

    .navbar > .container {
        height: var(--navbar-height);
        max-width: 100%;
        flex-direction: column;
        padding: 0;
    }

    .navbar ul.dropdown-menu {
        position: relative !important;
        top: unset;
        float: unset;
        padding: 0;
    }

    .navbar :is(ul.navbar-right, .navbar-collapse) {
        padding: 0;
        margin: 0 !important;
        width: 100%;
    }

    .navbar .navbar-collapse {
        transition: 0.3s !important;
        overflow: hidden;
        position: sticky;
        top: 0;
        display: flex;
        align-items: flex-start;
        border: 0;
        height: 0;
        max-height: unset;
        transform: translateY(-100%);
    }

    .navbar.open .navbar-collapse {
        transform: translateY(0%);
    }
    .navbar.open > .container {
        height: auto;
    }
    /* 드롭다운 메뉴 */
    .navbar ul.navbar-right {
        overflow: hidden auto;
        flex-wrap: nowrap;
    }
    .navbar.open ul.navbar-right {
        height: calc(100vh - var(--navbar-height));
    }

    .navbar .navbar-header::before,
    .navbar .navbar-header::after {
        display: none;
    }

    /* nav 메뉴 버튼*/
    .navbar .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 15px 0 0;
    }
    .navbar .navbar-toggle::before {
        transition: 0.35s;
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 2.2em;
        font-variation-settings: var(--gms-wght-500-out);
    }
    .navbar.open .navbar-toggle::before {
        content: "\e5cd";
    }
    .navbar .navbar-toggle > * {
        display: none;
    }

    .navbar .navbar-toggle:is(:hover, :focus) {
        background: none;
    }

    .navbar :is(.navbar-collapse, .navbar-form) {
        border-color: transparent;
    }

    /* nav 메뉴*/
    .navbar .navbar-header {
        z-index: 100;
        justify-content: space-between !important;
        width: 100%;
        height: var(--navbar-height);
        margin: 0 !important;
        border-bottom: 1px solid #ddd;
        background-color: #fff;
    }

    /* nav 로고*/
    .navbar .navbar-header :is(.navbar-brand, .navbar-brand:hover, .navbar-brand:focus) {
        margin: 0 0 0 15px !important;
    }

    /* nav 대메뉴, 드롭다운 메뉴 공통 */
    .navbar :is(ul.navbar-right > li > a, ul.navbar-right > li.open > ul.dropdown-menu > li > a) {
        display: flex;
        justify-content: start;
        align-items: center;
        font-size: 16px;
    }

    /* nav 대메뉴 */
    .navbar ul.navbar-right > li {
        background-color: var(--dropdown-background-color);
    }

    .navbar ul.navbar-right > li > a {
        height: var(--dropdown-height);
        margin: var(--dropdown-margin);
        padding-inline: 0;
        border-bottom: 1px solid #ddd;
    }

    .navbar .dropdown .dropdown-toggle::after {
        all: unset;
        content: "\e5cf";
        font-family: var(--gms);
        font-variation-settings: var(--gms-wght-300-out);
        margin-left: auto;
        font-size: 1.5em;
    }

    .navbar .dropdown.open .dropdown-toggle {
        color: var(--page-point-color);
        font-weight: 600;
    }

    .navbar .dropdown.open .dropdown-toggle::after {
        content: "\e5ce";
        color: var(--page-point-color);
        font-variation-settings: var(--gms-wght-400-out);
    }

    /* nav 서브메뉴 */
    .navbar ul.navbar-right > li > ul.dropdown-menu {
        z-index: 100;
        border-radius: 0;
        margin-top: -1px;
    }

    .navbar ul.navbar-right > li > ul.dropdown-menu > li > a {
        height: var(--dropdown-menu-height);
        /* margin: var(--dropdown-margin); */
        padding: var(--dropdown-margin);
        font-size: 14px !important;
    }

    .navbar ul.navbar-right > li > ul.dropdown-menu > li + li > a {
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }

    /* nav 드롭다운 배경 */
    /* .navbar ul.navbar-right .dropdown-menu{
        background: #444;
    } */

    /* nav 드롭다운 폰트 */
    /* .navbar ul.navbar-right .open .dropdown-menu>li>a{
        color: #fff;
    } */

    /* nav 대메뉴 클릭&후버 시 */
    .navbar ul.navbar-right > .open > a,
    .navbar ul.navbar-right > .open > a:focus,
    .navbar ul.navbar-right > .open > a:hover {
        background-color: inherit;
        color: inherit;
    }

    .navbar ul.navbar-right > li > a:is(:hover, :focus),
    .navbar ul.navbar-right > li:is(:hover, :focus) .dropdown-toggle {
        background: #fff !important;
    }

    /* nav 드롭다운 메뉴 클릭시 */
    /* .navbar ul.navbar-right .open .dropdown-menu>li>a:is(:hover,:focus){
        color: #fff;
        background: #2968d4;
    } */
}
/* =================================== footer =================================== */
.footer-contact {
    z-index: 1;
    display: none;
    position: relative;
    background: url(/public/img/ft-contact_n2.jpg) no-repeat center / cover;
    padding: 100px 0;
}
.footer-contact.ani.on {
    --transform-0: translateY(150px);

    animation: ani_custom 1s ease 0.25s both;
}
.footer-contact::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}
.footer-contact .container {
    text-align: center;
}

.footer-contact h3 {
    font-weight: 800;
    line-height: 1;
    color: #fff;
    font-size: clamp(36px, 3vw, 42px);
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-contact.ani.on h3 {
    --opacity-0: 0;
    --transform-0: translateY(20px);
    animation: ani_custom 0.75s ease 0.75s both;
}

.footer-contact p {
    font-size: clamp(16px, 3vw, 20px);
    color: #fff;
}

.footer-contact.ani.on p {
    --opacity-0: 0;
    --transform-0: translateY(0px);
    animation: ani_custom 0.5s ease 1s both;
}

.footer-contact .more-btn {
    margin: 50px auto 0;
}
.footer-contact.ani.on .more-btn {
    --opacity-0: 0;
    --transform-0: translateY(0px);
    animation: ani_custom 0.75s ease 1.35s both;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    font-size: 15px;
    transition: all 0.3s ease;
}
footer {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0px;
    padding: 55px 0;
    background-color: #1d2226;
}

footer .footer-wrap {
    display: flex;
    gap: 10px;
}
footer .footer-wrap .col.info {
    flex: 1;
}

footer .footer-wrap .col.info img {
    width: 180px;
    margin-bottom: 30px;
    filter: grayscale(1) brightness(7);
    opacity: 0.9;
}

footer .footer-wrap .col.menu {
    flex: 0 1 15%;
}

footer .footer-wrap .col.menu h5 {
    font-size: clamp(15px, 3vw, 17px);
    margin-top: 7px;
    margin-bottom: clamp(10px, 3vw, 17px);
    color: #eee;
    font-weight: 600;
}

footer .footer-wrap .col.menu a {
    font-size: 14px;
    color: #bbb;
    display: inline-block;
}
footer .footer-wrap .col.menu a:hover {
    color: #ccc;
    text-decoration: underline;
}
footer .footer-wrap .col.menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* default */
footer .footer-info {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #aaa;
    gap: 0px 10px;
}

footer .footer-info li {
    font-size: clamp(12px, 2vw, 13px);
    color: #999;
    letter-spacing: -0.01em;
}

footer .footer-info li.copyright {
    font-size: 13px;
    margin-top: 15px;
    color: #888;
}
footer p.copyright {
    border-top: 1px solid #353b40;
    margin-top: 35px;
    padding-top: 12px;
    font-size: 12px;
    color: #777;
}
#scrollTop {
    --width: 40px;
    --bottom: 25px;
    z-index: 1000;
    position: fixed;
    position: sticky;
    right: 25px;
    bottom: var(--bottom);
    display: none;
    width: var(--width);
    margin: calc((var(--width) + var(--bottom)) * -1) 0 var(--bottom) auto;
    padding: 0;
    /* background: var(--page-point-color); */
    border: none;
    /* border-radius: 50%; */
    aspect-ratio: 1;
    text-align: center;
    color: #333;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#scrollTop .inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scrollTop .inner :is(i, span) {
    font-size: 1.5rem;
    font-variation-settings: var(--gms-wght-500-out);
}

/* mobile footer*/
@media (width <= 767px) {
    footer .footer-wrap {
        display: grid;
        gap: 20px;
    }
    footer .footer-wrap .info {
        grid-column: span 2;
    }
    footer .footer-login {
        margin-left: inherit;
    }

    #scrollTop {
        display: none !important;
    }
}

/* no_content */
.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
}

.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}

.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}

/* =================================== mainCarousel =================================== */
.main-video {
    background-color: #000;
    padding: 0 !important;
    /* height: calc(100vh - var(--navbar-height)); */
    height: 100vh;
}
.main-video::before {
    z-index: 5;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* height: 15vh; */
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0)); */
    background-color: rgba(0, 0, 0, 0.15);
}
.main-video video {
    user-select: none;
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: ani_fade 2s ease 0.1s both;
}
.main-video .video-caption {
    z-index: 100;
    position: absolute;
    left: 50%;
    /* top: 53%; */
    bottom: 10%;
    translate: -50% -0%;
}
.main-video .video-caption h1 {
    color: #fff;
    text-align: center;
    letter-spacing: 0.01em;
    font-weight: 700;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.25;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.video-caption h1.ani.on {
    --transform-0: translateY(50px);
    animation: ani_custom 1s ease 0.75s both;
}

.main-video .video-caption small {
    display: block;
    color: inherit;
}

.main-video .video-caption .more-btn {
    background-color: #0177ff;
    color: #fff;
    margin: 40px auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    font-size: 15px;
}
.video-caption .more-btn.ani.on {
    animation: ani_fade 0.75s ease 1.25s both;
}
.more-btn {
    display: block;
    padding: clamp(14px, 3vw, 17px) clamp(35px, 3vw, 50px);
    width: fit-content;
    background-color: var(--page-point-color);
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #fff;
}
.more-btn:hover {
    background-color: var(--page-point-color-dark);
    color: #fff;
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .main-video {
        height: 100svh;
    }
}

/* =================================== mainpage common =================================== */
/* section */
.main-busi {
    position: relative;
    padding-block: clamp(100px, 10vw, 150px) clamp(100px, 10vw, 200px);
    background: url("/public/img/main/m-busi-bg.jpg") no-repeat center / cover;
}

.main-busi::before {
    content: "";
    width: 100%;
    height: 43%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #fff 50%, rgba(255, 255, 255, 0));
}

.main-contact .container-fluid {
    padding: 0;
}
.mainpage h3 {
    font-size: clamp(32px, 3vw, 45px);
    text-align: center;
    margin-bottom: clamp(60px, 5vw, 85px);
    font-weight: 800;
    color: #222;
}

.mainpage h3.ani.on {
    --transform-0: translateY(50px);

    animation: ani_custom 0.5s ease 0.25s both;
}

.busi-wrap {
    display: flex;
    gap: 30px;
    @media (width <= 575.98px) {
        flex-direction: column;
    }
}
.busi-wrap.ani.on {
    --transform-0: translateY(0px);
    animation: ani_custom 1s ease 0.25s both;
}
.busi-wrap.ani > .col {
    opacity: 0;
}

.busi-wrap.ani.on > .col {
    --transform-0: translateY(500px) scale(0.8);
    --transform-100: translateY(0px) scale(1);
    animation: ani_custom 1s ease both;
}

.busi-wrap.ani.on > .col:nth-child(1) {
    animation-delay: 0.25s;
}
.busi-wrap.ani.on > .col:nth-child(2) {
    animation-delay: 0.5s;
}
.busi-wrap.ani.on > .col:nth-child(3) {
    animation-delay: 0.75s;
}
.busi-wrap .col {
    overflow: hidden;
    position: relative;
    flex: 1;
    aspect-ratio: 1/1.1;
    box-shadow: 0px 12px 30px -1px rgba(0, 0, 0, 0.1);
}
.busi-wrap .img-box {
    width: 100%;
    height: 100%;
    background-color: #ccc;
}
.busi-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.busi-wrap .info {
    transition: 0.25s;
    position: absolute;
    width: 100%;
    padding: clamp(70px, 10vw, 110px) clamp(20px, 3vw, 35px) clamp(20px, 5vw, 25px);
    bottom: -1px;
    background: linear-gradient(0deg, #fff 54%, transparent);
    color: #fff;
}

.busi-wrap .info h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: #333;
}

.busi-wrap .info h4::after {
    content: "\f1df";
    font-family: var(--gms);
    font-variation-settings: var(--gms-wght-500-fill);
    transition: all 0.3s ease;
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 30px;
    margin-right: -10px;
    text-indent: -3px;
}
@media (hover: hover) {
    .busi-wrap.ani.on > .col:hover .img-box img {
        scale: 1.15;
    }
    .busi-wrap.ani.on > .col:hover .info h4::after {
        background: var(--page-point-color);
        color: #fff;
    }
}
.contact-wrap {
    overflow: hidden;
    display: flex;
    @media (width <= 767.98px) {
        flex-direction: column;
    }
}

.contact-wrap .col {
    flex: 0 1 50%;
}

.contact-wrap .col.img-box {
    background-color: #ccc;
}

.contact-wrap .ani.on {
    --transform-0: translateY(200px);

    animation: ani_custom 1s ease 0.15s both;
}

.contact-wrap .info.ani.on > * {
    --transform-0: translateX(100px);
    --transform-100: translateX(0px);
    animation: ani_custom 1s ease 0.65s both;
}
.contact-wrap .col.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-wrap .col.info {
    display: flex;
    height: 550px;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background: #004a9e url("/public/img/main/m-contact-pt.png") no-repeat center bottom / contain;
    padding: clamp(50px, 3vw, 70px) clamp(40px, 9vw, 90px);
    color: #fff;
    @media (width <= 767.98px) {
        padding-inline: 10px;
    }
}
.contact-wrap .col.info h3 {
    text-align: left;
    margin-bottom: clamp(30px, 5vw, 50px);
    color: #fff;
}
.contact-wrap .col.info ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-wrap .col.info li {
    display: flex;
    align-items: center;
    font-size: clamp(16px, 3vw, 18px);
    color: inherit;
    font-weight: 300;
}
.contact-wrap .col.info li b {
    width: 80px;
    font-weight: 700;
    font-size: 16px;
}
.contact-wrap .col.info .more-btn {
    margin-top: 50px;
    background-color: #fff;
    color: var(--page-point-color);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    font-size: 15px;
}
/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    z-index: 10;
    position: relative;
    overflow: hidden;
    --bf-bg-color: rgba(0, 0, 0, 0.5);
    position: relative;
    /* height: calc(100vh); */
    padding-top: var(--navbar-height);
    height: clamp(550px, 50vw, 700px);
}

.subpage-header .bg {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-image) no-repeat center / cover;
    animation: ani_bg_size_zoom_in 20s linear 0s both;
    filter: brightness(0.5);
}

@keyframes ani_bg_size_zoom_in {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
    }
}
/* background */
#ua01 .subpage-header .bg {
    --bg-image: url(/public/img/sub/ua01-top.jpg);
}
#ua02 .subpage-header .bg {
    --bg-image: url(/public/img/sub/ua02-top.jpg);
}
#gc01 .subpage-header .bg {
    --bg-image: url(/public/img/sub/gc01-top.jpg);
}
#gc02 .subpage-header .bg {
    --bg-image: url(/public/img/sub/gc02-top.jpg);
    background-position: clamp(20%, 10vw, 50%);
}
#gc03 .subpage-header .bg {
    --bg-image: url(/public/img/sub/gc03-top.jpg);
    @media (width <= 575.98px) {
        background-position: 60%;
    }
}
#ta01 .subpage-header .bg {
    --bg-image: url(/public/img/sub/ta01-top.jpg);
}
#ta02 .subpage-header .bg {
    --bg-image: url(/public/img/sub/ta02-top.jpg);
}

:is(#ab01, #ab02) .subpage-header .bg {
    --bg-image: url(/public/img/sub/ab01-top.jpg);
}

.subpage-header .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* padding-top: var(--navbar-height); */
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.subpage-header .subpage-title h2 {
    line-height: 1;
    margin-top: 45px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    --opacity-0: 0;
    --transform-0: translateY(30px);
    animation: ani_custom 0.5s ease 0.25s both;
}
.subpage-header .subpage-title h2 + p {
    font-size: clamp(18px, 3vw, 22px);
    text-align: center;
    margin-top: 30px;
    color: #fff;
}
.subpage-header .subpage-title.uav h2 {
    font-size: clamp(30px, 5vw, 37px);
    margin-top: -60px;
}

.subpage-header .subpage-title > :is(p, .spec) {
    --opacity-0: 0;
    --transform-0: translateY(0px);
    animation: ani_custom 1s ease 0.5s both;
}

.subpage-header .spec {
    display: flex;
    width: 72%;
    margin-top: 55px;
    margin-bottom: -80px;
    justify-content: center;
}
.subpage-header .spec .col {
    flex: 1;
    text-align: center;
    color: #fff;
}

.subpage-header .spec .col + .col {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.subpage-header .spec h5 {
    font-size: clamp(22px, 3vw, 34px);
    margin-bottom: 5px;
    font-weight: 600;
    color: inherit;
}
.subpage-header .spec p {
    font-size: clamp(14px, 3vw, 16px);
    color: inherit;
    font-weight: 400;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .subpage-header .subpage-title h2 {
        line-height: 1.4;
    }
    .subpage-header .spec {
        width: 100%;
        display: grid;
        grid-template-columns: var(--grid-repeat-2);
        gap: 20px 10px;
        padding: 0 20px;
    }
    .subpage-header .spec .col + .col {
        border: 0;
    }
}
.subpage-indicators {
    z-index: 5;
    width: 100%;
    height: clamp(45px, 5vw, 60px);
    background: var(--page-point-color);
    overflow-x: auto;
}
.subpage-indicators > .container {
    height: 100%;
}
.breadcrumb {
    height: 100%;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    gap: 25px;
}
.breadcrumb > li.home a {
    display: flex;
}
.breadcrumb > li.home a::before {
    content: "\e88a";
    font-family: var(--gms);
    font-weight: 400;
    display: block;
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-right: 6px;
    transform: translateY(2px);
    line-height: 1;
    color: #9bc6f3;
}

.breadcrumb > li {
    white-space: nowrap;
    position: relative;
    color: #9bc6f3;
    font-size: clamp(13px, 3vw, 14px);
}

.breadcrumb > li.active {
    color: #e4f3ff;
    font-weight: 600;
}

.breadcrumb > li + li:before {
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 0;
    color: #3c96f1;
}

/* =================================== subpage =================================== */
.subpage section {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 10vw, 120px) 0 clamp(100px, 10vw, 160px);
    min-height: 300px;
}

.subpage section:nth-child(even) {
    background-color: #f5f7f8;
}

/* .subpage .sp-title{} */

.subpage .se-title {
    margin-bottom: clamp(50px, 5vw, 80px);
    text-align: center;
}

.subpage .se-title:only-child {
    margin-bottom: 0;
}

.subpage .se-title > h3 {
    font-weight: 800;
    color: #222;
    font-size: clamp(28px, 3vw, 36px);
}

.subpage .se-title span.en {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    line-height: 1.3;
    color: #666;
}

.subpage .se-title > p {
    font-weight: 400;
    color: #555;
    letter-spacing: 0;
    font-size: clamp(14px, 3vw, 17px);
}

.subpage .se-title.ani.on {
    --transform-0: translateY(50px);
    animation: ani_custom 0.5s ease 0.2s both;
}
.subpage .se-title.ani.on p {
    --transform-0: translateY(0px);
    animation: ani_custom 0.75s ease 0.3s both;
}
.subpage .se-title > * + * {
    margin-top: 20px;
}
.subpage .se-title + .wp-title {
    margin-top: 0;
}
.subpage * + .wp-title {
    margin-top: 70px;
}

.subpage .wp-title {
    margin-bottom: 30px;
    /* text-align: center; */
}

.subpage .wp-title > h4 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
}

.subpage .wp-title > * + * {
    margin-top: 15px;
}

.subpage .wp-title p {
    line-height: 1.5;
}

.subpage .wp-title :is(p, li) {
    font-size: 18px;
}

.subpage * + .co-title {
    margin-top: 40px;
}

.subpage .co-title {
    margin-bottom: 20px;
}

.subpage .co-title > h5 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 20px;
    font-weight: 600;
}

.subpage .co-title > * + * {
    margin-top: 15px;
}

/* =================================== modul =================================== */
:is(.support-wrap, .video-wrap, .form-wrap, .history-wrap).ani.on {
    animation: ani_upper 0.75s ease 0.5s both;
}

:is(.img-wrap, .benefit-wrap).ani.on {
    animation: ani_parent 0.5s ease 0.5s both;
}
.img-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.img-wrap.ani.on > .col {
    --transform-0: translateY(100px) scale(0.9);
    --transform-100: translateY(0px) scale(1);
    animation: ani_custom 1s ease both;
}

.img-wrap.ani.on > .col:nth-child(1) {
    animation-delay: 0.25s;
}
.img-wrap.ani.on > .col:nth-child(2) {
    animation-delay: 0.5s;
}
.img-wrap.ani.on > .col:nth-child(3) {
    animation-delay: 0.75s;
}

.img-wrap .img-box {
    flex: 0 1 45%;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
#gc03 .img-wrap .img-box {
    flex-basis: 35%;
}
.img-wrap .img-box img {
    transition: 1s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.img-wrap .img-box:hover img {
    scale: 1.1;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .img-wrap {
        flex-direction: column;
    }
}
.benefit-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-4);
    gap: 60px 30px;
}
.benefit-wrap.col-temp-3 {
    grid-template-columns: var(--grid-repeat-3);
    column-gap: 50px;
}
.benefit-wrap .col {
    text-align: center;
    text-align: le;
}

.benefit-wrap.ani.on > .col {
    --delay: 0.25s;
    --order: ;
    --animation-delay: calc(var(--delay) * var(--order));
    --transform-0: translateY(100px) scale(0.9);
    --transform-100: translateY(0px) scale(1);
    animation: ani_custom 1s ease both;
    animation-delay: var(--animation-delay);
}

.benefit-wrap.ani.on > .col:nth-child(1) {
    --order: 1;
}
.benefit-wrap.ani.on > .col:nth-child(2) {
    --order: 1.5;
}
.benefit-wrap.ani.on > .col:nth-child(3) {
    --order: 2;
}
.benefit-wrap.ani.on > .col:nth-child(4) {
    --order: 2.5;
}
.benefit-wrap.ani.on > .col:nth-child(5) {
    --order: 3;
}
.benefit-wrap.ani.on > .col:nth-child(6) {
    --order: 3.5;
}
.benefit-wrap.ani.on > .col:nth-child(7) {
    --order: 4;
}
.benefit-wrap.ani.on > .col:nth-child(8) {
    --order: 4.5;
}

.benefit-wrap span {
    color: var(--page-point-color);
    font-variation-settings: var(--gms-wght-400-out);
    font-size: clamp(48px, 3vw, 55px);
    margin-bottom: clamp(20px, 3vw, 28px);
}
.benefit-wrap .col h5 {
    font-size: clamp(16px, 3vw, 17px);
    font-weight: 700;
    margin-bottom: clamp(10px, 3vw, 15px);
    line-height: 1.2;
}

.benefit-wrap .col p {
    font-size: clamp(13px, 3vw, 14px);
    color: #666;
    line-height: 1.4;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .benefit-wrap {
        padding: 0 10px;
        gap: 30px 10px !important;
        grid-template-columns: var(--grid-repeat-2) !important;
    }
}
/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (width <= 575.98px) {
    .benefit-wrap {
        grid-template-columns: unset !important;
    }
}
.video-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-2);
    margin-inline: clamp(80px, 10vw, 100px);
    gap: clamp(10px, 2vw, 20px);
}
.video-wrap .col {
    position: relative;
    overflow: hidden;
}
.video-wrap.ani.on > .col {
    --transform-0: translateY(100px) scale(0.9);
    --transform-100: translateY(0px) scale(1);
    animation: ani_custom 1s ease both;
}

.video-wrap.ani.on > .col:nth-child(1) {
    animation-delay: 0.25s;
}
.video-wrap.ani.on > .col:nth-child(2) {
    animation-delay: 0.5s;
}
.video-wrap.ani.on > .col:nth-child(3) {
    animation-delay: 0.75s;
}
.video-wrap.ani.on > .col:nth-child(4) {
    animation-delay: 1s;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .video-wrap {
        margin-inline: 20px;
    }
}
.spec-wrap .col {
    padding: 50px 0px;
    display: flex;
    border-top: 1px solid #d0d0d0;
}

.spec-wrap .col.ani.on {
    --delay: 0.25s;
    animation: ani_upper 1s ease var(--delay) both;
}

.spec-wrap .col.ani.on + .col.ani {
    animation-delay: calc(var(--delay) + 0.25s) !important;
}
.spec-wrap .col:last-child {
    border-bottom: 1px solid #bbb;
}

.spec-wrap .col:first-child {
    border-top: 1px solid #333;
}
.spec-wrap .col h5 {
    width: 33%;
    font-size: clamp(19px, 3vw, 22px);
    font-weight: 600;
    line-height: 1;
}
.spec-wrap .col .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.spec-wrap .col .info li {
    display: flex;
    font-size: clamp(15px, 3vw, 16px);
}

.spec-wrap .col .info > li {
}

.spec-wrap .col .info > li + li {
    border-top: 1px dotted #d0d0d0;
    padding-top: 15px;
}
.spec-wrap .col .info li b {
    flex-shrink: 0;
    width: 50%;
    color: rgb(72 114 163 / 85%);
    font-weight: 600;
}
.spec-wrap .col .info li ul {
    flex: 1;
}
.spec-wrap .col .info li li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}
.spec-wrap .col .info li span {
    width: 50%;
    margin-top: 3px;
    line-height: 1.3;
}
.spec-wrap + p.caution {
    opacity: 0;
}
p.caution {
    margin-top: 40px;
}
p.caution.ani.on {
    animation: ani_upper 1s ease 0.25s both;
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .spec-wrap {
        padding: 0 10px;
    }
    .spec-wrap .col {
        flex-direction: column;
        padding: 30px 0;
    }

    .spec-wrap .col h5 {
        width: fit-content;
        margin-bottom: 20px;
    }
    .spec-wrap .col .info li {
        flex-direction: column;
    }
    .spec-wrap .col .info li span,
    .spec-wrap .col .info li b {
        width: fit-content;
    }
}
.support-wrap {
    display: flex;
}

.support-wrap.ani.on .li-check {
    --transform-0: translateX(100px) scale(0.9);
    --transform-100: translateX(0px) scale(1);
    animation: ani_custom 1s ease 0.75s both;
}
.support-wrap .img-box {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
    aspect-ratio: 5/3;
    background-color: #ccc;
}
.support-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.support-wrap .col {
    flex: 0 1 50%;
}
.support-wrap .info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 55px;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .support-wrap {
        flex-direction: column;
    }
    .support-wrap .info {
        padding-left: 0;
        margin-top: 35px;
    }
}
.history-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 3vw, 45px);
    margin-inline: clamp(50px, 5vw, 100px);
}
.history-wrap h5 {
    width: 40%;
    font-size: clamp(36px, 3vw, 64px);
    line-height: 1;
    font-weight: 600;
    color: #87b8ef;
}
.history-wrap li {
    display: flex;
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: clamp(7px, 3vw, 12px);
    padding-left: 20px;
}
.history-wrap li b {
    flex-shrink: 0;
    display: inline-block;
    width: 45px;
    color: var(--page-point-color);
    font-weight: 700;
}
.history-wrap .col {
    display: flex;
    border-top: 1px solid #e6e6e6;
    padding-top: clamp(30px, 3vw, 50px);
}

.history-wrap .col.ani.on {
    --delay: 0.25s;
    animation: ani_upper 1s ease var(--delay) both;
}

.history-wrap .col.ani.on + .col.ani {
    animation-delay: calc(var(--delay) + 0.25s) !important;
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .history-wrap {
        margin: 0;
    }
    .history-wrap li {
        padding-left: 0;
    }
    .history-wrap h5 {
        width: fit-content;
        margin-bottom: 20px;
    }
    .history-wrap .col {
        flex-direction: column;
    }
}

.table-style :is(tbody, thead) tr :is(th, td) {
    border-color: #ddd;
    text-align: center;
    padding: 12px;
    vertical-align: middle;
}

.table-style > thead > tr > th {
    border-bottom: 0;
}

/* =================================== widget =================================== */
/* 위젯 */
[class^="board_box"] {
    margin-bottom: 0 !important;
}

.page-header {
    margin-top: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}

.page-header h4 {
    display: inline-block;
    font-size: clamp(18px, 3vw, 22px);
}

.page-header a.pull-right i::before {
    position: relative;
    display: block;
    content: "\e145";
    translate: 0 2px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-wght-300-out);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 500;
    color: #000;
}

.type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.type_list :is(li) {
    padding: 0;
}

.type_list :is(a):hover {
    text-decoration: underline;
}

.type_list :is(li, a) {
    line-height: 1;
    font-size: clamp(14px, 3vw, 16px);
    color: #000;
}

.type_list .info span:not(.regdate) {
    display: none;
}

.type_thumb {
    display: grid;
    grid-template-columns: var(--grid-repeat-2);
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}

.type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}

.type_thumb .inner .bottom {
    padding: 0;
}

.type_thumb .inner .bottom .info {
    display: none;
}

.type_thumb .inner .bottom .title {
    padding: 0;
    margin-top: 5px;
}

.type_thumb .bottom .title a {
    font-size: clamp(15px, 3vw, 17px);
}

.type_thumb .inner .top a .thumb {
    aspect-ratio: 5/3;
    height: auto;
}

/* =================================== board, bbs =================================== */
:is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: none;
    visibility: hidden;
}

.board_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0;
}

/* 리스트 게시판 제목 flex*/
.board_wrapper td.subject span {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* 등록된 게시글이 없습니다. custom */
.board_wrapper tbody {
    position: relative;
}

.board_wrapper td.no_post {
    z-index: -1;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
}

/* 게시글 검색 */
.search_wrap #search_kind {
    line-height: 1;
}

@media (width >= 768px) {
    .search_wrap #search_kind {
        width: 110px;
    }
}

/* 게시글 작성 버튼*/
.search_wrap .write_btn_wrap {
    margin-top: 0;
}

#bbsArea .board_wrapper .table.board_write_table > :where(tbody, tfoot, thead) > tr > :where(th, td) {
    border-bottom: 0;
}

#bbsArea {
    gap: 0;
}

#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    visibility: visible;
    margin-top: 0;
}

#bbsArea .board_wrapper [class*="wrap"] {
    margin: 0;
}

#bbsArea .board_wrapper .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

#bbsArea .board_wrapper .option_wrap .list_btn_wrap {
    position: static;
}

#reply_write .btn_wrap {
    margin-top: 0.75em !important;
}

#reply_list .media .media-body .info .btn {
    all: unset;
    cursor: pointer;
}

/* 카테고리 / 분류 */
.category_wrap {
    margin-bottom: 50px;
}

.category_wrap ul {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}

.category_wrap li {
    margin: 0 !important;
}

.category_wrap li a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}

.category_wrap li a:hover {
    color: #111;
}

.category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}

/* 뱃지 */
.badge {
    display: inline-flex;
    translate: 0 0px;
    background-color: #000;
    border-radius: 0;
    padding: 4px 7px;
    margin-right: 0px !important;
}

/* 공지사항 */
.board_wrapper tr.notice {
    background-color: #f7f7f7;
}

.board_wrapper tr.notice td.subject a {
    font-weight: 500;
    color: #000 !important;
}

.board_wrapper tr.notice td.cate span {
    display: none;
}

.board_wrapper tr.notice td.cate::before {
    content: "공지";
    color: #222;
}

/* 게시글 아이콘 잠금/댓글 */
.board_wrapper td.subject .is_secret {
    order: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.board_wrapper td.subject small {
    margin-top: 0 !important;
}

/* 잠금 아이콘 */
.board_wrapper td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
}

/* 댓글 아이콘*/
.board_wrapper td.subject small.comment {
    opacity: 0.8;
    order: 1000;
    translate: 0 -1px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--page-point-color-dark) !important;
    font-weight: 700;
}
.board_wrapper td.subject small.comment::before {
    content: "[";
}
.board_wrapper td.subject small.comment::after {
    content: "]";
}
.board_wrapper td.subject small.comment i {
    display: none;
}

/* 블로그 동영상 상품 */
/* 컬럼개수 설정 */
.table_pd {
    --board-template-columns: 4;
}

:is(.table_video, .table_blog2) {
    --board-template-columns: 3;
}

@media (width <= 767px) {
    :is(.table_video, .table_blog2) {
        --board-template-columns: 2;
    }
}

@media (width <= 575px) {
    :is(.table_video, .table_blog2) {
        --board-template-columns: 1;
    }
}

.board_wrapper .no_content {
    grid-column: span var(--board-template-columns);
}

:is(.table_video, .table_blog2, .table_pd) {
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), var(--grid-1fr));
    margin-left: 0;
    margin-right: 0;
    gap: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}

/* 등록된 [상품/게시글]이 없습니다 문구 */
:is(.table_video, .table_blog2, .table_pd) dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}

:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
}

:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}

:where(.table_video, .table_blog2, .table_pd) .inner .top a .thumb {
    aspect-ratio: 5/3;
    width: 100%;
    height: auto;
    background-size: cover;
}
:where(.table_video, .table_blog, .table_blog2, .table_pd) span.thumb {
    display: none !important;
}
:where(.table_video, .table_blog, .table_blog2, .table_pd) img.thumb {
    display: block;
}
:is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}

:is(.table_video, .table_blog2) dd .inner .bottom {
    margin-top: 15px;
    padding: 0;
}

:is(.table_video, .table_blog2) dd .inner .bottom {
    padding: 0;
}

:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 0;
    padding: 0;
}

:is(.table_video, .table_blog2) dd :is(.inner .bottom) .title a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
}

:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info span {
    padding: 0;
}

/* 댓글 */
#bbsArea .reply_wrap h4 {
    text-align: left;
    font-size: clamp(15px, 3vw, 17px);
}

/* 검색 */
#bbsArea .board_wrapper + :is(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}

#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 30px;
}

#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0 !important;
}

#item_agree label,
#item_email .text-muted {
    font-size: 1rem;
}

:is(.member_wrapper, .board_wrapper) .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

:is(.member_wrapper, .board_wrapper) .text-center :is(.btn.btn-lg, .btn + .btn) {
    min-width: 200px;
}

:is(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0;
}

.form-control {
    padding: 0.8rem 0.85rem !important;
}

.form-control[type="file"] {
    line-height: 2.9;
    padding: 0 0.8rem !important;
}

.wr_form_item input.form-control {
    background-color: transparent;
    padding-left: 0;
}

.btn#File_add {
    padding: 0 !important;
}

.btn#File_add .fa-plus {
    line-height: 0;
}

@media (width >= 768px) {
    .files_upload_wrap {
        gap: 15px;
    }
}

.form-control[type="file"] {
    margin: 0;
}

.board_wrapper .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
    width: 100%;
}

/* member */
.member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .table tbody tr :is(th, td) {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}

.member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.member_wrapper .join_agree_box + .checkbox {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0.75em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 5vw, 15px);
}
.member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0 !important;
}
.member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.member_wrapper .join_agree_box + .checkbox > a {
    color: #1c54e4;
    font-weight: 500;
}

.member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}

.table_blog dd::after,
.table_blog dd .right .info {
    display: none;
}

.table_blog dd {
    cursor: pointer;
    display: flex;
    gap: 35px;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding: 50px 0px;
}
.table_blog dd:hover {
    background-color: transparent;
}

.table_blog dd a {
    font-weight: 500;
}

.table_blog dd:hover .right .title a,
.table_blog .right .title a:where(:hover, :focus) {
    color: var(--page-point-color);
}

.table_blog dd .right {
    display: flex;
    flex-direction: column;
    gap: 5px 15px;
    align-items: flex-start;
    width: auto;
    flex: 1;
}

.table_blog dd .right .info {
    justify-content: flex-end;
    align-items: center;
    align-self: center;
    grid-column: 2;
    grid-row: span 2;
    margin-bottom: 0;
}
.table_blog dd .right .info :is(.writer, .hits) {
    display: none;
}
.table_blog .right .title > a {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 22px;
}
.table_blog dd .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.table_blog dd .right .text p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
}
.table_blog dd .left {
    flex: 0 1 auto;
    width: 200px;
}

.table_blog dd .left a .thumb {
    aspect-ratio: 5/3;
    width: 100%;
    height: auto;
}

.table_blog dd :where(.left, .right) {
    width: auto;
    height: auto;
}

@media (width <= 767px) {
    .table_blog dd {
        flex-direction: column;
        gap: 0;
    }
    .table_blog .left {
        padding-left: 0 !important;
    }
    .table_blog dd .right {
        padding-top: 0 !important;
    }
    .table_blog dd .right .text p {
        line-height: 1.5;
    }
    .table_blog dd .left {
        width: 100%;
        margin-right: 0;
    }
}

.table.table_default {
    margin-bottom: 0;
}

.table.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: clamp(15px, 3vw, 16px);
    color: #333;
}

.table.table_default tr :is(th, td) {
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #ddd;
}

.table.table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
}

.table_default {
    border-top: 1px solid #333;
}

.table.table_default tr td {
    color: #777;
}

.table.table_default tr td:only-child {
    display: table-cell;
}

.board_wrapper .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}
.board_wrapper .table.board_write_table .checkbox {
    margin: 0;
}
.board_wrapper .table.board_write_table .checkbox label {
    font-size: 1rem;
}

.text-muted {
    margin-top: 8px !important;
}

/* wrapper */
.board_wrapper .table.board_write_table .files .fileInput {
    flex-wrap: nowrap;
}
.board_wrapper .table.board_write_table .files .fileInput input {
    width: 100%;
}
.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}

.board_wrapper .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

.board_wrapper .table.board_write_table tbody tr th {
    background-color: transparent;
    font-weight: 700;
    font-size: 1.1rem;
}
.board_wrapper .table.board_write_table tbody tr td {
    padding-top: 15px;
    padding-bottom: 15px;
}
.board_data_view {
    border-top: 1px solid #333;
}

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
}
/* =================================== form =================================== */
#item_agree .checkbox {
    margin-top: 0;
}

:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}

:is(.checkbox label, .radio label) {
    letter-spacing: 0;
}

.custom_checkbox + span a {
    font-weight: 500;
    color: #1b54e4;
    text-decoration: underline;
}

:is(.custom_checkbox, .custom_radio) + span::before {
    color: var(--page-point-color);
    margin-left: 0;
}

.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    position: static;
    margin-top: 0;
    margin-left: 0;
    margin-right: 5px;
}
:is(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
:is(.checkbox-inline, .radio-inline) {
    margin-top: 0 !important;
    padding-left: 0;
    /* margin-left: 0 !important; */
}
/* 폼 초기화 */
.board_wrapper > form[id*="form"] > fieldset > :is(table.table),
.board_wrapper > form[id*="form"] > fieldset > :is(table.table) > tbody > tr > :is(th, td) {
    padding: unset;
    width: unset;
    height: unset;
    border: 0;
    line-height: 1;
}

#site .board_wrapper form[id*="form"] table {
    width: 100%;
}

#site .board_wrapper form[id*="form"] table tbody {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    align-items: stretch;
}

#site .board_wrapper form[id*="form"] table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 8fr);
    align-items: center;
    gap: 20px;
    padding-inline: 5px;
    padding-block: clamp(18px, 3vw, 25px);
}
#site .board_wrapper form[id*="form"] table tbody tr:first-child {
    border-top: 1px solid #333;
}
#site .board_wrapper form[id*="form"] table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}
#site .board_wrapper form[id*="form"] th {
    font-weight: 600;
    display: flex;
    /* flex-wrap: wrap; */
    /* justify-content: flex-end; */
    /* flex-direction: row-reverse; */
}

#site .board_wrapper .table.board_write_table tbody tr th > span.required_text {
    position: static;
    margin-right: 3px;
    margin-left: 0;
    margin-top: -0.15em;
}

#site .board_wrapper .form-control {
    /* border-radius: 0; */
}
#site .board_wrapper .wr_caution i,
#site .board_wrapper .form-caption i {
    color: var(--page-point-color);
}
/* input 커스텀 */
#site .board_wrapper input.form-control:not(.hasDatepicker, #wr_captcha, [type="file"]) {
    /* width: 100%; */
    /* border-left: 0; */
    /* border-right: 0; */
    /* border-top: 0; */
    /* height: auto; */
    /* padding: 0 0 7px 0px !important; */
}
/* =================================== popup =================================== */
#mainPopup {
    position: relative;
    top: calc(var(--navbar-height) - 140px);
}

.main_popup {
    border: 0;
    border-radius: 0;
    background-color: transparent !important;
}

.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
}

.main_popup_optional :is(label, div) {
    opacity: 0.8;
}

.main_popup_optional :is(label, div):is(:hover, :focus) {
    opacity: 1;
}

.main_popup_optional :is(label, div, span) {
    float: unset !important;
    line-height: 1;
}

.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 400;
}

.main_popup_optional label span.material-symbols-outlined {
    font-size: 1.25rem;
    margin-right: 2px;
}

.main_popup button.close {
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
}

.main_popup span.material-symbols-outlined {
    font-variation-settings: var(--gms-wght-100-out);
    font-size: inherit;
}

.main_popup_contents {
    overflow: hidden;
    padding: 10px;
    background: #fff;
}

.main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =================================== 로그인 =================================== */
/* 공통 */
:is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px !important;
}

:is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #f7f7f7;
}

:is(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--navbar-height));
}

@media (height <= 761px) {
    :is(#find_idpw, .login_wrapper) {
        height: auto;
    }
}

:is(.find_container, .login_container) .container {
    width: 100%;
}

.join_wrapper .member_wrapper {
    width: auto;
}

:is(.find_container, .join_container, .join_write_container, .login_container) .form-group {
    height: 45px;
}

:is(.find_container, .join_container, .join_write_container, .login_container) .member_wrapper {
    padding: 50px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: inherit;
    background: #fff;
}

/* 로그인/찾기 */
:is(.find_container, .login_container) .member_wrapper {
    width: 400px;
    margin: 0 auto;
}

.member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}

.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}

.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px !important;
}

.member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-wght-400-out);
    font-size: 1.25rem;
    color: #000;
}

.member_wrapper .form-group > label:nth-child(1) {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}

.member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}

.member_wrapper :is(#login_form, fieldset) {
    display: flex;
    flex-direction: column;
}

.member_wrapper :is(#login_form, #login_form input) {
    font-size: clamp(13px, 3vw, 14px);
}

.member_wrapper #login_form input {
    border: 0;
    padding-left: 0 !important;
}

.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 14px);
}

.member_wrapper h1 {
    font-size: clamp(28px, 3vw, 34px);
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}

.member_wrapper .login_extra ul li > a {
    font-size: clamp(13px, 3vw, 14px);
}

.member_wrapper .login_extra ul li + li {
    margin-left: 0;
}

.member_wrapper .login_extra ul li + li::before {
    content: none;
}

.member_wrapper .login_extra {
    margin-top: 30px;
}
:is(.privacy_container, .agreement_container) {
    text-align: left;
}

:is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}

:is(.privacy_container, .agreement_container) .privacy_body {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
}

/* 자동입력방지코드 */
#captcha {
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: 40px;
    border-color: transparent !important;
}
#captcha + br {
    display: none;
}
#wr_captcha {
    margin-top: 0 !important;
}

/* =================================== mobile default =================================== */
/* bbs, etc */
@media (width <= 767px) {
    .member_wrapper {
        padding: 70px 15px;
    }

    .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }

    .table_default .subject {
        width: 100%;
    }
    .table_default .status {
        width: 35%;
    }

    .member_wrapper #join_form .table :is(.input-group.input-group-big, .form-control.form-control-big),
    .board_wrapper .table.board_write_table :is(.input-group.input-group-big, .form-control.form-control-big, tbody tr td .btn, tbody tr td .form-control, .input-group.input-group-big, .form-control.form-control-big) {
        width: 100%;
    }

    .search_wrap {
        margin-bottom: 0 !important;
    }

    .board_data_view .download_wrap tr {
        display: flex;
        flex-direction: column;
    }

    .board_data_view .download_wrap tr > * {
        width: 100%;
    }

    .board_data_view .download_wrap tr th {
        padding-bottom: 10px;
    }

    .board_data_view .download_wrap tr li a {
        word-break: break-all;
    }

    .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }

    :is(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 0;
        margin-bottom: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    :is(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }

    :is(.member_wrapper, .board_wrapper) .text-center :is(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }

    .table.table_responsive tbody tr th {
        padding: 0px !important;
        margin-bottom: 15px;
        margin-left: 0 !important;
    }

    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 100px 0;
        min-height: calc(100svh - var(--navbar-height));
    }

    :is(.find_container, .join_container, .login_container) .member_wrapper {
        padding: 70px 25px 70px;
    }

    :is(.find_container, .join_container, .login_container) {
        width: 100%;
        padding: 0 15px;
    }

    .member_wrapper {
        width: 100% !important;
        margin: 0 !important;
    }

    .member_wrapper .form-group div:last-child {
        width: 100%;
    }

    .member_wrapper {
        padding-top: 50px;
    }

    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .member_wrapper .login_extra ul li + li::before {
        content: none;
    }

    .member_wrapper .table,
    .member_wrapper .table :where(tbody, tbody tr) {
        display: block !important;
        width: 100% !important;
    }

    .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2vw, 17px);
    }

    .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }

    .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }

    .member_wrapper .table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .member_wrapper .table .files .fileInput input {
        width: auto;
    }

    .member_wrapper .table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }

    .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    .member_wrapper #join_form th {
        padding: 10px 20px !important;
    }
    .member_wrapper #join_form td {
        display: flex !important;
        padding-left: 0;
        padding-right: 0;
        gap: 5px;
    }
    .member_wrapper #join_form td input:not(#mb_mailing) {
        width: 100% !important;
    }
    .member_wrapper #join_form tr:last-child td {
        display: block !important;
    }
}

/* 날짜선택 타임피커 */
#site .bootstrap-timepicker-widget {
    display: none !important;
}
#site .bootstrap-timepicker {
    display: inline-flex;
    gap: 15px;
}
.ui-datepicker {
    padding: 0;
    border: none;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 300px;
    border-radius: 7px !important;
    overflow: hidden;
}
.ui-corner-all {
    border-radius: 0;
}

.ui-widget-header {
    border: 0;
}

.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: var(--page-point-color);
    padding-bottom: 15px;
    color: #fff;
}

.ui-datepicker .ui-datepicker-header::before,
.ui-datepicker .ui-datepicker-header::after {
    content: none;
}

.ui-datepicker-header :is(.ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-title) {
    position: static;
    border: none;
    outline: none;
    margin: 5px;
}
.ui-datepicker-header :is(.ui-datepicker-prev, .ui-datepicker-next) {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ui-datepicker-header :is(.ui-datepicker-prev, .ui-datepicker-next)::before {
    font-family: var(--gms);
    color: #fff;
    font-size: 20px;
}

.ui-datepicker-header .ui-datepicker-prev {
    order: 1;
}
.ui-datepicker-header .ui-datepicker-prev::before {
    content: "\e408";
}
.ui-datepicker .ui-datepicker-title {
    order: 2;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.ui-datepicker .ui-datepicker-title option {
    font-size: 0.8em;
    color: #000;
}

.ui-datepicker-header .ui-datepicker-next {
    order: 3;
}

.ui-datepicker-header .ui-datepicker-next::before {
    content: "\e409";
}
.ui-datepicker :is(.ui-datepicker-prev, .ui-datepicker-next) span {
    display: none;
}
.ui-datepicker table {
    width: auto;
    margin: 7px 15px 15px;
}

.ui-datepicker-prev.ui-state-hover,
.ui-datepicker-next.ui-state-hover {
    border: none;
    outline: none;
    background: transparent;
}

.ui-datepicker-calendar .ui-state-default {
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(20px, 3vw, 30px);
    font-size: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-inline: auto;
}
.ui-datepicker-calendar .ui-state-hover {
    background-color: #eee;
    font-weight: 600;
}
.ui-datepicker-calendar .ui-state-highlight {
    color: var(--page-point-color);
    font-weight: 700;
}
.ui-datepicker-calendar .ui-state-active {
    background-color: var(--page-point-color);
    font-weight: 700;
    color: #fff !important;
}
.ui-datepicker-calendar thead th {
    color: #888;
    font-weight: 200;
    font-size: 1em;
}
.ui-datepicker-week-end:last-child a {
    color: rgb(0, 132, 255);
}
.ui-datepicker-week-end:first-child a {
    color: rgb(224, 0, 0);
}
.ui-datepicker-buttonpane {
    border: none;
}
.ui-datepicker-buttonpane .ui-state-default {
    background: white;
    border: none;
}
.ui-datepicker-buttonpane :is(.ui-datepicker-close, .ui-datepicker-current) {
    background: white;
    color: var(--page-point-color);
    text-transform: uppercase;
    border: none;
    opacity: 1;
    font-weight: 200;
    outline: none;
}
.ui-datepicker-buttonpane :is(.ui-datepicker-close, .ui-datepicker-current) :hover {
    background: #b4cbe5;
}

@media (width <= 767px) {
    .ui-datepicker {
        width: auto;
        left: 5px !important;
        right: 5px !important;
    }
    .ui-datepicker table {
        table-layout: fixed;
        width: 100%;
        margin: 0px;
    }
}

/* 주문폼 리셋*/
/* 접수내역 숨김 */
:is(.form-wrap, form) #list_btn {
    display: none;
}

/* 게시글 리셋*/
.board_data_view .contents_wrap {
    padding-left: 0;
    padding-right: 0;
}
.board_data_view .contents_inner {
    font-size: 14px;
}
.board_data_view .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}

.board_data_view .contents_wrap :is(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside !important;
}

.board_data_view .contents_wrap ul li {
    list-style-type: disc !important;
}

.board_data_view .contents_wrap ol li {
    list-style-type: decimal !important;
}

/* 추가 css */
