@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=block");
@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: "Pretendard Variable", sans-serif;
    /* navbar */
    --navbar-height: 90px;
    /* font-size default (desktop / mobile)*/
    --page-font-size: 14px;
    /* page global color */
    --page-point-color: #ff4141;
    --page-point-color-dark: #d60606;
    --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;
}

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.02em;
}

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);
    }
}

.lang-wrap {
    padding: var(--dropdown-padding);
    display: flex;
}
.lang-wrap > .lang-change-btn {
    border: 0;
    padding: 0;
    background: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 17px 0 0;
    position: relative;
    color: #d9d9d9;
}
.lang-wrap > .lang-change-btn:nth-child(2) {
    margin: 0;
}
.lang-wrap > .lang-change-btn:first-child::after {
    content: "";
    display: block;
    width: 1px;
    height: 11px;
    background: #ccc;
    position: absolute;
    top: 39px;
    right: -11px;
}
.lang-wrap > .lang-change-btn.active {
    color: var(--page-point-color);
}

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

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

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

: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;
}

/* =================================== navbar =================================== */
/* 공통 */
#gnbauth i {
    display: none;
}

.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;
}

/* 상단 메뉴 */
.navbar {
    /* --navbar-transition: 0.3s; */
    --navbar-point-color: #29a0ff;
    /* 메인메뉴 .navbar ul.navbar-right > li > a*/
    --dropdown-padding: 0px clamp(28px, 2vw, 35px);
    --dropdown-font-size: clamp(17px, 2vw, 18px);
    /* 서브메뉴 .navbar ul.navbar-right .dropdown-menu */
    --dropdown-menu-padding: 13px clamp(15px, 2vw, 25px);
    --dropdown-menu-font-size: clamp(13px, 2vw, 15px);
    /* 로고 */
    --navbar-logo-width: clamp(90px, 15vw, 110px);
    position: fixed;
    background: #fff;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0);
    margin-bottom: 0;
    border: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
}

/* nav 로고 */
.navbar a:is(.navbar-brand, .navbar-brand:hover, .navbar-brand:focus) {
    width: var(--navbar-logo-width);
    height: auto;
    margin: 5px 0 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);
    letter-spacing: -0.02em;
}

/* nav 대메뉴 클릭&후버 시 */
.navbar ul.navbar-right > li > a:is(:hover, :focus),
.navbar ul.navbar-right > li:is(:hover, :focus) .dropdown-toggle {
    background: none !important;
    color: #2196f3 !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,
.navbar ul.navbar-right > li.open > ul.dropdown-menu > li > a:focus {
    background: var(--navbar-point-color);
    color: #fff;
}

/* desktop */
@media (width >= 768px) {
    /* navbar BS5 */
    .navbar {
        height: var(--navbar-height);
    }

    .navbar,
    .navbar > .container {
        align-items: stretch;
    }

    .navbar > .container {
        flex-wrap: nowrap;
    }

    .navbar ul.navbar-right {
        height: 100%;
        flex-flow: row nowrap;
        justify-content: flex-end;
    }

    .navbar :is(ul.navbar-right, ul.navbar-right > li) {
        float: unset !important;
    }

    .navbar :is(ul.navbar-right, ul.navbar-right > li > a) {
        display: flex;
    }

    /* nav 대메뉴 */
    .navbar ul.navbar-right > li > a {
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: var(--dropdown-padding);
    }

    /* nav 서브메뉴 dropdown-menu  */
    .navbar ul.navbar-right ul.dropdown-menu {
        /* top: calc(50% + 30px); */
        left: 50%;
        right: auto;
        translate: -50% 0;
        border-radius: 0 !important;
        border: 0;
        /* padding: 10px 0; */
        text-align: center;
        /* dropdown transition 23-06-02 */
        display: block !important;
        overflow: hidden;
        height: 0;
        opacity: 0;
        transform-origin: center top;
        scale: 1 0.7;
        padding: 0;
    }

    .navbar ul.navbar-right li.open ul.dropdown-menu {
        transition: 0.2s;
        height: auto;
        opacity: 1;
        scale: 1 1;
    }

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar ul.navbar-right ul.dropdown-menu > li > a {
        padding: var(--dropdown-menu-padding);
        line-height: 1;
    }
}

/* mobile */
@media (width <= 767px) {
    :root {
        --navbar-height: 70px;
    }

    .navbar {
        --dropdown-height: 50px;
        --dropdown-margin: 0px 15px;
        --dropdown-menu-height: 45px;
        --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 {
        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 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;
        width: 100%;
        height: var(--navbar-height);
        margin: 0 !important;
        border-bottom: 1px solid #ddd;
        background-color: #fff;
        position: relative;
    }
    .lang-wrap{
        position: absolute;
        right: 50px;
    }
    .lang-wrap > .lang-change-btn:first-child::after{
        top: 5px;
    }
  
    /* 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;
    }

    /* 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: 15px !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 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0px;
    padding: 0 0 35px;
    border-top: 1px solid #ddd;
}

footer .footer-menu {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    column-gap: 35px;
}

footer .footer-menu a {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    display: block;
    padding: 17px 0;
}
footer .footer-menu a:hover {
    color: #2196f3;
}
footer .footer-wrap {
    display: flex;
    align-items: flex-end;
}
.footer-top {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.footer-menu li {
}

/* left logo */
footer .footer-logo img {
    opacity: 0.5;
    margin-right: 30px;
}

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

footer .footer-info li {
    font-size: clamp(13px, 2vw, 14px);
}

footer .footer-info li.corp {
    margin-bottom: 5px;
    font-size: 15px;
}

footer .footer-info li.corp strong {
    font-weight: 500;
}

footer .footer-info li.copyright {
    margin-top: 7px;
    color: #999;
    font-size: 12px;
}

footer .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background: transparent;
    color: #555;
    line-height: 1;
    border-radius: 0;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: clamp(11px, 2vw, 12px);
}

footer .login-btn:hover {
    background: #333;
    color: #fff;
    border-color: var(--backgorund-color);
    font-weight: 500;
}

footer .login-btn span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-wght-500-out);
}

