@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");
/* @import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

:root {
    /* font */
    --page-font-family: "Poppins", "Pretendard Variable", sans-serif;
    /* --page-font-family:
    "Pretendard Variable", sans-serif; */
    /* --handwritten-font: "Satisfy", cursive; */
    --handwritten-font: "Oooh Baby", cursive;
    /* --page-font-family: "roboto", "notokr", sans-serif; */
    /* nav */
    --navHeight: 105px;
    /* page-color */
    --page-point-color: #00abff;
    --page-point-color2: #20255d;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #008bd1;
    --page-point-color-hover: var(--page-point-color-dark);
    /* font-size default (desktop / mobile)*/
    --page-font-size: 14px;
    /* grid */
    --grid-1fr: minmax(0, 1fr);
    --grid-2repeat: repeat(2, var(--grid-1fr));
    --grid-3repeat: repeat(3, var(--grid-1fr));
    --grid-4repeat: repeat(4, var(--grid-1fr));
    --grid-5repeat: repeat(5, var(--grid-1fr));
    --grid-6repeat: repeat(6, var(--grid-1fr));
    --grid-7repeat: repeat(7, var(--grid-1fr));
    --grid-8repeat: repeat(8, var(--grid-1fr));
    --grid-9repeat: repeat(9, var(--grid-1fr));
    --grid-10repeat: repeat(10, var(--grid-1fr));
    --grid-11repeat: repeat(11, var(--grid-1fr));
    --grid-12repeat: repeat(12, var(--grid-1fr));
    /* border-radius: ; */
    --radius-sm: 5px;
    --radius-base: 10px;
    --radius-md: 15px;
    /* google-material-\\\\symbols */
    --gms: "Material Symbols Outlined";
    --gradLow: "GRAD"-25;
    --gradZero: "GRAD" 0;
    --gradHigh: "GRAD" 200;
    --opsz: "opsz" 48;
    /* fill icon */
    --gms100_Fill: "FILL" 1, "wght" 100, var(--opsz);
    --gms200_Fill: "FILL" 1, "wght" 200, var(--opsz);
    --gms300_Fill: "FILL" 1, "wght" 300, var(--opsz);
    --gms400_Fill: "FILL" 1, "wght" 400, var(--opsz);
    --gms500_Fill: "FILL" 1, "wght" 500, var(--opsz);
    --gms600_Fill: "FILL" 1, "wght" 600, var(--opsz);
    --gms700_Fill: "FILL" 1, "wght" 700, var(--opsz);
    /* outlined icon */
    --gms100_Out: "FILL" 0, "wght" 100, var(--opsz);
    --gms200_Out: "FILL" 0, "wght" 200, var(--opsz);
    --gms300_Out: "FILL" 0, "wght" 300, var(--opsz);
    --gms400_Out: "FILL" 0, "wght" 400, var(--opsz);
    --gms500_Out: "FILL" 0, "wght" 500, var(--opsz);
    --gms600_Out: "FILL" 0, "wght" 600, var(--opsz);
    --gms700_Out: "FILL" 0, "wght" 700, var(--opsz);
}

@media (max-width: 767px) {
    :root {
        --navHeight: 70px;
        /* --grid-2repeat: var(--grid-1fr); */
        --grid-3repeat: var(--grid-1fr);
        --grid-4repeat: var(--grid-2fr);
        --grid-5repeat: var(--grid-2fr);
        --grid-6repeat: var(--grid-3fr);
    }
}

@media (min-width: 1170px) {
    .container {
        max-width: 1140px;
        padding: 0;
    }
}

@media (min-width: 1470px) {
    .navbar-inverse > .container,
    .nav-top > .container,
    .swiper-slide > .container,
    footer > .container {
        max-width: 1430px;
    }
}

* {
    word-break: keep-all;
}

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

body#site {
    display: none;
    font-family: var(--page-font-family);
}

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

span.material-symbols-outlined {
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms300_Out), var(--gradZero);
    user-select: none;
}

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

img {
    flex-shrink: 0;
    image-orientation: from-image;
}

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

.img-box.zoom-xs.active {
    overflow-x: scroll;
}

.img-box.zoom-xs.active img {
    width: auto;
    max-width: inherit;
}
.img-box.radius {
    border-radius: 5px;
}

.img-box.radius img {
    transform: translate3d(0 0 -1px);
}

.img-box.object-fit img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.img-box.object-fit.cover {
    object-fit: cover;
}

.img-box.object-fit.contain {
    object-fit: contain;
}

.ani {
    opacity: 0;
}

