@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
#site {
    font-family: "Open Sans", sans-serif;
    padding-top: clamp(120px, 15vw, 189px);
    color: #282828;
}

ol,
ul,
li {
    list-style: none;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

p,
.table {
    margin: 0;
}
a,
a:hover {
    text-decoration: none;
}

#site > .container:not(.agreement_container, .privacy_container, .mypage_container) {
    width: 100%;
    padding-top: 0px;
}
@media (min-width: 1280px) {
    .container {
        width: 100%;
        max-width: 1500px;
        /* padding: 0 100px; */
        /* padding: 0 20px; */
    }
    .navbar .container {
        max-width: 100%;
        padding-inline: 90px;
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .container::before,
    .navbar .container::after {
        content: none;
    }
}

:root {
    --page-point-color: #282828;
    --page-point-color-hover: #000;
    --page-dark-color: #282828;
    --page-dark-color-hover: #000;
}

/* ------------ animation ------------ */
.ani {
    opacity: 0;
    animation-duration: 0.8s;
    /* animation-duration: 1s; */
    animation-fill-mode: both;
}

.active.ani.fi-in {
    animation-name: fadeIn;
}
.active.ani.fi-up {
    animation-name: fadeInUp;
}
.active.ani.fi-down {
    animation-name: fadeInDown;
}
.active.ani.fi-left {
    animation-name: fadeInLeft;
}
.active.ani.fi-right {
    animation-name: fadeInRight;
}

.active.ani.fi-up2 {
    animation-name: fadeInUp2;
}
.active.ani.fi-down2 {
    animation-name: fadeInDown2;
}
.active.ani.fi-left2 {
    animation-name: fadeInLeft2;
}
.active.ani.fi-right2 {
    animation-name: fadeInRight2;
}

.active.ani.t0 {
    animation-delay: 0s;
}
.active.ani.t1 {
    animation-delay: 0.1s;
}
.active.ani.t2 {
    animation-delay: 0.2s;
}
.active.ani.t3 {
    animation-delay: 0.3s;
}
.active.ani.t4 {
    animation-delay: 0.4s;
}
.active.ani.t5 {
    animation-delay: 0.5s;
}
.active.ani.t6 {
    animation-delay: 0.6s;
}
.active.ani.t7 {
    animation-delay: 0.7s;
}
.active.ani.t8 {
    animation-delay: 0.8s;
}
.active.ani.t9 {
    animation-delay: 0.9s;
}
.active.ani.t10 {
    animation-delay: 1s;
}
.active.ani.t11 {
    animation-delay: 1.1s;
}
.active.ani.t12 {
    animation-delay: 1.2s;
}
.active.ani.t13 {
    animation-delay: 1.3s;
}
.active.ani.t14 {
    animation-delay: 1.4s;
}
.active.ani.t15 {
    animation-delay: 1.5s;
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@keyframes fadeInDown2 {
    0% {
        opacity: 0;
        transform: translateY(-20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@keyframes fadeInLeft2 {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
@keyframes fadeInRight2 {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

/* ------------ 접근성 ------------ */
.navbar .caret {
    display: none;
}
.clip {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}

/* ------------ 상단 메뉴 ------------ */
.navbar-inverse {
    background: #fff;
    position: absolute;
    margin-bottom: 0;
    border: 0;
    z-index: 10000;
}
.navbar-inverse .navbar-brand {
    height: auto;
}
.navbar-inverse .navbar-brand img {
    height: clamp(60px, 10vw, 95px);
    /* margin-top: 35px; */
}
.navbar-inverse .navbar-right {
    margin-right: 0;
    /* margin-top: 92px; */
}
.navbar-inverse .navbar-nav > li > a {
    padding: 38px 25px 38px;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    position: relative;
}
.navbar-inverse .navbar-nav > li > a::before {
    content: "";
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background: #444;
    position: absolute;
    opacity: 0;
    transition: all 0.3s;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    background: transparent;
    font-weight: 400;
    color: #282828;
}
.navbar-inverse .navbar-nav > li > a:hover::before,
.navbar-inverse .navbar-nav > li > a.on::before {
    opacity: 1;
}
.navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle {
    background: none;
    color: var(--page-point-color);
}
.navbar-inverse .navbar-nav .dropdown.hn.open .dropdown-menu {
    display: none;
}
.navbar-inverse .navbar-nav .dropdown.hn.open a {
    opacity: 0.5;
}
.navbar-inverse .navbar-nav .dropdown.hn.open a::before {
    opacity: 0;
}
#site:has(#main_wrapper) .navbar-inverse {
    background-color: transparent;
}
#site:has(#main_wrapper) .navbar-inverse .navbar-brand img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
#site:has(#main_wrapper) .navbar-inverse .navbar-nav > li > a {
    color: #fff;
}
#site:has(#main_wrapper) .navbar-inverse .navbar-nav > li > a::before {
    background: #fff;
}
#site:has(#main_wrapper) {
    padding-top: 0;
}
@media (max-width: 767px) {
    .navbar-inverse .navbar-brand {
        padding: 5px 15px;
        margin: 8px 0;
    }
    .navbar-inverse .navbar-brand img {
        margin-top: 6px;
        height: clamp(50px, 3vw, 80px);
    }
    .navbar-inverse .navbar-nav > li > a {
        padding: 12px 20px 12px 23px;
    }
    .navbar-inverse .navbar-nav > li > a,
    .navbar-inverse .navbar-nav > li > a:focus {
        font-size: 15px;
        color: #333;
    }
    .navbar-nav .open .dropdown-menu {
        background-color: #000;
        border-radius: 0;
    }
    .navbar-inverse .navbar-toggle {
        border: 0;
        padding: 18px 0;
        color: #000;
    }
    #site:has(#main_wrapper) .navbar-inverse .navbar-toggle {
        color: #fff;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #000;
        transition: ease-in-out 0.15s all;
        opacity: 1;
        position: relative;
    }

    #site:has(#main_wrapper) .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fff;
    }
    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: transparent;
    }
    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #000;
    }
    #site:has(#main_wrapper) .navbar-inverse .navbar-toggle:hover .icon-bar,
    #site:has(#main_wrapper) .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #fff;
    }
    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: transparent;
        overflow-x: hidden;
    }
    .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;
    }
}

