@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");

:root {
    /* font */
    --page-font-family: "Oswald", "Noto Sans KR", sans-serif;
    /* nav */
    --navHeight: 100px;
    /* page-color */
    --page-point-color: #303030;
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #000;
    --page-point-color-hover: var(--page-point-color-dark);
    /* font-size default (desktop / mobile)*/
    --page-font-size: clamp(13px, 1.6vw, 15px);
    --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.4rem;
    --font-size-2lg: 1.45rem;
    --font-size-1xl: 1.75rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --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: 80px;
    }
}

* {
    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 {
    width: 100%;
    padding: 0;
}

span.material-symbols-outlined {
    font-family: var(--gms) !important;
    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;
    display: flex;
}

.img-box img {
}

.img-box.overview img {
    width: auto;
}

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

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

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

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);
    transition: all 0.25s;
}

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

:is(.li-dash, .li-cir) li {
    display: grid;
    grid-template-columns: min-content auto auto;
    grid-template-rows: min-content;
}

.li-dash li::before {
    content: "-";
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 10px;
}

.li-cir li::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 4px;
    background-color: #333;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 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;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
        padding: 0;
    }
}
@media (min-width: 1340px) {
    #bs03 .subpage-content .container {
        width: 1300px;
        padding: 0;
    }
}
.navbar-inverse .navbar-right {
}

.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: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 0px 0px;
    margin-bottom: 0;
    border-bottom: none;
}

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

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-weight: 500;
    color: #222;
    font-size: calc(var(--font-size-base) + 0.05rem);
    text-transform: uppercase;
    letter-spacing: 0.03rem;
}

/* 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: transparent;
        color: #fff;
        text-decoration: underline;
    }
}

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

    .navbar-inverse .navbar-right {
        margin-right: -30px;
    }

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        justify-content: center;
        align-items: center;
        padding: 0px clamp(15px, 2.5vw, 30px);
    }

    /* 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: 16px 0;
        text-align: center;
        box-shadow: none;
    }

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 10px 25px;
        line-height: 1;
        font-size: var(--font-size-1sm);
        letter-spacing: 0.015rem;
    }

    /* top & scroll */
    /* :is(.navbar-inverse, .navbar-inverse.top) {
        transition: .3s;
        height: 120px;
        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 {
        width: 180px;
    }

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

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

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

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

.footer-wrap {
    display: grid;
    padding: 25px 0 30px;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: min-content;
    align-items: flex-start;
    border-top: 1px solid #e0e0e0;
}

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

.footer-info li {
    font-size: 12px;
}

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

.footer-info li.corp {
    color: #555;
}

.footer-info li.copyright {
    margin-top: 10px;
    color: #aaa;
    font-size: var(--font-size-1xs);
    letter-spacing: 0.05rem;
}

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

.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    background: transparent;
    color: #666;
    line-height: 1;
    border: 1px solid #ddd;
    font-size: 10px;
    font-weight: 500;
}

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

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

#scrollTop {
    padding: 0;
    aspect-ratio: 1;
    position: fixed;
    z-index: 1000;
    right: 50px;
    bottom: 50px;
    width: 50px;
    display: none;
    text-align: center;
    color: #fff;
    background: #000;
}

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

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

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

/* 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 =================================== */
.mainpage section.main-carousel {
    padding: 0;
}
/* 슬라이드 */
#mainCarousel {
}

#mainCarousel .carousel-inner .item {
    /* height: calc(100dvh - var(--navHeight)); */
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

@media (min-width: 1200px) {
    #mainCarousel .carousel-inner .item {
        aspect-ratio: 21/9;
    }
}

#mainCarousel .carousel-inner .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.45;
}
.slide_logo {
    width: clamp(350px, 40vw, 500px);
    margin: 0 auto;
    filter: invert(1);
}

/* caption */
.carousel-caption {
    top: 50%;
    left: 5%;
    right: 5%;
    padding: 0;
    text-shadow: none;
    text-align: left;
}