#scrollTop {
    --width: 54px;
    --bottom: 25px;
    z-index: 1000;
    position: fixed;
    right: 25px;
    bottom: var(--bottom);
    display: none;
    width: var(--width);
    padding: 0;
    background: var(--page-point-color);
    /* border: 1px solid #666; */
    border-radius: 50%;
    aspect-ratio: 1;
    text-align: center;
    color: #fff;
}

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

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

/* mobile footer*/
@media (width <= 767px) {
    footer .footer-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    footer .footer-login {
        margin-left: inherit;
    }

    footer .footer-menu {
        column-gap: 25px;
    }
    footer .footer-menu a {
        font-size: 14px;
        padding: 12px 0;
    }

    #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_wrapper #mainCarousel :is(.item, .swiper-slide) {
    height: 850px;
}

#main_wrapper #mainCarousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

@media (min-height: 900px) {
    #main_wrapper #mainCarousel :is(.item, .swiper-slide) {
        height: calc(100vh - var(--navbar-height));
    }
}

@media (width <= 767px) {
    #main_wrapper #mainCarousel :is(.item, .swiper-slide) {
        height: 700px;
    }
}

#mainCarousel .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.3;
}
#mainCarousel .item:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.35;
}

/* caption */
.carousel-caption {
    top: 28%;
    transform: none;
    bottom: inherit;
    right: clamp(5%, 20vw, 20%);
    left: clamp(5%, 20vw, 20%);
    padding: 0 10px;
    text-shadow: none;
    text-align: left;
}

.carousel-caption h1 {
    position: relative;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

.carousel-caption h1 .corp {
    display: block;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
    margin-inline: 3px;
    letter-spacing: 0.05em;
}

.carousel-caption p {
    margin-top: 25px;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.034em;
}

@media (width <= 767px) {
    .carousel-caption {
        top: unset;
        bottom: 320px;
        right: 5%;
        left: 5%;
        text-align: center;
        padding: 0;
    }
}

/* control */
#site [class*="swiper-button"],
.carousel-control {
    display: flex;
    align-items: center;
    opacity: 1;
    width: 10%;
    height: 100%;
}

#site [class*="swiper-button"] {
    margin-top: 0;
    top: 0;
}

@media (width <= 767px) {
    .carousel-control {
        display: none;
    }
}

.carousel-control:is(.right, .left) {
    background: transparent;
    justify-content: center;
}

.carousel-control.right span {
    margin-right: 0;
}

.carousel-control.left span {
    margin-left: 0;
}