@media (min-width: 768px) {
    .navbar-inverse .navbar-nav .dropdown-menu {
        min-width: 100%;
        background: rgb(255 255 255 / 30%);
        left: 50%;
        right: auto;
        top: 75%;
        transform: translate(-50%, 0);
        border-radius: 0.25rem;
        border: 0;
        padding: 10px 0;
        -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.125);
        box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.125);
        /* box-shadow: none; */
        animation-fill-mode: both;
        animation-duration: 0.4s;
        animation-name: fadeIn;
        border-radius: 0;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 5px 10px;
        margin-left: 17px;
        color: #888;
        /* mix-blend-mode: difference; */
        font-size: 14px;
        text-transform: capitalize;
    }
    #site:has(#main_wrapper) .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        color: #eee;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:focus,
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
        background: transparent;
        color: #ccc;
    }
}

/* ------------  슬라이드 ------------  */
/* 슬라이드의 크기 */
#main_wrapper {
    overflow: hidden;
}
#main_key .key-slider {
    margin-bottom: 300px;
    position: relative;
    width: 100%;
}
#main_key .key-slider .slick-list {
    overflow: visible;
    /* width: 100%; */
    position: relative;
}
#main_key .key-slider .slick-track {
    /* width: 100% !important; */
}
#main_key .key-slider .item {
    height: 100vh;
    /* aspect-ratio: 1903/1300; */
    /* height: 1300px; */
}
#main_key .key-slider .item img {
    position: absolute;
    left: 0;
    /* top: 0; */
    width: 100%;
    height: calc(100vh + 300px);
    object-fit: cover;
    object-position: 50% 0%;
    filter: brightness(0.55);
}
/* #main_key .key-slider .item::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.45;
} */
.carousel-indicators {
    margin: 0;
    max-width: 100%;
    transform: translateX(-50%);
}
.carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid #fff;
    margin: 0 5px 0 0;
    border-radius: 50%;
    transition: ease-in-out 0.15s all;
}
.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 0 5px 0 0;
}
#main_key .key-slider .inner {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-inline: 90px;
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (max-width: 991.98px) {
    #main_key .key-slider .inner {
        /* height: 100%; */
    }
}
#site .carousel-caption {
    position: static;
    transform: none;
    color: #fff;
    text-shadow: none;
    text-align: left;
    padding: 0;
    margin-bottom: 100px;
    /* top: 42%; */
    /* bottom: 0px; */
    /* left: 110px; */
}
.carousel-caption h1 {
    font-size: 100px;
    font-weight: 500;
    margin: 0 0 30px -10px;
    transform: translateY(0px);
    opacity: 0;
    /* text-indent: 0; */
    line-height: 1;
}
.carousel-caption h1:first-letter {
    margin-left: 10px;
}
.carousel-caption p {
    font-size: clamp(13px, 3vw, 16px);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.5;
    transform: translateY(0px);
    opacity: 0;
}
#main_key .key-slider .item.slick-active .carousel-caption h1 {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
#main_key .key-slider .item.slick-active .carousel-caption p {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}
#main_key .key-slider .item.slick-active .carousel-caption p b {
    font-size: clamp(120%, 3vw, 150%);
    line-height: 1;
}
@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slick-dots {
    display: inline-flex;
    justify-content: center;
    margin: 0;
    flex-direction: column;
    width: auto;
    right: 90px;
    bottom: initial;
    /* top: 82%; */
    bottom: 100px;
    list-style-type: none;
    z-index: 1;
    position: absolute;
    gap: 30px;
}
.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}
.slick-dots li button::before {
    display: none;
}
.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    text-indent: -9999px;
}
.slick-dots li.slick-active button {
    background-color: #fff;
}
@media (max-width: 767px) {
    #site .carousel-caption {
        right: 20%;
        left: 20%;
        /* padding-bottom: 30px; */
        padding-right: 40px;
        padding-left: 5px;
    }
    .carousel-caption p br {
        display: none;
    }
    .carousel-caption h1 {
        font-size: 14px;
        line-height: 30px;
    }
    #mainCarousel .carousel-caption p {
        display: none;
    }
    #main_key .key-slider .inner {
        padding-inline: 30px;
    }
    .slick-dots {
        right: 18px;
        bottom: 105px;
        gap: 15px;
        scale: 0.8;
        transform-origin: right bottom;
    }
    #main_key .key-slider,
    #main_key .key-slider .item img,
    #main_key .key-slider .inner {
        height: 700px;
    }
    #main_key .key-slider {
        margin-bottom: 0px;
    }
    #main_key .key-slider .item .carousel-caption p {
        line-height: 1.4;
    }
}
@media (max-width: 575.98px) {
    #main_key .key-slider .inner {
        padding-inline: 15px;
    }
}