.carousel-caption h1 {
    position: relative;
    font-size: var(--font-size-5xl);
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
}
.carousel-caption strong {
    display: block;
    font-size: var(--font-size-2lg);
    font-weight: 400;
    margin-bottom: 25px;
    text-decoration: underline;
    text-underline-position: under;
}
.carousel-caption p {
    margin-top: 25px;
    font-size: var(--font-size-1lg);
    font-weight: 400;
    letter-spacing: -0.01em;
    display: none;
}

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

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

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

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

.glyphicon[class*="glyphicon-chevron"]::before {
    color: #fff;
    font-family: var(--gms);
    font-variation-settings: var(--gms100_Out);
}

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

.carousel-indicators :is(li, li.active) {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    margin: 0 1px;
    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: 60px 0 90px;
}

.mainpage h3 {
    font-size: var(--font-size-5xl);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.service-wrap {
    display: grid;
    gap: 35px;
}
@media (min-width: 1200px) {
    .service-wrap {
        grid-template-columns: minmax(0, 6fr) minmax(0, 4fr) minmax(0, 1.5fr);
    }
}
.service-wrap .item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.service-wrap h4 {
    font-weight: 500;
    line-height: 1;
    font-size: var(--font-size-2md);
    background: #111;
    color: #fff;
    padding: 8px 10px;
}
.service-wrap .item-title {
    /* padding-bottom: 10px; */
    border-top: 1px solid #111;
    color: #111;
    display: flex;
    justify-content: space-between;
}

.service-wrap .item-title a {
    font-weight: 300;
    color: #333;
    padding-top: 10px;
    padding-right: 2px;
    letter-spacing: 0.05rem;
    font-size: var(--font-size-1sm);
}

@media (hover: hover) {
    .service-wrap .business > .col:hover {
        background: #222;
        color: #fff;
    }
    .service-wrap .artist a:hover img {
        transform: scale(1.15);
    }

    .service-wrap .artist a:hover p {
        background: #000;
    }
    .service-wrap .item-title a:hover {
        text-decoration: underline;
    }

    .service-wrap .contact > .col:hover {
        background: radial-gradient(at 50% -20%, #6a6a6a, #444, #2a2a2a);
    }
}
.service-wrap .artist .img-box {
    aspect-ratio: 3/3.6;
}
.service-wrap .artist .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 0.3s;
}
.service-wrap .artist {
    display: grid;
    grid-template-columns: var(--grid-4repeat);
    gap: 5px;
}
.service-wrap .artist a {
    position: relative;
    display: block;
    background: #000;
}

.service-wrap .artist p {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    color: #fff;
    background-color: rgb(38 38 38 / 80%);
    backdrop-filter: blur(10px);
    padding: 5px 14px;
    font-weight: 500;
    font-size: var(--font-size-1sm);
    letter-spacing: 0;
    transition: all 0.25s;
}
.service-wrap .business {
    flex: 1;
    display: grid;
    grid-template-columns: var(--grid-3repeat);
    gap: 6px;
}
.service-wrap .business > .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
    background-color: #ececec;
    color: #111;
    min-height: 153px;
    transition: all 0.25s;
}

.service-wrap .business > .col span.material-symbols-outlined {
    font-size: 42px;
    margin-bottom: 10px;
}
.service-wrap .business .img-box {
    height: 100%;
    aspect-ratio: 1;
    /* grid-column: span 3; */
}
.service-wrap .business p {
    font-weight: 500;
    font-size: var(--font-size-base);
    text-align: center;
}

.service-wrap .contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-wrap .contact > .col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background: radial-gradient(at 50% -20%, #6a6a6a, #444, #2a2a2a);
    color: #fff;
}
.service-wrap .contact p {
    font-weight: 500;
    font-size: var(--font-size-1md);
    text-align: center;
    color: #fff;
    letter-spacing: 0;
}
.service-wrap .contact .col::after {
    content: "\e5e1";
    display: block;
    margin-left: auto;
    font-family: var(--gms);
    font-variation-settings: var(--gms600_Out);
    line-height: 1;
    font-size: 16px;
    margin-left: 10px;
}
/* wrap */