[class*="swiper-button"]::after {
    content: none !important;
}

:is(.glyphicon[class*="glyphicon-chevron"], [class*="swiper-button"])::before {
    color: #fff;
    font-family: var(--gms) !important;
    font-variation-settings: var(--gms-wght-100-out);
}

:is(.glyphicon.glyphicon-chevron-right, .swiper-button-next)::before {
    content: "\e5e1" !important;
}

:is(.glyphicon.glyphicon-chevron-left, .swiper-button-prev)::before {
    content: "\e2ea" !important;
}

[class*="swiper-button"]::before,
.carousel-control :is([class*="glyphicon-chevron"], [class*="icon"]) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: clamp(40px, 5vw, 64px);
}

/* indicators */
#site .swiper-pagination,
.carousel-indicators {
    width: auto;
    bottom: 40px;
}
#site .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
}
.swiper-pagination span,
.carousel-indicators :is(li, li.active) {
    aspect-ratio: 1/1;
    width: clamp(8px, 2vw, 11px);
    height: auto;
    border: 0;
    border-radius: 50%;
    margin: 0 5px;
    backdrop-filter: blur(10px);
}

.swiper-pagination .swiper-pagination-bullet,
.carousel-indicators li {
    opacity: 1;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition: ease-in-out 0.15s all;
}

.swiper-pagination .swiper-pagination-bullet-active,
.carousel-indicators li.active {
    background: #fff;
    box-shadow: none;
}

/* =================================== mainpage common =================================== */
/* section */
.mainpage {
    height: 0;
}
.mainpage section {
    position: relative;
    padding-top: clamp(80px, 10vw, 100px);
    padding-bottom: clamp(80px, 10vw, 120px);
}

.mainpage h3 {
    font-size: clamp(36px, 5vw, 50px);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

@media (width <= 767px) {
}

.main-service {
    padding: 0 !important;
    /* position: absolute !important; */
    /* bottom: 150px; */
    transform: translateY(-210px);
    width: 100%;
}
@media (width <= 767px) {
    .main-service {
        transform: translateY(-270px);
    }
}
.service-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* padding: 0 40px; */
}

@media (width <= 767px) {
    .service-wrap {
        grid-template-columns: var(--grid-1fr);
        gap: 0;
    }
}

.service-wrap span.material-symbols-outlined {
    z-index: 10;
    font-variation-settings: var(--gms300_Out);
    font-size: 32px;
    margin-right: 10px;
    opacity: 0.7;
    margin-bottom: 1px;
}

.service-wrap .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    /* color: #ff8009; */
    /* background: rgba(0, 0, 0, 0.5); */
    /* backdrop-filter: blur(5px); */
    position: relative;
    transition: all 0.3s ease;
}

.service-wrap .item p {
    z-index: 10;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.75;
}
.service-wrap .item::after {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    opacity: 0;
    transition: all 0.4s ease;
}

@media (hover: hover) {
    .service-wrap .item:where(:hover, :focus) {
        color: var(--page-point-color);
        color: #fff;
    }
    .service-wrap .item:hover p {
        opacity: 1;
    }

    .service-wrap .item:hover span {
        opacity: 1;
    }
    .service-wrap .item:hover::after {
        width: 100%;
        opacity: 1;
        left: 0;
    }
}

@media (width <= 767px) {
    .service-wrap .item p {
        opacity: 1;
    }

    .service-wrap .item span {
        opacity: 1;
    }
    .service-wrap .item::after {
        width: 100%;
        opacity: 0.5;
        left: 0;
    }
}
/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    --bg-image: url(/public/img/sub/sub-top01.jpg);
    --bf-bg-color: rgba(0, 0, 0, 0.1);
    position: relative;
    height: clamp(200px, 30vw, 360px);
    background: var(--bg-image) no-repeat center / cover;
}

/* background */
/* .subpage-header.visual01 {
    --bg-image: url(/public/img/sub/sub-top01.jpg);
} */

/* .subpage-header.visual02 {
    --bg-image: url(/public/img/sub/sub-top02.jpg);
} */

/* .subpage-header.visual03 {
    --bg-image: url(/public/img/sub/sub-top03.jpg);
} */

/* .subpage-header.visual04 {
    --bg-image: url(/public/img/sub/sub-top04.jpg);
} */

/* .subpage-header.visual05 {
    --bg-image: url(/public/img/sub/sub-top05.jpg);
} */