:is(ol, ul, li, dl) {
    margin: 0;
    padding: 0;
    font-weight: normal;
    list-style-type: none;
    list-style-position: inside;
}

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

small {
    font-size: 13px;
}

/* default */
p,
dd,
li,
li > a {
    font-size: 16px;
}

th,
td {
    font-size: 16px;
}

:is(a, a:hover) {
    text-decoration: none;
}

button {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.btn {
    font-size: 15px;
}

br {
    visibility: visible;
    opacity: 0;
}

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

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

.row {
    margin: 0;
}

.col {
    padding: 0;
}

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

.grid {
    display: grid;
}
.grid > * {
    width: 100%;
}
.grid :where(.col),
.grid .col-span-1 {
    grid-column: span 1;
}
.grid .col-span-2 {
    grid-column: span 2;
}
.grid .col-span-3 {
    grid-column: span 3;
}
.grid .col-span-4 {
    grid-column: span 4;
}
.grid .col-span-5 {
    grid-column: span 5;
}
.grid .col-span-6 {
    grid-column: span 6;
}
.grid .col-span-7 {
    grid-column: span 7;
}
.grid .col-span-8 {
    grid-column: span 8;
}
.grid .col-span-9 {
    grid-column: span 9;
}
.grid .col-span-10 {
    grid-column: span 10;
}
.grid .col-span-11 {
    grid-column: span 11;
}
.grid .col-span-12 {
    grid-column: span 12;
}
.grid.col-temp-2 {
    grid-template-columns: var(--grid-2repeat);
}
.grid.col-temp-3 {
    grid-template-columns: var(--grid-3repeat);
}
.grid.col-temp-4 {
    grid-template-columns: var(--grid-4repeat);
}
.grid.col-temp-5 {
    grid-template-columns: var(--grid-5repeat);
}
.grid.col-temp-6 {
    grid-template-columns: var(--grid-6repeat);
}
.grid.col-temp-7 {
    grid-template-columns: var(--grid-7repeat);
}
.grid.col-temp-8 {
    grid-template-columns: var(--grid-8repeat);
}
.grid.col-temp-9 {
    grid-template-columns: var(--grid-9repeat);
}
.grid.col-temp-10 {
    grid-template-columns: var(--grid-10repeat);
}
.grid.col-temp-11 {
    grid-template-columns: var(--grid-11repeat);
}
.grid.col-temp-12 {
    grid-template-columns: var(--grid-12repeat);
}

.modal.show {
    opacity: 1;
}

.modal .modal-header {
    flex-direction: row-reverse;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-footer {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}
.modal .modal-footer .btn {
    flex: 1;
    min-width: inherit !important;
}
.modal .btn.btn-default {
    background-color: #5d5d5d;
    color: #fff;
}
/* 구글맵 */
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 =================================== */
.li-cir li {
    --marker-padding: 15px;
    position: relative;
    padding-left: var(--marker-padding);
}

.li-cir li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    background-color: var(--page-point-color);
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.li-dash li {
    --marker-padding: 15px;
    position: relative;
    padding-left: var(--marker-padding);
}

.li-dash li::before {
    content: "-";
    position: absolute;
    top: -2px;
    left: 0;
}

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

.nav-top {
    width: 100%;
    position: absolute;
    z-index: 1000;
    top: 10px;
}
.nav-top a {
    font-size: 13px;
    color: var(--page-point-color-dark);
    letter-spacing: 0.034em;
    font-weight: 500;
}
.nav-top a:hover {
    text-decoration: underline;
}
.nav-top ul {
    margin-left: 50%;
    display: flex;
    justify-content: flex-end;
}
.dropdown-toggle::after,
.navbar .caret {
    display: none;
}

:where(.navbar-header, .navbar > .container) {
    display: flex;
}
.navbar-inverse.ani {
    animation: fadeInDown 2s ease 1.5s both;
}
.navbar-inverse .navbar-header {
    justify-content: center;
    align-items: center;
}

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

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

.navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
.navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
    color: inherit;
    background-color: inherit;
}

/* 상단 메뉴 */
.navbar-inverse {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 0px 0px;
    /* box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); */
    border-bottom: 1px solid #cdd3e1;
    box-shadow: 0;
    margin-bottom: 0;
}

/* nav 로고 */
.navbar-brand {
    width: 220px;
    height: auto;
    margin: 5px 0 0 0 !important;
    padding: 0;
}

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-weight: 600;
    color: #333;
    font-size: 17px;
    letter-spacing: -0.02em;
}