/* =================================== subpage header =================================== */
/* default */

.subpage-header .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    /* justify-content: space-between; */
    flex-flow: column-reverse;
    align-items: start;
    margin-top: 75px;
    height: 100%;
    /* border-bottom: 2px solid #000; */
    gap: 18px;
}

.subpage-header .subpage-title h2 {
    line-height: 1;
    text-align: center;
    font-weight: 700;
    color: #000;
    font-size: var(--font-size-7xl);
    text-transform: uppercase;
}

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

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

.breadcrumb > li {
    position: relative;
    color: #777;
    font-size: 11px;
    letter-spacing: 0;
}

.breadcrumb > li.active {
    color: #333;
    font-weight: 700;
}

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

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

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

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

.snb ul {
    margin: 0;
    border-top: 1px solid #111111;
    position: relative;
    background: #111;
}

.snb ul::after {
    content: "";
    width: 100%;
    height: 1px;
    /* background: #333; */
    position: absolute;
    right: 0;
    top: 18px;
    z-index: -1;
}

.snb li > a {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px 30px 10px;
    /* background: #fff; */
    text-align: center;
    font-size: var(--font-size-base);
    color: #d5d5d5;
    /* min-width: 180px; */
    /* background: #eaeaea; */
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
}

.snb li + li a::before {
    content: "";
    width: 1px;
    height: 12px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 15px;
    opacity: 0.25;
}

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

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

.snb li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    width: 100%;
    height: 4px;
    /* background: var(--page-point-color); */
}

/* =================================== subpage =================================== */

.subpage-content section {
    padding: 80px 0 130px;
}

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

.subpage-content .se-title {
    margin-bottom: 60px;
    display: none;
}

.subpage-content .se-title h3 {
    font-weight: 600;
    color: #000;
    font-size: var(--font-size-2xl);
}

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

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

.subpage-content .wp-title h4 {
    font-size: var(--font-size-2xl);
    letter-spacing: -0.025rem;
    line-height: 1.25;
}

.subpage-content * + .in-title {
    margin-top: 40px;
}

.subpage-content h5 {
    font-size: var(--font-size-1xl);
}
.subpage * + .title-h3 {
    margin-top: 100px;
}
.subpage .title-h3 {
    margin-bottom: 60px;
    /* text-align: center; */
}
.subpage .title-h3 :only-child {
    margin-bottom: 0;
}
.subpage .title-h3 > h3 {
    font-weight: 600;
    font-size: 32px;
    color: #000;
}
.subpage .title-h3 > p {
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.035em;
    font-size: 21px;
    color: #000;
}
.subpage .title-h3 > * + * {
    margin-top: 20px;
}

/* h4 */
.subpage .title-h4 {
    text-align: center;
    margin-bottom: 50px;
}
.subpage *:not(.title-h3) + .title-h4 {
    margin-top: clamp(90px,10vw,140px);
}
.subpage .title-h4 > h4 {
    font-weight: 600;
    font-size: clamp(24px, 3vw, 32px);
    color: #222;
}
.subpage .title-h4 > p {
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.035em;
    font-size: 18px;
    color: #000;
}
.subpage .title-h4 :is(p, li) {
    font-size: 18px;
}
.subpage .title-h4 > * + * {
    margin-top: 15px;
}
/* =================================== subpage content =================================== */
/* grid-system */
.subpage-content :where([class*="-wrap"] + [class*="-wrap"]) {
    margin-top: 100px;
}

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

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

.subpage-content .col-2 .wp-title {
    grid-column: span 2;
}

.subpage-content .col-3 .wp-title {
    grid-column: span 3;
}

.subpage-content .col-4 .wp-title {
    grid-column: span 4;
}

