@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=block");

:root {
    /* font */
    --page-font-family: "roboto", "notokr", sans-serif;
    /* nav */
    --navHeight: 95px;
    /* page-color */
    --page-point-color: #eb0f0f;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #d30707;
    --page-point-color-hover: var(--page-point-color-dark);
    /* font-size default (desktop / mobile)*/
    --page-font-size: 16px;
    --font-size-3xs: 0.5rem;
    --font-size-2xs: 0.65rem;
    --font-size-1xs: 0.7rem;
    --font-size-2sm: 0.85rem;
    --font-size-1sm: 0.9rem;
    --font-size-base: 1rem;
    --font-size-1md: 1.15rem;
    --font-size-2md: 1.25rem;
    --font-size-1lg: 1.45rem;
    --font-size-2lg: 1.5rem;
    --font-size-1xl: 1.75rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 2.75rem;
    --font-size-6xl: 3.5rem;
    --font-size-7xl: 4rem;
    --font-size-8xl: 5rem;
    --font-size-9xl: 6rem;
    --font-size-10xl: 7rem;
    /* 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));
    /* 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); */
    }
}

* {
    word-break: keep-all;
}

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

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

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

span.material-symbols-outlined {
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    aspect-ratio: 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.bordered {
    padding: 20px;
    border: 1px solid #ccc;
}
* + .img-wrap {
    margin-top: 40px;
}
.img-wrap .caption {
    z-index: 2;
    background-color: #333;
    text-align: center;
    margin-top: -2px;
    padding: 15px 15px;
    color: #fff;
}
.img-wrap .caption p {
    font-size: 19px;
}
.img-wrap.col-2 .caption {
    grid-column: span 2;
}
#tc03 .img-box img {
    border: 1px solid #e5e5e5;
}
.img-box p {
    text-align: center;
    padding: 15px 0 0;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}
.img-box p::after,
.img-box p::before {
    display: inline-block;
    font-weight: 400;
}
.img-box p::before {
    margin-right: 4px;
    content: "<";
}
.img-box p::after {
    margin-left: 4px;
    content: ">";
}
/* .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} */

: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;
    letter-spacing: -0.03em;
}

small {
    font-size: var(--font-size-1xs);
}

/* default */
p,
dd,
li,
li > a {
    font-size: var(--font-size-base);
}

th,
td {
    font-size: var(--font-size-base);
}

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

button {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
    font-size: var(--font-size-base);
}

br {
    visibility: visible;
    opacity: 0;
}

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

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

.row {
    display: flex;
    flex-wrap: wrap;
}

.row > * {
    float: inherit;
}

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

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

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

:is(.li-dash, .li-cir) > li {
    padding-left: 18px;
    font-size: 18px;
}
:is(.li-dash, .li-cir) > li > ul {
    margin-bottom: 5px;
}
:is(.li-dash, .li-cir) > li > ul > li {
    font-size: var(--font-size-1sm);
}
.li-dash > li::before {
    content: "-";
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 10px;
}

.li-cir > li::before {
    content: "";
    position: absolute;
    display: block;
    aspect-ratio: 1;
    width: 4px;
    background-color: #333;
    left: 5px;
    top: 10px;
}

.li-row {
    display: flex;
    justify-content: center;
}

.li-row li {
    line-height: 1;
    padding: 0 10px;
    font-size: var(--font-size-base);
}

.li-row li + li {
    border-left: 1px solid #ccc;
}

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

.navbar .caret {
    display: none;
}

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

.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: 5px 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 0;
}

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

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-weight: 500;
    color: #222;
    font-size: 18px;
}

