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

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

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%;
        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.5em;
    left: 0;
    display: block;
    width: 0.27em;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #333;
}

.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}

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

.nav-top {
    height: clamp(20px, 5vw, 30px);
}
.nav-top .container {
    padding-top: clamp(7px, 10vw, 8px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(15px, 3vw, 22px);
}
.li-login {
    display: flex;
    align-items: center;
}
.li-login li {
    font-size: clamp(11px, 3vw, 12px);
    line-height: 1;
}
.li-login li + li {
    padding-left: clamp(5px, 1vw, 10px);
    margin-left: clamp(5px, 1vw, 10px);
    border-left: 1px solid #ccc;
}

.li-lang {
    display: flex;
    align-items: center;
    margin-right: -5px;
    padding: 2px 8px;
    background: #f2f2f2;
    border-radius: 3px;
    line-height: 1;
}

.li-lang .flag-icon + span {
    font-weight: 600;
    font-size: 13px; /* display: none; */
}

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

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

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

.flag-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.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: var(--page-point-color); /* 메인메뉴 .navbar ul.navbar-right > li > a*/
    --dropdown-padding: 0px clamp(25px, 2vw, 35px) 0px;
    --dropdown-font-size: clamp(16px, 2vw, 17px); /* 서브메뉴 .navbar ul.navbar-right .dropdown-menu */
    --dropdown-menu-padding: 12px clamp(15px, 2vw, 25px);
    --dropdown-menu-font-size: clamp(14px, 2vw, 15px); /* 로고 */
    --navbar-logo-width: clamp(100px, 15vw, 110px);
    position: fixed;
    background: #fff;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 0;
    padding: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 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: #2d65d0 !important;
}

/* nav 서브메뉴 dropdown-menu background */
.navbar ul.navbar-right ul.dropdown-menu {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    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: #2d65d0;
    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-brand {
        transform: translateY(-13px);
    }
    .navbar ul.navbar-right {
        height: 100%;
        flex-flow: row nowrap;
        justify-content: flex-end;
        margin-right: -30px !important;
    }

    .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;
        letter-spacing: -0.01em;
        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;
        padding: 7px;
    }

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

    /* =================================== nav scroll change background =================================== */

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

    .navbar.top {
        /* --navbar-height: 80px; */
        --navbar-scroll-filter: grayscale(1) brightness(10) invert(0);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 400;
        --navbar-scroll-background-color: transparent;
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:hover,
    .navbar.scroll {
        /* --navbar-height: 100px; */
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #333;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 500;
        --navbar-scroll-background-color: #fff;
    }
    .navbar:is(.top, .scroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
        box-shadow: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .navbar:is(.top, .scroll) .navbar-brand img {
        filter: var(--navbar-scroll-filter);
    }
    .navbar:is(.top, .scroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:is(.top, .scroll) ul.navbar-right > li > a:is(:hover, :focus),
    .navbar:is(.top, .scroll) ul.navbar-right > li:is(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover) !important;
    }

    .navbar:is(.top, .scroll) :is(.li-login li, .li-lang a) {
        color: var(--navbar-scroll-color);
    }
    .navbar.top .li-lang {
        background-color: transparent;
    }
}

/* mobile */
@media (width <= 767px) {
    #site {
        padding-top: 80px !important;
    }
    :root {
        --navbar-height: 60px;
    }
    .nav-top {
        width: 100%;
        z-index: 9000;
        background-color: #fff;
    }

    .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: 12px 0 6px;
        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;
    }

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

    /* 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 ul.dropdown-menu {
        background: #222;
    }

    /* 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: 50px 0 50px;
    background-color: #242432;
}

footer .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

footer .footer-menu a {
    font-size: 16px;
    font-weight: 500;
}

footer .footer-wrap {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

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

footer .footer-info li {
    font-size: 13px;
    line-height: 1.6em;
}

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

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

footer .footer-wrap .innobiz {
    height: 37px;
    mix-blend-mode: inherit;
    padding: 3px 3px;
    background: #fff;
}

.footer-family {
    margin-left: auto;
}

/* mobile footer*/
@media (width <= 767px) {
    footer .footer-wrap {
        display: grid;
        /* flex-direction: column; */
        grid-template-columns: minmax(0, min-content) minmax(0, auto);
        gap: 20px;
    }
    footer .footer-info {
        order: 1;
        grid-column: span 2;
    }
    footer .innobiz {
        order: 3;
        max-width: unset;
    }
    footer .footer-family {
        order: 2;
    }
    footer .footer-login {
        margin-left: inherit;
    }
    #scrollTop {
        display: none !important;
    }
    .footer-family,
    footer .footer-wrap .innobiz {
        margin-left: 0;
    }
}
/* =================================== Footer option =================================== */

