@charset "utf-8";
@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css);

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

/* ==================[ Variable ]================== */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", "notokr", sans-serif;
    --font-ns: "NanumSquare", "Pretendard Variable", "notokr", sans-serif;

    /* page global color */
    --page-point-color: #1c347b;
    --page-point-color-pale: #ebf4fc;
    --page-point-color-light: #d4e8fa;
    --page-point-color-soft: #2c76eb;
    --page-point-color-dark: #111;
    --page-point-color-hover: var(--page-point-color-dark);
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 100px);
    /* container */
    --container-padding-inline: 15px;
    /* form */
    --form-height: 42px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}
/* ==================[ Reset ]================== */
html {
    font-size: 14px;
}
#site {
    display: none;
    padding-top: 0;
    font-family: var(--page-font-family);
    color: #222;
}
@media (min-width: 768px) and (max-width: 1274.98px) {
    html {
        overflow-x: scroll;
        width: 1280px;
    }
}
#site.modal-open {
    overflow: unset !important;
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0 !important;
}
* {
    word-break: keep-all;
    float: unset !important;
}
.cke_resizer_ltr {
    float: right !important;
}
:where(*::before, *::after) {
    content: none;
}
/* selection */
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
/* Paragraph */
:is(ol, ul, li, dl) {
    all: unset;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
    all: unset;
    display: block;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    box-sizing: border-box;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.5;
}
/* html:lang(ko) :where(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    letter-spacing: -0.025em;
} */
/* html:lang(en) :where(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    letter-spacing: 0em;
} */
:where(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    color: inherit;
}
:where(p, li, dd, small) {
    color: #555;
}
:where(small, .small) {
    font-size: 0.8em;
}
br {
    visibility: visible;
    opacity: 0;
}
.big {
    font-size: 1.2em;
}
a:not(.btn) {
    text-decoration: none;
    color: inherit;
}
a:not(.btn):where(:focus, :hover) {
    text-decoration: unset;
    color: unset;
}
/* expend 숨김 */
.caret {
    display: none !important;
}
/* button */
.btn {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    place-content: center;
    place-items: center;
    font-size: clamp(13px, 5vw, 15px);
    line-height: 1;
    height: 42px;
    padding: 0 1em;
    /* border-radius: 4px; */
    outline: none !important;
    transition: all 0.25s ease;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
}
.btn.btn-danger {
    color: #fff;
}
@media (hover: hover) {
    .btn.btn-primary:where(:hover, :focus) {
        background-color: var(--page-point-color-hover);
        border-color: var(--page-point-color-hover);
    }
    .btn.btn-secondary:where(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
}
button[disabled] {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}

/* image */
.img-box {
    overflow: hidden;
    position: relative;
    display: flex;
    /* border-radius: 15px; */
}
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
img.img-fit {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
/* layout */
:where(.container, .row) {
    position: relative;
}
.row {
    margin: 0;
}
.row > * {
    padding: 0;
}
.clearfix {
    width: 100%;
}
.col {
    padding: 0;
}
/* modal  */
/* modal  */
.modal-backdrop {
    display: none !important;
}
.modal {
    z-index: 10000;
    display: flex !important;
    width: 100%;
    justify-content: center;
}
.modal.in {
    z-index: 10000;
    scale: 1 !important;
}
.modal:not(.in) {
    opacity: 0 !important;
    scale: 0;
}
.modal-body {
    padding: 20px;
}
.modal .modal-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-header .modal-title {
    font-size: clamp(17px, 3vw, 18px);
}
.modal .modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.6;
}
.modal .modal-header .close span {
    font-variation-settings: var(--gms-400-out);
    font-size: 32px;
}
.modal .modal-header .close:hover {
    opacity: 1;
}
.modal.fade .modal-dialog {
    transform: translate(0, 0) !important;
    margin: 0;
    overflow: hidden;
    height: fit-content;
    margin-block: auto;
    /* width: 100%; */
}
.modal {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding-block: calc(var(--navbar-height) / 2);
}
#delete_modal.in + .modal {
    display: none !important;
}
/* 날짜 */
.bootstrap-timepicker {
    display: flex;
    gap: 10px;
    max-width: 300px;
}
#ui-datepicker-div {
    z-index: 10000;
}
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"]
{
    width: auto;
    height: auto;
    aspect-ratio: 2.3333333333;
    margin-bottom: -6px;
    background-color: #e5e3df;
}
/* 유튜브 */
iframe:where([src*="youtube"], [title*="YouTube"]) {
    width: auto;
    height: auto;
    aspect-ratio: 1.7777777778;
    background-color: #000;
}
/* material-symbols */
span.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-400-out), var(--gms-grad-zero);
    user-select: none;
}
/* ==================[ common ]================== */
/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    padding-inline: var(--container-padding-inline) !important;
}
@media (width >= 1340px) {
    [class*="container"] {
        max-width: 1310px;
    }
}
@media (width <= 1280px) {
    :is(.mainpage, .subpage, footer) [class*="container"] {
        max-width: 1030px;
    }
}
/* list-style */
:where(.li-cir, .li-dash) {
    display: flex;
    flex-direction: column;
}
:where(.li-cir, .li-dash) > li {
    position: relative;
    padding-left: 0.8em;
}
:where(.li-cir, .li-dash) small {
    font-size: 0.85em;
}
/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    width: 0.3em;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--page-point-color);
}
/* dash */
.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}
/* number */
.li-num > li {
    counter-increment: listNum;
    padding-left: 27px;
}
.li-num > li::before {
    content: counter(listNum, decimal-leading-) "";
    position: absolute;
    top: 0.25em;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--page-point-color);
    border-radius: 50%;
    aspect-ratio: 1;
    width: 18px;
    padding-top: 2px;
    padding-right: 1px;
    line-height: 0;
    color: var(--page-point-color);
    font-size: 11px;
    font-weight: 700;
}
/* font */
.navbar .navbar-right > li > a,
#site .carousel-caption :where(h1, p),
h1,
h2,
h3,
h4,
h5 {
    font-family: "Pretendard", sans-serif;
}