/* nav 서브메뉴 dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
}

/* nav 서브메뉴 dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a {
    color: #fff;
}

/* nav 대메뉴&서브메뉴 hover,focus 모바일 제외 */
@media (hover: hover) {
    /* nav 대메뉴 클릭&후버 시 */
    .navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        background: none;
        color: var(--page-point-color);
    }

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

/* desktop */
@media (min-width: 768px) {
    #site {
        padding-top: var(--navHeight);
        /* padding-top: 0; */
    }

    /* navbar BS5 */
    .navbar {
        position: fixed;
        padding: 0;
    }
    .navbar > .container {
        flex-wrap: nowrap;
    }

    .navbar-inverse .navbar-collapse {
        height: 100% !important;
    }
    .navbar-nav {
        height: 100%;
        flex-direction: row;
        justify-content: flex-end;
    }

    /* pc nav 높이 */
    .navbar-inverse {
        height: var(--navHeight);
    }
    .navbar-inverse .navbar-collapse {
        display: flex !important;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .navbar-inverse .navbar-right {
        margin-top: auto;
        margin-right: -20px !important;
        height: calc(var(--navHeight) - 40px) !important;
    }

    .navbar-inverse :is(.container, .navbar-right, .navbar-right > li, .navbar-right > li > a) {
        height: 100%;
    }

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

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

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        justify-content: center;
        align-items: center;
        padding: 0 30px 10px;
    }

    /* nav 서브메뉴 dropdown-menu  */
    .navbar-inverse .navbar-nav .dropdown-menu {
        /* top: calc(50% + 30px); */
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0 !important;
        border: 0;
        padding: 5px;
        text-align: center;
    }

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 10px 25px;
        line-height: 1;
        font-size: 14px;
    }

    /* top & scroll */
    /* :is(.navbar-inverse, .navbar-inverse.top) {
        transition: 0.3s;
        background-color: transparent;
    }

    :is(.navbar-inverse, .navbar-inverse.top) .navbar-brand img {
        filter: grayscale(1) brightness(10) invert(0);
    }

    :is(.navbar-inverse, .navbar-inverse.top) .navbar-nav > li > a {
        font-weight: 500;
        color: #fff;
    }

    .navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        color: #fff;
    }

    .navbar-inverse.scroll {
        height: var(--navHeight);
        background-color: #fff;
    }

    .navbar-inverse.scroll .navbar-brand img {
        filter: inherit;
    }

    .navbar-inverse.scroll .navbar-nav > li > a {
        color: #333;
    }

    .navbar-inverse.scroll .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse.scroll .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        opacity: 1;
        color: var(--page-point-color);
    } */
}

/* mobile */
@media (max-width: 767px) {
    #site {
        padding-top: var(--navHeight);
    }

    .navbar-inverse {
        width: 100%;
        margin: 0;
    }

    .navbar-inverse > .container {
        flex-direction: column;
        padding: 0;
        height: 100%;
    }

    .navbar-inverse .dropdown-menu {
        position: static !important;
        float: inherit;
        padding: 0;
    }

    .navbar-inverse :is(.navbar-right, .navbar-collapse) {
        padding: 0;
        margin: 0 !important;
    }

    .navbar-inverse .navbar-right,
    .navbar-collapse {
        width: 100%;
    }
    .navbar-inverse .navbar-right {
    }
    .navbar-inverse .navbar-collapse {
        transition: 0.4s !important;
        position: relative;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
        border-top: 0;
        max-height: 0px;
    }

    .navbar-inverse.open .navbar-collapse.collapsing,
    .navbar-inverse.open .navbar-collapse.in {
        display: block !important;
        max-height: 300px !important;
        overflow-y: auto;
    }

    .navbar-inverse .navbar-header::before,
    .navbar-inverse .navbar-header::after {
        display: none;
    }
    .nav-top {
        top: 6px;
    }
    .nav-top a {
        font-size: 12px;
    }
    /* nav 메뉴 버튼*/
    .navbar-inverse .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 17px 15px 0 0;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        opacity: 1;
        position: relative;
        transition: ease-in-out 0.15s all;
        background-color: #666;
    }

    .navbar-inverse .navbar-toggle:is(:hover, :focus) {
        background: none;
        border-color: #444;
    }

    .navbar-inverse .navbar-toggle:is(:hover, :focus) .icon-bar {
        background-color: #444;
    }

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

    .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(3) {
        transform: rotate(-45deg);
        top: -6px;
    }

    /* nav 메뉴*/
    .navbar-inverse .navbar-header {
        justify-content: space-between;
        width: 100%;
        height: var(--navHeight);
        margin: 0 !important;
    }

    /* nav 로고*/
    .navbar-inverse .navbar-brand {
        order: 1;
        width: 150px;
        margin: 0 0 0 15px !important;
    }

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

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        height: 50px;
        padding: 0 15px;
        font-size: 14px;
    }

    /* nav 서브메뉴 */
    .navbar-inverse .navbar-nav > li.open > ul.dropdown-menu {
        border-radius: 0;
    }
    .navbar-inverse .navbar-nav > li.open > ul.dropdown-menu > li > a {
        height: 40px;
        padding: 0 15px;
        font-size: 13px;
    }

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

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

    /* nav 드롭다운 메뉴 클릭시 */
    /* .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:is(:hover,:focus){
        color: #fff;
        background: #2968d4;
    } */
}