/* ------------ footer ------------ */
#site footer {
    margin-top: 0px;
    color: #ccc;
}
#site footer .footer-info {
    padding: 170px 0;
}
#site footer .footer-info ul {
    position: relative;
    margin: 0;
    padding: 0;
}
#site footer .footer-info ul li:first-child {
    font-weight: 700;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 3px;
}
#site footer .footer-info ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    line-height: 21px;
}
#site footer .footer-info .logo > img {
    width: 250px;
    opacity: 0.7;
    margin-top: 3px;
}
#site footer .footer-info .info {
    flex-direction: column;
    padding: 0 15px;
}
#site footer .footer-info ul .copy {
    font-size: 11px;
    color: #777;
    letter-spacing: 0.08em;
}
.top_btn {
    text-align: center;
    color: #7a7a7a;
    font-size: 15px;
    margin-bottom: clamp(100px, 15vw, 160px);
    cursor: pointer;
}
@media (max-width: 767px) {
    #site footer .footer-info ul li,
    #site footer .footer-info ul li:first-child {
        font-size: 13px;
    }
    #site footer .footer-info .logo > img {
        width: 40%;
        margin: 0 auto 20px;
    }
    footer.footer-wrap .footer-category {
        display: none;
    }
    #site footer .footer-info {
        padding-block: 90px;
    }
}

/* ------------ sub 헤더 ------------ */
.sub_header {
    height: 300px;
    position: relative;
    color: #fff;
    text-align: center;
    background: #333 url("/public/img/sub/sub_header.jpg") no-repeat bottom center;
    background-size: cover;
}
.sub_header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.45);
}
.sub_header h2 {
    font-size: 45px;
    line-height: 1;
    margin-top: 0;
    text-align: center;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}
.sub_header .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
    .sub_header {
        height: 200px;
    }
    .sub_header h2 {
        font-size: 35px;
        margin: 0;
        line-height: 1.2;
    }
}