.subpage-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bf-bg-color);
}

.subpage-header .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.subpage-header .subpage-title h2 {
    line-height: 1;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: clamp(40px, 5vw, 46px);
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 30px 0 40px 0;
    display: flex;
    gap: 25px;
}
.breadcrumb li.home a {
    line-height: 1;
}
.breadcrumb li.home a::before {
    content: "HOME";
}

.breadcrumb > li {
    position: relative;
    font-size: 0.85rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(13px, 3vw, 15px);
}

.breadcrumb > li.active {
    color: #fff;
}

.breadcrumb > li + li:before {
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: -24px;
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 4px;
}

@media (width <= 767px) {
    .breadcrumb {
        margin-top: 20px;
        margin-bottom: 0;
    }
}

/* =================================== snb =================================== */
.snb {
    --snb-height: 70px;
    position: relative;
    z-index: 500;
    margin-top: -70px;
}
#snbInner {
    background: #fff;
    max-width: 1200px;
    padding: 0 45px;
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
    border-bottom: 1px solid #ddd;
}

.snb li {
    flex: 0 1 15%;
}

.snb li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: clamp(16px, 10vw, 18px);
    height: var(--snb-height);
    color: #888;
    font-weight: 500;
}

.snb li.active a {
    background: #fff;
    font-weight: 700;
    color: #000;
}

.snb li > a::after {
    content: "";
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    position: absolute;
    background: var(--page-point-color);
    transform: translateX(-50%);
    transition: 0.3s;
}

@media (width >=768px) {
    .snb li.active a::after,
    .snb li:hover a::after {
        width: 100%;
        transform: translateX(-50%);
    }
}

/* mobile 드롭다운*/
@media (width <= 767px) {
    .snb {
        margin-top: 0;
        --snb-height: 50px;
    }
    .snb ul {
        border-bottom: 0;
    }
    .snb .container {
        padding: 0;
    }
    #snbInner {
        padding: 0 0px;
    }
    #snbInner > ul > li:not(.dropdown) {
        display: none;
    }
    .snb .hidden {
        display: flex !important;
    }
    .snb .open .dropdown-menu li a:is(:hover, :focus) {
        background-color: inherit !important;
        color: inherit !important;
    }
    .snb .dropdown {
        position: relative;
        width: 100%;
        flex-basis: 100%;
    }
    .snb .dropdown-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        display: none;
        padding: 0;
        flex-direction: column;
        min-width: unset;
        padding: 20px 20px;
        gap: 20px;
        border-top: 0;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
        /* dropdown transition 23-06-02 */
        display: block !important;
        overflow: hidden;
        height: 0;
        opacity: 0;
        transform-origin: center top;
        scale: 1 0.7;
    }

    .snb .open .dropdown-menu {
        /* dropdown transition 23-06-02 */
        display: flex !important;
        transition: 0.2s;
        height: auto;
        opacity: 1;
        scale: 1 1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    }
    .snb .open .dropdown-menu li a {
        padding: 0;
        font-size: 16px;
        height: auto;
        justify-content: flex-start;
    }
    .snb .open .dropdown-menu li.active a {
        font-weight: 500;
        text-decoration: underline;
        text-underline-offset: 4px;
    }
    .snb .dropdown-toggle {
        padding: 0 20px;
        justify-content: space-between;
        font-size: 17px;
        background-color: var(--page-point-color);
        color: #fff;
    }
    .snb .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;
    }

    .snb .open .dropdown-toggle {
        color: #fff;
        font-weight: 600;
    }

    .snb .open .dropdown-toggle::after {
        content: "\e5ce";
        color: #fff;
        font-variation-settings: var(--gms-wght-400-out);
    }
    /* .snb {
        margin-top: 0;
        padding: 15px 0;
        height: auto;
        background-color: #eee;
    }
    .snb ul {
        flex-direction: column;
        gap: 3px;
    } */
}

/* =================================== subpage =================================== */
.subpage section {
    padding: clamp(70px, 10vw, 120px) 0 clamp(100px, 10vw, 150px);
    min-height: 300px;
}

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

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

.subpage .se-title {
    margin-bottom: clamp(40px, 7vw, 60px);
    text-align: center;
}

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

.subpage .se-title > h3 {
    font-weight: 700;
    color: #000;
    font-size: clamp(32px, 3vw, 42px);
}