/* =================================== footer =================================== */
#site footer {
    margin-top: 0px;
    padding: 45px 0 40px;
    background-color: #1c1c1c;
}

.footer-wrap {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 200px);
    grid-template-rows: min-content;
    align-items: "";
}

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

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

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

.footer-info li.clearfix {
    width: 100%;
}

.footer-info li.corp {
    margin-bottom: 7px;
    color: #c3c3c3;
}

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

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

.footer-login {
    margin-left: auto;
    /* margin-top: auto; */
}

.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 9px 15px;
    background: transparent;
    color: #aaa;
    line-height: 1;
    border: 1px solid #888;
    font-size: 0.9rem;
    letter-spacing: 0.034em;
    border-radius: 1px;
}

.footer-login .login-btn span.material-symbols-outlined {
    font-size: 1.2rem;
    margin-right: 10px;
    font-variation-settings: var(--gms500_Out);
}

.footer-login .login-btn:hover {
    background-color: #888;
    color: #fff;
    font-weight: 500;
}

#scrollTop {
    padding: 0;
    aspect-ratio: 1;
    position: fixed;
    z-index: 1000;
    right: 25px;
    bottom: 25px;
    width: 55px;
    display: none;
    text-align: center;
    color: #fff;
    background: #5bc1ff;
    border-radius: 50%;
}

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

#scrollTop .inner :is(i, span) {
    font-size: 2.5rem;
}

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

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

    #scrollTop {
        width: 35px;
        height: 35px;
        right: 15px;
        bottom: 30px;
        display: none !important;
    }
    #scrollTop .inner :is(i, span) {
        font-size: 1.75rem;
    }
}

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

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

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

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

/* =================================== mainCarousel =================================== */

#mainSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    user-select: none;
    /* height: 100vh; */
    height: calc(100vh - var(--navHeight));
}

#mainSwiper .swiper-slide.logo-slide::before,
#mainSwiper .swiper-slide.logo-slide::after {
    content: none;
}
#mainSwiper .swiper-slide.logo-slide .container {
    align-items: center;
    justify-content: center;
}
#mainSwiper .swiper-slide.logo-slide .logo-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#mainSwiper .swiper-slide.logo-slide .logo img {
    width: 600px;
    opacity: 0;
}

#mainSwiper .swiper-slide.logo-slide .slogan {
    margin-top: 40px;
    opacity: 0;
}
#mainSwiper .swiper-slide.logo-slide .slogan p {
    font-family: var(--handwritten-font);
    color: #c00000;
    font-size: 44px;
    letter-spacing: 0;
    word-spacing: 0.15em;
    font-weight: 600;
    text-align: center;
}

#mainSwiper .logo-slide.swiper-slide-active .logo img {
    animation: fadeIn 2.5s ease 0.25s both;
}

#mainSwiper .logo-slide.swiper-slide-active .slogan {
    animation: fadeInUp 1.8s ease 1s both;
}

#mainSwiper .swiper-slide::before,
#mainSwiper .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0.3;
}
/* #mainSwiper .swiper-slide::before {
    background: linear-gradient(to bottom, black, transparent);
    top: 0;
    height: 20%;
} */
#mainSwiper .swiper-slide::after {
    background: linear-gradient(to top, black, transparent);
    bottom: 0;
    height: 35%;
}
#mainSwiper .swiper-slide:not(.logo-slide) img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
#mainSwiper .swiper-slide-next:not(.logo-slide) img,
#mainSwiper .swiper-slide-prev:not(.logo-slide) img,
#mainSwiper .swiper-slide-active:not(.logo-slide) img {
    animation: zoom 9s cubic-bezier(0, 0, 0.745, 0.715);
}