/* ------------ 서브 메뉴 ------------ */
.sub_menu {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #e5e5e5;
}
.sub_menu ul.nav {
    display: flex;
}
.sub_menu ul.nav > li::after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #e3e3e3;
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
}
.sub_menu ul.nav > li:last-child::after {
    content: none;
}
.sub_menu ul > li {
    min-width: 200px;
}
.sub_menu ul > li.home {
    min-width: 70px;
    text-align: center;
}
.sub_menu ul > li.home a {
    display: block;
    padding: 15px 20px;
    background: #fff;
    color: var(--page-point-color);
}
.sub_menu ul > li.home span {
    display: block;
    font-size: 2.4rem;
}
.sub_menu ul > li.dropdown {
    position: relative;
    cursor: pointer;
}
.sub_menu ul > li.dropdown.open {
    background: var(--page-point-color);
}
.sub_menu ul > li.dropdown .dropdown-toggle {
    color: #555;
    text-align: center;
    display: flex;
    padding: 15px 20px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    justify-content: space-between;
}
.sub_menu ul > li.dropdown.open span {
    color: #fff;
}
.sub_menu ul > li.dropdown .dropdown-toggle .material-symbols-outlined {
    transform: rotate(0deg);
}
.sub_menu ul > li.dropdown.open .dropdown-toggle .material-symbols-outlined {
    transform: rotate(180deg);
}
.sub_menu ul > li.dropdown .dropdown-menu {
    margin: 0;
    border: 1px solid #eee;
    padding: 0;
    border-radius: 0px;
    box-shadow: none;
    min-width: 100%;
}
.sub_menu ul > li.dropdown:last-child .dropdown-menu {
    border: 0;
}
.sub_menu ul > li.dropdown .dropdown-menu li {
    border-bottom: 1px solid #eee;
    /* width: 198px; */
}
.sub_menu ul > li.dropdown .dropdown-menu li:last-child {
    border-bottom: 0;
}
.sub_menu ul > li.dropdown .dropdown-menu li a {
    padding: 0px 20px;
    font-size: 15px;
    color: #555;
    letter-spacing: 0px;
    line-height: 45px;
    text-decoration: none;
    background: #fff;
    text-align: left;
}
.sub_menu ul > li.dropdown .dropdown-menu li a:hover {
    background: rgba(243, 243, 243, 0.55) !important;
    color: #000;
}
@media (max-width: 767px) {
    .sub_header {
        height: 150px;
    }
    .sub_header h2 {
        font-size: 35px;
    }

    .sub_menu {
        display: none;
    }
}

/* ------------ 공통 ------------ */
.content {
    padding: 100px 0 180px;
}
@media (max-width: 767.98px) {
    .content {
        padding: 60px 0 70px;
    }
    .content:has(#board_pd_view) {
        padding-top: 0;
        padding-bottom: 50px;
    }
    #service .content + .content {
        padding-bottom: 0;
    }
}
.content:last-child {
    padding-bottom: clamp(100px, 15vw, 150px);
}
.content_box {
    padding: 0px 0 190px;
}
.content_box:last-child {
    padding-bottom: 0;
}
.content_box > P {
    font-size: 17px;
}
.page_tit {
    position: relative;
    margin: 0;
    text-align: center;
    /* margin-bottom: 50px; */
}
#site .page_tit h3 {
    margin: 0 0 0;
    font-size: 100px;
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 450;
    color: #282828;
}
.sub_tit {
    position: relative;
}
:is(h5, .sub_tit) + .img_area {
    padding-inline: 110px;
}
@media (max-width: 767.98px) {
    :is(h5, .sub_tit) + .img_area {
        padding-inline: 0;
    }
}
.sub_tit h4 {
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 450;
    margin-top: 0;
    margin-bottom: 40px;
}
h5 {
    margin: 0 0 35px;
    color: #333;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 20px);
}
.list-dot > li {
    padding-left: 12px;
    font-size: 17px;
    line-height: 1.5em;
    position: relative;
}
.list-dot > li::before {
    content: "";
    top: 10px;
    left: 1px;
    width: 5px;
    height: 5px;
    position: absolute;
    background: #777;
    border-radius: 50%;
}
.list-dash > li {
    padding-left: 12px;
    font-size: 16px;
    line-height: 1.5em;
    position: relative;
}
.list-dash > li::before {
    content: "";
    top: 12px;
    left: 1px;
    width: 5px;
    height: 2px;
    position: absolute;
    background: #777;
    border-radius: 20px;
}
.list-num,
.list-num-basic {
    counter-reset: number 0;
}
.list-num > li,
.list-num-basic > li {
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.8em;
    position: relative;
    list-style: none;
}
.list-num > li::before {
    counter-increment: number 1;
    content: counter(number);
    top: 5px;
    left: 1px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: var(--page-point-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-weight: 700;
    padding-top: 1px;
}
.list-num-basic > li::before {
    counter-increment: number 1;
    content: counter(number) ".";
    top: 4px;
    left: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: #333;
    width: 20px;
    height: 20px;
}
.list-arrow > li {
    padding-left: 17px;
    font-size: 16px;
    line-height: 1.5em;
    position: relative;
}
.list-arrow > li::before {
    content: "\e5cc";
    font-family: "Material Symbols Outlined";
    top: 1px;
    left: -3px;
    position: absolute;
    border-radius: 50%;
    color: var(--page-point-color);
    font-weight: 700;
}
.fl {
    display: flex;
}
@media (max-width: 767.98px) {
    .content_box {
        padding-bottom: 100px;
    }
}
/* login */
.member_wrapper {
    padding-top: 100px;
    padding-bottom: 260px;
}
/* board, form */
input + #list_btn {
    display: none;
}
.board_wrapper {
    margin-top: 0;
}
.btn.btn-primary {
    background-color: var(--page-point-color);
    border: 1px solid var(--page-point-color);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: var(--page-point-color);
}
.table_default {
    border-top: 2px solid #333;
}
.table.table_default tr th,
.table.table_default tr td {
    padding: 20px 5px;
    border-color: #e3e3e3;
}
.table.table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ddd;
    font-weight: 600 !important;
    font-size: 16px;
    letter-spacing: -0.02em;
    padding: 21px 0;
    color: #222;
}
.table.table_default tr td {
    color: #777;
    letter-spacing: -0.03em;
}
.table.table_default tr .num {
    font-weight: normal;
}
.table.table_default tbody .subject a {
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #333;
}
.table.table_default tbody .subject a:hover {
    text-decoration: underline;
}
.table.table_default colgroup .hits_col {
    width: 80px;
}
#site :where(.table_video, .table_blog2, .table_pd, .table_blog, .table_default, .board_pd_view .pd_title_wrap) .badge {
    background: transparent;
    color: #808080;
    letter-spacing: 0.03em;
    padding: 0 !important;
    font-size: clamp(13px, 2vw, 16px);
}
.board_data_view {
    border-top: 2px solid #333;
    border-bottom: 1px solid #ccc;
}
.board_data_view .header_wrap .title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.015em;
}
.board_data_view .header_wrap {
    text-align: left;
    border-bottom: 1px solid #e3e3e3;
    padding: 30px 15px;
}
.contents_inner p {
    font-size: 17px;
}