/* nav 서브메뉴 dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: #000;
}

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

    /* pc nav 높이 */
    .navbar-inverse {
        height: var(--navHeight);
    }

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

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

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 14px 25px;
        line-height: 1;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
}

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

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

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

    .navbar-inverse .dropdown-menu {
        float: inherit;
        padding: 0;
    }

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

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

    /* nav 메뉴 버튼*/
    .navbar-inverse .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 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;
        border-bottom: 1px solid #ddd;
    }

    /* nav 로고*/
    .navbar-inverse .navbar-brand {
        order: 1;
        width: 110px;
        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: 16px;
    }

    /* nav 서브메뉴 */
    .navbar-inverse .navbar-nav > li.open > ul.dropdown-menu > li > a {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
    }

    /* 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;
    background-color: #333;
}

.footer-wrap {
    display: flex;
}

/* 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: #ddd;
    gap: 0 10px;
}

.footer-info li {
    font-size: var(--font-size-1sm);
}

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

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

.footer-info li.copyright {
    margin-top: 7px;
    color: #888;
}

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

.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 9px 10px;
    background: transparent;
    color: #ccc;
    line-height: 1;
    border: 1px solid #595959;
    font-size: 0.8rem;
}

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

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

#scrollTop {
    padding: 0;
    aspect-ratio: 1;
    position: fixed;
    z-index: 1000;
    right: 30px;
    bottom: 30px;
    width: 45px;
    border-radius: 50%;
    display: none;
    text-align: center;
    color: #fff;
    background: #555;
}
#scrollTop:hover {
    background: #222;
}
#scrollTop .inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

    #scrollTop {
        width: 40px;
        height: 40px;
        right: 0px;
        bottom: 50px;
        display: none !important;
    }
}

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

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

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

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

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

/* 슬라이드 */
#mainCarousel .carousel-inner .item {
    height: calc(100vh - var(--navHeight));
}

#mainCarousel .carousel-inner .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
}

/* caption */
.carousel-caption {
    top: 47%;
    padding: 0;
    text-shadow: none;
    text-align: center;
}
.carousel-caption h1 {
    position: relative;
    font-size: 77px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

.carousel-caption p {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6em;
    letter-spacing: -0.04em;
}

.carousel-caption .more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto 0;
    width: 135px;
    padding: 15px 20px;
    border-radius: 50px;
    line-height: 1;
    color: #fff;
    font-size: var(--font-size-1sm);
    letter-spacing: 0;
    background: #ec2122;
}

.carousel-caption .more-btn:hover {
    background-color: #fff;
    color: var(--page-point-color);
    font-weight: 700;
}

/* control */
.carousel-control {
    display: flex;
    align-items: center;
    opacity: 1;
    width: 10%;
}

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

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

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

.glyphicon[class*="glyphicon-chevron"]::before {
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--gms);
    font-variation-settings: var(--gms100_Out);
    text-shadow: none;
}

.glyphicon.glyphicon-chevron-right::before {
    content: "\e5e1";
}

.glyphicon.glyphicon-chevron-left::before {
    content: "\e2ea";
}

.carousel-control :is([class*="glyphicon-chevron"], [class*="icon"]) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: var(--font-size-7xl);
}

/* indicators */
.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators :is(li, li.active) {
    aspect-ratio: 1/1;
    width: 0.7rem;
    height: auto;
    border: 0;
    border-radius: 50%;
    margin: 0 5px;
    backdrop-filter: blur(10px);
}

.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    transition: ease-in-out 0.15s all;
}

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

/* =================================== mainpage common =================================== */
/* section */
.mainpage section {
    position: relative;
    padding: 120px 0 120px;
}

.mainpage h3 {
    font-size: 43px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.045em;
}

.service-wrap {
    display: grid;
    grid-template-columns: var(--grid-4repeat);
    gap: 15px;
}
.service-wrap .item {
    position: relative;
    display: block;
    overflow: hidden;
}
.service-wrap .img-box {
    aspect-ratio: 1;
    background-color: #ccc;
}

.service-wrap .item:hover .img-box {
    transition: all 0.25s;
}

.service-wrap .item img {
    z-index: -1;
}

.service-wrap .item h5 {
    transition: color 0.25s;
    font-weight: 500;
    font-size: 25px;
    margin: 0;
    text-align: center;
    color: #fff;
    padding: 0 10px;
    text-shadow: 1px 1px 8px #000;
}

.service-wrap .item .info {
    padding: 20px;
    transition: 0.25s;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0.09em);
}
.service-wrap .item .img-box {
    transition: 0.75s;
}
@media (hover: hover) {
    .service-wrap .item:hover .info {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: none;
    }
    .service-wrap .item:hover .img-box {
        transform: scale(1.1);
    }
}

.main-contact {
    padding: 20px 0 130px !important;
    position: relative;
}
.main-contact::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 260px;
    background: #eee;
    bottom: 0;
}
.contact-wrap {
    display: grid;
    grid-template-columns: var(--grid-2repeat);
    gap: 15px;
}
.main-contact .contact-wrap {
    gap: 0;
}
.contact-wrap .item {
    position: relative;
    display: block;
    overflow: hidden;
}
.contact-wrap .img-box {
    aspect-ratio: 6/2;
    background-color: #ccc;
}

.contact-wrap .item:hover .img-box {
    transition: all 0.25s;
}