#familymenu {
    width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: #3c3d3d;
    border: 1px solid #888;
    color: #fff;
    font-size: 13px !important;
    height: 37px !important;
    line-height: 1;
}
#familymenu + .dropdown-menu {
    min-width: 150px;
    margin-top: -1px;
    margin-bottom: 0 !important;
    padding: 5px 0;
    background: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 0;
    text-align: left;
}
#familymenu + .dropdown-menu > li {
    display: block;
    margin: 0;
}
#familymenu + .dropdown-menu > li > a {
    display: block;
    background: transparent !important;
    padding: 0 13px;
    color: #222 !important;
    font-size: 13px;
    line-height: 1.8;
}
#familymenu + .dropdown-menu > li > a:hover {
    background-color: #000 !important;
    color: #fff !important;
}

#scrollTop {
    --width: 50px;
    --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: #588dff;
    /* 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 :is(i, span) {
    font-size: 2.4em;
    font-variation-settings: var(--gms-wght-300-out);
}

/* =================================== NO CONTENT =================================== */
.maintenance {
    background: #f4f4f4;
    padding: 130px 25px;
    text-align: center;
}

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

.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.034em;
    margin-bottom: 20px;
    color: #bbb;
}

.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)); */
        height: 100vh;
    }
}

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

#mainCarousel .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #0d1438;
    opacity: 0.2;
}
#mainCarousel .item:nth-child(2)::before {
    background: #000;
    opacity: 0.2;
}
/* caption */
.carousel-caption {
    top: 35%;
    transform: none;
    bottom: inherit;
    right: 5%;
    left: 5%;
    padding: 0 10px;
    text-shadow: none;
    /* text-align: left; */
}

.carousel-caption h1 {
    position: relative;
    font-size: clamp(32px, 10vw, 52px);
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 .corp {
    display: block;
    font-size: clamp(40px, 15vw, 82px);
    line-height: 1;
    margin-bottom: 20px;
    margin-inline: 3px;
    letter-spacing: 0.05em;
}

.carousel-caption p {
    letter-spacing: -0.02em;
    font-weight: 300;
    margin-top: 50px;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
}

/* `md` applies to small devices (landscape phones, less than 768px) */

@media (width <= 991.98px) {
    .carousel-caption {
        top: 15%;
        padding: 0;
    }
    .carousel-caption h1 {
        font-size: 7vw;
    }
    .carousel-caption h1 .corp {
        font-size: 8.25vw;
        margin-bottom: 10px;
    }
    .carousel-caption p {
        font-weight: 500;
    }
}

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

#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;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .carousel-indicators {
        width: auto;
        bottom: 20px;
    }
}
#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%;
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .main-service {
        transform: translateY(-290px);
    }
}
.service-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    /* padding: 0 40px; */
    margin: 0 80px;
}

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

.service-wrap .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(55px, 10vw, 75px);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    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: clamp(17px, 3vw, 19px);
    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;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .service-wrap {
        grid-template-columns: var(--grid-1fr);
        /* transform: translate(0); */
    }
}

/* =================================== subpage header =================================== */
/* .subpage-header(default) */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top01.jpg);
    --before-background-color: rgba(0, 0, 0, 0.25);
    position: relative;
    height: clamp(230px, 30vw, 350px);
    padding-top: var(--navbar-height);
    background: var(--background-image) no-repeat center / cover;
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .subpage-header {
        padding-top: 0;
    }
}
/* other */
/* .subpage-header.visual01 { --background-image: url(/public/img/sub/sub-top01.jpg); } */
/* .subpage-header.visual02 { --background-image: url(/public/img/sub/sub-top02.jpg); } */
/* .subpage-header.visual03 { --background-image: url(/public/img/sub/sub-top03.jpg); } */
/* .subpage-header.visual04 { --background-image: url(/public/img/sub/sub-top04.jpg); } */
/* .subpage-header.visual05 { --background-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(--before-background-color);
}

.subpage-header .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* padding-top: var(--navbar-height); */
}