.table_pd .inner .top {
    border: none;
}
.table_pd .inner .bottom .title {
    gap: 3px;
}
.category_wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 25px;
}
.category_wrap li a {
    font-size: 16px;
    font-weight: 350;
    color: #979797;
    border: none;
    padding: 5px 0;
}

.category_wrap li.on :where(a, a:hover, a:focus) {
    font-weight: 400;
}

.category_wrap li + li {
    margin-left: 0;
}

.category_wrap {
    margin-bottom: 50px;
}

.search_wrap .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    padding-left: 5px;
}

.search_wrap .form-control::placeholder {
    color: #939393;
}

.search_wrap .btn {
    background: transparent;
    border-color: transparent;
    color: #333;
    font-weight: 500;
}

.search_wrap .btn:hover {
    background: #eee;
}

@media (max-width: 767px) {
    .page_tit h3 {
        font-size: 32px;
    }

    .board_wrapper .table colgroup,
    .board_wrapper .table tr .num,
    .board_wrapper .table tr .hits {
        display: none;
    }
    .board_wrapper .table.table_default tr th,
    .board_wrapper .table.table_default tr td {
        padding: 10px;
        font-size: 12px;
    }
    .board_wrapper .table.board_write_table :where(.input-group, .form-control) {
        width: 100%;
    }
    .table.table_default tbody .subject a {
        font-size: 15px;
    }
    .board_wrapper .table .subject {
        width: 45%;
    }
    .board_write_table #captcha {
        margin-bottom: 10px;
        height: inherit;
    }

    .member_wrapper {
        padding-top: 100px;
        padding-bottom: 200px;
    }
    .member_wrapper .login_extra ul {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }
    .member_wrapper .login_extra ul li + li::before {
        content: none;
    }
    .search_wrap {
        margin-bottom: 0;
    }
}

/* ------------ main ------------ */
#site:has(#main_wrapper) .lang-wrap ul li {
    color: #fff;
}
.lang-wrap {
    display: inline-flex;
    position: absolute;
    right: 96px;
    top: 50px;
}
.lang-wrap ul {
    display: inline-flex;
    align-items: center;
}
.lang-wrap ul li .lang-change-btn {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 13px;
}
.main_section {
    padding: 220px 0;
}

.main_detail {
    font-size: clamp(14px, 3vw, 17px);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 35px;
    text-align: center;
    color: #7a7a7a;
}
.main_detail + .img_area {
    margin-top: 40px;
}
.board_tit {
    color: #7a7a7a;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 40px;
}
.page-header {
    display: none;
}
.type_goods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-inline: 40px;
}
#site .type_goods .title a {
    font-size: clamp(16px, 4vw, 18px);
}
.type_goods::before,
.type_goods::after {
    content: none;
}
.type_goods dd {
    width: 100%;
}