.contact-wrap .item img {
    z-index: -1;
}

.contact-wrap .item h5 {
    transition: color 0.25s;
    font-weight: 500;
    letter-spacing: -0.045em;
    font-size: 30px;
    margin: 0;
    text-align: center;
    color: #fff;
}

.contact-wrap .item .info {
    padding: 30px 40px;
    transition: 0.25s;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.5);
}
.contact-wrap .item:first-child .info {
    background-color: #ce2727;
}
.contact-wrap .item .info::after {
    content: "\eaaa";
    display: block;
    margin-left: auto;
    font-family: var(--gms);
    font-variation-settings: var(--gms400_Out);
    line-height: 1;
    font-size: 42px;
    color: #fff;
    margin-right: 0px;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .contact-wrap .item:hover .info::after {
        margin-right: -10px;
    }
}
/* wrap */

/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    height: 260px;
    background: center / cover no-repeat url(/public/img/sub/sub-top01.jpg);
    /* backdrop-filter: brightness(50%); */
}

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

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

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

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

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

.subpage-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
}

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

.subpage-header .subpage-title h2 {
    height: 60px;
    line-height: 1;
    margin-top: 25px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    font-size: 42px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    gap: 20px;
    display: none;
}

.breadcrumb li.home::before {
    content: "HOME";
}

.breadcrumb > li {
    position: relative;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--font-size-1sm);
}

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

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

/* =================================== snb =================================== */
.snb {
    position: relative;
    z-index: 10;
    margin-top: 60px;
}

.snb :where(ul, li > a) {
    display: flex;
}

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

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

.snb li {
    flex-grow: 0;
}

.snb li > a {
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 18px;
    padding-bottom: 3px;
    color: #555;
    position: relative;
    font-weight: 500;
}
.snb li > a::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 15px;
    background: #ddd;
    left: -30px;
    top: 41%;
    transform: translateY(-50%);
}
.snb li:first-child > a::before {
    display: none;
}
.snb li.active a {
    position: relative;
    background: #fff;
    font-weight: 700;
    color: #000;
}

@media (hover: hover) {
    /* 마우스 후버 */
}

.snb li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
}

/* =================================== subpage =================================== */
.subpage-content section {
    padding: 90px 0 140px;
    min-height: 300px;
}

.subpage-content section:only-child,
.subpage-content section + section {
    padding-bottom: 140px;
}

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

.subpage-content .se-title {
    margin-bottom: 90px;
}

.subpage-content .se-title h3 {
    font-weight: 600;
    color: #000;
    text-align: center;
    font-size: 40px;
}

.subpage-content .se-title h3 + * {
    margin-top: 20px;
}
.subpage-content .se-title h3 + p {
    text-align: center;
    font-size: 21px;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: #000;
    line-height: 1.6;
}
.subpage-content .wp-title {
    margin-bottom: 25px;
}
.subpage-content .wp-title:has(p.caption) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}
.subpage-content .wp-title p.caption {
    margin-top: 0;
    flex-shrink: 0;
    font-size: clamp(14px, 2vw, 16px);
}
.subpage-content .wp-title h4 {
    font-size: 29px;
    color: #000;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}
.subpage-content .wp-title h4::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background: #e44141;
    left: 0;
    top: 11px;
    border-radius: 50%;
    box-shadow: 0 14px 0 #ffa1a1;
}
.subpage-content .wp-title h4 + * {
    margin-top: 20px;
}

.subpage-content * + .in-title {
    margin-top: 40px;
}
.subpage-content .item h5 {
    margin-bottom: 12px;
}
.subpage-content h5 {
    font-size: 22px;
    font-weight: 600;
    padding-left: 0;
}
.subpage-content h6 {
    margin-bottom: 10px;
}
.subpage-content h6 {
    font-size: var(--font-size-2md);
}

/* =================================== subpage content =================================== */
/* grid-system */
.subpage-content .container > :where([class*="-wrap"] + [class*="-wrap"]) {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px dotted #bbb;
}

.subpage-content :where([class*="-wrap"]) {
    display: grid;
    gap: 40px 25px;
    align-items: start;
}

.subpage-content .col-2 {
    grid-template-columns: var(--grid-2repeat);
}

.subpage-content .col-3 {
    grid-template-columns: var(--grid-3repeat);
}

.subpage-content .col-4 {
    grid-template-columns: var(--grid-4repeat);
}

.subpage-content .col-5 {
    grid-template-columns: var(--grid-5repeat);
}