.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: 300;
    color: #000;
    letter-spacing: -0.035em;
    font-size: clamp(18px, 3vw, 22px);
}

.subpage .se-title > * + * {
    margin-top: 20px;
}
.subpage .se-title + .wp-title {
    margin-top: 0;
}
.subpage * + .wp-title {
    margin-top: 80px;
}

.subpage .wp-title {
    margin-bottom: 15px;
}

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

.subpage .wp-title > h4 span.count {
    font-weight: 400;
}

.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;
}

@media (width <= 767px) {
    .subpage * + .wp-title {
        margin-top: 40px;
    }
}

/* =================================== modul =================================== */
/* grid-system */
.greet-wrap .img-box {
    background-color: #ccc;
    height: clamp(200px, 20vw, 300px);
    margin-bottom: clamp(50px, 10vw, 70px);
}
.greet-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.greet-wrap h5 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 600;
    color: #00599f;
    margin-bottom: 30px;
    letter-spacing: -0.034em;
}
.greet-wrap p {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.7;
}
.greet-wrap p + p {
    margin-top: 20px;
}
.greet-wrap p.ceo {
    margin-top: clamp(40px, 10vw, 65px);
    text-align: right;
    font-size: 1.25em;
}
.greet-wrap p.ceo b {
    font-size: clamp(1.1em, 3vw, 1.25em);
    letter-spacing: 0.034em;
    margin-left: 10px;
}
.ov-wrap .img {
    position: relative;
}
.ov-wrap .img p {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 7px 12px 5px;
    background-color: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    letter-spacing: 0;
}
.ov-wrap .img p small {
    font-size: 1em;
    font-weight: 400;
    margin-left: 10px;
}

.ov-wrap .info {
    display: grid;
    grid-template-columns: var(--grid-repeat-3);
    gap: 0 30px;
    margin-top: 70px;
}

.ov-wrap .item:nth-child(-n + 3) {
    padding-top: 20px;
}
.ov-wrap .item:nth-child(n + 7) {
    padding-bottom: 20px;
}
@media (width >= 768px) {
    .ov-wrap .item:nth-child(-n + 3) {
        border-top: 2px solid #000;
    }
    .ov-wrap .item:nth-child(n + 7) {
        border-bottom: 1px solid #ddd;
    }
}
@media (width <= 767px) {
    .ov-wrap .item {
        border-top: 1px solid #000;
        padding-bottom: 30px !important;
    }
    .ov-wrap .info {
        margin-top: 40px;
    }
}
.ov-wrap .item {
    /* display: grid; */
    grid-template-columns: minmax(0, 70px) minmax(0, auto);
    padding: 15px 3px;
}
.ov-wrap .info span {
    display: none;
    grid-row: span 2;
    font-size: 42px;
}
.ov-wrap .info h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
}
.ov-wrap .info p {
    font-size: 17px;
    line-height: 1.45em;
}
.ov-wrap .info p small {
    font-size: 0.85em;
}

@media (width <= 767px) {
    .ov-wrap .img-box {
        aspect-ratio: 5/3;
    }
    .ov-wrap .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 20%;
    }
    .ov-wrap .info {
        grid-template-columns: var(--grid-1fr);
    }
}

.history-wrap {
    --cir-width: 26px;
    --position-x: calc(var(--cir-width) * -1);
    --border-width: 2px;
    --marker-padding: 15px;
    position: relative;
    flex-direction: column;
}

.history-wrap::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    position: absolute;
    background-color: #ccc;
}
.history-wrap > div {
    flex: 0 1 auto;
}

.history-wrap > div.img-box {
    padding-left: 70px;
    padding-bottom: 100px;
    gap: 10px;
}
.history-wrap > div.img-box img {
    flex: 0 1 auto;
    border-radius: 10px;
}
.history-wrap .col h5 {
    position: static;
    line-height: 1;
    color: #333;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: -0.034em;
}

.history-wrap .col h5::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(var(--position-x) / 2);
    display: block;
    box-sizing: border-box;
    background-color: var(--page-point-color);
    border: 7px solid #fff0f0;
    width: var(--cir-width);
    aspect-ratio: 1;
    border-radius: 50%;
}

.history-wrap .col {
    position: relative;
    padding-left: 70px;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: left;
}