.type_goods .top {
    border: none;
}

.type_goods .inner {
    margin-top: 0;
    margin-bottom: 0;
}
.type_goods .inner .title {
    gap: 3px;
}
:where(.type_thumb, .type_list, .type_goods) .cate {
    background: transparent;
    padding: 0;
    color: #7e7e7e;
}
.type_goods span.thumb {
    aspect-ratio: 7 / 4;
}
#se01 {
    padding-bottom: 0;
}
#se01 > .container .inner {
    border-bottom: 1px solid #ddd;
    padding-bottom: 220px;
}

@media (max-width: 767.98px) {
    .main_section {
        padding: 100px 0;
    }
    #se01 > .container .inner {
        padding-bottom: 100px;
    }

    .type_goods {
        padding: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 10px;
        margin: 0;
    }
    .type_goods dd {
        padding: 0;
        /* margin: 0; */
    }
}
@media (max-width: 575.98px) {
    .type_goods {
        padding: 0;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* ------------ about ------------ */
#about .con01 {
    padding-top: 0;
}
#about .con01 .inner {
    display: flex;
    /* flex-wrap: wrap; */
    /* display: grid; */
    /* grid-template-columns: minmax(0, 700px) minmax(0, 1fr); */
    /* gap: 15%; */
    align-items: center;
    gap: 30px;
}
#about .con01 .inner .img_area {
    flex: 0 1 700px;
    /* max-width: 700px; */
}
#about .con01 .page_tit {
    text-align: left;
}
#about .con01 .txt_area {
    /* flex: 0 1 auto; */
    /* flex: 1; */
    /* flex: 1; */
    width: fit-content;
    /* justify-self: center; */
    margin-inline: auto;
}
.greet .emph {
    font-size: clamp(18px, 2vw, 22px);
    color: #939797;
    font-weight: 300;
    margin-top: 10px;
    line-height: 1.3;
}
.greet .txt_box {
    font-size: 14px;
    margin: clamp(30px, 5vw, 50px) clamp(40px, 5vw, 100px) 0 0px;
    max-width: 620px;
    font-weight: 350;
}
.greet .txt_box p + p {
    margin-top: 25px;
}
.icon img {
    width: clamp(70px, 10vw, 90px);
    margin-bottom: 20px;
}
.list_profile {
    margin-top: clamp(40px, 10vw, 60px);
}
.list_profile li {
    font-size: clamp(13px, 3vw, 18px);
    justify-content: center;
    letter-spacing: -0.025em;
    display: flex;
    gap: 12px;
}
.list_profile li + li {
    margin-top: clamp(13px, 5vw, 22px);
}
.list_profile li b {
    font-weight: 400;
    display: block;
    text-align: end;
    /* flex: 1; */
    flex: 0 1 500px;
}
.list_profile li span {
    color: #7a7a7a;
    /* flex: 1; */
}
.list_profile li span:last-child {
    flex: 0 1 500px;
}
#about .con03 .img_area {
    margin-top: 60px;
}
#about .con03 .img_area img {
    /* max-width: 1100px; */
}
#about .con04 .img_area {
    margin-top: 80px;
    max-width: 800px;
    margin-inline: auto;
}
#about .con04 .img_area img {
    /* max-width: 800px; */
}

@media (max-width: 767.98px) {
    #about .con01 .inner {
        flex-direction: column;
    }
    #about .con01 .inner .img_area {
        flex: 0 1 auto;
    }
    #about .con01 .txt_area {
        padding: 30px 15px;
    }
    .greet .txt_box {
        margin-right: 0;
    }
    .greet .emph br {
        display: none;
    }
}