.subpage-content .col-6 .wp-title {
    grid-column: span 6;
}

.subpage-content .rowspan-2 {
    grid-row: span 2;
}

.subpage-content .rowspan-3 {
    grid-row: span 3;
}

.subpage-content .rowspan-4 {
    grid-row: span 4;
}

.subpage-content .colspan-2 {
    grid-column: span 2;
}

.subpage-content .colspan-3 {
    grid-column: span 3;
}

.subpage-content .colspan-4 {
    grid-column: span 4;
}

.subpage-content .colspan-5 {
    grid-column: span 5;
}
.subpage-content .colspan-6 {
    grid-column: span 6;
}
.greet-wrap {
    display: flex;
    gap: 0;
    padding: 0 80px;
}
.greet-wrap p.top {
    font-size: var(--font-size-3xl);
    color: #111;
    font-weight: 700;
    line-height: 1.3;
}

.greet-wrap p.top + p {
    margin-top: 20px;
}

.greet-wrap p {
    font-size: 16px;
}
.greet-wrap .img-box {
    width: 50%;
    justify-content: center;
}
.greet-wrap .img-box img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.greet-wrap .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding-left: 15px;
    padding-top: 25px;
}

.manage-wrap {
    /* grid-template-columns: var(--grid-2repeat); */
    gap: 20px;
}
.manage-wrap .item {
    display: grid;
    grid-template-columns: minmax(0, 250px) auto;
    background: #ececec;
    padding: 40px 50px;
}
.manage-wrap .item h4 {
    /* border-top: 1px solid #000; */
    /* padding-top: 30px; */
    font-size: var(--font-size-3xl);
    color: #000;
}

.manage-wrap .item h4 .rank {
    display: block;
    font-size: 16px;
    font-style: italic;
    color: #333;
    line-height: 1;
    margin-bottom: 6px;
    margin-top: 5px;
}

.manage-wrap .item h4 .name {
    font-weight: 800;
}
.manage-wrap .item .info {
    /* border-top: 1px solid #ccc; */
    /* padding-top: 30px; */
    /* padding-left: 30px; */
}
.map-wrap p.address {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    font-size: var(--font-size-2lg);
}
.map-wrap p.address span.material-symbols-outlined {
    font-size: 32px;
}
/* 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;
}

.prof-wrap {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: clamp(50px, 7vw, 100px);
    align-items: flex-start;
}
.prof-wrap .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.prof-wrap span.rank {
    display: inline-block;
    margin-top: 20px;
    margin-left: 0px;
    font-size: 18px;
    font-style: italic;
}
.prof-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.prof-wrap h4.name {
    display: inline-block;
    font-size: calc(var(--font-size-5xl) + 0.25rem);
    font-weight: 800;
    margin: 10px -3px 55px;
    line-height: 1;
    color: #000;
}

.prof-wrap h4.name::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ccc;
    display: block;
    margin-top: 40px;
    margin-left: 2px;
}
.prof-wrap .dl-carrer {
    display: flex;
    flex-direction: column;
    gap: 43px;
    padding-left: 0px;
    position: relative;
}

.prof-wrap .dl-carrer dt {
    color: #111;
    font-size: var(--font-size-1md);
    letter-spacing: -0.034rem;
    margin-bottom: 10px;
}

.prof-wrap .dl-carrer dt + dd.text {
    margin-top: 20px;
}
.prof-wrap .dl-carrer dt + dd {
    margin-top: 7px;
}

.prof-wrap .dl-carrer dd {
    color: #666;
    line-height: 1.55;
}
.prof-wrap .dl-carrer dd + dd {
    margin-top: 4px;
}
.prof-wrap .dl-carrer dd.text {
    width: 80%;
    line-height: 1.55;
}

.prof-wrap .dl-carrer dd.text + dd.text {
    margin-top: 20px;
}

.youtube-wrap {
    display: grid;
    grid-template-columns: var(--grid-3repeat);
    gap: 40px 20px;
}
.youtube-wrap .img-box {
    aspect-ratio: 16/9;
}
.youtube-wrap .img-box img {
    transform: scale(1.01);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.youtube-wrap p {
    color: #000;
    margin-top: 5px;
}
.youtube-wrap a:hover p {
    text-decoration: underline;
}
.busi-wrap {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 70px;
}

.busi-wrap .wp-title h4 {
    font-size: calc(var(--font-size-4xl) + 0.5rem);
    padding-right: 40px;
}
.busi-wrap .wp-title {
    display: flex;
    flex-direction: column;
    /* gap: 75px; */
}
.busi-wrap .wp-title > * {
    margin-bottom: 75px;
}
.busi-wrap .wp-title > *:last-child {
    margin-bottom: 0;
}
.busi-wrap .wp-title > .title-h3 {
    margin-bottom: 40px;
}
.busi-wrap .wp-title > .title-h3 h3 {
    text-decoration: underline;
}
.busi-wrap h4 {
    font-weight: 800;
    color: #000;
}
.busi-wrap p {
    font-size: var(--font-size-1lg);
    font-weight: 500;
    color: #111;
    letter-spacing: -0.03rem;
    line-height: 1.5;
}