.subpage-header .subpage-title h2 {
    line-height: 1;
    margin-top: clamp(15px, 5vw, 25px);
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: clamp(38px, 3vw, 50px);
    letter-spacing: 0;
}

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

.breadcrumb > li {
    position: relative;
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

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

/* =================================== snb =================================== */
.snb {
    --snb-height: 70px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
}

.snb li {
    flex: 0 1 15%;
}
.subpage[id*="pd"] .snb li{
    flex: 1;
}
/* .subpage[id*="pd"] .snb::after{
    content: "적용 디바이스 /";
    position: absolute;
    left: 10%;
    top: 50%;
    font-size: 22px;
    font-weight: 700;
    transform: translateY(-50%);
} */
.snb li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: clamp(15px, 3vw, 18px);
    height: var(--snb-height);
    color: #999;
    letter-spacing: 0;
    padding-inline: 10px;
    font-weight: 500;
}

.snb li > a::before {
    content: "";
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    position: absolute;
    background: transparent;
    transform: translateX(-50%);
    transition: 0.3s;
}

.snb li.active a::before {
    width: 100%;
    background-color: #4b8cff;
}

.snb li.active a {
    font-weight: 700;
    color: #0848c0;
}

@media (hover: hover) {
    .snb li:hover > a {
        color: #0848c0;
        font-weight: 500;
    }
    .snb li:hover a::before {
        width: 100%;
        background-color: #4b8cff;
    }
}

@media (width >=768px) {
    .snb li.active a::after {
        /* content: ""; */
        position: absolute;
        left: 0;
        bottom: -1px;
        display: block;
        width: 100%;
        height: 2px;
        background: var(--page-point-color);
    }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .snb {
        --snb-height: 50px;
    }
    .snb ul li {
        flex: 1;
    }
    .subpage[id*="pd"] .snb{
        display: flex;
        flex-direction: column-reverse;
    }
    .subpage[id*="pd"] .snb::after{
        position: static;
        transform: unset;
        text-align: center;
        font-size: 16px;
        margin-top: 10px;
        
    }
}

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

.subpage section:nth-child(even) {
    background-color: hsl(220, 40%, 98%);
    & .maintenance {
        mix-blend-mode: multiply;
    }
}

/* =================================== subpage title =================================== */
/* h3 */
.subpage .title-h3 {
    margin-bottom: clamp(50px, 5vw, 80px);
    text-align: center;
    display: none;
}
.subpage .title-h3 :only-child {
    margin-bottom: 0;
}
.subpage .title-h3 > h3 {
    font-weight: 600;
    font-size: clamp(36px, 3vw, 42px);
    letter-spacing: 0;
}
.subpage .title-h3 > p {
    line-height: 1.55;
    font-size: 18px;
    font-weight: 300;
    margin-top: 40px;
}
.subpage .title-h3 > * + * {
    margin-top: 40px;
}
.subpage .title-h3 .gen {
    display: block;
    font-weight: 700;
    font-size: 22px;
    padding: 10px 15px;
    margin: 50px auto -30px;
    border-radius: 50px;
    color: #6185d3;
    font-style: italic;
}
/* h4 */
.subpage .title-h4 {
    margin-bottom: 40px;
}
.subpage *:not(.title-h3) + .title-h4 {
    margin-top: 100px;
}
.subpage .title-h4 > h4 {
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    letter-spacing: -0.02em;
}
#ab04 .title-h4 {
    margin-bottom: 20px;
}

#ab04 .title-h4 > h4 {
    text-align: left;
    font-size: 26px;
}

.subpage .title-h4 > p {
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.035em;
    font-size: 18px;
    color: #000;
}
.subpage .title-h4 :is(p, li) {
    font-size: 18px;
}
.subpage .title-h4 > * + * {
    margin-top: 15px;
}

/* h5 */
.subpage .title-h5 {
    margin-bottom: 15px;
}
.subpage *:not(.title-h3, .title-h4) + .title-h5 {
    margin-top: 50px;
}
.subpage .title-h5 > h5 {
    font-size: 22px;
    font-weight: 600;
}
.subpage .title-h5 > p {
    font-weight: 300;
    color: #000;
    line-height: 1.7;
    letter-spacing: -0.035em;
    font-size: 16px;
}
.subpage .title-h5 > * + * {
    margin-top: 15px;
}