.subpage-content .col-6 {
    grid-template-columns: var(--grid-6repeat);
}

.row-wrap {
    gap: 0;
}
.row-wrap > :is(.item, .col-wrap) + :is(.item, .col-wrap) {
    margin-top: 60px;
}

.row-wrap .item > :is(ul.li-cir, table) + :is(.img-box, .img-wrap) {
    margin-top: 30px;
}
#ba02 .img-box.f-imgbox {
    margin-top: 20px !important;
}
#ba01 .col-wrap.col-2 .item .img-box img {
    border: 1px solid #e5e5e5;
    padding: 3px 0;
}
#ba01 .col-wrap.col-2 .item:nth-child(2) .img-box img {
    border: 0;
    padding: 0;
}
.f-imgbox img {
    border: 1px solid #e5e5e5;
    padding: 40px;
}
.row-wrap .item > ul.li-cir {
    /* padding: 30px; */
    /* background-color: #f7f7f7; */
}
.box-wrap + .img-wrap {
    margin: 20px auto 0;
}
.box-wrap {
    display: none;
    gap: 25px;
}
.box-wrap .col {
    border: 1px solid #ccc;
    /* background-color: #f7f7f7; */
    padding: 22px 27px 25px;
}
.box-wrap .col h5 {
    font-size: var(--font-size-2md);
}
.box-wrap .col :is(li, p) {
    font-size: var(--font-size-base);
}
.img-wrap {
    gap: 20px 25px;
    /* border: 1px solid #e5e5e5; */
    /* padding: 10px; */
}
/* .card-wrap {
    counter-increment: itemNum;
}
.card-wrap .wp-title:before {
    content: counter(itemNum, decimal-leading-zero) "";
    display: block;
    font-size: var(--font-size-1md);
    font-weight: 700;
    margin-bottom: 25px;
    margin-left: 3px;
} */
.card-wrap {
    gap: 0px;
}
.card-wrap .wp-title {
    padding-right: 50px;
}
.spd-wrap {
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 0;
    background-image: url(/public/img/sub/cp-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 115px 0;
}
.spd-wrap .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    margin: 0px 0 40px;
}
.spd-wrap p {
    font-size: 22px;
    line-height: 1.6em;
    letter-spacing: -0.04em;
    color: #fff;
    font-weight: 300;
}
.spd-wrap p span {
    letter-spacing: 0;
}
.greet-wrap .img-box {
    aspect-ratio: 5/3;
    background-color: #ccc;
    gap: 0;
}
.greet-wrap {
    grid-template-columns: var(--grid-2repeat);
    /* align-items: center; */
    gap: 0;
}
.greet-wrap .text {
    padding-top: 53px;
    padding-left: 80px;
}
.greet-wrap .text p.top {
    font-size: 31px;
    margin-bottom: 70px;
    font-weight: 700;
    position: relative;
    line-height: 1.5em;
}
.greet-wrap .text p.top::before {
    content: "";
    display: block;
    position: absolute;
    width: 35px;
    height: 5px;
    background: #ff1011;
    bottom: -42px;
}
.greet-wrap .text p {
    font-size: 17px;
    line-height: 1.55em;
}
/* map */
:is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    aspect-ratio: 5/2;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
}
.map-wrap {
    gap: 0;
}
.map-wrap li {
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    padding-top: 0;
    letter-spacing: -0.04em;
}
.map-wrap li:nth-child(2) {
    letter-spacing: 0.015em;
    font-size: 20px;
}
.map-wrap li span.material-symbols-outlined {
    font-variation-settings: var(--gms600_Out);
    transform: translateY(3px);
    margin-right: 2px;
    font-size: 18px;
    color: #ffffff;
}

.map-wrap .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    gap: 35px;
    background: #777;
    padding: 20px 30px;
}

.img-wrap.gap-0 {
    gap: 0;
}
.img-wrap + .img-wrap {
    margin-top: 30px;
}

#ba01 .img-wrap img {
    width: 100%;
    height: 100%;
}

.table-wrap {
    gap: 0;
}
.table-style :is(tbody, thead) tr :is(th, td) {
    text-align: center;
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #ccc;
    font-size: var(--font-size-base);
}

.table-style > thead > tr > th {
    border-bottom: 0;
    font-weight: 500;
    background-color: #fbf8f8;
    border: 1px solid #ddd !important;
    color: #000;
    border-top: 2px solid #e75e5e !important;
}