/* ==================[ navbar ]================== */
/* [ navbar 재작업 ] */
/* - reset start -*/
.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 2vw, 28px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(16px, 1vw, 20px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(15px, 2vw, 16px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(160px, 20vw, 260px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
}
.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
.navbar a {
    cursor: pointer;
}

.navbar a img {
    filter: invert(1) grayscale(1) brightness(3);
}
.navbar .navbar-header {
    margin-inline: 0 !important;
}
.navbar :where(*):before,
.navbar :where(*):after {
    content: none;
}
/* - reset end -*/
/* navbar */
.navbar {
    all: unset;
    z-index: 5000;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #fff;
    border-bottom: none;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
    background: #222;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
}
/* 로고 */
.navbar .navbar-brand,
.navbar .navbar-brand:is(:hover, :focus) {
    display: block;
    width: var(--navbar-logo-width);
    margin-left: 0 !important;
}
/* 텍스트 로고 */
.navbar .navbar-brand span {
    position: relative;
    display: block;
    font-size: var(--navbar-logo-font-size);
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}
/* 메인메뉴 */
.navbar .navbar-right > li > a {
    z-index: 100;
    font-size: var(--navbar-menu-font-size);
    color: #222;
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: -0.2px;
    /* font-family: var(--font-ns); */
    color: #fff;
    font-weight: 500;
}
.navbar .navbar-right > .open > :is(a, a:focus, a:hover),
.navbar .navbar-right > li > a:is(:hover, :focus),
.navbar .navbar-right > li:is(:hover, :focus) > a {
    position: relative;
    z-index: 100;
    color: #ffffff;
    background-color: #000;
    /* text-shadow: 0 0 0.01em var(--page-point-color); */
    /* border-bottom: 3px solid var(--page-point-color); */
}
/* 서브 드롭다운메뉴 */
.navbar .navbar-right :is(.dropdown-menu) {
    z-index: 50;
    background-color: #fff;
    background: rgba(50, 50, 50, 0.8);
}
.navbar .navbar-right :is(.dropdown-menu) a {
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 400;
    color: #ddd;
    width: 100%;
    justify-content: center;
    transition: all 0.25s ease;
}
.navbar .navbar-right :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: #fff;
    text-decoration: underline;
    text-underline-position: under;
}
.navbar #gnbauth i {
    display: none;
}
/* 데스크탑 */
@media (width >= 768px) {
    /* wide */
    /* .navbar > .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
        max-width: 100%;
        padding-inline: 50px;
    } */
    /* 메인메뉴 */
    .navbar .navbar-collapse {
        display: flex !important;
        align-self: stretch;
    }
    .navbar .navbar-right {
        display: flex;
        align-self: stretch;
    }
    .navbar .navbar-right > li {
        position: relative;
        display: flex;
    }
    .navbar .navbar-right > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background-color: transparent;
        padding-inline: var(--navbar-menu-padding-inline);
        padding-block: 0;
    }
    .navbar .navbar-right > li > a::after {
        content: "";
        width: 0;
        height: 1px;
        position: absolute;
        left: 50%;
        bottom: 32px;
        transform: translateX(-50%);
        transition: all 0.3s ease;
        opacity: 0;
        background: #fff;
    }
    .navbar .navbar-right > li:hover > a::after {
        width: calc(100% - (var(--navbar-menu-padding-inline) * 2));
        opacity: 1;
    }
    .navbar .navbar-right > .open > :is(a, a:focus, a:hover),
    .navbar .navbar-right > li > a:is(:hover, :focus),
    .navbar .navbar-right > li:is(:hover, :focus) > a {
        /* transform: translateY(1px); */
    }
    .navbar .navbar-right > li:not(#gnbauth):last-child,
    .navbar .navbar-right > #gnbauth {
        /* margin-right: calc(var(--navbar-menu-padding-inline) * -1); */
    }
    /* 데스크탑 서브 드롭다운메뉴 */
    .navbar .dropdown-menu {
        all: unset;
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        border-radius: 0;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
        margin-top: 0px;
        padding: 18px;
        min-width: 180px;
        /* gap: 15px; */
        opacity: 0;
        transform-origin: center top;
        text-align: center;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    @keyframes menuOpen {
        0% {
            opacity: 0;
            scale: 1 0.5;
        }
        100% {
            opacity: 1;
            scale: 1 1;
        }
    }
    .navbar .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 10px 0;
        letter-spacing: -0.02em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        font-weight: 400;
        text-align: center;
    }
    /* dropdown type02 */
    /* .navbar .navbar-right .dropdown-menu {
        background-color: #222;
        padding: 0;
        gap: 0;
    }
    .navbar .navbar-right .dropdown-menu li + li {
        border-top: 1px solid #555;
    }
    .navbar .navbar-right .dropdown-menu a {
        padding: 12px 20px;
        color: #fff;
    }
    .navbar .navbar-right .dropdown-menu a:is(:hover, :focus) {
        background-color: var(--page-point-color);
        color: #fff;
    } */
    /* [  navbar-custom-scorll-change  ] */
    /* .navbar:not(.scroll) {
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:is(.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:is(:hover, .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:where(.top, .scroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:where(.top, .scroll) .navbar-brand img {
        filter: var(--navbar-scroll-filter);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a:where(:hover, :focus),
    .navbar:where(.top, .scroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover) !important;
    } */
}
/* 모바일 */
@media (width <= 767.98px) {
    /* 배경 */
    body.menu-overlay::before {
        content: "";
        display: block;
        z-index: 1000;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.5);
        animation: menuOverlay 0.35s alternate forwards;
    }
    @keyframes menuOverlay {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .navbar .navbar-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .navbar-brand {
        order: 1;
    }
    .navbar .navbar-toggle {
        order: 2;
    }
    .navbar .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0;
    }
    .navbar .navbar-toggle::before {
        transition: 0.35s;
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 2em;
        font-variation-settings: var(--gms-500-out);
        color: #fff;
    }
    .navbar .navbar-toggle > * {
        display: none;
    }
    .navbar .navbar-toggle:where(:hover, :focus) {
        background: none !important;
    }
    .navbar.open .navbar-toggle::before {
        content: "\e5cd";
    }
    .navbar .navbar-collapse {
        transition: 0.5s;
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        /* border-top: 1px solid #eee; */
        max-height: unset;
        height: auto !important;
    }
    .navbar .navbar-collapse .navbar-right {
        display: flex;
        flex-direction: column;
        overflow: hidden auto;
        position: relative;
        width: 100%;
        max-height: 0;
        padding-block: 0px;
    }
    .navbar .navbar-collapse.open .navbar-right {
        transition: all 0.5s;
        max-height: 100svh;
    }
    .navbar .navbar-right > li {
        transition: inherit;
    }
    .navbar .navbar-right > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 55px;
        background-color: #000;
        border-bottom: 1px solid #333 !important;
    }
    .navbar .dropdown-toggle::after {
        all: unset;
        content: "\e5cf";
        font-family: var(--gms);
        font-variation-settings: var(--gms-300-out);
        margin-left: auto;
        font-size: 1.5em;
        opacity: 0.5;
    }
    .navbar .dropdown.open .dropdown-toggle {
        color: var(--page-point-color);
        font-weight: 600;
    }
    .navbar .dropdown.open .dropdown-toggle::after {
        content: "\e5ce";
        color: #fff;
        /* color: var(--page-point-color); */
        font-variation-settings: var(--gms-400-out);
        opacity: 1;
    }
    .navbar .navbar-right .dropdown-menu {
        /* transition: 0.75s; */
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #333 !important;
        padding: 0 !important;
        max-height: 0;
    }
    .navbar .navbar-right .dropdown-menu a {
        width: 100%;
        display: block;
        color: #ccc !important;
        padding: 10px 15px !important;
    }
    .navbar .navbar-right > li.open .dropdown-menu {
        opacity: 1;
        max-height: 100svh;
    }
}
/* ==================[ footer ]================== */
footer {
    margin-top: 0px;

    /* left logo */
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.04);
    background: #111;
}
footer img {
    margin-right: 30px;
    /* text */
    max-width: 190px !important;
}
footer li {
    font-size: clamp(16px, 1vw, 18px);
    color: #a1a1a1;
}
footer li.corp {
    margin-bottom: 13px;
    font-size: clamp(16px, 1.5vw, 22px);
    color: #f1f1f1;
}
footer li.copyright {
    margin-top: 15px;
    color: #5d5d5d;
    font-size: clamp(14px, 1vw, 16px);
    letter-spacing: 0.5px;
}
footer .footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #666;
    gap: 0 18px;
    letter-spacing: -0.02em;
}
footer .footer-wrap {
    display: flex;
    align-items: flex-end;
    padding-block: clamp(30px, 2vw, 50px);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    footer .footer-wrap {
        /* flex-direction: column; */
        /* gap: 20px; */
    }
}
/* 로그인 버튼 */
#loginBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 11px;
    background: transparent;
    color: #696969;
    line-height: 1;
    border-radius: 0;
    border: none;
    font-size: clamp(11px, 2vw, 12px);
    margin-left: auto;
    font-weight: 500;
}
#loginBtn:hover {
    background: #2f2f2f;
    font-weight: 500;
}
#loginBtn span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-500-out);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #loginBtn {
        margin-left: inherit;
    }
}
/* 스크롤버튼 */
#scrollTop {
    --width: 35px;
    --bottom: 25px;
    all: unset;
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    /* position: sticky; */
    right: 25px;
    bottom: var(--bottom);
    display: none;
    justify-content: center;
    align-items: center;
    width: var(--width);
    /* margin: calc((var(--width) + var(--bottom)) * -1) 0 var(--bottom) auto; */
    padding: 0;
    background: rgba(40, 40, 40, 0.75);
    border-radius: 4px;
    aspect-ratio: 1;
    text-align: center;
    color: #fff;
}
#scrollTop::before {
    content: "\e5d8";
    font-family: var(--gms) !important;
    font-variation-settings: var(--gms-500-out);
    font-size: 1.35rem;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #scrollTop {
        display: none !important;
    }
}
/* ==================[ component ]================== */
.img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    gap: 50px;
    padding: 40px 50px;
    border-radius: 10px;
}
.img-wrap .img-box {
    flex-direction: column;
    border-radius: 0;
}
.img-wrap .img-box p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    color: #333;
}
.img-wrap img {
    mix-blend-mode: multiply;
    max-height: 300px;
}
.img-wrap img.img-auto {
    max-height: unset;
}
.dl-box {
    border-top: 2px solid #333;
}
.dl-box dl {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    gap: 40px;
    border-bottom: 1px solid #ccc;
}
.dl-box :where(dt, dd) {
    font-size: 17px;
    padding-block: 25px 32px;
    padding-bottom: 25px;
}
.dl-box dt {
    padding-inline: 20px;
    font-size: 18px;
}
.dl-box dd:only-child {
    grid-column: span 2;
    padding-inline: 20px;
}
.dl-box :where(ol, ul) {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.dl-box h6 {
    font-size: inherit;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}
.dl-box * + h6 {
    margin-top: 10px;
    font-weight: 600;
}
.dl-box + .btn {
    display: flex;
    width: fit-content;
    font-size: 18px;
    background-color: var(--page-point-color);
    color: #fff;
    padding-inline: 40px;
    height: 60px;
    margin-top: 50px;
    margin-inline: auto;
    border-radius: 5px;
    font-weight: 500;
}
.dl-box + .btn:hover {
    background-color: var(--page-point-color-hover);
}
.arrow {
    flex: 0;
    align-self: center;
}
.arrow::before {
    content: "\e5cc";
    display: block;
    font-family: var(--gms);
    font-size: 54px;
    font-variation-settings: var(--gms-600-out);
    color: #333;
}
/* ==================[ subpage ]================== */
/* [ subpage-header ] */
.subpage-header {
    --background-image: url(/public/img/sub/sub-top01.jpg);
    position: relative;
    height: 180px;
    background-color: #888;
}
.subpage-header .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--background-image) no-repeat center / cover;
    /* filter: brightness(0.8); */
    /* &.visual01 { --background-image: url(/public/img/sub/sub-top01.jpg); } */
    /* &.visual02 { --background-image: url(/public/img/sub/sub-top02.jpg); } */
}