/* =================================== subpage-content =================================== */
/* Greetings */
.greet-wrap .img-box {
    flex: 1;
    height: clamp(200px, 15vw, 250px);
    background-color: #ccc;
    margin-bottom: 50px;
}
.greet-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.greet-wrap .info {
    flex: 1;
}
.greet-wrap h5 {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -0.034em;
}
.greet-wrap p {
    font-size: clamp(15px, 3vw, 17px);
    line-height: 1.7;
}
.greet-wrap p + p {
    margin-top: 20px;
}
.greet-wrap p.ceo {
    margin-top: 30px;
    text-align: right;
    font-size: 1.25em;
}
.greet-wrap p.ceo b {
    font-size: 1.25em;
    letter-spacing: 0.034em;
    margin-left: 7px;
}

/* Certificate */
.cert-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-4);
    gap: 60px 30px;
}
.cert-wrap .img-box {
    box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.03);
}
.cert-wrap p {
    font-size: clamp(15px, 3vw, 17px);
    font-weight: 600;
    text-align: center;
    margin-top: 17px;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .cert-wrap {
        padding: 0 10px;
        grid-template-columns: var(--grid-repeat-2);
        gap: 40px 15px;
    }
}

.card-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-3);
    gap: 30px 30px;
}
@media (width <= 767px) {
    .card-wrap {
        grid-template-columns: var(--grid-repeat-2);
    }
}
.card2 {
    grid-template-columns: var(--grid-repeat-2);
    width: 800px;
    margin: 50px auto 0;
}
.card-wrap .col {
    padding: 30px 20px 35px;
    border: 1px solid #eee;
    border-radius: 10px;
}
.card2 .col {
    border: 1px solid #f6c950;
}
.card-wrap .title-h5 {
    margin-bottom: 30px;
}
.card-wrap .title-h5 h5 {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.chart-wrap {
    --item-big: clamp(25px, 3vw, 50px);
    display: flex;
    align-items: center;
    /* border: 1px solid #ddd; */
    /* padding: 50px; */
    /* border-radius: 10px; */
    gap: 70px;
}
/* Medium devices (tablets, 768px and up) */
@media (width >= 768px) {
    .chart-wrap {
        margin-left: calc(var(--item-big) * -1);
    }
}
.chart-wrap.number .chart span.num {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(35px, 3vw, 40px);
    border-radius: 50%;
    margin: 10px;
    position: absolute;
    font-size: clamp(17px, 3vw, 20px);
    line-height: 1;
    font-weight: 700;
    background-color: #fff;
    left: 0;
    top: 0;
    mix-blend-mode: hard-light;
    opacity: 0.7;
}
.chart-wrap.number .item:nth-child(4) span.num {
    left: unset;
    right: 0;
}
.chart-wrap .col.chart {
    display: grid;
    grid-template-columns: var(--grid-repeat-2);
    gap: clamp(10px, 3vw, 20px);
    position: relative;
    padding-top: var(--item-big);
    padding-right: var(--item-big);
    margin-left: var(--item-big);
    flex: 0 1 45%;
}
.chart-wrap .chart :is(.item, .round) {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(15px, 3vw, 30px);
    font-size: clamp(16px, 3vw, 24px);
}
.chart-wrap .chart h5 {
    font-size: 1em;
}
.chart-wrap .chart .item {
    background-color: #dee4f0;
    border-radius: 10px;
}
.chart-wrap .chart .item.big {
    background-color: #4879d3;
    margin-top: calc(var(--item-big) * -1);
    margin-right: calc(var(--item-big) * -1);
    & h5 {
        color: #fff;
        font-size: 1.2em;
        font-weight: 700;
    }
}
.chart-wrap .chart .round {
    overflow: hidden;
    position: absolute;
    left: calc(calc(50% - (var(--item-big) / 2)));
    top: calc(50% + (var(--item-big) / 2));
    transform: translate(-50%, -50%);
    width: 35%;
    border-radius: 9999px;
    background-color: #242852;

    & h5 {
        color: #fff;
        font-size: 1.35em;
        font-weight: 700;
    }
}
.chart-wrap .col {
    flex: 1;
}
.chart-wrap :is(ul, ol) {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 40px; */
    gap: clamp(10px, 3vw, 20px);
}

.chart-wrap ul li {
    font-size: clamp(15px, 3vw, 17px);
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}
.chart-wrap ol li {
    counter-increment: itemNum;
    display: flex;
    align-items: center;
}
.chart-wrap ol li::before {
    content: counter(itemNum) "";
    flex-shrink: 0;
    padding: 5px;
    aspect-ratio: 1;
    background-color: #588dff;
    color: #fff;
    width: clamp(35px, 3vw, 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: clamp(16px, 3vw, 19px);
    font-weight: 700;
    border-radius: 50%;
}
.chart-wrap ol li {
    font-size: clamp(16px, 3vw, 18px);
    letter-spacing: -0.02em;
}

.chart-wrap .arrow {
    /* align-self: center; */
    position: relative;
    background: #ebedf2;
    clip-path: polygon(0% 25%, 60% 25%, 60% 0%, 100% 50%, 60% 100%, 60% 75%, 0% 75%);
    width: 70px;
    aspect-ratio: 1/3;
}

.chart-wrap .organic {
    margin-top: 30px;
    /* margin-bottom: 70px; */
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (width <= 991.98px) {
    .chart-wrap {
        padding: 0 15px;
        flex-direction: column;
        align-items: stretch;
    }
    .chart-wrap .arrow {
        rotate: 90deg;
        width: 60px;
        margin-block: -80px;
        align-self: center;
    }
    .chart-wrap .col.info {
        align-self: center;
    }
    .chart-wrap .organic {
        text-align: center;
        margin-top: 0;
    }
}

/* .chart-wrap .organic h4::after {
    content: "";
    display: block;
    width: 500px;
    right: 0;
    height: 3px;
    background-color: #4879d3;
    position: absolute;
    bottom: 0;
    right: 0;
} */

.organic h4 {
    position: relative;
    display: inline-block;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 5px;
    color: #4879d3;
    border-bottom: 2px solid #4879d3;
}
.organic p {
    font-size: clamp(17px, 3vw, 20px);
}

.material-wrap {
    position: relative;
    display: flex;
    gap: 30px;
    margin: 30px -100px 0;
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .material-wrap {
        flex-direction: column;
        margin: 0;
        gap: 50px;
    }
}
.material-wrap .col {
    flex: 1;
    --point-color: #ccc;
    counter-increment: itemNum;
}
.material-wrap .col.item01 {
    --point-color: #81aef1;
}
.material-wrap .col.item02 {
    --point-color: #4c6fc5;
}
.material-wrap .col.item03 {
    --point-color: #629dd1;
}
.material-wrap .col.item04 {
    --point-color: #297fd5;
}
.material-wrap .col.item05 {
    --point-color: #46a6b8;
}

/* Medium devices (tablets, 768px and up) */
@media (width >= 768px) {
    .material-wrap::before {
        z-index: -1;
        content: "";
        position: absolute;
        top: -28%;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        clip-path: polygon(0% 20%, 90% 20%, 90% 0%, 100% 50%, 90% 100%, 90% 80%, 0% 80%);
        width: 85%;
        height: 290px;
        background: #ebedf2;
    }
}
.material-wrap h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(90px, 10vw, 110px);
    font-size: 18px;
    padding: 25px 20px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--point-color);
    text-align: center;
}
.material-wrap .header::after {
    content: "";
    display: block;
    width: 1px;
    height: clamp(30px, 10vw, 60px);
    margin: 0 auto clamp(15px, 5vw, 30px);
    background-color: var(--point-color);
}
.material-wrap .col h5 {
    display: flex;
    margin-bottom: 10px;
}
.material-wrap .col h5:before {
    content: counter(itemNum, decimal-leading-zero) "";
    color: var(--point-color);
    margin-right: 10px;
    font-weight: 700;
    font-size: 1.5em;
}
/* Process */
.process-wrap {
    display: flex;
    gap: 0px;
    /* margin-top: 50px; */
}
.process-wrap .col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.process-wrap .info {
    flex: 1;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    border-radius: 10px;
    border-top-left-radius: 0;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    padding-bottom: 25px;
}
.process-wrap .img-box {
    aspect-ratio: 5/3;
    /* padding: 10px 10px 0; */
}
.process-wrap .img-box img {
    scale: 1.025;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* border-radius: 10px; */
}
.process-wrap .header {
    position: relative;
    z-index: 10;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 40px;
    background-color: #ecf1fa;
    color: #4976cc;
    border: 1px solid #eee;
    border-bottom: 0;
    letter-spacing: 0.034em;
    /* margin: 0 20px; */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    margin-bottom: 0;
}
.process-wrap .header h5 {
    font-size: 17px;
    font-weight: 700;
}
.process-wrap .title-h6 {
    color: #222;
    margin: 25px 0 0;
    text-align: center;
}
.process-wrap .title-h6 h6 {
    font-size: clamp(18px, 3vw, 20px);
    letter-spacing: -0.02em;
    font-weight: 600;
    text-align: left;
    color: #4d68a8;
}
.title-h6.point {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-top: 5px;
}
.process-wrap ul.li-cir {
    padding-block: 25px;
}
.process-wrap :is(.title-h6, ul.li-cir) {
    padding-inline: clamp(25px, 3vw, 40px) !important;
    font-size: 15px;
}
.process-wrap ul.li-cir {
    padding: 7px 40px 0px;
}
.process-wrap ul.li-cir li {
    line-height: 1.4em;
}

.process-wrap ul.li-cir li + li {
    margin-top: 3px;
}
.process-wrap .arrow {
    align-self: center;
    position: relative;
    margin-top: 40px;
}
.process-wrap .arrow::before {
    content: "\e409";
    font-family: var(--gms);
    font-size: 55px;
    color: #fff;
    /* position: absolute; */
    /* left: -27px; */
    /* top: 37%; */
    background: #ebedf2;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .process-wrap {
        flex-direction: column;
    }
    .process-wrap .arrow {
        margin-top: 40px;
        width: 50px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: #ebedf2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .process-wrap .arrow::before {
        rotate: 90deg;
        font-size: 36px;
        line-height: 1;
        background: transparent;
    }
}