.history-wrap .col h5 + ul {
    margin-top: 20px;
}

.history-wrap .col li {
    position: relative;
    display: flex;
    gap: 10px;
    padding-left: var(--marker-padding);
    font-size: 16px;
    margin-bottom: 7px;
}

.history-wrap .col li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    display: block;
    background-color: #333;
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
}

/* history-wrap left */
@media (width >= 767px) {
    .history-wrap::before {
        content: "";
        display: block;
        width: 3px;
        height: 100%;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background-color: #eee;
    }
    .history-wrap .col {
        width: 50%;
    }
    .history-wrap .col:nth-child(odd) h5::before {
        right: calc(var(--position-x) / 2);
        left: inherit;
    }
    .history-wrap .img-box:nth-child(odd) {
        justify-content: flex-end;
    }

    .history-wrap .col:nth-child(odd) {
        margin-right: auto;
        text-align: right;
        padding-left: 0;
        padding-right: 70px;
    }
    .history-wrap .col:nth-child(odd) li {
        flex-direction: row-reverse;
        padding-right: var(--marker-padding);
        padding-left: 0;
    }
    .history-wrap .col:nth-child(odd) li::before {
        right: 0;
        left: inherit;
    }
    .history-wrap .col:nth-child(even) {
        margin-left: auto;
    }
}

@media (width <= 767px) {
    .history-wrap {
        padding-left: 15px;
    }
    .history-wrap .col {
        padding-left: 30px;
    }
    .history-wrap .col h5 {
        font-size: 28px;
        margin-top: 5px;
    }
    .history-wrap .col li {
        font-size: 15px;
        flex-direction: column;
        gap: 2px;
    }
}

.pd-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-4);
    gap: 50px 15px;
}
.pd-wrap .img-box {
    aspect-ratio: 1;
    background-color: #f2f2f2;
}
.pd-wrap .img-box img.multiply {
    mix-blend-mode: multiply;
}
.pd-wrap p {
    font-size: 17px;
    text-align: center;
    font-weight: 500;
    margin-top: 12px;
    line-height: 1.35em;
}

@media (width <= 767px) {
    .pd-wrap {
        grid-template-columns: var(--grid-repeat-2);
        row-gap: 30px;
    }
    .pd-wrap p {
        font-size: 15px;
    }
}

.fac-wrap {
    --gap: 15px;
    /* display: grid; */
    /* grid-template-columns: var(--grid-repeat-2); */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 50px;
    column-gap: var(--gap);
}
.fac-wrap .col-span-2 {
    grid-column: span 2;
}
.fac-wrap.col-temp-3 .col {
    /* grid-template-columns: var(--grid-repeat-3); */
    flex-basis: var(--flex-col-3);
}
.fac-wrap.col-temp-4 .col {
    /* grid-template-columns: var(--grid-repeat-4); */
    flex-basis: var(--flex-col-4);
}