.busi-wrap strong.word {
    display: block;
    font-size: var(--font-size-base);
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0;
    font-style: italic;
    /* text-decoration: underline; */
    /* text-underline-position: under; */
    color: #777;
}

.busi-wrap small.en {
    display: block;
    font-weight: 300;
    line-height: 1.3;
    color: #666;
}

.busi-wrap h4 small.en {
    font-size: 65%;
    margin-top: 20px;
    color: #333;
}

.busi-wrap p small.en {
    font-size: 75%;
    margin-top: 16px;
    line-height: 1.3;
    letter-spacing: 0;
}

.busi-wrap .img-wrap {
    gap: 10px;
}

.busi-wrap .img-wrap.grid-cols-6 {
    grid-template-columns: var(--grid-6repeat);
}
.busi-wrap .img-wrap.grid-cols-2 {
    grid-template-columns: var(--grid-2repeat);
}
.busi-wrap .img-wrap .img-box {
    /* border-radius: 10px; */
}

.busi-wrap.virual {
    display: flex;
    flex-direction: column;
    margin-top: clamp(40px,5vw,70px);
    gap: 0;
}
.busi-wrap.virual .wp-title {
    text-align: center;
    margin-bottom: clamp(80px, 8vw, 140px);
}
.busi-wrap.virual .wp-title h4 {
    font-size: clamp(32px, 3vw, 54px);
    padding-right: 0;
}
.busi-wrap .youtube-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.busi-wrap .youtube-box iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
}
.busi-wrap .youtube-box a {
    transition: 0.25s;
    margin-top: 25px;
    display: inline-flex;
    /* border-radius: 500px; */
    gap: 7px;
    /* padding: 0 20px; */
    /* height: 50px; */
    justify-content: center;
    align-items: center;
    /* background-color: #ff0000; */
    color: #000;
    font-weight: 900;
    font-size: clamp(15px, 3vw, 17px);
    line-height: 1;
    padding-bottom: 6px;
    border-bottom: 1px solid #000;
    opacity: 0.5;
}
.busi-wrap .youtube-box a:hover {
    opacity: 1;
}
.busi-wrap .youtube-box a i {
    font-size: 1.2em;
    transform: translateY(2px);
    line-height: 0;
}

@media (width <= 767px) {
    .busi-wrap.virual .wp-title {
        margin-top: 0;
    }
}

.adv-wrap {
    display: flex;
    gap: 20px;
}

.adv-wrap .col {
    transition: 0.25s;
    flex: 1;
    padding: 30px 35px 40px;
    border-radius: 20px;
    border: 1px solid #aaa;
    background-color: #fff;
}