.subpage-header .bg::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
}
.subpage-title {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    /* display: none; */
}
.subpage-title h2 {
    line-height: 1;
    margin-top: 10px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    /* color: #004f89; */
    font-size: clamp(36px,3vw,45px);
    font-family: var(--font-ns);
    letter-spacing: -0.01em;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    gap: 20px;
    display: none;
}
.breadcrumb li {
    position: relative;
    font-size: 0.9rem;
    line-height: 1;
    color: #fff;
    font-size: 14px;
}
.breadcrumb li.active {
    /* color: #004f89; */
    font-weight: 600;
    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;
    opacity: 0.6;
    color: #fff;
}
.breadcrumb li.home a {
    line-height: 1;
}
.breadcrumb li.home a::before {
    content: "HOME";
}
/* [ subpage-navbar ] */
.snb {
    --snb-height: clamp(50px,5vw,60px);
    position: relative;
    z-index: 10;
    /* margin-top: calc(var(--snb-height) * -1); */
    border-bottom: 1px solid #efefef;
    box-shadow: 0 4px 0 #fafafa;
    box-shadow: 0 4px 0 rgb(201 201 201 / 10%);
}

.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
    /* border-radius: 15px 15px 0 0; */
    /* overflow: hidden; */
    /* background: rgb(0 92 159 / 60%); */
    /* backdrop-filter: blur(15px); */
}
.snb li {
    /* flex: 0 1 25%; */
    flex: 1;
}
.snb a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: clamp(15px,2vw,17px);
    height: var(--snb-height);
    color: #333;
    font-family: var(--font-ns);
    font-weight: 600;
    letter-spacing: -0.015em;
}

.snb a::before {
    content: "";
    width: 1px;
    height: 18px;
    background: #e5e5e5;
    position: absolute;
    right: 0;
}

.snb ul > li:last-child a::before {
    content: none;
}
.snb li.active a {
    background: #fff;
    font-weight: 800;
    color: #007cbb;
    height: var(--snb-height);
}
.snb li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    width: 100%;
    height: 2px;
    background: #2c9fd9;
}
@media(max-width:767.98px){
    .snb ul{
        flex-wrap: wrap;
    }
    .snb li{
        flex: 0 1 auto;
        width: 50%;
    }
    .snb a::before{
        content: none;
    }
}
/* [ subpage-title-level ] */
/* 공통 */
:is(.title-h3, .title-h4, .title-h5) :is(p, li) {
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}
/* h3 */
.subpage .title-h3 {
    margin-bottom: clamp(40px,5vw,70px);
    text-align: center;
}
.subpage .title-h3:has(p) {
    margin-bottom: clamp(50px,5vw,80px);
}
.subpage .title-h3:only-child {
    margin-bottom: 0;
}
.subpage .title-h3 > h3 {
    margin-block: 0;
    font-weight: 900;
    font-size: clamp(32px,3vw,40px);
    color: #222;
    font-family: var(--font-ns);
    letter-spacing: -0.035em;
}
.subpage .title-h3 > p {
    font-size: 17px;
    letter-spacing: -0.01em;
    line-height: 1.7;
}
.subpage .title-h3 > p.time {
    width: fit-content;
    margin-top: 15px;
    margin-inline: auto;
    font-weight: 600;
    font-size: 17px;
    color: #444;
}
[id*="cs"] .title-h3 > p {
}
.subpage .title-h3 > * + * {
    margin-top: 30px;
}
/* h4 */
.subpage .title-h4 {
    margin-bottom: 40px;
    text-align: center;
}
.subpage .title-h4:has(p) {
    margin-bottom: 50px;
}
.subpage *:not([class*="title"]) + .title-h4 {
    margin-top: 80px;
}
.subpage .title-h4 > h4 {
    font-weight: 800;
    font-size: clamp(24px,3vw,32px);
    color: #333;
    margin: 0;
    font-family: var(--font-ns);
    letter-spacing: -0.02em;
}
.subpage .title-h4 > h4.big{
    font-size: clamp(32px,3vw,42px);
}
.subpage .title-h4 > p {
    font-size: clamp(16px,2vw,20px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #707070;
}
.subpage .title-h4 > * + * {
    margin-top: 15px;
}
.subpage .title-h4 span.cate {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    color: #007cbb;
}
#site .title-h4 + .title-h4 {
    margin-top: 70px;
    padding-top: 80px;
    border-top: 1px solid #ccc;
}
/* h5 */
.subpage .title-h5 {
    margin-bottom: 15px;
}
.subpage *:not([class*="title"]) .title-h5 {
    margin-top: 30px;
}
.subpage .title-h5 > h5 {
    font-size: clamp(20px,3vw,24px);
    font-weight: 500;
    margin: 0;
}
.subpage .title-h5 > p {
    font-size: 16px;
}
.subpage .title-h5 > * + * {
    margin-top: 15px;
}
/* [ subpage-content ] */
.subpage {
    overflow: hidden;
    position: relative;
}
.subpage section {
    padding: 80px 0 clamp(100px,5vw,150px);
    /* min-height: 300px; */
}
.subpage section:has(.title-h3:only-child) {
    padding-bottom: 80px;
}
.greet-wrap {
    display: flex;
    gap: 80px;
}
.greet-wrap .info {
    flex: 0 1 60%;
}
.greet-wrap .info h5 {
    font-size: clamp(32px,3vw,40px);
    font-weight: 900;
    margin-bottom: 30px;
    color: #84caed;
    font-family: var(--font-ns);
    font-style: italic;
}
.greet-wrap .info p {
    margin-bottom: 28px;
    line-height: 1.58;
    font-size: clamp(15px,2vw,17px);
    letter-spacing: -0.02em;
}
.greet-wrap .info p.minister {
    margin-top: 50px;
}
.greet-wrap .info p.minister span {
    display: block;
    font-size: 1em;
}
.greet-wrap .info p.minister span.name {
    font-weight: 700;
    font-size: 1.2em;
}

.greet-wrap .info p.minister span.name b {
    font-weight: 800;
    font-size: 1.17em;
}
.greet-wrap .img-box {
    flex: 1;
    background-color: #ccc;
}
@media(max-width:767.98px){
    .greet-wrap{
        flex-direction:column-reverse;
        gap: 40px;
    }
}
.intro-wrap .info h4 {
    font-size: clamp(24px,3vw,32px);
    font-weight: 900;
    margin-bottom: 30px;
    color: #84caed;
    font-family: var(--font-ns);
    font-style: italic;
}
.intro-wrap .info p {
    margin-bottom: 28px;
    line-height: 1.58;
    font-size: clamp(15px,2vw,17px);
    letter-spacing: -0.02em;
}
.vision-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 100px;
}

#ab02 .title-h4 {
    position: relative;
    margin: 0 auto clamp(40px,5vw,60px);
    padding: 0px;
}