.fac-wrap .col {
    position: relative;
    flex-basis: var(--flex-col-2);
}
.fac-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #444;
}
.fac-wrap p {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
}
.fac-wrap span {
    font-size: 1em;
    font-weight: 400;
}
.fac-wrap span.small {
    margin-top: 3px;
    font-size: 0.75em;
    line-height: 1.2;
    display: block;
}
.fac-wrap .video-box {
    /* aspect-ratio: 5/4; */
    margin: 0 auto;
    @media (width >= 768px) {
        width: 50%;
    }
}
.fac-wrap .video-box video {
    object-fit: contain;
    /* width: 80%; */
    /* margin: 0 auto; */
}
/* #ba02 .fac-wrap {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
}
#ba02 .fac-wrap .video {
    grid-column: 2;
    grid-row: 1 / span 2;
} */
@media (width <= 767px) {
    .fac-wrap {
        row-gap: 30px;
    }
    .fac-wrap .col {
        flex-basis: 100%;
    }
    .fac-wrap.col-temp-4 .col {
        flex-basis: var(--flex-col-2);
    }
    .fac-wrap p {
        font-size: 18px;
    }
}
.cert-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-4);
    gap: 60px 30px;
}
.cert-wrap .img-box {
    border: 1px solid #e1ded4;
    padding: 10px;
    box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.03);
}
.cert-wrap p {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
}
@media (width <= 767px) {
    .cert-wrap {
        grid-template-columns: var(--grid-repeat-2);
        gap: 30px 15px;
    }
}
/* map */
.root_daum_roughmap, .root_daum_roughmap :is(.wrap_map, .map), iframe[src^="https://www.google.com/"]
{
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.map-wrap .map {
    aspect-ratio: 5/2;
}
.map-wrap .info {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.map-wrap .info li {
    display: flex;
    align-items: center;
    font-size: 16px;
}
.map-wrap .info li span {
    font-size: 0.9em;
    font-variation-settings: var(--gms-wght-600-out);
    margin-right: 5px;
    padding: 6px;
    background: #92aec3;
    border-radius: 50%;
    color: #fff;
}
.map-wrap .info li.address span {
    font-size: 1.2em;
    background: transparent;
    color: #333;
    padding: 0;
}
.map-wrap .info li.address {
    font-size: 20px;
    font-weight: 600;
}
.map-wrap .info li.tel {
    margin-left: auto;
}
@media (width <= 767px) {
    .root_daum_roughmap, .root_daum_roughmap :is(.wrap_map, .map), iframe[src^="https://www.google.com/"]
    {
        aspect-ratio: 5/4;
        width: auto !important;
    }
    .map-wrap .map {
        aspect-ratio: 5/4;
    }
    .map-wrap > .map {
        margin-inline: calc((var(--bs-gutter-x) * 0.5) * -1);
    }
    .map-wrap .info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .map-wrap .info li.tel {
        margin-left: 0;
    }
    .map-wrap .info li.address {
        margin-bottom: 10px;
    }
    .map-wrap .info li.address span {
        display: none;
    }
}
.table-number tbody > tr {
    counter-increment: itemNum;
}
.table-number tbody > tr td:first-child:before {
    content: counter(itemNum) "";
}
.table-style {
    border-top: 2px solid #545773;
}
.table-style :is(tbody, thead) tr :is(th, td) {
    border-color: #ddd;
    text-align: center;
    padding: 12px 15px;
    font-size: clamp(15px, 3vw, 16px);
    vertical-align: middle;
}

.table-style > thead > tr > th {
    border-bottom: 0;
    background-color: #727585;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 600;
    padding: 10px 15px;
    border-color: #898c9b;
}

/* =================================== 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;
}

: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: clamp(13px, 2vw, 15px);
}

: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.9rem 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: 10px !important;
    color: #333;
}

/* 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.06em;
}

.custom_checkbox + span a {
    font-weight: 500;
    color: #000;
    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, 10fr);
    align-items: flex-start;
    gap: 20px;
    padding-inline: 10px;
    padding-block: 20px;
}
@media (width <= 767px) {
    #site .board_wrapper form[id*="form"] table tbody tr :is(td, th) {
        padding: 5px 0 !important;
    }
}
#site .board_wrapper form[id*="form"] table tbody tr:first-child {
    border-top: 1px solid #000;
}
#site .board_wrapper form[id*="form"] table tbody tr {
    border-bottom: 1px solid #ccc;
}
#site .board_wrapper form[id*="form"] th {
    font-weight: 700;
    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: #2196f3;
}
/* 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;
}

:lang(en) .carousel-caption h1{font-size: clamp(26px, 6vw, 55px);}
@media (width >= 768px) {
    :lang(en) .navbar ul.navbar-right > li > a{font-size: 17px;padding: 0 20px;}
    :lang(en) .map-wrap .info{
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    :lang(en) .map-wrap .info li.address{flex-basis: 100%;}
    :lang(en) .map-wrap .info li.tel{margin-left: 0;}
    :lang(en) [id^='ab'] .snb li{flex: 0 1 17%;}
    :lang(en) [id^='ba'] .snb li,
    :lang(en) [id^='rs'] .snb li
    {flex: 0 1 23%;}
}

/* =================================== mobile default =================================== */
/* bbs, etc */
@media (width <= 767px) {
      :lang(en) .breadcrumb{
        gap: 8px 25px;
        justify-content: center;
    }
    .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: 0px;
        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.board_write_table tbody tr th span:nth-of-type(2) {
        margin-left: 2px;
    }

    .table.board_write_table tbody tr th span:only-child {
        margin: 0;
    }

    .table.table_responsive tbody tr th {
        padding: 15px !important;
        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: 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;
}

/* 주문폼 리셋*/
/* 접수내역 숨김 */
: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 */