@media (hover: hover) {
    .adv-wrap .col:hover {
        border-color: #222;
        box-shadow: 7px 7px 20px 4px rgba(0, 0, 0, 0.1);
    }
    .adv-wrap .col:hover span.num {
        opacity: 0.8;
    }
    .adv-wrap .col:hover h5 {
        color: #000;
    }
}
.adv-wrap span.num {
    transition: 0.25s;
    display: block;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: clamp(20px, 3vw, 30px);
}
.adv-wrap span.material-symbols-outlined {
    font-size: 56px;
    margin-bottom: 20px;
}
.adv-wrap h5 {
    font-weight: 700;
    margin-bottom: clamp(15px, 3vw, 30px);
}
.adv-wrap ul {
    gap: 7px;
}
.adv-wrap li {
    font-size: 18px;
}
.adv-wrap li::before {
    margin-top: 13px;
}
@media (width <= 767px) {
    .adv-wrap {
        flex-direction: column;
    }
    .adv-wrap .col {
        padding: 35px 25px;
    }
    .adv-wrap ul {
        gap: 4px;
    }
    .adv-wrap li {
        font-size: 15px;
    }
}
.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: 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;
}

@media (max-width: 767px) {
    .pd_view_wrapper {
        display: none;
    }

    .pd_view_wrapper .pd_img_main {
        background-repeat: no-repeat;
        background-size: cover;
    }

    .pd_view_wrapper .pd_img_main .slick-dots {
        display: none !important;
    }
}

/* 카테고리 / 분류 */
.category_wrap ul {
    display: flex;
    gap: 0 20px;
}

.category_wrap li {
    margin: 0 !important;
}

.category_wrap li a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}

.category_wrap li a:hover {
    color: #111;
}

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

:is(.table_video, .table_blog2) {
    display: grid;
    grid-template-columns: repeat(3, var(--grid-1fr));
    gap: 50px 20px;
    margin: 0;
}

/* 상품 게시판 */
/* 목록 */
.table_pd .inner .bottom .title a {
    white-space: normal;
    font-size: var(--font-size-1lg);
}

.table_pd #pd_preview_text * {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    font-size: inherit !important;
}

.table_pd #pd_preview_text h5 {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
    color: #333;
}

.table_pd #pd_preview_text ul {
    display: block;
    margin-bottom: 15px;
}

/* 상세 */
#board_pd_view .thumb {
    display: none;
}

#board_pd_view .pd_top_wrap .pd_col_rgt {
    padding-top: 20px;
}

#board_pd_view .pd_title_wrap {
    padding-bottom: 20px;
    border-bottom-color: #ccc;
}

#board_pd_view .pd_title_wrap .title {
    font-size: var(--font-size-2xl);
    line-height: 1.3;
}

#board_pd_view .pd_title_wrap .badge {
    padding: 4px 8px 4px;
}

#board_pd_view #pd_preview_text {
    white-space: normal;
}

#board_pd_view #pd_preview_text * {
    margin: inherit;
    padding: inherit;
    line-height: 1.4;
}

#board_pd_view #pd_preview_text > h5 {
    font-size: 16px;
    margin-bottom: 5px !important;
    font-weight: 700;
}

#board_pd_view #pd_preview_text > * + h5 {
    margin-top: 20px !important;
}

#board_pd_view #pd_preview_text > span {
    display: block;
    font-size: var(--font-size-1md);
}

#board_pd_view #pd_preview_text > ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* 1depth */
#board_pd_view #pd_preview_text > ul > li {
    display: grid;
    grid-template-columns: max-content auto;
    font-size: var(--font-size-base);
}

/* 2depth */
#board_pd_view #pd_preview_text > ul > li > ul {
    grid-column: 2;
    margin: 2px 0 3px !important;
}

#board_pd_view #pd_preview_text > ul > li > ul > li {
    display: grid;
    grid-template-columns: max-content auto;
}

#board_pd_view #pd_preview_text > ul > li::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 4px;
    background-color: #333;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 10px;
}