@keyframes zoom {
    from {
        transform: scale(1.3);
    }

    to {
        transform: scale(1);
    }
}
#mainSwiper .swiper-slide .container {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 50px;
}
/* caption */
.swiper-caption {
    bottom: inherit;
    padding: 0;
    text-shadow: none;
    text-align: left;
    margin-bottom: 80px;
}

.swiper-caption h1 {
    position: relative;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}

.swiper-caption p {
    margin: 0 0 20px 3px;
    font-size: 18px;
    font-weight: 450;
    letter-spacing: 0.034em;
    color: #fff;
}

.swiper-slide-active .swiper-caption h1 {
    animation: fadeInUp 0.75s ease 0.25s both;
}
.swiper-slide-active .swiper-caption p {
    animation: fadeIn 0.5s ease 0.5s both;
}

/* control */
#mainSwiper :is(.swiper-button-prev, .swiper-button-next)::after {
    color: #c5c5c5;
    font-family: var(--gms);
    font-variation-settings: var(--gms700_Out);
    font-size: 44px !important;
    mix-blend-mode: screen;
}
#mainSwiper .swiper-button-prev,
#mainSwiper .swiper-button-next {
    width: 10%;
    height: auto !important;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(0);
    animation: fadeIn 1s ease 2s both;
}
#mainSwiper .swiper-button-next::after {
    content: "\e5e1";
}

#mainSwiper .swiper-button-prev::after {
    content: "\e2ea";
}

/* indicators */
.swiper-pagination {
    width: auto;
    bottom: 40px !important;
    animation: fadeInUp 1s ease 2s both;
}

.swiper-pagination span {
    aspect-ratio: 1/1;
    width: 0.6rem;
    height: auto;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    margin: 0 5px;
    backdrop-filter: blur(10px);
    background-color: #ccc;
    transition: ease-in-out 0.15s all;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--page-point-color);
    box-shadow: none;
}
/* =================================== snb =================================== */
.snb {
    position: relative;
    height: 82px;
    z-index: 10;
    border-bottom: 1px solid #eee;
}
.snb .container {
    max-width: 100%;
}
.snb :where(ul, li > a) {
    display: flex;
}

.snb :is(.container, ul, li, li > a) {
    height: 100%;
}

.snb ul {
    margin: 0;
    justify-content: center;
    gap: 80px;
}

.snb li {
    flex: 0 1 auto;
}

.snb li > a {
    justify-content: center;
    align-items: center;
    background: #fff;
    text-align: center;
    font-size: 16px;
    padding: 0;
    letter-spacing: 0.015em;
    color: #adadad;
}

.snb li.active a {
    position: relative;
    background: #fff;
    color: #21255e;
}

.snb li.active a {
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: -0.01em;
}

@media (hover: hover) {
    /* 마우스 후버 */
    .snb li > a:hover {
        position: relative;
        background: #fff;
        color: #21255e;
    }
    .snb li > a:hover::after {
        width: 100%;
    }
}

.snb li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    display: block;
    width: 0;
    height: 3px;
    background: var(--page-point-color);
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 1001;
}

.snb li.active a::after {
    width: 100%;
}

/* =================================== subpage =================================== */
.subpage-content span.mini {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 40px;
    display: none;
}
.subpage-content section {
    overflow: hidden;
    padding: 120px 0 150px;
    min-height: 300px;
}

.subpage-content .se-title {
    margin-bottom: 80px;
    text-align: center;
}

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

.subpage-content .se-title h3 {
    font-weight: 600;
    color: #000;
    font-size: 42px;
}

.subpage-content .se-title p {
    font-weight: 300;
    color: #000;
    letter-spacing: -0.035em;
    font-size: 24px;
}

.subpage-content .se-title * + * {
    margin-top: 15px;
}

.subpage-content * + .wp-title {
    mask-type: 50px;
}

.subpage-content :where(.col, .wp-title) h4 {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #21255e;
}

.subpage-content :where(.col, .wp-title) * + h4 {
    margin-top: 40px;
}

.subpage-content :where(.col, .wp-title) h4 + * {
    margin-top: 15px;
}

.subpage-content .col h5 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* =================================== subpage content =================================== */
/* grid-system */
.subpage.project {
    /* background-color: #f7f7f7; */
}

.subpage-content :where(.row, .grid, [class*="-wrap"]) + :where(.row, .grid, [class*="-wrap"]) {
    margin-top: 100px;
}

.over-wrap {
    gap: 100px;
    align-items: center;
}