.intro-wrap .sector {
    border: 1px solid #ccc;
    padding: clamp(20px,3vw,30px);
}
.intro-wrap .sector h5 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}
.intro-wrap .sector li {
    font-size: 16px;
}
.vision-wrap .col {
    flex: 1;
    display: flex;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    aspect-ratio: 1;
    /* text-align: center; */
    /* border: 3px solid #d3e9f6; */
    background: linear-gradient(135deg, #0687c9, #53b3e3);
    --color: #0687c9;
    position: relative;
    overflow: hidden;
    padding: 30px;
}
.vision-wrap .col:nth-child(2) {
    background: linear-gradient(135deg, #c14e73, #e37598);
    --color: #c14e73;
}
.vision-wrap .col:nth-child(3) {
    background: linear-gradient(135deg, #7a53a5, #ae8cd3);
    --color: #7a53a5;
}
.vision-wrap .col:nth-child(4) {
    background: linear-gradient(135deg, #49537b, #777fa1);
    --color: #49537b;
}
.vision-wrap .col span.material-symbols-outlined {
    font-size: 65px;
    color: rgb(255 255 255 / 70%);
    font-variation-settings: var(--gms-400-out), var(--gms-grad-zero);
    position: absolute;
    right: 33px;
    bottom: 35px;
    text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.2);
    padding: 5px;
}
.vision-wrap .col h5 {
    font-size: clamp(20px,3vw,24px);
    font-weight: 600;
    font-family: var(--font-ns);
    letter-spacing: -0.03em;
    line-height: 1.5;
    color: #fff;
}

.vision-wrap .col h5 br {
}

.vision-wrap.type02 .col {
    /* background: transparent; */
    /* border: 1px solid #222; */
    color: #000;
    aspect-ratio: unset;
    height: 300px;
    padding: 35px 40px;
}
.vision-wrap.type02 .col::before {
    content: "";
    display: block;
    background-color: #fff;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    /* width: 100%; */
    /* height: 100%; */
    position: absolute;
    border-radius: 4px;
}
.vision-wrap.type02 .col h5 {
    color: var(--color);
    font-size: clamp(20px,3vw,28px);
    font-weight: 800;
}
.vision-wrap.type02 .col span.material-symbols-outlined {
    color: var(--color);
    text-shadow: none;
}
@media(max-width:767.98px){
    .vision-wrap{
        flex-direction: column;
        /* max-width: 250px; */
        width: 100%;
        margin-inline: auto;
        gap: 20px;
    }
    .vision-wrap.type02{
        max-width:100%;
        gap: 20px;
        margin-bottom: 0;
    }
    #site .vision-wrap .col{
        aspect-ratio: unset;
        /* padding-right: 100px; */
        padding: 30px 100px 30px 35px;
        height: 150px;
        flex: 0 1 auto;
    }
    #site .vision-wrap .col span.material-symbols-outlined{/* top: 20%; */bottom: 20px;right: 25px;}
}
.member-wrap {
    display: flex;
    gap: 50px 30px;
    /* justify-content: center; */
    flex-wrap: wrap;
}
.member-wrap.minister {
    justify-content: center;
}
.member-wrap .col {
    flex: 0 1 48.8%;
    align-items: flex-start;
    display: flex;
    /* flex-direction: column; */
    gap: 35px;
    padding: 40px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.025);
    border: 1px solid #d0d0d0;
    border-top: 4px solid #80c5e9;
}
.member-wrap.minister .col {
    flex-basis: 60%;
}

.member-wrap.minister .col .img-box {
    max-width: 150px;
}
.member-wrap .img-box {
    overflow: hidden;
    aspect-ratio: 142/179;
    width: 32%;
    border-radius: 8px;
    margin-inline: auto;
    background-color: #ccc;
}
.member-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.member-wrap .info {
    flex: 1;
}
.member-wrap .profile {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: clamp(20px,3vw,28px);
}
.member-wrap .profile span.mag {
    font-size: inherit;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--page-point-color);
}
.member-wrap .profile h5 {
    font-size: inherit;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}
.member-wrap .career {
    padding-top: 25px;
}
.member-wrap .career h6 {
    font-size: clamp(14px,2vw,16px);
    font-weight: 600;
    margin-bottom: 7px;
    line-height: 0.9;
}
.member-wrap .career ul + h6 {
    margin-top: 17px;
}

.member-wrap .career ul li {
    color: #555;
    position: relative;
    padding-left: 10px;
    margin-top: 1px;
    font-size: clamp(12px,2vw,14px);
}

.member-wrap .career ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #8ec1e7;
    position: absolute;
    left: 0px;
    top: 8px;
    border-radius: 50%;
}
@media(max-width:767.98px){
    #site .member-wrap .col{
        /* flex-direction: column; */
        flex-basis: 100%;
        padding: 25px;
    }
    #site .member-wrap{
        gap: 20px;
    }
    #site .member-wrap .img-box{
        width: 30%;
        flex: 0 1 auto;
    }
}
.table-wrap + .table-wrap {
    margin-top: 50px;
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border-radius: 0;
}
.map-wrap > [id*="daumRoughmapContainer"] {
    width: 100% !important;
    height: clamp(350px,25vw,550px) !important;
}
.map-wrap > [id*="daumRoughmapContainer"] > .wrap_map {
    height: 100% !important;
}
.map-wrap .info {
    display: flex;
    margin-top: 30px;
    gap: 25px;
}
.roughmap_maker_label .roughmap_lebel_text {
    /* font-size: 20px !important; */
    scale: 1.5;
}
.map-wrap .tel {
    margin-left: auto;
}
.map-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
    color: #333;
}
.map-wrap li.addr {
    font-size: clamp(18px,2vw,20px);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.map-wrap li span.material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: var(--gms-500-fill), var(--gms-grad-zero);
    color: #fff;
    background: var(--page-point-color);
    border-radius: 50%;
    padding: 6px;
}
.map-wrap .other {
    margin-top: 30px;
}
.map-wrap .other .item + .item {
    margin-top: 40px;
}
.map-wrap .other .item {
    border-top: 1px solid #222;
    border-bottom: 1px solid #ddd;
    padding: 30px 20px;
}
.map-wrap .other h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
@media(max-width:767.98px){
    .map-wrap .info{
        flex-direction:column;
        gap: 10px;
    }
    .map-wrap .tel{
        margin-left: 0;
    }
}
.onair-wrap {
    max-width: 700px;
    margin-inline: auto;
    /* display: flex; */
    /* align-items: center; */
    gap: 100px;
}
.onair-wrap iframe {
    aspect-ratio: 5/3;
    width: 100%;
    height: 100%;
}
.onair-wrap h5 {
    line-height: 1;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.onair-wrap li {
    display: flex;
    font-size: 16px;
    margin-top: 15px;
}
.onair-wrap li b {
    width: 140px;
    flex-shrink: 0;
}
.onair-wrap .video {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    flex: 1;
}
.onair-wrap .info {
    margin-top: 20px;
    border-radius: 20px;
    padding: 35px;
    /* background-color: #f7f7f7; */
    border: 1px solid #ccc;
}
.sup-wrap {
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.sup-wrap .title {
    background-color: var(--page-point-color);
    color: #fff;
    padding: 20px 30px;
}
.sup-wrap .title h4 {
    font-size: clamp(20px,2vw,22px);
    font-weight: 600;
}
.sup-wrap .inner {
    padding: 20px 30px;
}
.sup-wrap p {
    font-size: clamp(18px,3vw,20px);
}
.down-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}
.down-wrap .col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}
.down-wrap .col::after {
    content: "\f090";
    font-family: var(--gms);
    font-size: 20px;
}
.down-wrap .col:hover {
    background-color: var(--page-point-color);
    color: #fff;
}
@media(max-width:767.98px){
    .down-wrap{
        display: flex;
        flex-direction:column;
    }
}
.room-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.room-wrap .col {
    position: relative;
    aspect-ratio: 5/4;
    overflow: hidden;
    border-radius: 10px;
}

.room-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.room-wrap img[src*="ysample.jpg"] {
    filter: brightness(0.9);
    opacity: 0.5;
}
@media(max-width:767.98px){
    .room-wrap{
           grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}
/* ==================[ mainpage ]================== */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
    position: relative;
    width: 100%;
}
#mainCarouselSwiper .swiper {
    display: block !important;
}
#mainCarouselSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1920/500;
    height: auto;
    /* height: max(clamp(600px, 70vw, 750px), calc(100vh - var(--navbar-height))); */
    /* height: 500px; */
}
@media (max-width: 1280px) {
    #mainCarouselSwiper .swiper-slide {
        height: 150px;
    }
}
#mainCarouselSwiper .swiper-slide.slide1 .swiper-bg {
    filter: brightness(0.5);
}
#mainCarouselSwiper .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#mainCarouselSwiper .swiper-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#mainCarouselSwiper .swiper-caption {
    position: relative;
    z-index: 10;
}
#mainCarouselSwiper .swiper-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#mainCarouselSwiper .swiper-link-btn {
    display: none;
}
#mainCarouselSwiper .swiper-link-btn span::before {
    content: "더보기";
}