/* ------------ service ------------ */
.icon p {
    color: #7a7a7a;
    text-align: center;
    margin-top: 50px;
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 350;
}
.service_items {
    display: flex;
    gap: 60px;
    margin-top: 130px;
}
@media (max-width: 767.98px) {
    .service_items {
        flex-direction: column;
        align-items: center;
        margin-top: 70px;
    }
}
.service_item p {
    font-style: italic;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 300;
    text-align: center;
    margin-top: clamp(20px, 5vw, 40px);
    color: #545454;
}
.content_box .page_tit.icon {
    text-align: left;
}
.page_tit img + h3 {
    text-indent: -5px;
}
.content_box .page_tit.icon h3 {
    /* margin: 0 0 0 -5px; */
    /* text-indent: -4px; */
}
.content_box .page_tit.icon img {
    width: 80px;
}
.icon .sub_txt {
    text-align: left;
    color: #333;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 24px);
    margin-top: clamp(20px, 5vw, 32px);
}
.detail {
    margin-top: clamp(20px, 5vw, 120px);
}
.detail p {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 350;
    line-height: 1.6;
}
.txt_gr {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 550px);
    /* grid-template-columns: minmax(0, 550px) minmax(0, 630px); */
    align-items: center;
    gap: 15%;
    padding-right: 0px;
    justify-content: space-between;
    max-width: 1300px;
    margin-inline: auto;
}
.txt_gr .img_area {
    justify-self: center;
}
.img_gr {
    display: grid;
    grid-template-columns: minmax(0, 550px) minmax(0, 500px);
    align-items: center;
    justify-content: center;
    gap: 17%;
    /* padding-left: 50px; */
    /* max-width: 1300px; */
    /* margin-inline: auto; */
}
#service .con03 .img_gr {
    grid-template-columns: minmax(0, 550px) minmax(0, 600px);
    gap: 12%;
    max-width: 1300px;
    margin-inline: auto;
}
#service .con03 .cb02 .sub_tit h4 {
    margin: 0 0 20px;
}
.schedule_area + .schedule_area {
    margin-top: clamp(80px, 15vw, 190px);
}
.list_plan li h5 {
    margin-bottom: 6px;
}
.list_plan li p {
    font-size: 15px;
    font-weight: 350;
}
.list_plan li + li {
    margin-top: 30px;
}
.list_plan + .img_area {
    justify-content: space-evenly;
    gap: 40px;
    margin-top: 100px;
    padding-inline: 100px;
}

#service .content + .content .inner {
    border-top: 1px solid #ddd;
    padding-top: clamp(100px, 15vw, 250px);
}

#service .content + .content {
    padding-top: clamp(80px, 15vw, 130px);
}

#service .content.con04 .img_area img {
    margin-right: 0;
    margin-left: auto;
}

#service .content.con02 .inner {
    border: none;
    padding-top: 100px;
}
@media (max-width: 767.98px) {
    #site .content .txt_gr {
        display: flex;
        flex-direction: column;
        gap: 50px;
        padding-bottom: 120px;
    }
    #site .content .img_gr {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }
    #service .content.con02 .inner {
        padding-top: 0;
    }
    .list_plan + .img_area {
        flex-direction: column;
        padding: 0;
    }
    #service .content.con04 .img_area img {
        /* width: fit-content; */
        /* height: 130px; */
        /* margin: auto; */
        margin-right: auto;
        margin-left: 0;
        object-fit: contain;
    }
}