.over-wrap .col.logo {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}
.over-wrap .col.logo h4 {
    margin: 0;
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    color: var(--page-point-color2);
}
.over-wrap .col.logo h4 span.red {
    color: #ff2626;
}
.over-wrap .col.logo h4:nth-child(3) {
    margin-top: 20px;
    font-size: 82px;
}
.over-wrap .col.logo h4 span.small {
    font-size: 0.7em;
    font-weight: 600;
    color: inherit;
}
.over-wrap .col.logo h4 small {
    display: block;
    color: inherit;
}
.over-wrap .col.logo span.material-symbols-outlined {
    margin: 0;
    font-size: 80px;
    color: #ff2626;
    font-variation-settings: var(--gms700_Out);
    position: absolute;
    right: 125px;
    top: 7px;
}
.over-wrap .col.info {
    flex: 0 1 auto;
    width: 50%;
    padding-top: 40px;
}
.over-wrap .info .top {
    font-size: 18px;
}
.map-wrap .info .logo img {
    width: 305px;
}
.dl-inc {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.dl-inc div {
    display: flex;
    font-size: 15px;
}
.dl-inc dt {
    display: flex;
    margin-right: 20px;
    width: 200px;
    position: relative;
}
.dl-inc dt span.kr {
    /* width: 73px; */
    margin-right: 12px;
    font-size: 16px;
    /* padding-left: 12px; */
}
/* .dl-inc dt span.kr::before {
    content: "";
    display: block;
    width: 6px;
    height: 3px;
    background: #333;
    position: absolute;
    top: 9px;
    left: 0;
} */
.dl-inc dt span.en {
    width: 130px;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    line-height: 1.7em;
}
.dl-inc dd {
    font-size: inherit;
    flex: 1;
    margin-bottom: 0;
    font-size: 16px;
}

.greet-wrap :is(h4, p.name) {
    font-family: var(--handwritten-font);
}
.greet-wrap {
    gap: 100px;
}
.greet-wrap .col.img-box {
    flex: 0 1 auto;
    width: 480px;
}
.greet-wrap .col.info {
    padding-top: 30px;
}
.greet-wrap h4 {
    font-size: 42px;
    color: #c00000;
    margin-bottom: 60px;
    font-weight: 600;
    margin-top: 30px;
}
.greet-wrap p + p {
    margin-top: 20px;
}
.greet-wrap p.name {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 400;
    text-align: right;
}

.phil-wrap {
    gap: 40px;
}
.phil-wrap .col {
    text-align: center;
}
.phil-wrap .icon {
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px 30px;
    background-color: #ecf2f7;
    position: relative;
}

.phil-wrap .col .icon::before {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    border-bottom: 2px dotted #a1adb9;
    position: absolute;
    top: 50%;
    right: -50%;
    z-index: -1;
}

.phil-wrap .col:last-child .icon::before {
    display: none;
}
.phil-wrap .icon span.material-symbols-outlined {
    font-size: 90px;
    font-variation-settings: var(--gms700_Out);
    color: var(--page-point-color2);
}
.phil-wrap .info h4 {
}
.phil-wrap .info h4 small {
    display: block;
    font-size: 20px;
    color: #333;
    font-weight: 500;
    letter-spacing: -0.034em;
    margin-top: 10px;
}
.phil-wrap .info p {
    margin-top: 40px;
    padding: 0 30px;
    color: #666;
    font-size: 16px;
}

.cert-wrap {
    justify-content: center;
    gap: 60px;
}
.cert-wrap .img-box {
    width: 30%;
}
.cert-wrap img {
    border: 1px solid #ddd;
}
.cert-wrap p {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.034em;
}
/* map */
:is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    background-color: #f1f0eb;
    aspect-ratio: 1;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
}

.map-wrap {
    gap: 100px;
    align-items: flex-end;
}
.map-wrap .info p {
    margin-top: 30px;
    font-size: 32px;
    font-family: var(--handwritten-font);
    color: #c00000;
    font-weight: 600;
}
.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: 22px;
}

.page-header a.pull-right i::before {
    position: relative;
    display: block;
    content: "\e145";
    transform: translateY(2px);
    font-family: var(--gms);
    font-variation-settings: var(--gms300_Out);
    font-size: 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: 16px;
    color: #000;
}

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

.type_thumb {
    display: grid;
    grid-template-columns: repeat(2, var(--grid-1fr));
    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: 17px;
}

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

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

.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;
    margin-top: 0;
}

/* 카테고리 / 분류 */
.category_wrap {
    margin-bottom: 60px;
}
.category_wrap ul {
    display: flex;
    gap: 0 40px;
}