#board_pd_view #pd_preview_text > ul > li > ul > li::before {
    content: "-";
    display: block;
    margin-right: 7px;
}

#board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 30px 0 30px;
    background-color: #fff;
    gap: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--page-point-color);
    color: var(--page-point-color-dark);
    font-size: var(--font-size-base);
    font-weight: 700;
}

#board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a:hover {
    background-color: var(--page-point-color);
    color: #fff;
}

@media (min-width: 768px) {
    .table_pd .inner span.thumb {
        transition: 0.5s;
    }

    .table_pd .top a::after {
        content: "\e147";
        transition: 0.35s;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        font-family: var(--gms);
        font-weight: 200;
        font-size: 74px;
        color: #fff;
        line-height: 0;
    }

    .table_pd .top a:hover::after {
        opacity: 1;
    }
}

/* 블로그 동영상 상품 */

/* 컬럼개수 설정 */
.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;
    line-height: 0;
}

.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: none;
    border-collapse: inherit;
    background: #ececec;
}

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

.text-muted {
    margin-top: 8px !important;
}
.form-control {
    font-family: "Noto Sans KR", sans-serif;
    height: 44px;
}
/* wrapper */
.board_wrapper .text-center .btn {
    padding: 18px 0 !important;
    background: #fff;
    color: #111;
}

.board_wrapper .text-center .btn:hover {
    background: #000;
    color: #fff;
}

.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: #222;
    font-weight: 700;
    color: #fff;
    border-color: #000;
    padding-top: 27px;
}

.board_wrapper .table.board_write_table > :where(tbody, tfoot, thead) > tr > :where(th, td) {
    border-top: 1px solid #ddd;
}

.board_wrapper .table.board_write_table tbody tr :where(th, td) {
    padding: 20px 25px;
}

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

#item_agree .checkbox a {
    color: #333;
    text-decoration: underline;
}

.board_wrapper .table.board_write_table .text-muted {
    font-size: 13px;
}

.board_wrapper .table.board_write_table tbody tr th > span.required_text {
    color: red;
}

.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: #ececec;
}

: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)); */
        aspect-ratio: 4/5;
        height: auto;
    }
    .slide_logo {
        width: 70%;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: var(--font-size-4xl);
    }

    .carousel-control {
        display: none;
    }

    .carousel-indicators :is(li, li.active) {
        aspect-ratio: 1;
        width: 8px;
        height: auto !important;
    }
    .main-carousel > .container {
        padding: 0;
    }
    .service-wrap .artist {
        grid-template-columns: var(--grid-2repeat);
    }
}

/* subpage */
@media (max-width: 767px) {
    .subpage-header .subpage-title {
        align-items: center;
    }
    .snb ul {
        justify-content: center;
    }
    .snb li {
        flex: 1;
    }
    [id*="bs"] .snb li {
        flex: 1 1 auto;
    }
    .snb li > a {
        padding-left: 0;
        padding-right: 0;
    }
    .greet-wrap {
        flex-direction: column;
        padding: 0;
    }
    .greet-wrap .img-box {
        width: 80%;
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto 50px;
    }
    .greet-wrap .text {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }
    .map-wrap p.address {
        flex-direction: column;
        text-align: center;
    }
    :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
    {
        aspect-ratio: 5/4 !important;
    }
    .prof-wrap {
        grid-template-columns: var(--grid-1fr);
        gap: 0;
    }
    .prof-wrap .info {
        margin-top: 30px;
    }
    .youtube-wrap {
        grid-template-columns: var(--grid-2repeat);
        gap: 35px 10px;
    }
    .busi-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
    .busi-wrap .wp-title {
        margin-top: 60px;
        /* gap: 50px; */
    }
    .busi-wrap .wp-title > * {
        margin-bottom: 40px;
    }
    .board_wrapper .table.board_write_table tbody tr th > span.required_text {
        margin-left: -3px;
    }
}

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