#mainCarouselSwiper .swiper-caption {
    color: #fff;
    text-align: center;
}
#mainCarouselSwiper .swiper-caption h1 {
    font-family: "Noto serif KR", serif;
    font-size: clamp(16px,3vw,36px);
    margin-bottom: clamp(10px,3vw,20px);
    font-weight: 700;
    letter-spacing: -0.05em;
}
#mainCarouselSwiper .swiper-caption p {
    font-size: clamp(14px,2vw,20px);
}
#mainCarouselSwiper [class*="swiper-button"] {
    display: flex;
    align-items: center;
    top: 0;
    margin: 0;
    opacity: 1;
    width: 10%;
    height: 100%;
}
#mainCarouselSwiper [class*="swiper-button"]::after {
    content: none;
}
#mainCarouselSwiper [class*="swiper-button"]::before {
    position: relative;
    right: auto;
    top: 0;
    font-family: var(--gms);
    font-variation-settings: var(--gms-100-out);
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
}
#mainCarouselSwiper [class*="swiper-button"]:hover::before {
    color: rgb(255, 255, 255, 1);
}
#mainCarouselSwiper .swiper-button-next {
    right: 0;
}
#mainCarouselSwiper .swiper-button-next::before {
    content: "\e5e1";
}
#mainCarouselSwiper .swiper-button-prev::before {
    content: "\e2ea";
}
#mainCarouselSwiper .swiper-pagination-container {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}
#mainCarouselSwiper .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    height: auto;
    line-height: 1;
    gap: 7px;
}
#mainCarouselSwiper .swiper-pagination span {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
    transition: ease-in-out 0.2s all;
    margin: 0;
}
#mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}
@media (width <= 767.98px) {
    #mainCarouselSwiper [class*="swiper-button"] {
        display: none;
    }
    #mainCarouselSwiper .swiper-pagination-container{
        bottom: -20px;
    }
    #site #mainCarouselSwiper .swiper-pagination-container span{
        background-color: rgb(0 0 0 / 39%);
        width: 8px;
        height: 8px;
    }
    #site #mainCarouselSwiper .swiper-pagination span.swiper-pagination-bullet-active{
         background-color: #000;
     }
}

/* [ main-content ] */
.mainpage section {
    position: relative;
    padding-block: clamp(50px, 5vw, 140px);
    background-color: #fff;
}
#site .mainpage :is(.main-visual, .main-glory) {
    background-color: transparent;
}
.mainpage section .bg {
    z-index: -1;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.mainpage section .bg img {
    background-color: #222;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    /* position: sticky; */
    top: 0;
    filter: brightness(0.5) grayscale(0.4);
    filter: brightness(0.8) grayscale(0.4);
}

.mainpage .main-glory .bg img {
    filter: none;
    object-position: top;
}
.mainpage section:nth-child(odd) {
    background-color: #f6f6f6;
}
.mainpage .title {
    text-align: center;
    margin-bottom: 70px;
}
.mainpage .title:only-child {
    margin-bottom: 0;
}
.mainpage .title h2 {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #111;
}
.mainpage .title p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: -0.03em;
}
.mainpage .title:only-child p {
    font-size: 22px;
    font-weight: 500;
    color: #666;
}
.mainpage .title h2 + p {
    margin-top: 30px;
}
#site .main-visual {
    height: max(600px, calc(100vh - var(--navbar-height)));
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    #site .main-visual {
        height: 500px;
    }
}
.visual-caption {
    color: #fff;
    text-align: center;
}
.visual-caption h1 {
    font-family: "Noto serif KR", serif;
    font-size: clamp(36px, 3vw, 46px);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.05em;
}
.visual-caption p {
    font-size: 20px;
}

.m-video-wrap {
    display: flex;
    gap: clamp(40px, 4vw, 80px);
}
.m-video-wrap .col {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}
.m-video-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.m-video-wrap .swiper-slide {
    width: 100% !important;
}
.m-video-wrap .page-header {
    display: none;
}
.m-video-wrap .bottom {
    display: none;
}
.m-video-wrap .col.info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 8px solid var(--page-point-color);
}
.m-video-wrap .col.info h4 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: clamp(15px, 1vw, 25px);
    padding-bottom: clamp(15px, 1vw, 25px);
    font-weight: 700;
    letter-spacing: 0.25em;
    border-bottom: 1px solid #ccc;
    line-height: 1;
}
.m-video-wrap .col.info p {
    text-align: center;
    font-size: clamp(16px, 1.2vw, 20px);
}
.m-video-wrap .type_swiper_s1 {
    padding-bottom: 0;
}
.m-video-wrap .type_swiper_s1 [class*="swiper-button"].swiper-button-next {
    right: 20px;
}