.category_wrap li {
    margin: 0 !important;
}

.category_wrap li a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
    letter-spacing: 0;
    font-size: 17px;
    position: relative;
}
.category_wrap li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    display: block;
    width: 0;
    height: 2px;
    background: #666;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 1001;
}

.category_wrap li.on a::after {
    width: 100%;
}

.category_wrap li.on a::after {
    background: var(--page-point-color);
}

.category_wrap li.on :is(a) {
    color: #4cabe5;
    font-weight: 600;
}

@media (hover: hover) {
    .category_wrap li a:hover {
        color: #111;
    }
    .category_wrap li a:hover::after {
        width: 100%;
    }

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

:is(.table_video, .table_blog2) {
    display: grid;
    grid-template-columns: repeat(3, var(--grid-1fr));
    gap: 50px 20px;
    margin: 0;
}
/* 블로그 동영상 상품 */

/* 컬럼개수 설정 */
.table_pd {
    --col: 4;
}

:is(.table_video, .table_blog2) {
    --col: 3;
}

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

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

: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{
    background-color: #eee;
}
:where(.table_video, .table_blog2, .table_pd) .inner .top a span.thumb{
    display: none !important;
}
:where(.table_video, .table_blog2, .table_pd) .inner .top a span.thumb + img.thumb {
    display: block !important;;
    transition: 0.25s;
    aspect-ratio: 5/3;
    width: 100%;
    height: auto;
    background-size: cover;
    filter: saturate(0);
}
@media (hover: hover) {
    :where(.table_video, .table_blog2, .table_pd) .inner .top a .thumb:hover {
        transform: scale(1.1);
        filter: saturate(1);
    }
}

:is(.table_video, .table_blog2, .table_blog) .badge {
    background-color: transparent;
    padding: 0;
    color: #333;
    opacity: 0.5;
    font-weight: 500;
    letter-spacing: 0.02em;
}
:is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}

:is(.table_video, .table_blog2) dd .inner .bottom {
    margin-top: 20px;
    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: normal;
    font-size: 18px;
    font-weight: 500;
}

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

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

/* 댓글 */
#bbsArea .reply_wrap h4 {
    text-align: left;
    font-size: 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;
}

/* 게시판 reset */
.board_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0;
}
#item_agree label,
#item_email .text-muted {
    font-size: 1rem;
}

.board_wrapper .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.board_wrapper .text-center .btn + .btn {
    margin: 0;
}

.btn.btn-primary:is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
    border-color: var(--page-point-color-hover);
}

.btn,
.member_wrapper .btn,
.search_wrap #search_btn + .write_btn_wrap .btn,
.search_wrap #search_btn,
.wr_form_item input.form-control,
.form-control {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 40px;
    font-size: 1rem;
}

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

.btn {
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem !important;
}

.btn-lg {
    height: 45px !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:not(#search_btn, #File_add, #write_btn, #id_check, #email_check, #delete_btn, #list-back-btn, #reply_btn, [id^="reply_modify_"], [id^="reply_modify_"] + .btn, [id^="reply_delete_"]),
.text-center #write_btn {
    min-width: 150px;
}

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

.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: 14px;
}
.member_wrapper .table tbody tr :is(th, td) {
    font-size: 14px;
}
.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: #5dae57;
}

.member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}

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

.table_blog dd {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 25px 25px;
}

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

.table_blog dd .right {
    width: auto;
    flex-grow: 1;
    padding-top: 10px;
}

.table_blog dd .right .text p {
    padding: 0;
}

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

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

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

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

.table.table_default tbody .subject a {
    font-size: 16px;
    color: #333;
}

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

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

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

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

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

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

.board_wrapper .table.board_write_table tbody tr:first-child > * {
    border-top: 0;
}

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

/* wrapper */
.board_wrapper .text-center .btn {
    padding: 15px 0 !important;
}
.board_wrapper .table.board_write_table .files .fileInput {
    flex-wrap: nowrap;
}

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

#item_agree .checkbox {
    margin-top: 8px;
}

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

.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    margin-top: 2px;
}

.privacy_body {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 100px;
}

/* =================================== popup =================================== */

#mainPopup {
    position: relative;
    top: calc(var(--navHeight) - 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: inherit !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(--gms100_Out);
    font-size: inherit;
}

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

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

/* login */
: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(--navHeight));
}

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

:is(#find_idpw, .login_wrapper) .container {
    width: 100%;
}