.table-style caption {
}
#site .table-style :is(caption, tfoot td) {
    font-size: 16px;
    color: #333333;
}
/* =================================== 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: var(--font-size-1lg);
}

.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: var(--font-size-1xl);
    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: var(--font-size-base);
    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: var(--font-size-1md);
}

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

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

#bbsArea {
    gap: 0;
}

#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 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 .thumb {
    aspect-ratio: 5/3;
    width: 100%;
    height: auto;
    background-size: cover;
}

:is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}

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

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

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

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

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

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

/* 댓글 */
#bbsArea .reply_wrap h4 {
    text-align: left;
    font-size: var(--font-size-1md);
}

/* 검색 */
#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;
}

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

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

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    transition: all ease 0.3s;
}

.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

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

.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: var(--font-size-base);
    color: #333;
}

.table.table_default tr :is(th, td) {
    font-size: var(--font-size-base);
    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 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 .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: #fefbfb;
    font-weight: 700;
}

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

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
}

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

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

.custom_checkbox + span a {
    font-weight: 500;
}

.privacy_body {
    font-size: var(--font-size-base);
    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;
    border-radius: var(--radius-base);
}

: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) .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: var(--font-size-1sm);
}

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

.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: var(--font-size-1sm);
}

.member_wrapper h1 {
    font-size: var(--font-size-3xl);
    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: var(--font-size-1sm);
}

.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) {
    /* 슬라이드 */
    #mainCarousel .carousel-inner .item {
        height: calc(100svh - var(--navHeight));
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
    }
    .carousel-caption h1 {
        font-size: 48px;
    }
    .carousel-caption p {
        font-size: 20px;
    }
    .carousel-control {
        display: none;
    }

    .carousel-indicators :is(li, li.active) {
        aspect-ratio: 1;
        width: 10px;
        margin: 0 6px;
    }
    .mainpage section {
        padding: 70px 0 80px;
    }
    .mainpage h3 {
        font-size: 36px;
    }
    .service-wrap {
        grid-template-columns: var(--grid-2repeat);
        gap: 5px;
    }
    .service-wrap .item h5 {
        font-size: 22px;
    }
    .contact-wrap {
        grid-template-columns: var(--grid-1fr);
    }
    .contact-wrap .item {
        aspect-ratio: 5/2;
    }
    .contact-wrap .item h5 {
        font-size: 22px;
    }
    .contact-wrap .item .info {
        padding: 30px;
    }
}

/* subpage */
@media (max-width: 767px) {
    :is(.li-dash, .li-cir) > li {
        font-size: 15px;
    }
    .subpage-header {
        height: 200px;
    }
    .snb {
        margin-top: 0;
        padding: 15px 0;
        height: auto;
        background-color: #eee;
    }
    .snb ul {
        flex-direction: column;
        gap: 3px;
    }
    .snb ul a {
        height: 47px !important;
        font-size: 15px;
    }
    .subpage-content {
        overflow: hidden;
    }
    .subpage-content .se-title h3 {
        font-size: 32px;
    }
    .subpage-content .se-title h3 + p {
        font-size: 18px;
    }
    .subpage-content .se-title h3 + p br {
        display: none;
    }
    .subpage-content .wp-title h4 {
        font-size: 24px;
    }
    .subpage-content .wp-title h4::before {
        top: 6px;
    }
    .spd-wrap {
        padding: 100px 30px;
    }
    .spd-wrap .img-box {
        width: 50cqw;
        margin: 0 auto 30px;
    }
    .spd-wrap p {
        font-size: 18px;
    }
    .spd-wrap p br {
        display: none;
    }
    .greet-wrap {
        grid-template-columns: var(--grid-1fr);
    }
    .greet-wrap .text p.top {
        font-size: 24px;
    }
    .greet-wrap .text {
        padding-left: 0;
    }
    .table-style :is(tbody, thead) tr :is(th, td) {
        font-size: 14px;
    }
    :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
    {
        aspect-ratio: 5/4;
    }
    .map-wrap .info {
        flex-direction: column;
        gap: 10px;
    }
    .card-wrap.col-2,
    .col-wrap.col-2,
    .img-wrap.col-2,
    .row-wrap.col-2 {
        grid-template-columns: var(--grid-1fr) !important;
        gap: 30px;
    }
    .img-wrap.col-2.gap-0 {
        gap: 0;
    }
    .img-wrap.col-2 .caption {
        grid-column: 1;
    }
    .img-box p {
        font-size: 15px;
    }
    .card-wrap .wp-title {
        padding-right: 0;
    }
}

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

    .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: 20px 30px;
    }

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