.m-video-wrap .type_swiper_s1 [class*="swiper-button"].swiper-button-prev {
    left: 20px;
}
.m-video-wrap .type_swiper_s1 [class*="swiper-button"]::before {
    color: #fff;
}
.mainpage .main-youtube {
    padding-block: 0;
    height: 400px;
    display: flex;
    align-items: center;
    background-color: #1c347b !important;
    background: linear-gradient(120deg, #1c347b, #000);
}
@media (max-width: 1280px) {
    .mainpage .main-youtube {
        height: 160px;
    }
}
.main-youtube h3 {
    font-size: clamp(22px, 2.2vw, 42px);
    font-weight: 700;
    margin-bottom: clamp(10px, 1vw, 20px);
    color: #fff;
}
.main-youtube .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-youtube .btn {
    /* background-color: var(--page-point-color); */
    /* color: #fff; */
    background-color: #fff;
    border-radius: 9999px;
    line-height: 1;
    padding-inline: 20px;
    font-weight: 700;
}
.main-next h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: clamp(30px, 3vw, 60px);
    font-weight: 700;
    text-align: center;
}
.m-next-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 40px);
}
.m-next-wrap .col {
    background-color: var(--page-point-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0 0 clamp(15px, 1.5vw, 30px) 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.m-next-wrap .col img {
    aspect-ratio: 5/3;
    filter: brightness(0.95);
}
.m-next-wrap .col b {
    font-size: clamp(18px,2vw,20px);
    color: #fff;
    display: block;
    margin-top: clamp(15px, 1.5vw, 30px);
}
.m-next-wrap .col span {
    color: #fff;
}
@media(max-width:767.98px){
    .m-video-wrap,
    .m-next-wrap{
        display: flex;
        flex-direction: column;
        max-width: 400px;
        margin-inline: auto;
        gap: 10px;
    }
    .m-video-wrap .col.info{
        padding: 20px;
    }
}
/* [ main-widget ] */
[class^="board_box"] {
    margin-bottom: 0 !important;
}
.page-header {
    margin-block: 0px 20px;
    border-bottom: none;
    padding-bottom: 0;
}
.page-header h4 {
    display: inline-block;
    font-size: 36px;
    letter-spacing: -0.03em;
}
div[class^="board_box_"] .page-header h4 {
    position: relative;
    font-weight: 900;
    /* font-family: var(--font-ns); */
    color: #1f1f1f;
    font-weight: 600;
}

div[class^="board_box_"] .page-header h4::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #9ad8f8;
}
.page-header i::before {
    position: relative;
    display: block;
    content: "\e145" !important;
    font-family: var(--gms);
    font-variation-settings: var(--gms-400-out);
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 400;
    color: inherit;
    opacity: 1;
}

.page-header i {
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
    gap: 3px;
    color: #555;
    letter-spacing: 0;
    font-weight: 400;
    margin-top: 4px;
    /* border: 1px solid #aaaa; */
    /* padding: 5px 10px; */
}

.page-header a:hover i {
    color: var(--page-point-color);
}

.page-header i::after {
    content: "더보기";
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
}
.type_list {
    display: flex;
    flex-direction: column;
    /* gap: 19px; */
}
.type_list li {
    padding: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.type_list .info {
    font-size: 15px;
    letter-spacing: -0.01em;
}
.type_list a:hover {
    text-decoration: underline;
}
.type_list :where(li, a) {
    line-height: 1;
    font-size: 18px;
}

.type_list a {
    position: relative;
    padding: 20px 0;
}

.type_list a .subject {
    font-weight: 500;
    letter-spacing: -0.025em;
}
.type_list .info span:not(.regdate) {
    display: none;
}
.type_thumb {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 20px;
}

.type_blog_b {
    margin-top: 35px;
}
.type_thumb::before,
.type_thumb::after {
    content: none;
}
.type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
.type_blog_b .top {
    border-radius: 8px;
}
.type_blog_b .inner:hover a .thumb {
    filter: brightness(0.8);
    transform: scale(1.15);
}
.type_thumb .thumb {
    aspect-ratio: 1.6666666667;
    height: auto;
}
.type_thumb .bottom {
    padding: 0;
}
.type_thumb .info {
    display: none;
}
.type_thumb .bottom .title {
    padding: 20px 0 0;
    margin: 0;
    /* border: 1px solid #ddd; */
    border-top: none;
    border-radius: 0 0 5px 5px;
}
.type_thumb .bottom .title a {
    font-size: clamp(15px, 3vw, 17px);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.type_thumb .bottom .title a:hover {
    color: var(--page-point-color);
}
/* [ main-popup ] */
#mainPopup {
    position: relative;
    top: calc(var(--navbar-height) - 140px);
}
.main_popup {
    border: 0;
    border-radius: 0;
    background-color: transparent !important;
}
.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-100-out);
    font-size: inherit;
}
.main_popup .main_popup_contents {
    overflow: hidden;
    padding: 10px;
    background: #fff;
}
.main_popup .main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
.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 :where(label, div) {
    opacity: 0.8;
}
.main_popup_optional :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
.main_popup_optional :where(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;
}
/* ==================[ table ]================== */
#site .table-style {
    border: 1px solid #ddd;
}
#site .table-style :where(th, td) {
    text-align: center;
    padding: 15px;
    font-size: clamp(15px,2vw,17px);
    vertical-align: middle;
    border: 1px solid #e3e3e3;
}
#site .table-style thead th {
    border-bottom: 0;
    background-color: #0081c3;
    border: 1px solid var(--page-point-color-dark);
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    padding: 13px;
}
#site .table-style tbody th {
    background-color: #f7f7f7;
}
#site .table-style ul {
    text-align: left;
}
#site .table-style .point {
    color: var(--page-point-color);
    font-weight: 600;
}
.table-spec {
    --border-color: #ccc;
    border: 1px solid var(--border-color);
}
.table-spec :where(th, td) {
    text-align: center;
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
    border-right: 0 1px 1px 0 solid var(--border-color);
}
.table-spec td {
    color: #444;
}
.table-spec thead th {
    border-bottom: 0;
    background-color: #eee;
    border: 1px solid var(--border-color);
    color: #222;
    font-weight: 600;
}
/* ==================[ board ]================== */
/* 게시판 숨김 */
:where(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: none;
    visibility: hidden;
}
.board_wrapper {
    margin-block: 0;
    /* 게시글 공지사항 */
}
.board_wrapper tr.notice {
    background-color: #f8f8f8;
}
.board_wrapper tr.notice td.subject a {
    font-weight: 500;
}
.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 span {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.board_wrapper td.subject small {
    margin-top: 0;
    /* 잠금 아이콘 */
}
.board_wrapper td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
    /* 댓글 아이콘*/
}
.board_wrapper td.subject small.comment {
    opacity: 0.75;
    order: 1000;
    translate: 0 1px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--page-point-color-dark);
    font-weight: 700;
}
.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;
    /* 게시글 수정/삭제/목록/댓글 등록 버튼 */
}
.board_wrapper[id$="_view"] .btn {
    min-width: 60px;
    padding-inline: 10px;
    justify-content: center;
    align-items: center;
}
.board_wrapper :is(.form-caption, .wr_caution) i {
    color: var(--page-point-color);
}
.board_wrapper .wr_caution {
    padding-left: 18px;
}
:where(.member_wrapper, .board_wrapper) .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}
:where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0 !important;
}
/* 게시판/주문폼/회원가입 버튼 */
:where(.member_wrapper, .board_wrapper) :where(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}
/* checkbox, radio */
:where(.member_wrapper, .board_wrapper) tbody td:has(.radio-inline, .checkbox-inline) {
    display: flex;
    gap: clamp(7px, 5vw, 10px) clamp(15px, 3vw, 30px);
}
:where(.member_wrapper, .board_wrapper) .checkbox {
    margin: 0;
}
:where(.member_wrapper, .board_wrapper) .checkbox label {
    font-size: 1rem;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
:where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
    font-weight: 500;
    color: #1b54e4;
    text-decoration: underline;
}
:where(.member_wrapper, .board_wrapper) :where(.custom_checkbox, .custom_radio) + span::before {
    color: #555;
    font-size: 1.1em;
    vertical-align: 0px;
    content: "\f0c8";
    font-family: "Font Awesome 6 Free";
    font-weight: 300;
    margin: 0px 7px 0 0px;
    transform: translateY(1px);
    display: inline-block;
}
:where(.member_wrapper, .board_wrapper) .custom_checkbox:checked + span::before {
    content: "\f14a";
    color: var(--page-point-color);
    font-weight: 900;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type="checkbox"], input[type="radio"]) {
    position: static;
    margin: 0 5px 0 0;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .radio-inline) {
    margin-block: 0;
    padding-left: 0;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :where(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 0 !important;
        margin-bottom: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    :where(.member_wrapper .text-center .btn + .btn) {
        margin-left: 0 !important;
    }
    :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 카테고리 / 분류 */
#site #bbsArea .category_wrap {
    margin-bottom: 50px;
}
#site #bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
#site #bbsArea .category_wrap li {
    margin: 0;
}
#site #bbsArea .category_wrap a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}
#site #bbsArea .category_wrap a:hover {
    color: #111;
}
#site #bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}
/* 게시판 custom*/
:is(#bbsArea) :is([class*="wrap"]) {
    margin: 0;
    /* 게시판 노출 */
}
:is(#bbsArea) :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    visibility: visible;
    margin-top: 0;
}
:is(#bbsArea) .board_wrapper + :is(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}
:is(#bbsArea) .pagination_wrap + .search_wrap {
    margin-top: 30px;
}
:is(#bbsArea) .pagination_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
:is(#bbsArea) .pagination_wrap .box a {
    display: flex;
    justify-content: center;
    align-items: center;
}
:is(#bbsArea) .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0;
    /* 검색 */
}
:is(#bbsArea) .search_wrap #search_kind {
    line-height: 1;
    /* 게시글 작성 */
}
:is(#bbsArea) .search_wrap .write_btn_wrap {
    margin-top: 0;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    /* 게시판 목록 하단 */
    :is(#bbsArea) .search_wrap .write_btn_wrap {
        width: 100%;
    }
    :is(#bbsArea) .search_wrap #write_btn {
        width: 100%;
        min-width: auto;
    }
}
:is(#bbsArea) .badge {
    display: inline-flex;
    translate: 0 0px;
    background-color: #ef3743;
    border-radius: 0;
    padding: 6px 7px;
    margin-right: 0px;
    /* 게시글 수정 */
    border-radius: 3px;
}
:is(#bbsArea) .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
:is(#bbsArea) .option_wrap .list_btn_wrap {
    position: static;
    /* 게시글 댓글 */
}
:is(#bbsArea) .reply_wrap h4 {
    text-align: left;
    font-size: clamp(15px, 3vw, 17px);
}
:is(#bbsArea) .reply_wrap .btn_wrap {
    margin-top: 0.75em;
    display: flex;
}
:is(:is(#bbsArea) .reply_wrap #reply_modify_btn, :is(#bbsArea) .reply_wrap .text-left + button) {
    margin-left: auto;
}
:is(#bbsArea) .reply_wrap #reply_btn {
    cursor: pointer;
    background-color: var(--page-point-color);
    color: #fff;
    display: flex;
}
:is(#bbsArea) .reply_wrap #reply_list .info {
    display: flex;
    gap: 10px;
    height: 40px;
}
:is(#bbsArea) .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]) {
    min-width: unset;
    padding: 0;
}
:is(#bbsArea) .reply_wrap #reply_list :is([id*="reply_modify"], [id*="reply_delete"]):focus {
    border: 0;
}
:is(#bbsArea) .header_wrap span {
}
:is(#bbsArea) .header_wrap strong {
}
/* 게시글 작성 */
.board_wrapper .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}
.board_wrapper .table.board_write_table tbody th {
    background-color: transparent;
    font-weight: 700;
}
.board_wrapper .table.board_write_table tbody td {
    padding: 0px !important;
    border: 0;
}
.board_wrapper .table.board_write_table .text-muted {
    margin-top: 8px;
}
.board_wrapper .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
.board_wrapper .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
}
.board_wrapper .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
    /* 휴지통 버튼 */
}
.board_wrapper .table.board_write_table .files .refresh {
    cursor: pointer;
}
.board_wrapper .table.board_write_table .files .refresh:hover {
    color: #ec0909;
    /* 파일 추가 버튼 */
}
.board_wrapper .table.board_write_table .files + #File_add {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
}
.board_wrapper .table.board_write_table .files + #File_add .fa-plus {
    line-height: 0;
    /* input 가로 */
}
.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%;
    /* 필수 입력 항목 */
}
.board_wrapper .table.board_write_table :where(th > span, span.required_text) {
    position: static;
    margin: -0.15em 3px 0 0;
}
@media (width >= 768px) {
    /* 모바일 md */
    .board_wrapper .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
}
@media (width <= 767.98px) {
    .board_wrapper .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100% !important;
    }
    .board_wrapper .table.board_write_table #delete_thumb {
        width: 100%;
    }
}
/* 게시글 상세 */
.board_data_view {
    border-top: 2px solid #333;
}
/* 게시글 상세 리셋*/
.board_data_view .header_wrap {
    border-bottom: 1px solid #e3e3e3;
    padding-block: 40px;
}
.board_data_view .header_wrap h4.title {
    font-size: 26px;
    font-weight: 600;
}
.board_data_view .contents_wrap .contents_inner {
    font-size: 14px;
}
.board_data_view .contents_wrap {
    padding-inline: 0;
}
.board_data_view .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}
.board_data_view .contents_wrap :where(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside;
}
.board_data_view .contents_wrap ul li {
    list-style-type: disc;
}
.board_data_view .contents_wrap ol li {
    list-style-type: decimal;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .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 a {
        word-break: break-all;
    }
    .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }
}
/* input */
.form-control {
    padding: 0.5rem 0.85rem;
    font-size: inherit;
    height: var(--form-height);
    border-radius: 4px;
}
.form-control[type="file"] {
    position: relative;
    width: 100% !important;
    cursor: pointer;
    padding: 0 0.8rem;
    padding-left: 0;
    line-height: calc(var(--form-height) - 2px);
    margin: 0;
}
.form-control[type="file"]::file-selector-button {
    width: 80px;
    margin-right: 10px;
    font-family: inherit;
    position: relative;
    left: 0;
    height: 100%;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
}
.form-control[type="file"]:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #e5e5e5;
}
/* 모바일 md */
@media (width <= 767.98px) {
    .form-control {
        width: 100%;
    }
}
.wr_form_item .form-control {
    background-color: transparent;
    padding-right: 35px;
}
/* 자동입력방지 */
#wr_captcha {
    margin-top: 0 !important;
}
#captcha {
    z-index: 10;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: 40px;
    margin: 0;
    border-color: transparent;
}
#captcha + br {
    display: none;
}
#captcha + br + input {
    margin-left: -1px;
}
#captcha + br + input:focus {
    z-index: 15;
}
td:has(#captcha) {
    display: flex !important;
    gap: 0 !important;
}
/* [ board-columns ] */
:is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(40px, 4vw, 70px) clamp(20px, 2vw, 30px);
}
:is(.table_video, .table_blog2, .table_pd)::before,
:is(.table_video, .table_blog2, .table_pd)::after {
    content: none;
}
@media (width >= 576px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
@media (width >= 768px) {
    :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
    /* 등록된 [상품/게시글]이 없습니다 문구 */
}
: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.no_content {
    grid-column: span var(--board-template-columns);
}
/* [ board-list ] */
/* 게시판 리스트, 현황 */
:is(.board_list_list, .board_status_list) .table_default {
    border-top: 2px solid #333;
    margin-bottom: 0;
}
:is(.board_list_list, .board_status_list) .table_default :is(th, td) {
    padding: 12px 15px;
    font-size: clamp(15px, 3vw, 16px);
    border-bottom: 1px solid #ddd;
}
:is(.board_list_list, .board_status_list) .table_default td {
    color: #777;
    border-color: #e3e3e3;
}
:is(.board_list_list, .board_status_list) .table_default td:only-child {
    display: table-cell;
}
:is(.board_list_list, .board_status_list) .table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #222;
    font-size: 16px;
}
:is(.board_list_list, .board_status_list) .table_default tbody th.num {
    padding: 17px 15px;
}
:is(.board_list_list, .board_status_list) .table_default tbody .subject a {
    /* width: 100%; */
    overflow: hidden;
    font-size: clamp(15px, 3vw, 17.5px);
    color: #333;
    text-overflow: ellipsis;
}
:is(.board_list_list, .board_status_list) .table_default.table_responsive tbody th {
    margin-bottom: 0;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :is(.board_list_list, .board_status_list) .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    :is(.board_list_list, .board_status_list) .table_default .subject {
        width: 100%;
    }
    :is(.board_list_list, .board_status_list) .table_default .status {
        width: 35%;
    }
}
/* [ board-blog ] */
.table_blog dd::after,
.table_blog dd .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 :is(.left, .right) {
    width: auto;
    height: auto;
}
.table_blog dd a {
    font-weight: 500;
}
:is(.table_blog dd:hover a, .table_blog dd a:is(:hover, :focus)) {
    color: var(--page-point-color);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .table_blog dd {
        flex-direction: column;
        gap: 0;
    }
}
.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 :where(.writer, .hits) {
    display: none;
}
.table_blog dd .right 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 p {
    padding: 0;
    font-size: clamp(14px, 3vw, 16px);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .table_blog dd .right {
        padding-top: 0 !important;
    }
    .table_blog dd .right p {
        line-height: 1.5;
    }
}
.table_blog dd .left {
    flex: 0 1 auto;
    width: 200px;
}
.table_blog dd .left .thumb {
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    .table_blog dd .left {
        width: 100%;
        padding-left: 0;
        margin-right: 0;
    }
}
:where(.table_video, .table_blog2, .table_pd) .inner {
    /* border: 0; */
    border-radius: 10px;
    overflow: hidden;
}
:where(.table_video, .table_blog2, .table_pd) .inner:hover {
    border-color: #3485d8;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.25s;
}
#site :is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb + img.thumb {
    display: block !important;
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
    background-size: cover;
    background-color: #ccc;
    transition: all 0.4s;
}