.join_wrapper .member_wrapper {
    width: auto;
}
:is(#find_idpw, .join_wrapper, .login_wrapper) .form-group {
    height: 45px;
}
:is(#find_idpw, .join_wrapper, .login_wrapper) .member_wrapper {
    padding: 50px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: inherit;
    background: #fff;
}

:is(#find_idpw, .login_wrapper) .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;
    transform: translateY(1px);
    font-variation-settings: var(--gms400_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: 14px;
}

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

.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: 14px;
}

.member_wrapper h1 {
    font-size: 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: 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;
}

/* =================================== mobile =================================== */
/* mainpage */
@media (max-width: 767px) {
    #mainSwiper .swiper-slide {
        height: calc(100svh - var(--navHeight));
    }
    #mainSwiper .swiper-button-prev,
    #mainSwiper .swiper-button-next {
        display: none;
    }
    #mainSwiper .swiper-slide.logo-slide .logo img {
        width: 80vw;
        margin: 0 auto;
    }
    #mainSwiper .swiper-slide.logo-slide .slogan {
        margin-top: 20px;
        margin-left: -5px;
    }
    #mainSwiper .swiper-slide.logo-slide .slogan p {
        font-size: 7vw;
    }
    .swiper-caption h1 {
        font-size: 32px;
    }
    .swiper-caption {
        width: 100%;
        text-align: center;
    }
}

/* subpage */
@media (max-width: 767px) {
    p,
    dd,
    li,
    li > a {
        font-size: 14px;
    }
    #snb {
        height: auto;
        padding: 15px 0;
        background-color: #f7f7f7;
    }
    #snb ul {
        flex-direction: column;
        gap: 5px;
    }

    #snb li > a {
        height: 45px;
        font-size: 14px;
    }
    .snb li a::after {
        height: 2px;
    }

    .subpage-header {
        height: 250px;
    }
    .greet-wrap {
        gap: 30px;
    }
    .greet-wrap .col.info {
        padding-top: 0;
        text-align: center;
    }
    .greet-wrap h4 {
        font-size: 8vw;
    }
    .greet-wrap p.name {
        text-align: center;
    }
    .over-wrap {
        gap: 30px;
    }
    .over-wrap .col.logo h4 {
        font-size: 64px;
    }
    .over-wrap .info .top {
        font-size: 16px;
    }
    .over-wrap .col.info {
        width: 100%;
    }
    .dl-inc {
        gap: 30px;
    }
    .dl-inc div {
        flex-direction: column;
    }
    .dl-inc dt {
        width: 100%;
        padding-bottom: 5px;
        margin-bottom: 8px;
        border-bottom: 1px solid #ddd;
    }
    .phil-wrap {
        gap: 70px;
    }
    .phil-wrap .col .icon::before {
        display: none;
    }
    .cert-wrap {
        gap: 20px;
    }
    .cert-wrap .img-box {
        width: 40%;
    }
    .category_wrap {
    }
    .category_wrap ul {
        padding-bottom: 15px;
        padding-right: 20px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .category_wrap ul li {
        flex-shrink: 1;
    }
    .category_wrap ul li a {
        white-space: nowrap;
        font-size: 14px;
    }
    :is(#pt01, #co01) .subpage-content section {
        padding: 70px 0;
    }
    .map-wrap {
        flex-direction: column;
        gap: 70px;
    }
    .map-wrap .info .logo img {
        width: 100vw;
        padding: 0 30px;
    }
    .map-wrap .info p {
        font-size: 8.3vw;
        margin-left: -5px;
        text-align: center;
        margin-top: 20px;
    }
}

/* bbs, etc */
@media (max-width: 767px) {
    .member_wrapper {
        padding: 70px 15px;
    }

    .privacy_body {
        padding: 0 30px;
    }

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

    :is(.table_video, .table_blog2) dd :is(.inner .bottom) .title a {
        font-size: 16px;
    }
    .table_default .subject {
        width: 100%;
    }

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

    :is(.table_video, .table_blog2) {
        grid-template-columns: repeat(2, var(--grid-1fr));
        gap: 40px 15px;
    }

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

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

    .board_wrapper .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
    }

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

    .table.board_write_table tbody tr th span:nth-of-type(2) {
        margin-left: 10px;
    }

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

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

    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 60px 0;
        height: auto;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) .member_wrapper {
        padding: 40px 20px 40px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) .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;
    }
}

/* bbs-reset */
:is(.form-wrap, form) #list_btn {
    display: none;
}

.board_data_view .contents_wrap {
    padding-left: 0;
    padding-right: 0;
}

.board_data_view .contents_wrap p {
    font-size: inherit;
}

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