/* ------------ project ------------ */
.pr_logo {
    max-width: 330px;
}
.board_area:has(#project_view) {
    margin-top: 0;
}
.board_area {
    margin-top: 50px;
}
.board_pd_view .pd_preview_wrap {
    flex: 1 1 max(300px, 0px);
}
#project .page_tit {
    text-align: left;
}
.board_goods_list .table_pd {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.board_goods_list .table_pd:has(.no_post) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.board_goods_list .table_pd::before,
.board_goods_list .table_pd::after {
    content: none;
}
.board_goods_list .table_pd dd {
    width: 100%;
}
.board_goods_list .table_pd .inner .top a .thumb {
    aspect-ratio: 7 / 4;
}
#site .pd_title_wrap > h4 {
    cursor: pointer;
    font-size: clamp(30px, 3vw, 36px);
    margin-top: 10px;
}
.board_pd_view .pd_img_main {
    display: none;
}
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-track {
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 0 -2px;
    gap: 30px;
}
.board_pd_view .pd_slider_wrap .pd_img_sub .thumb {
    cursor: pointer;
    opacity: 1;
}
.board_pd_view .pd_slider_wrap .pd_img_sub {
    min-height: auto;
    margin-top: 0;
}
.board_pd_view .pd_preview_wrap {
    padding-right: 0;
    margin-right: 0;
}
@media (min-width: 992px) {
    .board_pd_view .pd_top_wrap .pd_col_rgt {
        width: inherit;
        padding-top: 0;
        overflow: inherit;
    }
}
.board_pd_view .pd_slider_wrap .pd_img_sub .slick-slide .thumb {
    cursor: default;
    border: none;
    aspect-ratio: 4/3;
}
.board_pd_view .pd_title_wrap {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 35px;
}
.board_pd_view .pd_top_wrap {
    margin-bottom: 50px;
}
.board_pd_view .pd_top_wrap .row {
    display: flex;
    /* grid-template-columns: minmax(0,900px) minmax(0,1fr); */
}
.board_pd_view .pd_top_wrap .row .pd_col_lft {
    flex: 0 1 900px;
}
.board_pd_view .pd_info_wrap {
    height: auto;
    position: sticky;
    top: 180px;
    padding-top: 50px;
    padding-right: 40px;
}
.board_pd_view .pd_preview_wrap #pd_preview_text {
    text-align: justify;
    color: #7a7a7a;
    font-size: 13px;
}
@media (max-width: 767.98px) {
    .board_goods_list .table_pd {
        display: grid;
        gap: 40px 20px;
        margin: 0;
    }
    .board_goods_list .table_pd dd {
        padding: 0;
    }
    .board_pd_view .pd_top_wrap .row {
        flex-direction: column-reverse;
    }
    .board_pd_view .pd_slider_wrap .pd_img_sub .slick-track::before {
        display: none;
    }
    .board_pd_view .pd_top_wrap .row .pd_col_lft {
        flex: 0 1 auto;
    }
    .board_pd_view .pd_slider_wrap .pd_img_sub .slick-track {
        gap: 15px;
    }
    .board_pd_view .pd_info_wrap {
        padding: 50px 0 40px;
    }
    .board_pd_view .pd_top_wrap {
        margin: 0;
    }
}
@media (max-width: 545.98px) {
    .board_goods_list .table_pd {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* ------------ contact ------------ */
#contact .con01 {
    padding: 0 0 190px 0;
    border-bottom: 1px solid #999;
}
#contact .map iframe {
    filter: grayscale(1);
}
.location {
    margin: 60px 0 0 60px;
}
.location h5 {
    color: #111;
    font-weight: 350;
    font-size: clamp(24px, 5vw, 34px);
    margin: 0;
}
.location .addr {
    display: inline-block;
    border-top: 1px solid #999;
    margin-top: 15px;
    padding-top: 10px;
    font-size: clamp(15px, 2vw, 18px);
}
#contact .con02 {
    padding-top: 40px;
}
.contact_items {
    display: flex;
    margin: 0 auto;
    gap: 10%;
    /* justify-content: center; */
    justify-content: space-between;
    padding-inline: 100px;
    /* height: 452px; */
    /* height: 252px; */
}
.contact_item:nth-child(2) {
    /* width: 260px; */
}
.contact_item ul {
    position: absolute;
}
.contact_item .tit {
    display: flex;
    align-items: center;
    font-size: clamp(18px, 3vw, 20px);
    color: #7a7a7a;
    gap: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}
.contact_item .tit span {
    font-size: 20px;
    transition: all 0.3s;
}
.contact_item .tit.active span {
    transform: rotate(45deg);
}
.contact_item ul li {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
    position: relative;
    top: 0;
    opacity: 1;
    /* top: 50px; */
    /* opacity: 0; */
}
.contact_item ul li a {
    color: #333;
    text-decoration: underline;
}
.contact_item ul li + li {
    margin-top: 25px;
}
.contact_item ul li b {
    font-weight: 400;
    font-size: 15px;
}
.contact_item:first-child ul li b {
    width: 200px;
}
#snb_63 {
    display: none;
}

@media (max-width: 767.98px) {
    .location {
        margin: 30px 0px;
    }
    #contact .con01 {
        padding-bottom: 50px;
    }
    #contact .con02 {
        margin: 0;
        padding-bottom: 70px;
    }
    .contact_items {
        padding: 0;
        flex-direction: column;
        gap: 30px;
    }
    .contact_item ul {
        position: relative;
    }
}

/* 모바일 이미지 확장 스크롤 */
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 575.98px) {
    .scroll-box-xs {
        position: relative;
    }
    .scroll-box-xs:not(.on)::before {
        cursor: pointer;
        box-sizing: content-box;
        content: "+";
        /* font-family: var(--gms); */
        /* font-variation-settings: var(--gms-500-out); */
        background-color: var(--page-point-color);
        border: 3px solid #fff;
        border-top: 0;
        border-right: 0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        font-size: 22px;
        aspect-ratio: 1/1.02;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 100;
        line-height: 0;
    }
    .scroll-box-xs.on {
        position: relative;
        /* touch-action: pan-x; */
        overflow-x: auto;
    }
    #site .scroll-box-xs.on img {
        max-width: 900px;
        width: auto;
        height: auto !important;
    }
}

.board_pd_view .option_wrap.mobile .move_btn_wrap button:where(:hover, :focus, :active) {
    color: #333;
}