.table_blog2 .inner:hover .thumb {
    transform: scale(1.1);
    /* filter: brightness(0.75); */
}
#site :is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: none;
}
#site :is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}
#site :is(.table_video, .table_blog2) .bottom {
    margin-top: 0;
    padding: 20px 20px 20px;
}
#site :is(.table_video, .table_blog2) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: -0.015em;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 0;
    padding: 0 !important;
    margin-bottom: 10px !important;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info {
    display: flex;
    gap: 15px;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info span {
    padding: 0 !important;
}
/* [ board-form ] */
:where(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
:where(.board_wrapper form[id*="form"] table.table, .board_wrapper form[id*="form"] :where(th, td)) {
    padding: unset;
    width: unset;
    height: unset;
    border: 0;
    line-height: 1;
    font-size: 1rem;
}
.board_wrapper form[id*="form"] table.table {
    width: 100%;
    border-top: 0;
}
.board_wrapper form[id*="form"] table.table th {
    padding: 0 !important;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    /* 모바일 md */
    background-color: transparent;
    border: 0;
}
@media (width <= 767.98px) {
    .board_wrapper form[id*="form"] table.table th {
        margin-bottom: 15px;
    }
}
.board_wrapper form[id*="form"] table.table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.board_wrapper form[id*="form"] table.table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: flex-start;
    gap: 20px;
    padding: clamp(18px, 3vw, 20px) 10px;
    border-bottom: 1px solid #ccc;
}
.board_wrapper form[id*="form"] table.table tbody tr:first-child {
    border-top: 1px solid #000;
}
.board_wrapper form[id*="form"] #item_agree .checkbox {
    margin-top: 0;
    /* 동의 */
}
.board_wrapper form[id*="form"] #item_agree label,
.board_wrapper form[id*="form"] #item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
/* 주문내역 숨김 */
:where(.form-wrap, form) #list_btn {
    display: none !important;
}