/* History(zigzag) */
.history-wrap {
    /* center circle*/
    --cir-width: 25px;
    --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 .col {
    flex: 0 1 auto;
    position: relative;
    padding-left: clamp(40px, 3vw, 70px);
    padding-bottom: 50px;
    text-align: left;
}
.history-wrap .col h5 {
    position: static;
    line-height: 1;
    color: #ff9a1c;
    font-weight: 600;
    font-size: clamp(38px, 3vw, 44px);
    letter-spacing: -0.034em;
}
.history-wrap .col h5::before {
    content: "";
    position: absolute;
    top: 8px;
    left: calc(var(--position-x) / 2);
    display: block;
    box-sizing: border-box;
    background-color: #e46c00;
    border: 7px solid #fff3e4;
    width: var(--cir-width);
    aspect-ratio: 1;
    border-radius: 50%;
}
.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: clamp(15px, 3vw, 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%;
}

/* 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) {
        margin-right: auto;
        text-align: right;
        padding-left: 0;
        padding-right: 70px;
    }
    .history-wrap .col:nth-child(odd) h5::before {
        right: calc(var(--position-x) / 2);
        left: inherit;
    }
    .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;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .history-wrap {
        margin-left: 20px;
    }
}

/* Map(default) */
.map-wrap .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: clamp(12px, 4vw, 30px);
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}
.map-wrap > .info > li {
    display: flex;
    align-items: start;
    font-size: 17px;
}
.map-wrap > .info li > span {
    font-size: 0.9em;
    font-variation-settings: var(--gms-wght-600-out);
    margin-right: 7px;
    padding: 5px;
    background: #87a0de;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}
.map-wrap > .info > li.address {
    font-size: 17px;
    font-weight: 500;
}
.map-wrap > .info > li.address span {
    margin-top: 2px;
    font-size: 1.2em;
    background: transparent;
    color: #333;
    padding: 0;
}

.map-wrap > .info > li.tel {
    margin-left: auto;
}

@media (width <= 767px) {
    .map-wrap > .map {
        aspect-ratio: 5/4;
    }
    .map-wrap .info {
        align-items: flex-start;
        flex-direction: column;
    }
    .map-wrap .info > li.tel {
        margin-left: 0;
    }
}

/* Table(default) */
.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: #f29c30;
    border-radius: 0;
    padding: 6px 7px;
    margin-right: 0px !important;
    font-weight: 500;
    border-radius: 2px;
}

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

.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 {
    display: none !important;
}
#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(16px, 3vw, 17px);
    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: 600;
    font-size: 17px;
}

.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.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: clamp(18px, 3vw, 25px);
}
#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: 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 */