.form-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
/* ==================[ member ]================== */
:is(.find_container, .login_container) .member_wrapper {
    width: 400px;
}
:is(.find_container, .login_container) .member_wrapper .form-group {
    height: 40px;
}
:is(.find_container, .login_container) .member_wrapper .form-group input {
    border: 0;
    padding-left: 0;
}
: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: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 40px);
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: inherit;
    background: #fff;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :is(.find_container, .join_container, .join_write_container, .login_container) {
        width: 100%;
        padding: 0 15px;
        /* 로그인/찾기 */
    }
    :is(.find_container, .join_container, .join_write_container, .login_container) .member_wrapper {
        width: 100%;
        margin: 0 auto;
    }
}
#site .member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}
#site .member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}
#site .member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 14px);
    margin-bottom: 20px;
}
#site .member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #site .member_wrapper :where(#login_form, fieldset) {
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper :where(#login_form, #login_form input) {
        font-size: clamp(13px, 3vw, 14px);
    }
    #site .member_wrapper #login_form input {
        border: 0;
        padding-left: 0;
        padding-right: 35px;
    }
}
#site .member_wrapper .join_agree_box + .checkbox {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.75em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 3vw, 15px);
}
#site .member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: clamp(13px, 2vw, 14px);
}
#site .member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
#site .member_wrapper .join_agree_box + .checkbox > a {
    font-size: 14px;
    color: #1c54e4;
    font-weight: 500;
}
#site .member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #site .member_wrapper .join_agree_box + .checkbox > a {
        font-size: 0.75em;
    }
}
/* [ form ] */
#site .member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
#site .member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}
#site .member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
#site .member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
#site .member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px !important;
}
#site .member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-400-out);
    font-size: 1.25rem;
    color: #000;
}
#site .member_wrapper .form-group > label:nth-child(1) {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
#site .member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #site .member_wrapper .form-group > div:last-child {
        width: 100%;
    }
}
/* [ member-login ] */
#site :is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px !important;
    width: 100%;
}
#site :is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #fff;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #site :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 70px 0 100px;
        height: auto;
    }
}
#site :where(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (width >= 992px) {
    #site :where(#find_idpw, .login_wrapper) {
        height: calc(100vh - var(--navbar-height));
    }
}
@media (height <= 700px) {
    #site :where(#find_idpw, .login_wrapper) {
        height: auto;
        min-height: 700px;
        align-items: flex-start;
    }
}
#site .member_wrapper .login_extra {
    margin-top: 30px;
}
#site .member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}
#site .member_wrapper .login_extra li > a {
    font-size: clamp(13px, 3vw, 14px);
}
#site .member_wrapper .login_extra li + li {
    margin-left: 0;
}
#site .member_wrapper .login_extra li + li::before {
    content: none;
    /* 모바일 md */
}
@media (width <= 767.98px) {
    #site .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #site .member_wrapper .login_extra li + li::before {
        content: none;
    }
}
/* 모바일 md */
@media (width <= 767.98px) {
    #site .member_wrapper #join_form tr th {
        padding: 10px 20px !important;
        margin-bottom: 10px;
    }
    #site .member_wrapper #join_form tr td {
        display: flex !important;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    #site .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 20px;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0 !important;
    }
    #site .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100% !important;
    }
}
#site .member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}
#site .member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#site .member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
#site .member_wrapper .table tbody tr th {
    width: auto;
    padding-inline: 25px 15px;
    background-color: rgba(0, 0, 0, 0.03);
}
#site .member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
#site .member_wrapper .table tbody tr td {
    padding-inline: 15px;
}
#site .member_wrapper .table tbody tr :where(th, td) {
    --display: block;
    padding-block: 12px;
    font-size: clamp(13px, 3vw, 14px);
    /* 모바일 md */
}
@media (width <= 767.98px) {
    :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block !important;
        width: 100% !important;
    }
    #site .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2vw, 17px);
    }
    #site .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }
    #site .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #site .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .files .file_add {
        position: relative;
        right: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
}
/* [ member-privacy ] */
:where(.privacy_container, .agreement_container) {
    text-align: left;
}
:where(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
:where(.privacy_container, .agreement_container) :where(.privacy_container, .agreement_container) .privacy_body {
    font-size: 1rem;
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
}

/* 페이지 준비중 */
.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
    border-radius: 20px;
}
.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: clamp(60px,3vw,74px);
    margin-bottom: 20px;
}
.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: clamp(20px,3vw,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;
}

/* 캘린더 */
.cal-wrap .calendar_wrapper {
    margin-top: 0;
}
.cal-wrap .fc-toolbar {
    display: grid;
    /* justify-content: space-between; */
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cal-wrap .fc-center {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none;
}
.cal-wrap .fc-left {
    display: flex;
    justify-content: flex-start;
}
.cal-wrap :is(.fc-right, ) {
    display: none;
}
#site .cal-wrap [class*="container"] {
    max-width: unset;
    padding-inline: 0 !important;
}
#calendarModal_write .form-horizontal .control-label {
    text-align: left;
    margin-bottom: 10px;
}
#calendarModal_write .col-sm-9 {
    width: 100%;
}
#calendarModal_write .modal-body {
    padding-block: 0;
}
#calendarModal_write .btn-default {
    background-color: var(--page-danger-color);
    color: #fff;
}
#calendarModal_write .btn-success {
    color: #fff;
    background-color: var(--page-point-color);
}
#site #calendarModal_write .hasDatepicker {
    width: 150px !important;
}
#calendarModal_view .modal-body .row {
    display: flex;
}
#calendarModal_view .modal-body {
    padding-inline: 0;
}
#calendarModal_view .modal-body .view_left .row {
    flex-direction: column;
}
#calendarModal_view .modal-body .view_right button {
    display: block;
    position: relative;
    margin-left: auto;
    right: -16px;
}
@media(max-width:767.98px){
    .cal-wrap .fc-toolbar{
        display:flex;
        flex-direction:column;
    }
}
#ab06 article section {
    padding-block: 100px;
    min-height: unset;
}
#ab06 article section.se-banner {
    position: relative;
    padding-block: 0;
    height: clamp(300px,25vw,500px);
    display: flex;
    justify-content: center;
    align-items: center;
}
#ab06 article section.se-banner .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    /* background-color: #ccc; */
    background: url(/public/img/sub/ab06-bg.jpg) no-repeat center / cover;

    filter: brightness(0.7);
}

#ab06 article section.se-banner h3 {
    font-size: clamp(30px,3vw,42px);
    font-weight: 700;
    color: #fff;
    text-align: center;
}
#ab06 article section:nth-child(odd) {
    background-color: #f7f7f7;
}
#ab06 article .title-h4 {
    display: grid;
    text-align: left;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    margin: 0;
}
#ab06 article .title-h4 h4 {
    font-size: clamp(30px,3vw,36px);
}
#ab06 article .title-h4 h4 small {
    display: block;
    margin-top: 10px;
    opacity: 0.5;
}
#ab06 article .title-h4 p {
    margin: 0;
    font-size: clamp(18px,3vw,22px);
}
@media(max-width:767.98px){
    #ab06 article section{
        padding-block: 70px;
    }
    #site #ab06 article .title-h4{
        display:flex;
        flex-direction:column;
        gap: 20px;
    }
}
#site .line-view-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #0081c3;
    color: #fff;
    width: fit-content;
    gap: 5px;
    font-size: 18px;
    height: 50px;
    margin-top: -50px;
    margin-left: auto;
    margin-bottom: 20px;
    border-radius: 9999px;
}
@media(max-width:767.98px){
    #site .line-view-btn{
        scale: 0.8;
        margin-top: -30px;
        transform-origin: right bottom;
    }
}
#cs02 .tplt-wrap {
    --tplt-color: #29be92;
}
#cs03 .tplt-wrap {
    --tplt-color: #1ea5ce;
}
#cs04 .tplt-wrap {
    --tplt-color: #33b654;
}
#cs05 .tplt-wrap {
    --tplt-color: #2c6ce4;
}
#cs06 .tplt-wrap {
    --tplt-color: #fe9a30;
}
.tplt-wrap {
    margin-bottom: 80px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 5px solid var(--tplt-color);
}
.tplt-wrap .item {
    flex: 1;
}
.tplt-wrap .word {
    display: flex;
    /* align-items: center; */
    gap: 50px;
    padding: 60px;
    background-color: var(--tplt-color);
}
.tplt-wrap img {
    aspect-ratio: 5/3;
    background-color: #f7f7f7;
    border-radius: 10px;
}
.tplt-wrap img + img {
    margin-top: 20px;
}
.tplt-wrap :is(h4, dt, dd) {
    color: #fff;
}
.tplt-wrap .word h4 {
    font-size: clamp(28px,3vw,42px);
    margin-top: 20px;
    font-weight: 700;
}
.tplt-wrap dd + dt {
    margin-top: clamp(30px,5vw,40px);
}
.tplt-wrap dt {
    padding: 5px 10px;
    width: fit-content;
    font-size: clamp(20px,2vw,22px);
    font-weight: 700;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 5px;
    color: var(--tplt-color);
}
.tplt-wrap dd {
    font-size: clamp(18px,3vw,20px);
}

.tplt-wrap .serve {
    /* margin-top: 30px; */
    display: flex;
    gap: 50px;
    padding: 60px;
    /* border: 5px solid var(--tplt-color); */
}
.tplt-wrap .serve h5 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.tplt-wrap .serve dt {
    background-color: var(--tplt-color);
    color: #fff;
}
.tplt-wrap .serve dd {
    color: #222;
    font-size: clamp(18px,2vw,22px);
}
.tplt-wrap .welcome-box {
    margin-top: 50px;
}
.tplt-wrap .welcome-box h4 {
    font-size: clamp(24px,3vw,32px);
    margin-bottom: 20px;
    color: #000;
}
.tplt-wrap .welcome-box h4::before {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    margin-block: 30px;
    background-color: var(--tplt-color);
}
.tplt-wrap .welcome-box p {
    margin-bottom: 20px;
    font-size: clamp(16px,2vw,18px);
}
.tplt-wrap .welcome-box ul {
    /* display: flex; */
    /* flex-direction: column; */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}
.tplt-wrap .welcome-box li {
    font-size: 20px;
}
.tplt-wrap .welcome-box b {
    color: var(--tplt-color);
}
.tplt-wrap .box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
}

@media(max-width:767.98px){
    .tplt-wrap .word{flex-direction: column;padding: 20px 20px 40px;gap: 40px;}
    .tplt-wrap .serve{
        padding: 30px 20px 20px;
        flex-direction: column;
        gap: 20px;
    }
    .tplt-wrap .box{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .tplt-wrap .welcome-box ul{
        display: flex;
        flex-direction: column;
    }
}